diff --git a/.gitignore b/.gitignore index c86d0d00..6a62511f 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,5 @@ #/target -.vscode \ No newline at end of file +.vscode +.idea \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 766de01f..8aa9d2db 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -314,6 +314,7 @@ dependencies = [ "tokio", "uuid", "yoki_binutils", + "yoki_identifier", "yoki_macros", ] @@ -321,6 +322,7 @@ dependencies = [ name = "minecraft_protocol" version = "0.1.0" dependencies = [ + "strum_macros", "tokio", "uuid", "yoki_macros", @@ -521,6 +523,18 @@ version = "0.11.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" +[[package]] +name = "strum_macros" +version = "0.28.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "syn" version = "2.0.118" @@ -724,11 +738,14 @@ dependencies = [ "minecraft_protocol", "protocol_version", "serde", + "serde_json", + "strum_macros", "thiserror", "tokio", "toml", "uuid", "yoki_binutils", + "yoki_identifier", "yoki_macros", ] @@ -737,15 +754,28 @@ name = "yoki_binutils" version = "0.1.0" dependencies = [ "minecraft_protocol", + "serde_json", + "thiserror", "uuid", ] +[[package]] +name = "yoki_identifier" +version = "0.1.0" +dependencies = [ + "serde", + "thiserror", + "yoki_binutils", +] + [[package]] name = "yoki_macros" version = "0.1.0" dependencies = [ "proc-macro2", "quote", + "serde", + "serde_json", "syn", "thiserror", ] diff --git a/Cargo.toml b/Cargo.toml index 6548e9fd..5897ea78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,9 +2,11 @@ members = [ "yoki", "crates/minecraft_packet", - "crates/yoki_macros", "crates/minecraft_protocol", - "crates/yoki_binutils", "crates/protocol_version", + "crates/yoki_macros", + "crates/yoki_binutils", + "crates/yoki_identifier", + "crates/protocol_version", ] resolver = "2" @@ -16,6 +18,8 @@ quote = "1" syn = { version = "2", features = ["full"] } thiserror = "2" serde = { version = "1", features = ["derive"] } -toml = "1" +serde_json = { version = "1" } +toml = "1" clap = { version = "4", features = ["derive"] } -futures = "0.3" \ No newline at end of file +futures = "0.3" +strum_macros = { version = "0.28" } \ No newline at end of file diff --git a/config/motd.toml b/config/motd.toml new file mode 100644 index 00000000..3199936b --- /dev/null +++ b/config/motd.toml @@ -0,0 +1 @@ +motd = "Welcome to Yoki server!" diff --git a/config/server.toml b/config/server.toml new file mode 100644 index 00000000..dea39358 --- /dev/null +++ b/config/server.toml @@ -0,0 +1,3 @@ +addr = "0.0.0.0" +port = 25565 +max_players = 20 diff --git a/crates/minecraft_packet/Cargo.toml b/crates/minecraft_packet/Cargo.toml index 179f0393..0075f1f4 100644 --- a/crates/minecraft_packet/Cargo.toml +++ b/crates/minecraft_packet/Cargo.toml @@ -6,6 +6,7 @@ edition = "2024" [dependencies] yoki_macros = { path = "../yoki_macros" } yoki_binutils = { path = "../yoki_binutils" } +yoki_identifier = { path = "../yoki_identifier" } minecraft_protocol = { path = "../minecraft_protocol" } protocol_version = { path = "../protocol_version" } serde = { workspace = true } diff --git a/crates/minecraft_packet/src/connection.rs b/crates/minecraft_packet/src/connection.rs index 1dd3d18e..afa1944d 100644 --- a/crates/minecraft_packet/src/connection.rs +++ b/crates/minecraft_packet/src/connection.rs @@ -1,7 +1,6 @@ use tokio::io::{AsyncReadExt, AsyncWriteExt}; use tokio::net::TcpStream; -use yoki_binutils::ProtocolError; -use yoki_binutils::writer::PacketWriter; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; use crate::packet::{OutgoingPacket, RawPacket}; @@ -29,21 +28,25 @@ impl Connection { }) } - pub async fn send(&mut self, packet: &P) -> Result<(), ProtocolError> { - let payload = packet.encode()?; + pub async fn send( + &mut self, + id: i32, + packet: &P, + ) -> Result<(), ProtocolError> { + let payload = packet.encode_with_id(id)?; self.send_framed(&payload).await } pub async fn send_raw(&mut self, packet: &RawPacket) -> Result<(), ProtocolError> { - let mut body = PacketWriter::new(); - body.write_varint(packet.id); + let mut body = BinaryWriter::new(); + VarInt::from(packet.id).write(&mut body)?; body.extend(&packet.payload); self.send_framed(&body.into_inner()).await } async fn send_framed(&mut self, payload: &[u8]) -> Result<(), ProtocolError> { - let mut frame = PacketWriter::new(); - frame.write_varint(payload.len() as i32); + let mut frame = BinaryWriter::new(); + VarInt::from(payload.len() as i32).write(&mut frame)?; frame.extend(payload); self.stream.write_all(&frame.into_inner()).await?; diff --git a/crates/minecraft_packet/src/packet/mod.rs b/crates/minecraft_packet/src/packet/mod.rs index a7b40fce..8cfd6559 100644 --- a/crates/minecraft_packet/src/packet/mod.rs +++ b/crates/minecraft_packet/src/packet/mod.rs @@ -1,7 +1,7 @@ mod raw; pub use raw::RawPacket; -use yoki_binutils::{ProtocolError, reader::PacketReader, writer::PacketWriter}; +use yoki_binutils::{BinaryReader, BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum PacketDirection { @@ -10,22 +10,21 @@ pub enum PacketDirection { } pub trait PacketMeta { - const ID: i32; const DIRECTION: PacketDirection; } pub trait IncomingPacket: PacketMeta { - fn decode_payload(reader: &mut PacketReader<'_>) -> Result + fn decode_payload(reader: &mut BinaryReader<'_>) -> Result where Self: Sized; } pub trait OutgoingPacket: PacketMeta { - fn encode_payload(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError>; + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError>; - fn encode(&self) -> Result, ProtocolError> { - let mut writer = PacketWriter::new(); - writer.write_varint(Self::ID); + fn encode_with_id(&self, id: i32) -> Result, ProtocolError> { + let mut writer = BinaryWriter::new(); + VarInt::from(id).write(&mut writer)?; self.encode_payload(&mut writer)?; Ok(writer.into_inner()) } diff --git a/crates/minecraft_packet/src/packet/raw.rs b/crates/minecraft_packet/src/packet/raw.rs index d542ca01..cc5b5abc 100644 --- a/crates/minecraft_packet/src/packet/raw.rs +++ b/crates/minecraft_packet/src/packet/raw.rs @@ -1,4 +1,4 @@ -use yoki_binutils::{ProtocolError, reader::PacketReader}; +use yoki_binutils::{BinaryReader, ProtocolError}; use crate::packet::IncomingPacket; @@ -10,14 +10,7 @@ pub struct RawPacket { impl RawPacket { pub fn decode(&self) -> Result { - if self.id != P::ID { - return Err(ProtocolError::UnknownPacket { - id: self.id, - conn: None, - }); - } - - let mut reader = PacketReader::new(&self.payload); + let mut reader = BinaryReader::new(&self.payload); P::decode_payload(&mut reader) } } diff --git a/crates/minecraft_packet/src/packets/configuration/acknowledge_finish_configuration.rs b/crates/minecraft_packet/src/packets/configuration/acknowledge_finish_configuration.rs index 06fc57ac..40aa2598 100644 --- a/crates/minecraft_packet/src/packets/configuration/acknowledge_finish_configuration.rs +++ b/crates/minecraft_packet/src/packets/configuration/acknowledge_finish_configuration.rs @@ -1,5 +1,4 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x03)] pub struct AcknowledgeFinishConfigurationPacket; diff --git a/crates/minecraft_packet/src/packets/configuration/client_information.rs b/crates/minecraft_packet/src/packets/configuration/client_information.rs index 3255f0e0..8b3cdc65 100644 --- a/crates/minecraft_packet/src/packets/configuration/client_information.rs +++ b/crates/minecraft_packet/src/packets/configuration/client_information.rs @@ -1,14 +1,14 @@ +use yoki_binutils::data_types::VarInt; use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x00)] pub struct ClientInformationPacket { pub locale: String, pub view_distance: i8, - pub chat_mode: i32, + pub chat_mode: VarInt, pub chat_colors: bool, pub displayed_skin_parts: u8, - pub main_hand: i32, + pub main_hand: VarInt, pub enable_text_filtering: bool, pub allow_server_listings: bool, } diff --git a/crates/minecraft_packet/src/packets/configuration/finish_configuration.rs b/crates/minecraft_packet/src/packets/configuration/finish_configuration.rs index a58c9617..71e834c3 100644 --- a/crates/minecraft_packet/src/packets/configuration/finish_configuration.rs +++ b/crates/minecraft_packet/src/packets/configuration/finish_configuration.rs @@ -1,5 +1,4 @@ use yoki_macros::PacketOut; #[derive(Debug, Clone, PacketOut)] -#[packet(id = 0x03)] pub struct FinishConfigurationPacket; diff --git a/crates/minecraft_packet/src/packets/configuration/known_packs.rs b/crates/minecraft_packet/src/packets/configuration/known_packs.rs new file mode 100644 index 00000000..5f4207d5 --- /dev/null +++ b/crates/minecraft_packet/src/packets/configuration/known_packs.rs @@ -0,0 +1,38 @@ +use yoki_binutils::{BinaryError, BinaryReader, BinaryWriter, ReadBytes, WriteBytes}; +use yoki_macros::{PacketIn, PacketOut}; + +#[derive(Debug, Clone)] +pub struct KnownPack { + pub namespace: String, + pub id: String, + pub version: String, +} + +impl ReadBytes for KnownPack { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + namespace: String::read(reader)?, + id: String::read(reader)?, + version: String::read(reader)?, + }) + } +} + +impl WriteBytes for KnownPack { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.namespace.write(writer)?; + self.id.write(writer)?; + self.version.write(writer)?; + Ok(()) + } +} + +#[derive(Debug, Clone, PacketIn)] +pub struct SelectKnownPacksPacket { + pub known_packs: Vec, +} + +#[derive(Debug, Clone, PacketOut)] +pub struct SelectKnownPacksClientboundPacket { + pub known_packs: Vec, +} diff --git a/crates/minecraft_packet/src/packets/configuration/mod.rs b/crates/minecraft_packet/src/packets/configuration/mod.rs index 93e28daf..aac13350 100644 --- a/crates/minecraft_packet/src/packets/configuration/mod.rs +++ b/crates/minecraft_packet/src/packets/configuration/mod.rs @@ -1,4 +1,8 @@ pub mod acknowledge_finish_configuration; pub mod client_information; pub mod finish_configuration; +pub mod known_packs; pub mod plugin_message; +pub mod registry_data; +pub mod update_enabled_features; +pub mod update_tags; diff --git a/crates/minecraft_packet/src/packets/configuration/plugin_message.rs b/crates/minecraft_packet/src/packets/configuration/plugin_message.rs index 60e2d373..ed378ef3 100644 --- a/crates/minecraft_packet/src/packets/configuration/plugin_message.rs +++ b/crates/minecraft_packet/src/packets/configuration/plugin_message.rs @@ -1,9 +1,8 @@ +use yoki_identifier::Identifier; use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x02)] pub struct PluginMessagePacket { - pub channel: String, - #[protocol(remaining)] + pub channel: Identifier, pub data: Vec, } diff --git a/crates/minecraft_packet/src/packets/configuration/registry_data.rs b/crates/minecraft_packet/src/packets/configuration/registry_data.rs new file mode 100644 index 00000000..f462d4d3 --- /dev/null +++ b/crates/minecraft_packet/src/packets/configuration/registry_data.rs @@ -0,0 +1,40 @@ +use yoki_binutils::{ + BinaryError, BinaryWriter, ProtocolError, ProtocolWrite, WriteBytes, data_types::NbtTag, +}; +use yoki_identifier::Identifier; +use yoki_macros::PacketOut; + +#[derive(Debug, Clone)] +pub struct RegistryDataEntry { + pub entry_id: Identifier, + pub data: Option, +} + +impl WriteBytes for RegistryDataEntry { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.entry_id.write(writer)?; + self.data.write(writer)?; + Ok(()) + } +} + +impl ProtocolWrite for RegistryDataEntry { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + +#[derive(Debug, Clone, PacketOut)] +pub struct RegistryDataPacket { + pub registry_id: Identifier, + pub entries: Vec, +} + +impl RegistryDataPacket { + pub fn new(registry_id: Identifier, entries: Vec) -> Self { + Self { + registry_id, + entries, + } + } +} diff --git a/crates/minecraft_packet/src/packets/configuration/update_enabled_features.rs b/crates/minecraft_packet/src/packets/configuration/update_enabled_features.rs new file mode 100644 index 00000000..9fbc1da5 --- /dev/null +++ b/crates/minecraft_packet/src/packets/configuration/update_enabled_features.rs @@ -0,0 +1,7 @@ +use yoki_identifier::Identifier; +use yoki_macros::PacketOut; + +#[derive(Debug, Clone, PacketOut)] +pub struct UpdateEnabledFeaturesPacket { + pub features: Vec, +} diff --git a/crates/minecraft_packet/src/packets/configuration/update_tags.rs b/crates/minecraft_packet/src/packets/configuration/update_tags.rs new file mode 100644 index 00000000..6a04e246 --- /dev/null +++ b/crates/minecraft_packet/src/packets/configuration/update_tags.rs @@ -0,0 +1,73 @@ +use yoki_binutils::{ + BinaryError, BinaryReader, BinaryWriter, ProtocolError, ProtocolWrite, ReadBytes, WriteBytes, + data_types::VarInt, +}; +use yoki_identifier::Identifier; +use yoki_macros::PacketOut; + +#[derive(Debug, Clone)] +pub struct TagEntry { + pub name: Identifier, + pub entries: Vec, +} + +#[derive(Debug, Clone)] +pub struct RegistryTags { + pub registry: Identifier, + pub tags: Vec, +} + +impl ProtocolWrite for TagEntry { + fn write_to(&self, writer: &mut yoki_binutils::BinaryWriter) -> Result<(), ProtocolError> { + self.name.write_to(writer)?; + self.entries.write_to(writer)?; + Ok(()) + } +} + +impl WriteBytes for TagEntry { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.name.write(writer)?; + self.entries.write(writer)?; + Ok(()) + } +} + +impl ProtocolWrite for RegistryTags { + fn write_to(&self, writer: &mut yoki_binutils::BinaryWriter) -> Result<(), ProtocolError> { + self.registry.write_to(writer)?; + self.tags.write_to(writer)?; + Ok(()) + } +} + +impl WriteBytes for RegistryTags { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.registry.write(writer)?; + self.tags.write(writer)?; + Ok(()) + } +} + +impl ReadBytes for TagEntry { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + name: Identifier::read(reader)?, + entries: Vec::::read(reader)?, + }) + } +} + +impl ReadBytes for RegistryTags { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + registry: Identifier::read(reader)?, + tags: Vec::::read(reader)?, + }) + } +} + +#[derive(Debug, Clone, PacketOut)] +pub struct UpdateTagsPacket { + pub registries: Vec, +} diff --git a/crates/minecraft_packet/src/packets/handshaking/handshake.rs b/crates/minecraft_packet/src/packets/handshaking/handshake.rs index 90b5013e..afe23438 100644 --- a/crates/minecraft_packet/src/packets/handshaking/handshake.rs +++ b/crates/minecraft_packet/src/packets/handshaking/handshake.rs @@ -1,5 +1,5 @@ use minecraft_protocol::State; -use yoki_binutils::{ProtocolError, ProtocolRead, reader::PacketReader}; +use yoki_binutils::{BinaryReader, ProtocolError, ProtocolRead, data_types::VarInt}; use yoki_macros::PacketIn; #[derive(Debug, Clone, Copy, PartialEq, Eq)] @@ -19,7 +19,7 @@ impl Intent { } } - pub const fn as_varint(self) -> i32 { + pub const fn as_i32(self) -> i32 { match self { Self::Status => 1, Self::Login => 2, @@ -29,8 +29,8 @@ impl Intent { } impl ProtocolRead for Intent { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - Self::from_varint(reader.read_varint()?) + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + Self::from_varint(VarInt::read_from(reader)?.inner()) } } @@ -45,12 +45,12 @@ impl From for State { } #[derive(Debug, Clone, PartialEq, Eq, PacketIn)] -#[packet(id = 0x00)] pub struct HandshakePacket { - pub protocol_version: i32, + pub protocol_version: VarInt, pub server_address: String, pub server_port: u16, - pub intent: Intent, + /// 1: Status 2: Login 3: Transfer + pub intent: VarInt, } impl HandshakePacket { @@ -60,10 +60,10 @@ impl HandshakePacket { server_port: u16, ) -> Self { Self { - protocol_version, + protocol_version: protocol_version.into(), server_address: server_address.into(), server_port, - intent: Intent::Status, + intent: Intent::Status.as_i32().into(), } } @@ -73,10 +73,10 @@ impl HandshakePacket { server_port: u16, ) -> Self { Self { - protocol_version, + protocol_version: protocol_version.into(), server_address: server_address.into(), server_port, - intent: Intent::Login, + intent: Intent::Login.as_i32().into(), } } } diff --git a/crates/minecraft_packet/src/packets/login/cookie_response_login.rs b/crates/minecraft_packet/src/packets/login/cookie_response_login.rs index b5ca7811..33b9489d 100644 --- a/crates/minecraft_packet/src/packets/login/cookie_response_login.rs +++ b/crates/minecraft_packet/src/packets/login/cookie_response_login.rs @@ -1,7 +1,6 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x04)] pub struct CookieResponseLoginPacket { pub key: String, #[protocol(remaining_option)] diff --git a/crates/minecraft_packet/src/packets/login/encryption_response.rs b/crates/minecraft_packet/src/packets/login/encryption_response.rs index 3bc10410..968c52e6 100644 --- a/crates/minecraft_packet/src/packets/login/encryption_response.rs +++ b/crates/minecraft_packet/src/packets/login/encryption_response.rs @@ -1,7 +1,6 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x01)] pub struct EncryptionResponsePacket { pub shared_secret: Vec, pub verify_token: Vec, diff --git a/crates/minecraft_packet/src/packets/login/login_acknowledged.rs b/crates/minecraft_packet/src/packets/login/login_acknowledged.rs index af00db2b..4998c9ac 100644 --- a/crates/minecraft_packet/src/packets/login/login_acknowledged.rs +++ b/crates/minecraft_packet/src/packets/login/login_acknowledged.rs @@ -1,5 +1,4 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x03)] pub struct LoginAcknowledgedPacket; diff --git a/crates/minecraft_packet/src/packets/login/login_plugin_response.rs b/crates/minecraft_packet/src/packets/login/login_plugin_response.rs index ac765c1f..40649d0f 100644 --- a/crates/minecraft_packet/src/packets/login/login_plugin_response.rs +++ b/crates/minecraft_packet/src/packets/login/login_plugin_response.rs @@ -1,4 +1,4 @@ -use yoki_binutils::{ProtocolError, reader::PacketReader}; +use yoki_binutils::{BinaryReader, ProtocolError, ProtocolRead, data_types::VarInt}; use crate::packet::{IncomingPacket, PacketDirection, PacketMeta}; @@ -10,16 +10,15 @@ pub struct LoginPluginResponsePacket { } impl PacketMeta for LoginPluginResponsePacket { - const ID: i32 = 0x02; const DIRECTION: PacketDirection = PacketDirection::In; } impl IncomingPacket for LoginPluginResponsePacket { - fn decode_payload(reader: &mut PacketReader<'_>) -> Result { - let message_id = reader.read_varint()?; - let is_present = reader.read_bool()?; + fn decode_payload(reader: &mut BinaryReader<'_>) -> Result { + let message_id = VarInt::read_from(reader)?.inner(); + let is_present = bool::read_from(reader)?; let data = if is_present { - reader.read_remaining_bytes() + reader.take_remaining_bytes() } else { Vec::new() }; diff --git a/crates/minecraft_packet/src/packets/login/login_start.rs b/crates/minecraft_packet/src/packets/login/login_start.rs index 2256cbed..19a1844f 100644 --- a/crates/minecraft_packet/src/packets/login/login_start.rs +++ b/crates/minecraft_packet/src/packets/login/login_start.rs @@ -2,7 +2,6 @@ use uuid::Uuid; use yoki_macros::PacketIn; #[derive(Debug, Clone, PacketIn)] -#[packet(id = 0x00)] pub struct LoginStartPacket { pub name: String, pub uuid: Uuid, diff --git a/crates/minecraft_packet/src/packets/login/login_success.rs b/crates/minecraft_packet/src/packets/login/login_success.rs index e1b5cc9d..fe218d55 100644 --- a/crates/minecraft_packet/src/packets/login/login_success.rs +++ b/crates/minecraft_packet/src/packets/login/login_success.rs @@ -1,5 +1,7 @@ use uuid::Uuid; -use yoki_binutils::{ProtocolError, ProtocolWrite, writer::PacketWriter}; +use yoki_binutils::{ + BinaryError, BinaryWriter, ProtocolError, ProtocolWrite, WriteBytes, data_types::VarInt, +}; use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; @@ -10,15 +12,24 @@ pub struct Property { pub signature: Option, } -impl ProtocolWrite for Property { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_string(&self.name); - writer.write_string(&self.value); - writer.write_prefixed_optional_string(self.signature.as_deref()); +impl WriteBytes for Property { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.name.write(writer)?; + self.value.write(writer)?; + match &self.signature { + Some(signature) => signature.write(writer)?, + None => VarInt::from(0).write(writer)?, + } Ok(()) } } +impl ProtocolWrite for Property { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + #[derive(Debug, Clone)] pub struct LoginSuccessPacket { pub uuid: Uuid, @@ -28,7 +39,6 @@ pub struct LoginSuccessPacket { } impl PacketMeta for LoginSuccessPacket { - const ID: i32 = 0x02; const DIRECTION: PacketDirection = PacketDirection::Out; } @@ -44,7 +54,7 @@ impl LoginSuccessPacket { } impl OutgoingPacket for LoginSuccessPacket { - fn encode_payload(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { self.uuid.write_to(writer)?; self.username.write_to(writer)?; self.properties.write_to(writer)?; @@ -52,8 +62,8 @@ impl OutgoingPacket for LoginSuccessPacket { if self.protocol_version >= 776 { let session_id = uuid::Uuid::new_v4(); let (most, least) = session_id.as_u64_pair(); - writer.write_i64(most as i64); - writer.write_i64(least as i64); + (most as i64).write_to(writer)?; + (least as i64).write_to(writer)?; } Ok(()) diff --git a/crates/minecraft_packet/src/packets/mod.rs b/crates/minecraft_packet/src/packets/mod.rs index faf5a9e4..bdca06f3 100644 --- a/crates/minecraft_packet/src/packets/mod.rs +++ b/crates/minecraft_packet/src/packets/mod.rs @@ -6,6 +6,6 @@ pub mod status; pub use handshaking::{HandshakePacket, Intent}; pub use status::{ - PingRequestPacket, PingResponsePacket, PlayerSample, PlayersInfo, ServerStatus, + PingRequestPacket, PlayerSample, PlayersInfo, PongResponsePacket, ServerStatus, StatusRequestPacket, StatusResponsePacket, TextComponent, VersionInfo, }; diff --git a/crates/minecraft_packet/src/packets/play/data/death_location.rs b/crates/minecraft_packet/src/packets/play/data/death_location.rs new file mode 100644 index 00000000..eed002d9 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/data/death_location.rs @@ -0,0 +1,42 @@ +use yoki_binutils::{ + BinaryError, BinaryReader, BinaryWriter, ProtocolError, ProtocolRead, ProtocolWrite, ReadBytes, + WriteBytes, data_types::Omitted, +}; +use yoki_identifier::Identifier; + +use crate::packets::play::data::Position; + +#[derive(Clone, Debug)] +pub struct DeathLocation { + dimension: Omitted, + location: Omitted, +} + +impl ReadBytes for DeathLocation { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + dimension: Omitted::read(reader)?, + location: Omitted::read(reader)?, + }) + } +} + +impl WriteBytes for DeathLocation { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.dimension.write(writer)?; + self.location.write(writer)?; + Ok(()) + } +} + +impl ProtocolWrite for DeathLocation { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + +impl ProtocolRead for DeathLocation { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) + } +} diff --git a/crates/minecraft_packet/src/packets/play/data/mod.rs b/crates/minecraft_packet/src/packets/play/data/mod.rs new file mode 100644 index 00000000..3fb9387e --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/data/mod.rs @@ -0,0 +1,5 @@ +mod death_location; +mod position; + +pub use death_location::DeathLocation; +pub use position::Position; diff --git a/crates/minecraft_packet/src/packets/play/data/position.rs b/crates/minecraft_packet/src/packets/play/data/position.rs new file mode 100644 index 00000000..6998e572 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/data/position.rs @@ -0,0 +1,49 @@ +use yoki_binutils::{ + BinaryError, BinaryReader, BinaryWriter, ProtocolError, ProtocolRead, ProtocolWrite, ReadBytes, + WriteBytes, +}; + +#[derive(Clone, Debug, Default)] +pub struct Position { + pub x: f64, + pub y: f64, + pub z: f64, +} + +impl Position { + #[expect(dead_code)] + pub fn new(x: f64, y: f64, z: f64) -> Self { + Self { x, y, z } + } +} + +impl ReadBytes for Position { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + x: f64::read(reader)?, + y: f64::read(reader)?, + z: f64::read(reader)?, + }) + } +} + +impl WriteBytes for Position { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.x.write(writer)?; + self.y.write(writer)?; + self.z.write(writer)?; + Ok(()) + } +} + +impl ProtocolWrite for Position { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + +impl ProtocolRead for Position { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) + } +} diff --git a/crates/minecraft_packet/src/packets/play/game_event.rs b/crates/minecraft_packet/src/packets/play/game_event.rs new file mode 100644 index 00000000..53a177da --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/game_event.rs @@ -0,0 +1,29 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes}; + +#[derive(Debug, Clone)] +pub struct GameEventPacket { + event: u8, + value: f32, +} + +impl GameEventPacket { + pub fn start_waiting_for_chunks() -> Self { + Self { + event: 13, + value: 0.0, + } + } +} + +impl PacketMeta for GameEventPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for GameEventPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.event.write(writer)?; + self.value.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/play/keep_alive.rs b/crates/minecraft_packet/src/packets/play/keep_alive.rs new file mode 100644 index 00000000..275d6a77 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/keep_alive.rs @@ -0,0 +1,41 @@ +use crate::packet::{IncomingPacket, OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryReader, BinaryWriter, ProtocolError, ReadBytes, WriteBytes}; + +#[derive(Debug, Clone, Copy)] +pub struct ServerboundKeepAlivePacket { + pub id: i64, +} + +impl PacketMeta for ServerboundKeepAlivePacket { + const DIRECTION: PacketDirection = PacketDirection::In; +} + +impl IncomingPacket for ServerboundKeepAlivePacket { + fn decode_payload(reader: &mut BinaryReader<'_>) -> Result { + Ok(Self { + id: i64::read(reader)?, + }) + } +} + +#[derive(Debug, Clone, Copy)] +pub struct ClientboundKeepAlivePacket { + pub id: i64, +} + +impl ClientboundKeepAlivePacket { + pub const fn new(id: i64) -> Self { + Self { id } + } +} + +impl PacketMeta for ClientboundKeepAlivePacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for ClientboundKeepAlivePacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.id.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/play/level_chunk_with_light.rs b/crates/minecraft_packet/src/packets/play/level_chunk_with_light.rs new file mode 100644 index 00000000..f496198c --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/level_chunk_with_light.rs @@ -0,0 +1,196 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryError, BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; + +pub const WORLD_SECTION_COUNT: usize = 24; +pub const OVERWORLD_MIN_Y: i32 = -64; +pub const OVERWORLD_HEIGHT: i32 = 384; +pub const FLAT_SURFACE_Y: i32 = 63; +pub const HEIGHTMAP_MOTION_BLOCKING: i32 = 4; +pub const LIGHT_SECTION_COUNT: usize = WORLD_SECTION_COUNT + 2; + +#[derive(Debug, Clone)] +pub struct Heightmap { + type_id: VarInt, + data: Vec, +} + +impl Heightmap { + pub fn motion_blocking(surface_height_index: i32) -> Self { + let bits_per_entry = heightmap_bits_per_entry(OVERWORLD_HEIGHT); + Self { + type_id: VarInt::new(HEIGHTMAP_MOTION_BLOCKING), + data: pack_heightmap_uniform(surface_height_index as u16, bits_per_entry), + } + } +} + +impl WriteBytes for Heightmap { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.type_id.write(writer)?; + self.data.write(writer)?; + Ok(()) + } +} + +#[derive(Debug, Clone, Default)] +pub struct BitSet(pub Vec); + +impl WriteBytes for BitSet { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.0.write(writer) + } +} + +#[derive(Debug, Clone)] +pub struct LevelChunkWithLightPacket { + chunk_x: i32, + chunk_z: i32, + heightmaps: Vec, + chunk_data: Vec, + sky_light_mask: BitSet, + block_light_mask: BitSet, + empty_sky_light_mask: BitSet, + empty_block_light_mask: BitSet, + sky_light_arrays: Vec<[u8; 2048]>, + block_light_arrays: Vec<[u8; 2048]>, +} + +impl LevelChunkWithLightPacket { + pub fn empty(chunk_x: i32, chunk_z: i32) -> Self { + Self { + chunk_x, + chunk_z, + heightmaps: vec![Heightmap::motion_blocking(0)], + chunk_data: flat_world_chunk_data(None), + sky_light_mask: BitSet::default(), + block_light_mask: BitSet::default(), + empty_sky_light_mask: BitSet::default(), + empty_block_light_mask: BitSet::default(), + sky_light_arrays: Vec::new(), + block_light_arrays: Vec::new(), + } + } + + pub fn flat(chunk_x: i32, chunk_z: i32, solid_block_state_id: i32) -> Self { + Self { + chunk_x, + chunk_z, + heightmaps: vec![Heightmap::motion_blocking( + FLAT_SURFACE_Y - OVERWORLD_MIN_Y + 1, + )], + chunk_data: flat_world_chunk_data(Some(solid_block_state_id)), + sky_light_mask: full_bitset(LIGHT_SECTION_COUNT), + block_light_mask: BitSet::default(), + empty_sky_light_mask: BitSet::default(), + empty_block_light_mask: full_bitset(LIGHT_SECTION_COUNT), + sky_light_arrays: vec![full_bright_array(); LIGHT_SECTION_COUNT], + block_light_arrays: Vec::new(), + } + } +} + +fn full_bitset(count: usize) -> BitSet { + let longs_needed = count.div_ceil(64); + let mut longs = vec![0i64; longs_needed]; + for i in 0..count { + longs[i / 64] |= 1i64 << (i % 64); + } + BitSet(longs) +} + +fn full_bright_array() -> [u8; 2048] { + [0xFF; 2048] +} + +impl PacketMeta for LevelChunkWithLightPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for LevelChunkWithLightPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.chunk_x.write(writer)?; + self.chunk_z.write(writer)?; + self.heightmaps.write(writer)?; + writer.write_byte_array(&self.chunk_data)?; + VarInt::new(0).write(writer)?; + self.sky_light_mask.write(writer)?; + self.block_light_mask.write(writer)?; + self.empty_sky_light_mask.write(writer)?; + self.empty_block_light_mask.write(writer)?; + VarInt::new(self.sky_light_arrays.len() as i32).write(writer)?; + for arr in &self.sky_light_arrays { + writer.write_byte_array(arr)?; + } + VarInt::new(self.block_light_arrays.len() as i32).write(writer)?; + for arr in &self.block_light_arrays { + writer.write_byte_array(arr)?; + } + Ok(()) + } +} + +fn heightmap_bits_per_entry(world_height: i32) -> u8 { + let possible_values = (world_height + 1) as u32; + let bits = 32 - possible_values.leading_zeros(); + bits.max(1) as u8 +} + +fn pack_heightmap_uniform(value: u16, bits_per_entry: u8) -> Vec { + let values = [value; 256]; + pack_heightmap(&values, bits_per_entry) +} + +fn pack_heightmap(values: &[u16], bits_per_entry: u8) -> Vec { + let bits = bits_per_entry as usize; + let long_count = (values.len() * bits).div_ceil(64); + let mut data = vec![0u64; long_count]; + + for (index, value) in values.iter().enumerate() { + let value = *value as u64; + let bit_index = index * bits; + let long_index = bit_index / 64; + let bit_offset = bit_index % 64; + data[long_index] |= value << bit_offset; + if bit_offset + bits > 64 { + let overflow = bit_offset + bits - 64; + data[long_index + 1] |= value >> (bits - overflow); + } + } + + data.into_iter().map(|value| value as i64).collect() +} + +fn solid_section(block_state_id: i32) -> Vec { + let mut w = BinaryWriter::new(); + w.write_all(&4096i16.to_be_bytes()); + w.write_all(&0i16.to_be_bytes()); + write_single_valued_palette(&mut w, block_state_id); + write_single_valued_palette(&mut w, 0); + w.into_inner() +} + +fn air_section() -> Vec { + let mut w = BinaryWriter::new(); + w.write_all(&0i16.to_be_bytes()); + w.write_all(&0i16.to_be_bytes()); + write_single_valued_palette(&mut w, 0); + write_single_valued_palette(&mut w, 0); + w.into_inner() +} + +fn write_single_valued_palette(writer: &mut BinaryWriter, registry_id: i32) { + writer.write_byte(0); + VarInt::new(registry_id).write(writer).ok(); +} + +fn flat_world_chunk_data(solid_block_state_id: Option) -> Vec { + let mut data = Vec::new(); + for section_index in 0..WORLD_SECTION_COUNT { + let section = match solid_block_state_id { + Some(id) if section_index < 8 => solid_section(id), + _ => air_section(), + }; + data.extend_from_slice(§ion); + } + data +} diff --git a/crates/minecraft_packet/src/packets/play/login.rs b/crates/minecraft_packet/src/packets/play/login.rs new file mode 100644 index 00000000..47091816 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/login.rs @@ -0,0 +1,103 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use crate::packets::play::data::DeathLocation; +use protocol_version::protocol_version::ProtocolVersion; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; +use yoki_identifier::Identifier; + +#[derive(Debug, Clone)] +pub struct LoginPacket { + entity_id: i32, + is_hardcore: bool, + dimension_names: Vec, + max_players: VarInt, + view_distance: VarInt, + simulation_distance: VarInt, + reduced_debug_info: bool, + enable_respawn_screen: bool, + do_limited_crafting: bool, + dimension_type: VarInt, + dimension_name: Identifier, + hashed_seed: i64, + game_mode: u8, + previous_game_mode: i8, + is_debug: bool, + is_flat: bool, + death_location: Option, + portal_cooldown: VarInt, + sea_level: VarInt, + online_mode: Option, + enforces_secure_chat: bool, +} + +impl Default for LoginPacket { + fn default() -> Self { + Self::for_protocol_version(ProtocolVersion::V26_2) + } +} + +impl LoginPacket { + pub fn for_protocol_version(version: ProtocolVersion) -> Self { + let online_mode = matches!(version.data(), ProtocolVersion::V26_2).then_some(false); + + Self { + entity_id: 1, + is_hardcore: false, + dimension_names: vec![ + Identifier::minecraft("overworld").expect("valid identifier"), + Identifier::minecraft("the_nether").expect("valid identifier"), + Identifier::minecraft("the_end").expect("valid identifier"), + ], + max_players: VarInt::new(20), + view_distance: VarInt::new(10), + simulation_distance: VarInt::new(10), + reduced_debug_info: false, + enable_respawn_screen: true, + do_limited_crafting: false, + dimension_type: VarInt::new(0), + dimension_name: Identifier::minecraft("overworld").expect("valid identifier"), + hashed_seed: 0, + game_mode: 0, + previous_game_mode: -1, + is_debug: false, + is_flat: false, + death_location: None, + portal_cooldown: VarInt::new(0), + sea_level: VarInt::new(63), + online_mode, + enforces_secure_chat: false, + } + } +} + +impl PacketMeta for LoginPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for LoginPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.entity_id.write(writer)?; + self.is_hardcore.write(writer)?; + self.dimension_names.write(writer)?; + self.max_players.write(writer)?; + self.view_distance.write(writer)?; + self.simulation_distance.write(writer)?; + self.reduced_debug_info.write(writer)?; + self.enable_respawn_screen.write(writer)?; + self.do_limited_crafting.write(writer)?; + self.dimension_type.write(writer)?; + self.dimension_name.write(writer)?; + self.hashed_seed.write(writer)?; + self.game_mode.write(writer)?; + self.previous_game_mode.write(writer)?; + self.is_debug.write(writer)?; + self.is_flat.write(writer)?; + self.death_location.write(writer)?; + self.portal_cooldown.write(writer)?; + self.sea_level.write(writer)?; + if let Some(online_mode) = self.online_mode { + online_mode.write(writer)?; + } + self.enforces_secure_chat.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/play/mod.rs b/crates/minecraft_packet/src/packets/play/mod.rs index 8b137891..f707a938 100644 --- a/crates/minecraft_packet/src/packets/play/mod.rs +++ b/crates/minecraft_packet/src/packets/play/mod.rs @@ -1 +1,8 @@ - +mod data; +pub mod game_event; +pub mod keep_alive; +pub mod level_chunk_with_light; +pub mod login; +pub mod player_abilities; +pub mod set_chunk_cache_center; +pub mod synchronize_player_position; diff --git a/crates/minecraft_packet/src/packets/play/player_abilities.rs b/crates/minecraft_packet/src/packets/play/player_abilities.rs new file mode 100644 index 00000000..13266e87 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/player_abilities.rs @@ -0,0 +1,32 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes}; + +#[derive(Debug, Clone)] +pub struct PlayerAbilitiesPacket { + flags: i8, + flying_speed: f32, + field_of_view_modifier: f32, +} + +impl Default for PlayerAbilitiesPacket { + fn default() -> Self { + Self { + flags: 0, + flying_speed: 0.05, + field_of_view_modifier: 0.1, + } + } +} + +impl PacketMeta for PlayerAbilitiesPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for PlayerAbilitiesPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.flags.write(writer)?; + self.flying_speed.write(writer)?; + self.field_of_view_modifier.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/play/set_chunk_cache_center.rs b/crates/minecraft_packet/src/packets/play/set_chunk_cache_center.rs new file mode 100644 index 00000000..eb662df7 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/set_chunk_cache_center.rs @@ -0,0 +1,29 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; + +#[derive(Debug, Clone)] +pub struct SetChunkCacheCenterPacket { + chunk_x: VarInt, + chunk_z: VarInt, +} + +impl SetChunkCacheCenterPacket { + pub fn new(chunk_x: i32, chunk_z: i32) -> Self { + Self { + chunk_x: VarInt::new(chunk_x), + chunk_z: VarInt::new(chunk_z), + } + } +} + +impl PacketMeta for SetChunkCacheCenterPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for SetChunkCacheCenterPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.chunk_x.write(writer)?; + self.chunk_z.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/play/synchronize_player_position.rs b/crates/minecraft_packet/src/packets/play/synchronize_player_position.rs new file mode 100644 index 00000000..247fa229 --- /dev/null +++ b/crates/minecraft_packet/src/packets/play/synchronize_player_position.rs @@ -0,0 +1,53 @@ +use crate::packet::{OutgoingPacket, PacketDirection, PacketMeta}; +use yoki_binutils::{BinaryWriter, ProtocolError, WriteBytes, data_types::VarInt}; + +#[derive(Debug, Clone)] +pub struct SynchronizePlayerPositionPacket { + teleport_id: VarInt, + x: f64, + y: f64, + z: f64, + velocity_x: f64, + velocity_y: f64, + velocity_z: f64, + yaw: f32, + pitch: f32, + flags: i32, +} + +impl SynchronizePlayerPositionPacket { + pub fn spawn(x: f64, y: f64, z: f64, yaw: f32, pitch: f32) -> Self { + Self { + teleport_id: VarInt::new(0), + x, + y, + z, + velocity_x: 0.0, + velocity_y: 0.0, + velocity_z: 0.0, + yaw, + pitch, + flags: 0, + } + } +} + +impl PacketMeta for SynchronizePlayerPositionPacket { + const DIRECTION: PacketDirection = PacketDirection::Out; +} + +impl OutgoingPacket for SynchronizePlayerPositionPacket { + fn encode_payload(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.teleport_id.write(writer)?; + self.x.write(writer)?; + self.y.write(writer)?; + self.z.write(writer)?; + self.velocity_x.write(writer)?; + self.velocity_y.write(writer)?; + self.velocity_z.write(writer)?; + self.yaw.write(writer)?; + self.pitch.write(writer)?; + self.flags.write(writer)?; + Ok(()) + } +} diff --git a/crates/minecraft_packet/src/packets/status/mod.rs b/crates/minecraft_packet/src/packets/status/mod.rs index 7c38fd95..77c2cc32 100644 --- a/crates/minecraft_packet/src/packets/status/mod.rs +++ b/crates/minecraft_packet/src/packets/status/mod.rs @@ -1,10 +1,10 @@ mod ping_request; -mod ping_response; +mod pong_response; mod status_request; mod status_response; pub use ping_request::PingRequestPacket; -pub use ping_response::PingResponsePacket; +pub use pong_response::PongResponsePacket; pub use status_request::StatusRequestPacket; pub use status_response::{ PlayerSample, PlayersInfo, ServerStatus, StatusResponsePacket, TextComponent, VersionInfo, diff --git a/crates/minecraft_packet/src/packets/status/ping_request.rs b/crates/minecraft_packet/src/packets/status/ping_request.rs index d3e2f2da..89aa28b7 100644 --- a/crates/minecraft_packet/src/packets/status/ping_request.rs +++ b/crates/minecraft_packet/src/packets/status/ping_request.rs @@ -1,7 +1,6 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, Copy, PartialEq, Eq, PacketIn)] -#[packet(id = 0x01)] pub struct PingRequestPacket { pub payload: i64, } diff --git a/crates/minecraft_packet/src/packets/status/ping_response.rs b/crates/minecraft_packet/src/packets/status/pong_response.rs similarity index 71% rename from crates/minecraft_packet/src/packets/status/ping_response.rs rename to crates/minecraft_packet/src/packets/status/pong_response.rs index 5da83352..7f991c09 100644 --- a/crates/minecraft_packet/src/packets/status/ping_response.rs +++ b/crates/minecraft_packet/src/packets/status/pong_response.rs @@ -3,12 +3,11 @@ use yoki_macros::PacketOut; use super::PingRequestPacket; #[derive(Debug, Clone, Copy, PartialEq, Eq, PacketOut)] -#[packet(id = 0x01)] -pub struct PingResponsePacket { +pub struct PongResponsePacket { pub payload: i64, } -impl From for PingResponsePacket { +impl From for PongResponsePacket { fn from(request: PingRequestPacket) -> Self { Self { payload: request.payload, diff --git a/crates/minecraft_packet/src/packets/status/status_request.rs b/crates/minecraft_packet/src/packets/status/status_request.rs index 34c359fb..6396573f 100644 --- a/crates/minecraft_packet/src/packets/status/status_request.rs +++ b/crates/minecraft_packet/src/packets/status/status_request.rs @@ -1,5 +1,4 @@ use yoki_macros::PacketIn; #[derive(Debug, Clone, Copy, PartialEq, Eq, Default, PacketIn)] -#[packet(id = 0x00)] pub struct StatusRequestPacket; diff --git a/crates/minecraft_packet/src/packets/status/status_response.rs b/crates/minecraft_packet/src/packets/status/status_response.rs index e02d3eff..f005ff18 100644 --- a/crates/minecraft_packet/src/packets/status/status_response.rs +++ b/crates/minecraft_packet/src/packets/status/status_response.rs @@ -157,7 +157,6 @@ impl From for TextComponent { } #[derive(Debug, Clone, PartialEq, Eq, PacketOut)] -#[packet(id = 0x00)] pub struct StatusResponsePacket { pub json: String, } diff --git a/crates/minecraft_protocol/Cargo.toml b/crates/minecraft_protocol/Cargo.toml index bc1f0f18..036a5adc 100644 --- a/crates/minecraft_protocol/Cargo.toml +++ b/crates/minecraft_protocol/Cargo.toml @@ -7,3 +7,4 @@ edition = "2024" yoki_macros = { path = "../yoki_macros" } tokio = { workspace = true } uuid = { workspace = true } +strum_macros = { workspace = true } \ No newline at end of file diff --git a/crates/minecraft_protocol/src/lib.rs b/crates/minecraft_protocol/src/lib.rs index 18509c89..6653f782 100644 --- a/crates/minecraft_protocol/src/lib.rs +++ b/crates/minecraft_protocol/src/lib.rs @@ -1,4 +1,4 @@ mod state; -pub use state::Direction; +pub use state::DirectionBound; pub use state::State; diff --git a/crates/minecraft_protocol/src/state.rs b/crates/minecraft_protocol/src/state.rs index 4ce67cdf..85fc721c 100644 --- a/crates/minecraft_protocol/src/state.rs +++ b/crates/minecraft_protocol/src/state.rs @@ -1,40 +1,26 @@ -use std::fmt::{Display, Formatter, Result}; +use strum_macros::{AsRefStr, Display}; -#[derive(Copy, Debug, PartialEq, Clone, Eq, Hash)] -pub enum Direction { +#[derive(Copy, Debug, PartialEq, Clone, Eq, Hash, Display, AsRefStr)] +pub enum DirectionBound { + #[strum(serialize = "clientbound")] Clientbound, + #[strum(serialize = "serverbound")] Serverbound, } -#[derive(Copy, Debug, PartialEq, Clone, Default, Eq, Hash)] +#[derive(Copy, Debug, PartialEq, Clone, Default, Eq, Hash, Display, AsRefStr)] pub enum State { #[default] + #[strum(serialize = "handshake")] Handshaking, + #[strum(serialize = "status")] Status, + #[strum(serialize = "login")] Login, + #[strum(serialize = "configuration")] Configuration, + #[strum(serialize = "play")] Play, + #[strum(serialize = "transfer")] Transfer, } - -impl Display for State { - fn fmt(&self, f: &mut Formatter<'_>) -> Result { - match self { - State::Handshaking => f.write_str("handshake"), - State::Status => f.write_str("status"), - State::Login => f.write_str("login"), - State::Configuration => f.write_str("configuration"), - State::Play => f.write_str("play"), - State::Transfer => f.write_str("transfer"), - } - } -} - -impl Display for Direction { - fn fmt(&self, f: &mut Formatter<'_>) -> Result { - match self { - Direction::Clientbound => f.write_str("clientbound"), - Direction::Serverbound => f.write_str("serverbound"), - } - } -} diff --git a/crates/yoki_binutils/Cargo.toml b/crates/yoki_binutils/Cargo.toml index a664617d..45198ff6 100644 --- a/crates/yoki_binutils/Cargo.toml +++ b/crates/yoki_binutils/Cargo.toml @@ -4,5 +4,7 @@ version = "0.1.0" edition = "2024" [dependencies] +serde_json = { workspace = true } +minecraft_protocol = { path = "../minecraft_protocol" } uuid = { workspace = true } -minecraft_protocol = { path = "../minecraft_protocol" } \ No newline at end of file +thiserror = { workspace = true } \ No newline at end of file diff --git a/crates/yoki_binutils/src/binary_error.rs b/crates/yoki_binutils/src/binary_error.rs new file mode 100644 index 00000000..1b70021a --- /dev/null +++ b/crates/yoki_binutils/src/binary_error.rs @@ -0,0 +1,33 @@ +use std::io; +use std::string::FromUtf8Error; + +use thiserror::Error; + +#[derive(Debug, Error)] +pub enum BinaryError { + #[error("unexpected eof")] + UnexpectedEof, + #[error(transparent)] + Io(#[from] io::Error), + #[error(transparent)] + InvalidUtf8(#[from] FromUtf8Error), + #[error("var int too big")] + VarIntTooBig, + #[error("var long too big")] + VarLongTooBig, + #[error("invalid uuid")] + InvalidUuid, + #[error("invalid identifier: {0}")] + InvalidIdentifier(String), + #[error("{0}")] + Custom(String), +} + +impl BinaryError { + pub fn from_io(err: io::Error) -> Self { + match err.kind() { + io::ErrorKind::UnexpectedEof => Self::UnexpectedEof, + _ => Self::Io(err), + } + } +} diff --git a/crates/yoki_binutils/src/binary_reader.rs b/crates/yoki_binutils/src/binary_reader.rs new file mode 100644 index 00000000..4a5cf114 --- /dev/null +++ b/crates/yoki_binutils/src/binary_reader.rs @@ -0,0 +1,61 @@ +use std::io::{Cursor, Read}; + +use crate::binary_error::BinaryError; + +pub trait ReadBytes: Sized { + fn read(reader: &mut BinaryReader<'_>) -> Result; +} + +pub struct BinaryReader<'a>(Cursor<&'a [u8]>); + +impl<'a> BinaryReader<'a> { + pub fn new(raw: &'a [u8]) -> Self { + Self(Cursor::new(raw)) + } + + pub fn read(&mut self) -> Result { + T::read(self) + } + + pub(crate) fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), BinaryError> { + self.0.read_exact(buf).map_err(BinaryError::from_io) + } + + pub fn read_byte(&mut self) -> Result { + let mut byte = [0u8; 1]; + self.read_exact(&mut byte)?; + Ok(byte[0]) + } + + pub fn remaining(&self) -> usize { + let total_len = self.0.get_ref().len(); + let current_pos = self.0.position() as usize; + total_len.saturating_sub(current_pos) + } + + pub fn remaining_bytes(&mut self) -> Result, BinaryError> { + let mut buf = vec![0u8; self.remaining()]; + self.read_exact(&mut buf)?; + Ok(buf) + } + + pub fn take_remaining_bytes(&mut self) -> Vec { + self.remaining_bytes().unwrap_or_default() + } + + pub fn read_byte_array(&mut self) -> Result, BinaryError> { + self.read() + } + + pub fn position(&self) -> u64 { + self.0.position() + } +} + +pub(crate) fn read_be( + reader: &mut BinaryReader<'_>, +) -> Result<[u8; N], BinaryError> { + let mut bytes = [0u8; N]; + reader.read_exact(&mut bytes)?; + Ok(bytes) +} diff --git a/crates/yoki_binutils/src/binary_writer.rs b/crates/yoki_binutils/src/binary_writer.rs new file mode 100644 index 00000000..f181f749 --- /dev/null +++ b/crates/yoki_binutils/src/binary_writer.rs @@ -0,0 +1,52 @@ +use crate::binary_error::BinaryError; + +pub trait WriteBytes { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError>; +} + +#[derive(Default)] +pub struct BinaryWriter { + buf: Vec, +} + +impl BinaryWriter { + pub fn new() -> Self { + Self { buf: Vec::new() } + } + + pub fn write(&mut self, value: &T) -> Result<(), BinaryError> { + value.write(self) + } + + pub fn write_byte(&mut self, byte: u8) { + self.buf.push(byte); + } + + pub fn write_all(&mut self, bytes: &[u8]) { + self.buf.extend_from_slice(bytes); + } + + pub fn extend(&mut self, bytes: impl AsRef<[u8]>) { + self.write_all(bytes.as_ref()); + } + + pub fn write_byte_array(&mut self, value: &[u8]) -> Result<(), BinaryError> { + value.to_vec().write(self) + } + + pub fn len(&self) -> usize { + self.buf.len() + } + + pub fn is_empty(&self) -> bool { + self.buf.is_empty() + } + + pub fn into_inner(self) -> Vec { + self.buf + } +} + +pub(crate) fn write_be(writer: &mut BinaryWriter, bytes: [u8; N]) { + writer.write_all(&bytes); +} diff --git a/crates/yoki_binutils/src/data_types/bool.rs b/crates/yoki_binutils/src/data_types/bool.rs new file mode 100644 index 00000000..7b53e5ad --- /dev/null +++ b/crates/yoki_binutils/src/data_types/bool.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +impl ReadBytes for bool { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(reader.read_byte()? != 0) + } +} + +impl WriteBytes for bool { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + writer.write_byte(u8::from(*self)); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/f32.rs b/crates/yoki_binutils/src/data_types/f32.rs new file mode 100644 index 00000000..d4720d78 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/f32.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes, write_be}; + +impl ReadBytes for f32 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(f32::from_be_bytes(read_be::<4>(reader)?)) + } +} + +impl WriteBytes for f32 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_be(writer, self.to_be_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/f64.rs b/crates/yoki_binutils/src/data_types/f64.rs new file mode 100644 index 00000000..a806f2ae --- /dev/null +++ b/crates/yoki_binutils/src/data_types/f64.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes, write_be}; + +impl ReadBytes for f64 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(f64::from_be_bytes(read_be::<8>(reader)?)) + } +} + +impl WriteBytes for f64 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_be(writer, self.to_be_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/i32.rs b/crates/yoki_binutils/src/data_types/i32.rs new file mode 100644 index 00000000..89728b2b --- /dev/null +++ b/crates/yoki_binutils/src/data_types/i32.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes, write_be}; + +impl ReadBytes for i32 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(i32::from_be_bytes(read_be::<4>(reader)?)) + } +} + +impl WriteBytes for i32 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_be(writer, self.to_be_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/i64.rs b/crates/yoki_binutils/src/data_types/i64.rs new file mode 100644 index 00000000..298d9044 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/i64.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes, write_be}; + +impl ReadBytes for i64 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(i64::from_be_bytes(read_be::<8>(reader)?)) + } +} + +impl WriteBytes for i64 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_be(writer, self.to_be_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/i8.rs b/crates/yoki_binutils/src/data_types/i8.rs new file mode 100644 index 00000000..04c57738 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/i8.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +impl ReadBytes for i8 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(reader.read_byte()? as i8) + } +} + +impl WriteBytes for i8 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + writer.write_byte(*self as u8); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/mod.rs b/crates/yoki_binutils/src/data_types/mod.rs new file mode 100644 index 00000000..fec0d817 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/mod.rs @@ -0,0 +1,19 @@ +mod bool; +mod f32; +mod f64; +mod i32; +mod i64; +mod i8; +mod nbt; +mod option; +mod optional; +mod string; +mod u16; +mod u8; +mod uuid; +mod var_int; +mod vec; + +pub use nbt::{NbtTag, NbtWriteOptions, json_to_nbt, write_network_nbt}; +pub use optional::Omitted; +pub use var_int::VarInt; diff --git a/crates/yoki_binutils/src/data_types/nbt.rs b/crates/yoki_binutils/src/data_types/nbt.rs new file mode 100644 index 00000000..6e0673bf --- /dev/null +++ b/crates/yoki_binutils/src/data_types/nbt.rs @@ -0,0 +1,226 @@ +use std::collections::BTreeMap; + +use crate::binary_error::BinaryError; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +#[derive(Debug, Clone, PartialEq)] +pub enum NbtTag { + Byte(i8), + Short(i16), + Int(i32), + Long(i64), + Float(f32), + Double(f64), + String(String), + List(Vec), + Compound(BTreeMap), + LongArray(Vec), +} + +#[derive(Clone, Copy, Debug, Default)] +pub struct NbtWriteOptions { + pub nameless_root: bool, + pub dynamic_lists: bool, +} + +impl NbtWriteOptions { + pub const fn network() -> Self { + Self { + nameless_root: true, + dynamic_lists: true, + } + } +} + +impl NbtTag { + pub fn byte(value: bool) -> Self { + Self::Byte(i8::from(value)) + } + + pub fn string(value: impl Into) -> Self { + Self::String(value.into()) + } + + pub fn compound(entries: BTreeMap) -> Self { + Self::Compound(entries) + } +} + +pub fn write_network_nbt( + writer: &mut BinaryWriter, + root: &NbtTag, + options: NbtWriteOptions, +) -> Result<(), BinaryError> { + match root { + NbtTag::Compound(entries) => { + writer.write_byte(10); + if !options.nameless_root { + write_nbt_string(writer, "")?; + } + write_compound_payload(writer, entries, options)?; + Ok(()) + } + _ => Err(BinaryError::Custom( + "network NBT root must be a compound".into(), + )), + } +} + +fn write_compound_payload( + writer: &mut BinaryWriter, + entries: &BTreeMap, + options: NbtWriteOptions, +) -> Result<(), BinaryError> { + for (name, tag) in entries { + write_named_tag(writer, name, tag, options)?; + } + writer.write_byte(0); + Ok(()) +} + +fn write_named_tag( + writer: &mut BinaryWriter, + name: &str, + tag: &NbtTag, + options: NbtWriteOptions, +) -> Result<(), BinaryError> { + writer.write_byte(tag_type(tag)); + write_nbt_string(writer, name)?; + write_tag_payload(writer, tag, options)?; + Ok(()) +} + +fn write_tag_payload( + writer: &mut BinaryWriter, + tag: &NbtTag, + options: NbtWriteOptions, +) -> Result<(), BinaryError> { + match tag { + NbtTag::Byte(value) => writer.write_byte(*value as u8), + NbtTag::Short(value) => writer.write_all(&value.to_be_bytes()), + NbtTag::Int(value) => writer.write_all(&value.to_be_bytes()), + NbtTag::Long(value) => writer.write_all(&value.to_be_bytes()), + NbtTag::Float(value) => writer.write_all(&value.to_be_bytes()), + NbtTag::Double(value) => writer.write_all(&value.to_be_bytes()), + NbtTag::String(value) => write_nbt_string(writer, value)?, + NbtTag::List(values) => write_list_payload(writer, values, options)?, + NbtTag::Compound(entries) => write_compound_payload(writer, entries, options)?, + NbtTag::LongArray(values) => { + writer.write_all(&(values.len() as i32).to_be_bytes()); + for value in values { + writer.write_all(&value.to_be_bytes()); + } + } + } + Ok(()) +} + +fn write_list_payload( + writer: &mut BinaryWriter, + values: &[NbtTag], + options: NbtWriteOptions, +) -> Result<(), BinaryError> { + if values.is_empty() { + writer.write_byte(0); + writer.write_all(&0i32.to_be_bytes()); + return Ok(()); + } + + let first_type = tag_type(&values[0]); + let is_heterogeneous = values.iter().any(|value| tag_type(value) != first_type); + + if is_heterogeneous { + if !options.dynamic_lists { + return Err(BinaryError::Custom( + "heterogeneous NBT lists require dynamic_lists".into(), + )); + } + + writer.write_byte(10); + writer.write_all(&(values.len() as i32).to_be_bytes()); + for value in values { + writer.write_byte(tag_type(value)); + write_nbt_string(writer, "")?; + write_tag_payload(writer, value, options)?; + writer.write_byte(0); + } + return Ok(()); + } + + writer.write_byte(first_type); + writer.write_all(&(values.len() as i32).to_be_bytes()); + for value in values { + write_tag_payload(writer, value, options)?; + } + Ok(()) +} + +fn write_nbt_string(writer: &mut BinaryWriter, value: &str) -> Result<(), BinaryError> { + let bytes = value.as_bytes(); + if bytes.len() > i16::MAX as usize { + return Err(BinaryError::Custom("NBT string too long".into())); + } + writer.write_all(&(bytes.len() as u16).to_be_bytes()); + writer.write_all(bytes); + Ok(()) +} + +fn tag_type(tag: &NbtTag) -> u8 { + match tag { + NbtTag::Byte(_) => 1, + NbtTag::Short(_) => 2, + NbtTag::Int(_) => 3, + NbtTag::Long(_) => 4, + NbtTag::Float(_) => 5, + NbtTag::Double(_) => 6, + NbtTag::String(_) => 8, + NbtTag::List(_) => 9, + NbtTag::Compound(_) => 10, + NbtTag::LongArray(_) => 12, + } +} + +pub fn json_to_nbt(value: &serde_json::Value) -> Option { + match value { + serde_json::Value::Null => None, + serde_json::Value::Bool(value) => Some(NbtTag::byte(*value)), + serde_json::Value::Number(number) => { + if let Some(value) = number.as_i64() { + if (-128..=127).contains(&value) { + Some(NbtTag::Byte(value as i8)) + } else if (-2147483648..=2147483647).contains(&value) { + Some(NbtTag::Int(value as i32)) + } else { + Some(NbtTag::Long(value)) + } + } else if let Some(value) = number.as_f64() { + if value.fract() == 0.0 && (-2147483648.0..=2147483647.0).contains(&value) { + Some(NbtTag::Int(value as i32)) + } else { + Some(NbtTag::Double(value)) + } + } else { + None + } + } + serde_json::Value::String(value) => Some(NbtTag::String(value.clone())), + serde_json::Value::Array(values) => Some(NbtTag::List( + values.iter().filter_map(json_to_nbt).collect(), + )), + serde_json::Value::Object(map) => { + let mut entries = BTreeMap::new(); + for (key, value) in map { + if let Some(tag) = json_to_nbt(value) { + entries.insert(key.clone(), tag); + } + } + Some(NbtTag::Compound(entries)) + } + } +} + +impl WriteBytes for NbtTag { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_network_nbt(writer, self, NbtWriteOptions::network()) + } +} diff --git a/crates/yoki_binutils/src/data_types/option.rs b/crates/yoki_binutils/src/data_types/option.rs new file mode 100644 index 00000000..e1fc1645 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/option.rs @@ -0,0 +1,28 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +impl ReadBytes for Option { + fn read(reader: &mut BinaryReader<'_>) -> Result { + if bool::read(reader)? { + Ok(Some(T::read(reader)?)) + } else { + Ok(None) + } + } +} + +impl WriteBytes for Option { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + match self { + Some(value) => { + true.write(writer)?; + value.write(writer)?; + } + None => { + false.write(writer)?; + } + } + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/optional.rs b/crates/yoki_binutils/src/data_types/optional.rs new file mode 100644 index 00000000..1206cf56 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/optional.rs @@ -0,0 +1,42 @@ +use crate::ProtocolError; +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; +use crate::protocol::{ProtocolRead, ProtocolWrite}; + +#[derive(Clone, Debug)] +pub enum Omitted { + None, + Some(T), +} + +impl ReadBytes for Omitted { + fn read(reader: &mut BinaryReader<'_>) -> Result { + if reader.remaining() == 0 { + Ok(Self::None) + } else { + Ok(Self::Some(T::read(reader)?)) + } + } +} + +impl WriteBytes for Omitted { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + if let Self::Some(value) = self { + value.write(writer)?; + } + Ok(()) + } +} + +impl ProtocolWrite for Omitted { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + +impl ProtocolRead for Omitted { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) + } +} diff --git a/crates/yoki_binutils/src/data_types/string.rs b/crates/yoki_binutils/src/data_types/string.rs new file mode 100644 index 00000000..6990c4e1 --- /dev/null +++ b/crates/yoki_binutils/src/data_types/string.rs @@ -0,0 +1,25 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; +use crate::data_types::VarInt; + +impl ReadBytes for String { + fn read(reader: &mut BinaryReader<'_>) -> Result { + let len = VarInt::read(reader)?.inner() as usize; + if reader.remaining() < len { + return Err(BinaryError::UnexpectedEof); + } + + let mut buf = vec![0u8; len]; + reader.read_exact(&mut buf)?; + String::from_utf8(buf).map_err(BinaryError::from) + } +} + +impl WriteBytes for String { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + VarInt::from(self.len() as i32).write(writer)?; + writer.write_all(self.as_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/u16.rs b/crates/yoki_binutils/src/data_types/u16.rs new file mode 100644 index 00000000..3c3a025d --- /dev/null +++ b/crates/yoki_binutils/src/data_types/u16.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes, write_be}; + +impl ReadBytes for u16 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + Ok(u16::from_be_bytes(read_be::<2>(reader)?)) + } +} + +impl WriteBytes for u16 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + write_be(writer, self.to_be_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/u8.rs b/crates/yoki_binutils/src/data_types/u8.rs new file mode 100644 index 00000000..802be46c --- /dev/null +++ b/crates/yoki_binutils/src/data_types/u8.rs @@ -0,0 +1,16 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +impl ReadBytes for u8 { + fn read(reader: &mut BinaryReader<'_>) -> Result { + reader.read_byte() + } +} + +impl WriteBytes for u8 { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + writer.write_byte(*self); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/uuid.rs b/crates/yoki_binutils/src/data_types/uuid.rs new file mode 100644 index 00000000..59ddfaaf --- /dev/null +++ b/crates/yoki_binutils/src/data_types/uuid.rs @@ -0,0 +1,19 @@ +use uuid::Uuid; + +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes, read_be}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +impl ReadBytes for Uuid { + fn read(reader: &mut BinaryReader<'_>) -> Result { + let bytes = read_be::<16>(reader)?; + Uuid::from_slice(&bytes).map_err(|_| BinaryError::InvalidUuid) + } +} + +impl WriteBytes for Uuid { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + writer.write_all(self.as_bytes()); + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/data_types/var_int.rs b/crates/yoki_binutils/src/data_types/var_int.rs new file mode 100644 index 00000000..66191b4d --- /dev/null +++ b/crates/yoki_binutils/src/data_types/var_int.rs @@ -0,0 +1,106 @@ +use std::num::TryFromIntError; + +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; + +pub const SEGMENT_BITS: u8 = 0x7F; +pub const CONTINUE_BIT: u8 = 0x80; + +#[derive(Debug, Default, Clone, PartialEq, PartialOrd, Eq, Hash, Ord)] +pub struct VarInt(i32); + +impl ReadBytes for VarInt { + #[inline] + fn read(reader: &mut BinaryReader<'_>) -> Result { + let mut num_read = 0; + let mut result: u32 = 0; + + loop { + let byte = reader.read_byte()?; + let value = (byte & SEGMENT_BITS) as u32; + result |= value << (7 * num_read); + + num_read += 1; + if num_read > 5 { + return Err(BinaryError::VarIntTooBig); + } + + if byte & CONTINUE_BIT == 0 { + break; + } + } + + Ok(Self(result as i32)) + } +} + +impl WriteBytes for VarInt { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + let mut value = self.0 as u32; + + while value >= 0x80 { + writer.write_byte((value as u8) | CONTINUE_BIT); + value >>= 7; + } + + writer.write_byte(value as u8); + Ok(()) + } +} + +impl VarInt { + pub fn new(value: i32) -> Self { + Self(value) + } + + pub fn inner(&self) -> i32 { + self.0 + } + + pub fn to_bytes(&self) -> Vec { + let mut writer = BinaryWriter::new(); + self.write(&mut writer).expect("varint write is infallible"); + writer.into_inner() + } +} + +impl From for VarInt { + fn from(value: i32) -> Self { + Self(value) + } +} + +impl From<&i32> for VarInt { + fn from(value: &i32) -> Self { + Self::from(*value) + } +} + +impl From for VarInt { + fn from(value: u32) -> Self { + Self(value as i32) + } +} + +impl From<&u32> for VarInt { + fn from(value: &u32) -> Self { + Self::from(*value) + } +} + +impl TryFrom for VarInt { + type Error = TryFromIntError; + + fn try_from(value: i64) -> Result { + Ok(Self::from(i32::try_from(value)?)) + } +} + +impl TryFrom for VarInt { + type Error = TryFromIntError; + + fn try_from(value: usize) -> Result { + Ok(Self::from(i32::try_from(value)?)) + } +} diff --git a/crates/yoki_binutils/src/data_types/vec.rs b/crates/yoki_binutils/src/data_types/vec.rs new file mode 100644 index 00000000..683df52c --- /dev/null +++ b/crates/yoki_binutils/src/data_types/vec.rs @@ -0,0 +1,25 @@ +use crate::binary_error::BinaryError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; +use crate::data_types::VarInt; + +impl ReadBytes for Vec { + fn read(reader: &mut BinaryReader<'_>) -> Result { + let len = VarInt::read(reader)?.inner() as usize; + let mut items = Vec::with_capacity(len); + for _ in 0..len { + items.push(T::read(reader)?); + } + Ok(items) + } +} + +impl WriteBytes for Vec { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + VarInt::from(self.len() as i32).write(writer)?; + for item in self { + item.write(writer)?; + } + Ok(()) + } +} diff --git a/crates/yoki_binutils/src/error.rs b/crates/yoki_binutils/src/error.rs index 6e750a26..d380849f 100644 --- a/crates/yoki_binutils/src/error.rs +++ b/crates/yoki_binutils/src/error.rs @@ -2,12 +2,15 @@ use std::fmt; use minecraft_protocol::State; +use crate::binary_error::BinaryError; + #[derive(Debug, Clone, PartialEq, Eq)] pub enum ProtocolError { UnexpectedEof, VarIntTooBig, InvalidUtf8, InvalidUuid, + InvalidIdentifier(String), InvalidIntent(i32), UnknownPacket { id: i32, conn: Option }, Io(String), @@ -20,6 +23,7 @@ impl fmt::Display for ProtocolError { Self::VarIntTooBig => f.write_str("varint is too big"), Self::InvalidUtf8 => f.write_str("invalid UTF-8 string"), Self::InvalidUuid => f.write_str("invalid UUID"), + Self::InvalidIdentifier(value) => f.write_str(&format!("invalid identifier: {value}")), Self::InvalidIntent(v) => f.write_str(&format!("unknown handshake intent: {v}")), Self::UnknownPacket { id, conn } => f.write_str(&format!( "unknown packet id: 0x{id:02X}, connection state: {conn:?}" @@ -36,3 +40,17 @@ impl From for ProtocolError { Self::Io(err.to_string()) } } + +impl From for ProtocolError { + fn from(err: BinaryError) -> Self { + match err { + BinaryError::UnexpectedEof => Self::UnexpectedEof, + BinaryError::VarIntTooBig | BinaryError::VarLongTooBig => Self::VarIntTooBig, + BinaryError::InvalidUtf8(_) => Self::InvalidUtf8, + BinaryError::InvalidUuid => Self::InvalidUuid, + BinaryError::InvalidIdentifier(value) => Self::InvalidIdentifier(value), + BinaryError::Custom(message) => Self::Io(message), + BinaryError::Io(err) => Self::Io(err.to_string()), + } + } +} diff --git a/crates/yoki_binutils/src/lib.rs b/crates/yoki_binutils/src/lib.rs index 527ce355..69ce10d1 100644 --- a/crates/yoki_binutils/src/lib.rs +++ b/crates/yoki_binutils/src/lib.rs @@ -1,7 +1,12 @@ +pub mod binary_error; +pub mod binary_reader; +pub mod binary_writer; +pub mod data_types; pub mod error; pub mod protocol; -pub mod reader; -pub mod writer; +pub use binary_error::BinaryError; +pub use binary_reader::{BinaryReader, ReadBytes}; +pub use binary_writer::{BinaryWriter, WriteBytes}; pub use error::ProtocolError; pub use protocol::{ProtocolRead, ProtocolWrite}; diff --git a/crates/yoki_binutils/src/protocol.rs b/crates/yoki_binutils/src/protocol.rs index ddaf2a8d..cc92b7aa 100644 --- a/crates/yoki_binutils/src/protocol.rs +++ b/crates/yoki_binutils/src/protocol.rs @@ -1,161 +1,58 @@ use uuid::Uuid; -use crate::error::ProtocolError; -use crate::reader::PacketReader; -use crate::writer::PacketWriter; +use crate::ProtocolError; +use crate::binary_reader::{BinaryReader, ReadBytes}; +use crate::binary_writer::{BinaryWriter, WriteBytes}; +use crate::data_types::VarInt; pub trait ProtocolRead: Sized { - fn read_from(reader: &mut PacketReader<'_>) -> Result; + fn read_from(reader: &mut BinaryReader<'_>) -> Result; } pub trait ProtocolWrite { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError>; + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError>; } -impl ProtocolRead for bool { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_bool() - } -} - -impl ProtocolWrite for bool { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_bool(*self); - Ok(()) - } -} - -impl ProtocolRead for i8 { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_i8() - } -} - -impl ProtocolWrite for i8 { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_i8(*self); - Ok(()) - } -} - -impl ProtocolRead for u8 { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_u8() - } -} - -impl ProtocolWrite for u8 { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_u8(*self); - Ok(()) - } -} - -impl ProtocolRead for u16 { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_u16() - } -} - -impl ProtocolWrite for u16 { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_u16(*self); - Ok(()) - } -} - -impl ProtocolRead for i32 { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_varint() - } -} - -impl ProtocolWrite for i32 { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_varint(*self); - Ok(()) - } -} - -impl ProtocolRead for i64 { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_i64() - } -} - -impl ProtocolWrite for i64 { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_i64(*self); - Ok(()) - } -} - -impl ProtocolRead for String { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_string() - } -} - -impl ProtocolWrite for String { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_string(self); - Ok(()) - } -} +macro_rules! impl_protocol_via_bytes { + ($($ty:ty),+ $(,)?) => { + $( + impl ProtocolRead for $ty { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) + } + } -impl ProtocolRead for Uuid { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - reader.read_uuid() - } + impl ProtocolWrite for $ty { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } + } + )+ + }; } -impl ProtocolWrite for Uuid { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_uuid(self); - Ok(()) - } -} +impl_protocol_via_bytes!(bool, i8, u8, u16, i32, i64, f32, f64, String, Uuid, VarInt,); -impl ProtocolRead for Vec { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - let len = reader.read_varint()? as usize; - let mut items = Vec::with_capacity(len); - for _ in 0..len { - items.push(T::read_from(reader)?); - } - Ok(items) +impl ProtocolRead for Vec { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) } } -impl ProtocolWrite for Vec { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - writer.write_varint(self.len() as i32); - for item in self { - item.write_to(writer)?; - } - Ok(()) +impl ProtocolWrite for Vec { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) } } -impl ProtocolRead for Option { - fn read_from(reader: &mut PacketReader<'_>) -> Result { - if reader.read_bool()? { - Ok(Some(T::read_from(reader)?)) - } else { - Ok(None) - } +impl ProtocolRead for Option { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) } } -impl ProtocolWrite for Option { - fn write_to(&self, writer: &mut PacketWriter) -> Result<(), ProtocolError> { - match self { - Some(value) => { - writer.write_bool(true); - value.write_to(writer)?; - } - None => writer.write_bool(false), - } - Ok(()) +impl ProtocolWrite for Option { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) } } diff --git a/crates/yoki_binutils/src/reader.rs b/crates/yoki_binutils/src/reader.rs deleted file mode 100644 index 96e9f665..00000000 --- a/crates/yoki_binutils/src/reader.rs +++ /dev/null @@ -1,146 +0,0 @@ -use uuid::Uuid; - -use crate::error::ProtocolError; - -pub struct PacketReader<'a> { - data: &'a [u8], - pos: usize, -} - -impl<'a> PacketReader<'a> { - pub fn new(data: &'a [u8]) -> Self { - Self { data, pos: 0 } - } - - pub fn remaining(&self) -> usize { - self.data.len().saturating_sub(self.pos) - } - - pub fn read_varint(&mut self) -> Result { - let mut num_read = 0; - let mut result = 0i32; - - loop { - if self.pos >= self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let byte = self.data[self.pos]; - self.pos += 1; - - let value = (byte & 0x7F) as i32; - result |= value << (7 * num_read); - num_read += 1; - - if num_read > 5 { - return Err(ProtocolError::VarIntTooBig); - } - - if (byte & 0x80) == 0 { - break; - } - } - - Ok(result) - } - - pub fn read_string(&mut self) -> Result { - let len = self.read_varint()? as usize; - - if self.pos + len > self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let bytes = &self.data[self.pos..self.pos + len]; - self.pos += len; - - String::from_utf8(bytes.to_vec()).map_err(|_| ProtocolError::InvalidUtf8) - } - - pub fn read_u16(&mut self) -> Result { - if self.pos + 2 > self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let value = u16::from_be_bytes([self.data[self.pos], self.data[self.pos + 1]]); - self.pos += 2; - - Ok(value) - } - - pub fn read_i64(&mut self) -> Result { - if self.pos + 8 > self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let value = i64::from_be_bytes([ - self.data[self.pos], - self.data[self.pos + 1], - self.data[self.pos + 2], - self.data[self.pos + 3], - self.data[self.pos + 4], - self.data[self.pos + 5], - self.data[self.pos + 6], - self.data[self.pos + 7], - ]); - self.pos += 8; - - Ok(value) - } - - pub fn read_uuid(&mut self) -> Result { - if self.pos + 16 > self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let bytes = &self.data[self.pos..self.pos + 16]; - self.pos += 16; - - Uuid::from_slice(bytes).map_err(|_| ProtocolError::InvalidUuid) - } - - pub fn read_bool(&mut self) -> Result { - if self.pos >= self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - - let b = self.data[self.pos]; - self.pos += 1; - - Ok(b != 0) - } - - pub fn read_byte_array(&mut self) -> Result, ProtocolError> { - let len = self.read_varint()? as usize; - if self.pos + len > self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - let bytes = self.data[self.pos..self.pos + len].to_vec(); - self.pos += len; - Ok(bytes) - } - - pub fn read_remaining_bytes(&mut self) -> Vec { - let bytes = self.data[self.pos..].to_vec(); - self.pos = self.data.len(); - bytes - } - - pub fn read_i8(&mut self) -> Result { - if self.pos >= self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - let b = self.data[self.pos] as i8; - self.pos += 1; - Ok(b) - } - - pub fn read_u8(&mut self) -> Result { - if self.pos >= self.data.len() { - return Err(ProtocolError::UnexpectedEof); - } - let b = self.data[self.pos]; - self.pos += 1; - Ok(b) - } -} diff --git a/crates/yoki_binutils/src/writer.rs b/crates/yoki_binutils/src/writer.rs deleted file mode 100644 index d40419f4..00000000 --- a/crates/yoki_binutils/src/writer.rs +++ /dev/null @@ -1,95 +0,0 @@ -pub struct PacketWriter { - buf: Vec, -} - -impl PacketWriter { - pub fn new() -> Self { - Self { buf: Vec::new() } - } - - pub fn write_varint(&mut self, mut value: i32) { - loop { - if (value & !0x7F) == 0 { - self.buf.push(value as u8); - return; - } - - self.buf.push(((value & 0x7F) | 0x80) as u8); - value >>= 7; - } - } - - pub fn write_string(&mut self, value: &str) { - self.write_varint(value.len() as i32); - self.buf.extend_from_slice(value.as_bytes()); - } - - pub fn write_i32(&mut self, value: i32) { - self.buf.extend_from_slice(&value.to_be_bytes()); - } - - pub fn write_u16(&mut self, value: u16) { - self.buf.extend_from_slice(&value.to_be_bytes()); - } - - pub fn write_i64(&mut self, value: i64) { - self.buf.extend_from_slice(&value.to_be_bytes()); - } - - pub fn write_uuid(&mut self, value: &uuid::Uuid) { - self.buf.extend_from_slice(value.as_bytes()); - } - - pub fn write_bool(&mut self, value: bool) { - self.buf.push(if value { 1 } else { 0 }); - } - - pub fn write_i8(&mut self, value: i8) { - self.buf.push(value as u8); - } - - pub fn write_u8(&mut self, value: u8) { - self.buf.push(value); - } - - pub fn write_byte_array(&mut self, value: &[u8]) { - self.write_varint(value.len() as i32); - self.buf.extend_from_slice(value); - } - - pub fn write_prefixed_optional_string(&mut self, value: Option<&str>) { - match value { - Some(s) => self.write_string(s), - None => self.write_varint(0), - } - } - - pub fn write_prefixed_optional_bytes(&mut self, value: Option<&[u8]>) { - match value { - Some(bytes) => self.write_byte_array(bytes), - None => self.write_varint(0), - } - } - - pub fn extend(&mut self, bytes: impl AsRef<[u8]>) { - self.buf.extend_from_slice(bytes.as_ref()); - } - - pub fn len(&self) -> usize { - self.buf.len() - } - - pub fn is_empty(&self) -> bool { - self.buf.is_empty() - } - - pub fn into_inner(self) -> Vec { - self.buf - } -} - -impl Default for PacketWriter { - fn default() -> Self { - Self::new() - } -} diff --git a/crates/yoki_identifier/Cargo.toml b/crates/yoki_identifier/Cargo.toml new file mode 100644 index 00000000..db68abc1 --- /dev/null +++ b/crates/yoki_identifier/Cargo.toml @@ -0,0 +1,13 @@ +[package] +name = "yoki_identifier" +version = "0.1.0" +edition = "2024" + +[dependencies] +serde = { workspace = true, optional = true } +thiserror = { workspace = true } +yoki_binutils = { path = "../yoki_binutils" } + +[features] +default = ["serde"] +serde = ["dep:serde"] diff --git a/crates/yoki_identifier/src/error.rs b/crates/yoki_identifier/src/error.rs new file mode 100644 index 00000000..20f80a0d --- /dev/null +++ b/crates/yoki_identifier/src/error.rs @@ -0,0 +1,11 @@ +use thiserror::Error; + +#[derive(Debug, Clone, PartialEq, Eq, Error)] +pub enum IdentifierError { + #[error("identifier must not be empty")] + Empty, + #[error("invalid namespace `{namespace}`: must match [a-z0-9.-_]")] + InvalidNamespace { namespace: String }, + #[error("invalid path `{path}`: must match [a-z0-9.-_/]")] + InvalidPath { path: String }, +} diff --git a/crates/yoki_identifier/src/identifier.rs b/crates/yoki_identifier/src/identifier.rs new file mode 100644 index 00000000..93604854 --- /dev/null +++ b/crates/yoki_identifier/src/identifier.rs @@ -0,0 +1,120 @@ +use std::fmt; +use std::str::FromStr; + +use crate::error::IdentifierError; + +pub const MINECRAFT_NAMESPACE: &str = "minecraft"; + +#[derive(Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] +pub struct Identifier { + namespace: String, + path: String, +} + +impl Identifier { + pub fn new( + namespace: impl Into, + path: impl Into, + ) -> Result { + let namespace = namespace.into(); + let path = path.into(); + + if !is_valid_namespace(&namespace) { + return Err(IdentifierError::InvalidNamespace { namespace }); + } + + if !is_valid_path(&path) { + return Err(IdentifierError::InvalidPath { path }); + } + + Ok(Self { namespace, path }) + } + + pub fn minecraft(path: impl Into) -> Result { + Self::new(MINECRAFT_NAMESPACE, path) + } + + pub fn parse(input: &str) -> Result { + if input.is_empty() { + return Err(IdentifierError::Empty); + } + + match input.split_once(':') { + Some((namespace, path)) => Self::new(namespace, path), + None => Self::minecraft(input), + } + } + + pub fn namespace(&self) -> &str { + &self.namespace + } + + pub fn path(&self) -> &str { + &self.path + } + + pub fn as_str(&self) -> String { + format!("{}:{}", self.namespace, self.path) + } + + pub fn is_minecraft(&self) -> bool { + self.namespace == MINECRAFT_NAMESPACE + } +} + +impl fmt::Display for Identifier { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + write!(f, "{}:{}", self.namespace, self.path) + } +} + +impl FromStr for Identifier { + type Err = IdentifierError; + + fn from_str(s: &str) -> Result { + Self::parse(s) + } +} + +#[cfg(feature = "serde")] +impl serde::Serialize for Identifier { + fn serialize(&self, serializer: S) -> Result + where + S: serde::Serializer, + { + serializer.serialize_str(&self.to_string()) + } +} + +#[cfg(feature = "serde")] +impl<'de> serde::Deserialize<'de> for Identifier { + fn deserialize(deserializer: D) -> Result + where + D: serde::Deserializer<'de>, + { + let value = ::deserialize(deserializer)?; + Self::parse(&value).map_err(serde::de::Error::custom) + } +} + +fn is_valid_namespace(value: &str) -> bool { + !value.is_empty() && value.bytes().all(is_namespace_byte) +} + +fn is_valid_path(value: &str) -> bool { + !value.is_empty() && value.bytes().all(is_path_byte) +} + +const fn is_namespace_byte(byte: u8) -> bool { + matches!( + byte, + b'a'..=b'z' | b'0'..=b'9' | b'.' | b'-' | b'_' + ) +} + +const fn is_path_byte(byte: u8) -> bool { + matches!( + byte, + b'a'..=b'z' | b'0'..=b'9' | b'.' | b'-' | b'_' | b'/' + ) +} diff --git a/crates/yoki_identifier/src/lib.rs b/crates/yoki_identifier/src/lib.rs new file mode 100644 index 00000000..3e4e00de --- /dev/null +++ b/crates/yoki_identifier/src/lib.rs @@ -0,0 +1,6 @@ +mod error; +mod identifier; +mod protocol; + +pub use error::IdentifierError; +pub use identifier::{Identifier, MINECRAFT_NAMESPACE}; diff --git a/crates/yoki_identifier/src/protocol.rs b/crates/yoki_identifier/src/protocol.rs new file mode 100644 index 00000000..90eb7776 --- /dev/null +++ b/crates/yoki_identifier/src/protocol.rs @@ -0,0 +1,31 @@ +use yoki_binutils::{ + BinaryError, BinaryReader, BinaryWriter, ProtocolError, ProtocolRead, ProtocolWrite, ReadBytes, + WriteBytes, +}; + +use crate::Identifier; + +impl ReadBytes for Identifier { + fn read(reader: &mut BinaryReader<'_>) -> Result { + let value = String::read(reader)?; + Self::parse(&value).map_err(|err| BinaryError::InvalidIdentifier(err.to_string())) + } +} + +impl WriteBytes for Identifier { + fn write(&self, writer: &mut BinaryWriter) -> Result<(), BinaryError> { + self.to_string().write(writer) + } +} + +impl ProtocolWrite for Identifier { + fn write_to(&self, writer: &mut BinaryWriter) -> Result<(), ProtocolError> { + self.write(writer).map_err(Into::into) + } +} + +impl ProtocolRead for Identifier { + fn read_from(reader: &mut BinaryReader<'_>) -> Result { + reader.read().map_err(Into::into) + } +} diff --git a/crates/yoki_macros/Cargo.toml b/crates/yoki_macros/Cargo.toml index 5f61d561..ca8c87fb 100644 --- a/crates/yoki_macros/Cargo.toml +++ b/crates/yoki_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "yoki_macros" version = "0.1.0" -edition = "2021" +edition = "2024" [lib] proc-macro = true @@ -11,3 +11,5 @@ proc-macro2 = { workspace = true } quote = { workspace = true } syn = { workspace = true } thiserror = { workspace = true } +serde = { workspace = true } +serde_json = { workspace = true } \ No newline at end of file diff --git a/crates/yoki_macros/src/attrs.rs b/crates/yoki_macros/src/attrs.rs index 1025a3e5..4d496ff8 100644 --- a/crates/yoki_macros/src/attrs.rs +++ b/crates/yoki_macros/src/attrs.rs @@ -1,61 +1,6 @@ use proc_macro2::TokenStream as TokenStream2; use syn::spanned::Spanned; -use syn::{Field, Ident, LitInt, LitStr, Type}; - -pub fn parse_packet_id(input: &syn::DeriveInput) -> syn::Result { - for attr in &input.attrs { - if !attr.path().is_ident("packet") { - continue; - } - - let mut id = None; - - attr.parse_nested_meta(|meta| { - if meta.path.is_ident("id") { - let value: LitInt = meta.value()?.parse()?; - id = Some(lit_int_to_i32(&value)?); - } - Ok(()) - })?; - - if let Some(id) = id { - return Ok(id); - } - } - - Err(syn::Error::new( - input.ident.span(), - "missing #[packet(id = ...)] attribute", - )) -} - -pub fn has_packet_flag(input: &syn::DeriveInput, flag: &str) -> bool { - input.attrs.iter().any(|attr| { - if !attr.path().is_ident("packet") { - return false; - } - - let mut found = false; - let _ = attr.parse_nested_meta(|meta| { - if meta.path.is_ident(flag) { - found = true; - } - Ok(()) - }); - found - }) -} - -pub fn lit_int_to_i32(value: &LitInt) -> syn::Result { - let s = value.to_string(); - if let Some(hex) = s.strip_prefix("0x").or_else(|| s.strip_prefix("0X")) { - i32::from_str_radix(hex, 16) - .map_err(|_| syn::Error::new(value.span(), "invalid hex packet id")) - } else { - s.parse() - .map_err(|_| syn::Error::new(value.span(), "invalid packet id")) - } -} +use syn::{Field, Ident, LitStr, Type}; pub fn field_has_protocol_flag(field: &Field, flag: &str) -> bool { field.attrs.iter().any(|attr| { @@ -76,10 +21,10 @@ pub fn field_has_protocol_flag(field: &Field, flag: &str) -> bool { pub fn field_present_if(field: &Field) -> Option { for attr in &field.attrs { - if attr.path().is_ident("present_if") { - if let Ok(value) = attr.parse_args::() { - return Some(Ident::new(&value.value(), value.span())); - } + if attr.path().is_ident("present_if") + && let Ok(value) = attr.parse_args::() + { + return Some(Ident::new(&value.value(), value.span())); } } @@ -118,17 +63,17 @@ pub fn generate_field_decode(field: &Field) -> TokenStream2 { } if field_has_protocol_flag(field, "remaining") { - return quote::quote! { #name: reader.read_remaining_bytes(), }; + return quote::quote! { #name: reader.take_remaining_bytes(), }; } if field_has_protocol_flag(field, "remaining_option") { - return quote::quote! { #name: Some(reader.read_remaining_bytes()), }; + return quote::quote! { #name: Some(reader.take_remaining_bytes()), }; } if let Some(present_field) = field_present_if(field) { return quote::quote! { #name: if #present_field { - reader.read_remaining_bytes() + reader.take_remaining_bytes() } else { ::std::vec::Vec::new() }, @@ -173,7 +118,7 @@ pub fn generate_field_encode(field: &Field) -> TokenStream2 { } if is_vec_u8(ty) { - return quote::quote! { writer.write_byte_array(&self.#name); }; + return quote::quote! { writer.write_byte_array(&self.#name)?; }; } quote::quote! { yoki_binutils::ProtocolWrite::write_to(&self.#name, writer)?; } @@ -192,7 +137,7 @@ pub fn parse_protocol_id_attr(attrs: &[syn::Attribute]) -> syn::Result syn::Result()?); } else if meta.path.is_ident("id") { - id = Some(lit_int_to_i32(&meta.value()?.parse::()?)?); + name = Some(meta.value()?.parse::()?); } Ok(()) })?; @@ -208,14 +153,14 @@ pub fn parse_protocol_id_attr(attrs: &[syn::Attribute]) -> syn::Result syn::Result { diff --git a/crates/yoki_macros/src/expand.rs b/crates/yoki_macros/src/expand.rs index 18768729..507eb545 100644 --- a/crates/yoki_macros/src/expand.rs +++ b/crates/yoki_macros/src/expand.rs @@ -2,7 +2,7 @@ use crate::find_min_max_variants::find_min_max_variants; use crate::parsed_variant::ParsedVariant; use proc_macro::TokenStream; use quote::quote; -use syn::{parse_macro_input, Data, DeriveInput, Error}; +use syn::{Data, DeriveInput, Error, parse_macro_input}; pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); @@ -17,7 +17,6 @@ pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { } }; - // Parse all variants into our structured format. let parsed_variants: Vec = match data_enum .variants .iter() @@ -28,7 +27,6 @@ pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { Err(err) => return err.to_compile_error().into(), }; - // Find the min and max "real" versions. let (min_variant_ident, max_variant_ident) = match find_min_max_variants(&parsed_variants, enum_ident.span()) { Ok(idents) => idents, @@ -55,7 +53,6 @@ pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { .unwrap() .discriminant_value; - // Generate the code for each impl block by iterating over `parsed_variants`. let display_arms = parsed_variants.iter().map(|v| { let variant_ident = v.ident; quote! { #enum_ident::#variant_ident => f.write_str(stringify!(#variant_ident)) } @@ -102,7 +99,6 @@ pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { quote! { #enum_ident::#variant_ident } }); - // Assemble the final TokenStream. let expanded = quote! { impl std::fmt::Display for #enum_ident { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { @@ -150,37 +146,30 @@ pub fn expand_protocol_version_derive(input: TokenStream) -> TokenStream { }) } - /// Returns the protocol version number by casting the enum to an i32. pub fn version_number(&self) -> i32 { *self as i32 } - /// Returns the human-readable version string (e.g., "1.18.2"). pub fn humanize(&self) -> &'static str { match self { #(#humanize_arms),* } } - /// Returns the protocol version this version reports as. pub fn packets(&self) -> ProtocolVersion { match self { #(#packets_arms),* } } - /// Returns the protocol version this version gets its data from. pub fn data(&self) -> ProtocolVersion { match self { #(#data_arms),* } } - /// Returns the known packs for this protocol version. pub fn known_packs(&self) -> &'static [&'static str] { match self { #(#known_packs_arms),* } } - /// Returns the latest real protocol version (ignores special values like `Any`). pub fn latest() -> Self { #enum_ident::#max_variant_ident } - /// Returns the oldest real protocol version (ignores special values like `Any`). pub fn oldest() -> Self { #enum_ident::#min_variant_ident } diff --git a/crates/yoki_macros/src/find_min_max_variants.rs b/crates/yoki_macros/src/find_min_max_variants.rs index 8e9e71ff..3cbac9e5 100644 --- a/crates/yoki_macros/src/find_min_max_variants.rs +++ b/crates/yoki_macros/src/find_min_max_variants.rs @@ -1,7 +1,6 @@ use crate::parsed_variant::ParsedVariant; use syn::{Error, Ident, Result}; -/// Finds the oldest and latest "real" (non-negative) variants. pub fn find_min_max_variants<'a>( variants: &'a [ParsedVariant<'a>], enum_span: proc_macro2::Span, diff --git a/crates/yoki_macros/src/lib.rs b/crates/yoki_macros/src/lib.rs index 598a88ef..dfb4cce2 100644 --- a/crates/yoki_macros/src/lib.rs +++ b/crates/yoki_macros/src/lib.rs @@ -9,12 +9,12 @@ mod pvn_attribute; use proc_macro::TokenStream; -#[proc_macro_derive(PacketIn, attributes(packet, protocol, present_if))] +#[proc_macro_derive(PacketIn, attributes(protocol, present_if))] pub fn derive_packet_in(input: TokenStream) -> TokenStream { packet_in::expand(input) } -#[proc_macro_derive(PacketOut, attributes(packet, protocol, present_if))] +#[proc_macro_derive(PacketOut, attributes(protocol, present_if))] pub fn derive_packet_out(input: TokenStream) -> TokenStream { packet_out::expand(input) } diff --git a/crates/yoki_macros/src/packet_in.rs b/crates/yoki_macros/src/packet_in.rs index 2a9236ae..48da5ef4 100644 --- a/crates/yoki_macros/src/packet_in.rs +++ b/crates/yoki_macros/src/packet_in.rs @@ -1,9 +1,9 @@ use proc_macro::TokenStream; use proc_macro2::TokenStream as TokenStream2; use quote::quote; -use syn::{parse_macro_input, Data, DeriveInput, Fields}; +use syn::{Data, DeriveInput, Fields, parse_macro_input}; -use crate::attrs::{generate_field_decode, has_packet_flag, parse_packet_id}; +use crate::attrs::generate_field_decode; pub fn expand(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); @@ -14,19 +14,13 @@ pub fn expand(input: TokenStream) -> TokenStream { fn expand_derive(input: &DeriveInput) -> syn::Result { let name = &input.ident; - let id = parse_packet_id(input)?; let meta_impl = quote! { impl crate::packet::PacketMeta for #name { - const ID: i32 = #id; const DIRECTION: crate::packet::PacketDirection = crate::packet::PacketDirection::In; } }; - if has_packet_flag(input, "manual") { - return Ok(meta_impl); - } - let decode_body = match &input.data { Data::Struct(data) => match &data.fields { Fields::Named(fields) => { @@ -57,7 +51,7 @@ fn expand_derive(input: &DeriveInput) -> syn::Result { #meta_impl impl crate::packet::IncomingPacket for #name { - fn decode_payload(reader: &mut yoki_binutils::reader::PacketReader<'_>) -> Result { + fn decode_payload(reader: &mut yoki_binutils::BinaryReader<'_>) -> Result { #decode_body } } diff --git a/crates/yoki_macros/src/packet_out.rs b/crates/yoki_macros/src/packet_out.rs index a21ef792..068e10af 100644 --- a/crates/yoki_macros/src/packet_out.rs +++ b/crates/yoki_macros/src/packet_out.rs @@ -1,9 +1,9 @@ use proc_macro::TokenStream; use proc_macro2::TokenStream as TokenStream2; use quote::quote; -use syn::{parse_macro_input, Data, DeriveInput, Fields}; +use syn::{Data, DeriveInput, Fields, parse_macro_input}; -use crate::attrs::{generate_field_encode, has_packet_flag, parse_packet_id}; +use crate::attrs::generate_field_encode; pub fn expand(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); @@ -14,19 +14,13 @@ pub fn expand(input: TokenStream) -> TokenStream { fn expand_derive(input: &DeriveInput) -> syn::Result { let name = &input.ident; - let id = parse_packet_id(input)?; let meta_impl = quote! { impl crate::packet::PacketMeta for #name { - const ID: i32 = #id; const DIRECTION: crate::packet::PacketDirection = crate::packet::PacketDirection::Out; } }; - if has_packet_flag(input, "manual") { - return Ok(meta_impl); - } - let encode_body = match &input.data { Data::Struct(data) => match &data.fields { Fields::Named(fields) => { @@ -58,7 +52,7 @@ fn expand_derive(input: &DeriveInput) -> syn::Result { #meta_impl impl crate::packet::OutgoingPacket for #name { - fn encode_payload(&self, writer: &mut yoki_binutils::writer::PacketWriter) -> Result<(), yoki_binutils::ProtocolError> { + fn encode_payload(&self, writer: &mut yoki_binutils::BinaryWriter) -> Result<(), yoki_binutils::ProtocolError> { #encode_body } } diff --git a/crates/yoki_macros/src/packet_report.rs b/crates/yoki_macros/src/packet_report.rs index b052f0f7..0708b8ca 100644 --- a/crates/yoki_macros/src/packet_report.rs +++ b/crates/yoki_macros/src/packet_report.rs @@ -1,9 +1,12 @@ +use crate::attrs::{packet_type_from_variant_field, parse_protocol_id_attr, state_str_to_ident}; use proc_macro::TokenStream; use proc_macro2::TokenStream as TokenStream2; use quote::quote; -use syn::{parse_macro_input, Data, DeriveInput, Fields}; - -use crate::attrs::{packet_type_from_variant_field, parse_protocol_id_attr, state_str_to_ident}; +use serde::Deserialize; +use std::collections::HashMap; +use std::path::{Path, PathBuf}; +use std::sync::OnceLock; +use syn::{Data, DeriveInput, Fields, parse_macro_input}; pub fn expand(input: TokenStream) -> TokenStream { let input = parse_macro_input!(input as DeriveInput); @@ -16,8 +19,104 @@ struct VariantInfo { variant_ident: syn::Ident, packet_type: syn::Path, state_ident: syn::Ident, + state_str: String, bound: String, - id: i32, + name_str: String, +} + +#[derive(Deserialize)] +struct PacketEntry { + protocol_id: i32, +} + +type Registry = HashMap>>; + +static PROTOCOL_VERSION_REGISTRIES: OnceLock> = OnceLock::new(); + +fn find_data_generated_dir() -> PathBuf { + let manifest_dir = Path::new(env!("CARGO_MANIFEST_DIR")); + let mut current = manifest_dir; + + loop { + let candidate = current.join("data").join("generated"); + if candidate.is_dir() { + return candidate; + } + + match current.parent() { + Some(parent) => current = parent, + None => panic!("Couldn't find parent: {} ", current.display()), + } + } +} + +fn load_registry() -> &'static Vec<(String, Registry)> { + PROTOCOL_VERSION_REGISTRIES.get_or_init(|| { + let data_generated_dir = find_data_generated_dir(); + + let mut registries = Vec::new(); + let mut skipped_dirs = Vec::new(); + + let entries = std::fs::read_dir(&data_generated_dir).unwrap_or_else(|err| { + panic!( + "impossible de lire le dossier {}: {err}", + data_generated_dir.display() + ) + }); + + for entry in entries { + let entry = entry.expect("entrée de dossier invalide dans data/generated"); + if !entry.file_type().map(|ft| ft.is_dir()).unwrap_or(false) { + continue; + } + + let folder_name = entry.file_name().to_string_lossy().into_owned(); + + let mut chars = folder_name.chars(); + let is_valid_ident = + matches!(chars.next(), Some(c) if c.is_ascii_alphabetic() || c == '_') + && chars.all(|c| c.is_ascii_alphanumeric() || c == '_'); + if !is_valid_ident { + skipped_dirs.push(format!("{folder_name} (nom invalide)")); + continue; + } + + let packets_path = entry.path().join("reports").join("packets.json"); + if !packets_path.exists() { + skipped_dirs.push(format!("{folder_name} (pas de reports/packets.json)")); + continue; + } + + let raw = std::fs::read_to_string(&packets_path).unwrap_or_else(|err| { + panic!("impossible de lire {}: {err}", packets_path.display()) + }); + + let registry: Registry = serde_json::from_str(&raw).unwrap_or_else(|err| { + panic!("packets.json invalide dans {}: {err}", packets_path.display()) + }); + + registries.push((folder_name, registry)); + } + + if registries.is_empty() { + panic!( + "aucune version de protocole trouvée sous {}. Dossiers ignorés: [{}]", + data_generated_dir.display(), + skipped_dirs.join(", ") + ); + } + + registries.sort_by(|a, b| a.0.cmp(&b.0)); + registries + }) +} + +fn resolve_packet_id(registry: &Registry, state: &str, bound: &str, name: &str) -> Option { + registry + .get(state)? + .get(bound)? + .get(name) + .map(|e| e.protocol_id) } fn expand_derive(input: &DeriveInput) -> syn::Result { @@ -48,78 +147,141 @@ fn expand_derive(input: &DeriveInput) -> syn::Result { let packet_type = packet_type_from_variant_field(&fields.first().unwrap().ty)?; let protocol_id = parse_protocol_id_attr(&variant.attrs)?; - let state_ident = state_str_to_ident(&protocol_id.state.value())?; + + let state_str = protocol_id.state.value(); + let bound_str = protocol_id.bound.value(); + let name_str = protocol_id.name.value(); + let state_ident = state_str_to_ident(&state_str)?; + + let known_in_any_version = load_registry().iter().any(|(_, registry)| { + resolve_packet_id(registry, &state_str, &bound_str, &name_str).is_some() + }); + + if !known_in_any_version { + return Err(syn::Error::new_spanned( + &protocol_id.name, + format!( + "paquet `{name_str}` introuvable pour state=`{state_str}` bound=`{bound_str}` dans aucune version connue de data/generated" + ), + )); + } variant_infos.push(VariantInfo { variant_ident: variant.ident.clone(), packet_type, state_ident, - bound: protocol_id.bound.value(), - id: protocol_id.id, + state_str, + bound: bound_str, + name_str, }); } - let decode_arms = variant_infos - .iter() - .filter(|v| v.bound == "serverbound") - .map(|v| { - let state_ident = &v.state_ident; - let id = v.id; + let registries = load_registry(); + + let mut decode_version_arms = Vec::new(); + let mut encode_version_arms = Vec::new(); + let mut id_version_arms = Vec::new(); + + for (folder_name, registry) in registries { + let version_ident = syn::Ident::new(folder_name, proc_macro2::Span::call_site()); + + let mut decode_arms = Vec::new(); + let mut encode_arms = Vec::new(); + let mut id_arms = Vec::new(); + + for v in &variant_infos { + let Some(id) = resolve_packet_id(registry, &v.state_str, &v.bound, &v.name_str) else { + continue; + }; + let variant_ident = &v.variant_ident; + let state_ident = &v.state_ident; let packet_type = &v.packet_type; - quote! { - (minecraft_protocol::State::#state_ident, #id) => { - let packet = raw.decode::<#packet_type>()?; - return Ok(Self::#variant_ident(packet)); + + if v.bound == "serverbound" { + decode_arms.push(quote! { + (minecraft_protocol::State::#state_ident, #id) => { + let packet = raw.decode::<#packet_type>()?; + return Ok(Self::#variant_ident(packet)); + } + }); + } + + if v.bound == "clientbound" { + encode_arms.push(quote! { + Self::#variant_ident(packet) => { + let mut writer = yoki_binutils::BinaryWriter::new(); + minecraft_packet::OutgoingPacket::encode_payload(&packet, &mut writer)?; + return Ok(minecraft_packet::RawPacket { + id: #id, + payload: writer.into_inner(), + }); + } + }); + } + + id_arms.push(quote! { + Self::#variant_ident(_) => Ok((minecraft_protocol::State::#state_ident, #id)), + }); + } + + decode_version_arms.push(quote! { + protocol_version::protocol_version::ProtocolVersion::#version_ident => { + match (state, raw.id) { + #(#decode_arms)* + (state, id) => Err(yoki_binutils::ProtocolError::UnknownPacket { + id, + conn: Some(state), + }), } } }); - let encode_arms = variant_infos - .iter() - .filter(|v| v.bound == "clientbound") - .map(|v| { - let variant_ident = &v.variant_ident; - let id = v.id; - quote! { - Self::#variant_ident(packet) => { - let mut writer = yoki_binutils::writer::PacketWriter::new(); - minecraft_packet::OutgoingPacket::encode_payload(&packet, &mut writer)?; - return Ok(minecraft_packet::RawPacket { - id: #id, - payload: writer.into_inner(), - }); + encode_version_arms.push(quote! { + protocol_version::protocol_version::ProtocolVersion::#version_ident => { + match self { + #(#encode_arms)* + _ => Err(yoki_binutils::ProtocolError::UnknownPacket { + id: -1, + conn: None, + }), } } }); - let id_arms = variant_infos.iter().map(|v| { - let variant_ident = &v.variant_ident; - let state_ident = &v.state_ident; - let id = v.id; - quote! { - Self::#variant_ident(_) => (minecraft_protocol::State::#state_ident, #id), - } - }); + id_version_arms.push(quote! { + protocol_version::protocol_version::ProtocolVersion::#version_ident => match self { + #(#id_arms)* + _ => Err(yoki_binutils::ProtocolError::UnknownPacket { + id: -1, + conn: None, + }), + } + }); + } Ok(quote! { impl #enum_ident { pub fn decode_serverbound( + protocol_version: protocol_version::protocol_version::ProtocolVersion, state: minecraft_protocol::State, raw: &minecraft_packet::RawPacket, ) -> Result { - match (state, raw.id) { - #(#decode_arms)* - (state, id) => Err(yoki_binutils::ProtocolError::UnknownPacket { - id, + match protocol_version { + #(#decode_version_arms)* + _ => Err(yoki_binutils::ProtocolError::UnknownPacket { + id: raw.id, conn: Some(state), }), } } - pub fn encode_clientbound(self) -> Result { - match self { - #(#encode_arms)* + pub fn encode_clientbound( + self, + protocol_version: protocol_version::protocol_version::ProtocolVersion, + ) -> Result { + match protocol_version { + #(#encode_version_arms)* _ => Err(yoki_binutils::ProtocolError::UnknownPacket { id: -1, conn: None, @@ -127,9 +289,16 @@ fn expand_derive(input: &DeriveInput) -> syn::Result { } } - pub fn state_and_id(&self) -> (minecraft_protocol::State, i32) { - match self { - #(#id_arms)* + pub fn state_and_id( + &self, + protocol_version: protocol_version::protocol_version::ProtocolVersion, + ) -> Result<(minecraft_protocol::State, i32), yoki_binutils::ProtocolError> { + match protocol_version { + #(#id_version_arms)* + _ => Err(yoki_binutils::ProtocolError::UnknownPacket { + id: -1, + conn: None, + }), } } } diff --git a/crates/yoki_macros/src/parsed_variant.rs b/crates/yoki_macros/src/parsed_variant.rs index 29c17d29..760013cc 100644 --- a/crates/yoki_macros/src/parsed_variant.rs +++ b/crates/yoki_macros/src/parsed_variant.rs @@ -1,7 +1,6 @@ use crate::pvn_attribute::PvnAttribute; use syn::{Error, Expr, Ident, Lit, LitStr, Result, UnOp, Variant}; -/// A struct to hold all processed information from a single enum variant. pub struct ParsedVariant<'a> { pub ident: &'a Ident, pub discriminant_expr: &'a Expr, @@ -13,7 +12,6 @@ pub struct ParsedVariant<'a> { } impl<'a> ParsedVariant<'a> { - /// Parses a `syn::Variant` into a more structured `ParsedVariant`. pub fn from_variant(variant: &'a Variant) -> Result { let discriminant_expr = Self::get_discriminant_expr(variant)?; let discriminant_value = Self::parse_discriminant_value(discriminant_expr)?; @@ -40,7 +38,6 @@ impl<'a> ParsedVariant<'a> { }) } - /// Extracts the discriminant expression from a variant, erroring if it's missing. pub fn get_discriminant_expr(variant: &'a Variant) -> Result<&'a Expr> { match &variant.discriminant { Some((_, expr)) => Ok(expr), @@ -51,7 +48,6 @@ impl<'a> ParsedVariant<'a> { } } - /// Parses an `i32` value from a discriminant expression, supporting literals and negation. pub fn parse_discriminant_value(expr: &Expr) -> Result { match expr { Expr::Lit(expr_lit) => { @@ -94,7 +90,6 @@ impl<'a> ParsedVariant<'a> { } } - /// Finds and parses the `#[pvn(...)]` attribute on a variant. pub fn parse_pvn_attribute(variant: &Variant) -> Result { if let Some(attr) = variant .attrs @@ -111,7 +106,6 @@ impl<'a> ParsedVariant<'a> { } } - /// Creates a human-readable string literal from a variant identifier (e.g., `V1_18_2` -> `"1.18.2"`). pub fn humanize_variant_name(ident: &Ident) -> LitStr { let name = ident.to_string(); let humanized = if name == "Any" { diff --git a/crates/yoki_macros/src/pvn_attribute.rs b/crates/yoki_macros/src/pvn_attribute.rs index 424fe475..e9d65390 100644 --- a/crates/yoki_macros/src/pvn_attribute.rs +++ b/crates/yoki_macros/src/pvn_attribute.rs @@ -1,7 +1,6 @@ use syn::parse::{Parse, ParseStream}; use syn::{Error, Ident, LitStr, Result, Token}; -/// Parses the `#[pvn(packets = "...", data = "...", known_packs = [...])]` attribute. pub struct PvnAttribute { pub packets: Option, pub data: Option, diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 00000000..a0de0575 --- /dev/null +++ b/data/.gitignore @@ -0,0 +1,35 @@ +# dependencies (bun install) +node_modules + +# output +out +dist +*.tgz + +# code coverage +coverage +*.lcov + +# logs +logs +_.log +report.[0-9]_.[0-9]_.[0-9]_.[0-9]_.json + +# dotenv environment variable files +.env +.env.development.local +.env.test.local +.env.production.local +.env.local + +# caches +.eslintcache +.cache +*.tsbuildinfo + +# IntelliJ based IDEs +.idea + +# Finder (MacOS) folder config +.DS_Store +servers/ \ No newline at end of file diff --git a/data/README.md b/data/README.md new file mode 100644 index 00000000..f70a5959 --- /dev/null +++ b/data/README.md @@ -0,0 +1,15 @@ +# data + +To install dependencies: + +```bash +bun install +``` + +To run: + +```bash +bun run index.ts +``` + +This project was created using `bun init` in bun v1.3.14. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime. diff --git a/data/bun.lock b/data/bun.lock new file mode 100644 index 00000000..51f52b77 --- /dev/null +++ b/data/bun.lock @@ -0,0 +1,26 @@ +{ + "lockfileVersion": 1, + "configVersion": 1, + "workspaces": { + "": { + "name": "data", + "devDependencies": { + "@types/bun": "latest", + }, + "peerDependencies": { + "typescript": "^5", + }, + }, + }, + "packages": { + "@types/bun": ["@types/bun@1.3.14", "", { "dependencies": { "bun-types": "1.3.14" } }, "sha512-h1hFqFVcvAvD9j9K7ZW7vd82aSA+rTdznZa+5bwvCwqSB1jmmfLcbIWhOLx1/+boy/xmjgCs/OMUL8hRJSmnPw=="], + + "@types/node": ["@types/node@26.0.1", "", { "dependencies": { "undici-types": "~8.3.0" } }, "sha512-fc3KiUoBt6kie0N9bIW3E47vZsuaMf0PM2AaUpLCLT0s/LvX1nxAim6Fc049cNxODPpGm6qRAuUOB86SkRuPQw=="], + + "bun-types": ["bun-types@1.3.14", "", { "dependencies": { "@types/node": "*" } }, "sha512-4N0ig0fEomHt5R0KCFWjovxow98rIoRwKolrYdCcknNwMekCXRnWEUvgu5soYV8QXtVsrUD8B95MBOZGPvr6KQ=="], + + "typescript": ["typescript@5.9.3", "", { "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" } }, "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw=="], + + "undici-types": ["undici-types@8.3.0", "", {}, "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ=="], + } +} diff --git a/data/generated/Any/reports/packets.json b/data/generated/Any/reports/packets.json new file mode 100644 index 00000000..939f8712 --- /dev/null +++ b/data/generated/Any/reports/packets.json @@ -0,0 +1,27 @@ +{ + "handshake": { + "serverbound": { + "minecraft:intention": { + "protocol_id": 0 + } + } + }, + "status": { + "clientbound": { + "minecraft:pong_response": { + "protocol_id": 1 + }, + "minecraft:status_response": { + "protocol_id": 0 + } + }, + "serverbound": { + "minecraft:ping_request": { + "protocol_id": 1 + }, + "minecraft:status_request": { + "protocol_id": 0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/adventuring_time.json b/data/generated/V26_1/data/minecraft/advancement/adventure/adventuring_time.json new file mode 100644 index 00000000..29c8b68b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/adventuring_time.json @@ -0,0 +1,1049 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "minecraft:badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:bamboo_jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:bamboo_jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:beach": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:beach" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:birch_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:birch_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:cherry_grove": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:cherry_grove" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:cold_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:cold_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:dark_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:dark_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_cold_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:deep_cold_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_dark": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:deep_dark" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_frozen_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:deep_frozen_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_lukewarm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:deep_lukewarm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:deep_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:desert": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:desert" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:dripstone_caves": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:dripstone_caves" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:eroded_badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:eroded_badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:flower_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:flower_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:frozen_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:frozen_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_river": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:frozen_river" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:grove": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:grove" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:ice_spikes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:ice_spikes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:jagged_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:jagged_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:lukewarm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:lukewarm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:lush_caves": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:lush_caves" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:mangrove_swamp": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:mangrove_swamp" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:meadow": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:meadow" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:mushroom_fields": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:mushroom_fields" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_birch_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:old_growth_birch_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_pine_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:old_growth_pine_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_spruce_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:old_growth_spruce_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:pale_garden": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:pale_garden" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:river": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:river" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:savanna": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:savanna" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:savanna_plateau": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:savanna_plateau" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_beach": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:snowy_beach" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:snowy_plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_slopes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:snowy_slopes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:snowy_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:sparse_jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:sparse_jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:stony_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:stony_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:stony_shore": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:stony_shore" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:sunflower_plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:sunflower_plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:swamp": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:swamp" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:warm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:warm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:windswept_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_gravelly_hills": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:windswept_gravelly_hills" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_hills": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:windswept_hills" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_savanna": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:windswept_savanna" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:wooded_badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:wooded_badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.adventuring_time.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:diamond_boots" + }, + "title": { + "translate": "advancements.adventure.adventuring_time.title" + } + }, + "requirements": [ + [ + "minecraft:mushroom_fields" + ], + [ + "minecraft:deep_frozen_ocean" + ], + [ + "minecraft:frozen_ocean" + ], + [ + "minecraft:deep_cold_ocean" + ], + [ + "minecraft:cold_ocean" + ], + [ + "minecraft:deep_ocean" + ], + [ + "minecraft:ocean" + ], + [ + "minecraft:deep_lukewarm_ocean" + ], + [ + "minecraft:lukewarm_ocean" + ], + [ + "minecraft:warm_ocean" + ], + [ + "minecraft:stony_shore" + ], + [ + "minecraft:swamp" + ], + [ + "minecraft:mangrove_swamp" + ], + [ + "minecraft:snowy_slopes" + ], + [ + "minecraft:snowy_plains" + ], + [ + "minecraft:snowy_beach" + ], + [ + "minecraft:windswept_gravelly_hills" + ], + [ + "minecraft:grove" + ], + [ + "minecraft:windswept_hills" + ], + [ + "minecraft:snowy_taiga" + ], + [ + "minecraft:windswept_forest" + ], + [ + "minecraft:taiga" + ], + [ + "minecraft:plains" + ], + [ + "minecraft:meadow" + ], + [ + "minecraft:beach" + ], + [ + "minecraft:forest" + ], + [ + "minecraft:old_growth_spruce_taiga" + ], + [ + "minecraft:flower_forest" + ], + [ + "minecraft:birch_forest" + ], + [ + "minecraft:dark_forest" + ], + [ + "minecraft:pale_garden" + ], + [ + "minecraft:savanna_plateau" + ], + [ + "minecraft:savanna" + ], + [ + "minecraft:jungle" + ], + [ + "minecraft:badlands" + ], + [ + "minecraft:desert" + ], + [ + "minecraft:wooded_badlands" + ], + [ + "minecraft:jagged_peaks" + ], + [ + "minecraft:stony_peaks" + ], + [ + "minecraft:frozen_river" + ], + [ + "minecraft:river" + ], + [ + "minecraft:ice_spikes" + ], + [ + "minecraft:old_growth_pine_taiga" + ], + [ + "minecraft:sunflower_plains" + ], + [ + "minecraft:old_growth_birch_forest" + ], + [ + "minecraft:sparse_jungle" + ], + [ + "minecraft:bamboo_jungle" + ], + [ + "minecraft:eroded_badlands" + ], + [ + "minecraft:windswept_savanna" + ], + [ + "minecraft:cherry_grove" + ], + [ + "minecraft:frozen_peaks" + ], + [ + "minecraft:dripstone_caves" + ], + [ + "minecraft:lush_caves" + ], + [ + "minecraft:deep_dark" + ] + ], + "rewards": { + "experience": 500 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/arbalistic.json b/data/generated/V26_1/data/minecraft/advancement/adventure/arbalistic.json new file mode 100644 index 00000000..09f64c20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/arbalistic.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "arbalistic": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "unique_entity_types": 5 + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.arbalistic.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.arbalistic.title" + } + }, + "requirements": [ + [ + "arbalistic" + ] + ], + "rewards": { + "experience": 85 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/avoid_vibration.json b/data/generated/V26_1/data/minecraft/advancement/adventure/avoid_vibration.json new file mode 100644 index 00000000..528183a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/avoid_vibration.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "avoid_vibration": { + "trigger": "minecraft:avoid_vibration" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.avoid_vibration.description" + }, + "icon": { + "id": "minecraft:sculk_sensor" + }, + "title": { + "translate": "advancements.adventure.avoid_vibration.title" + } + }, + "requirements": [ + [ + "avoid_vibration" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/blowback.json b/data/generated/V26_1/data/minecraft/advancement/adventure/blowback.json new file mode 100644 index 00000000..91154bff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/blowback.json @@ -0,0 +1,51 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "blowback": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:breeze" + } + } + ], + "killing_blow": { + "direct_entity": { + "type": "minecraft:breeze_wind_charge" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.blowback.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:wind_charge" + }, + "title": { + "translate": "advancements.adventure.blowback.title" + } + }, + "requirements": [ + [ + "blowback" + ] + ], + "rewards": { + "experience": 40 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/brush_armadillo.json b/data/generated/V26_1/data/minecraft/advancement/adventure/brush_armadillo.json new file mode 100644 index 00000000..3635826c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/brush_armadillo.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "brush_armadillo": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:armadillo" + } + } + ], + "item": { + "items": "minecraft:brush" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.brush_armadillo.description" + }, + "icon": { + "id": "minecraft:armadillo_scute" + }, + "title": { + "translate": "advancements.adventure.brush_armadillo.title" + } + }, + "requirements": [ + [ + "brush_armadillo" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/bullseye.json b/data/generated/V26_1/data/minecraft/advancement/adventure/bullseye.json new file mode 100644 index 00000000..4b582dc2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/bullseye.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:adventure/shoot_arrow", + "criteria": { + "bullseye": { + "conditions": { + "projectile": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "distance": { + "horizontal": { + "min": 30.0 + } + } + } + } + ], + "signal_strength": 15 + }, + "trigger": "minecraft:target_hit" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.bullseye.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:target" + }, + "title": { + "translate": "advancements.adventure.bullseye.title" + } + }, + "requirements": [ + [ + "bullseye" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json b/data/generated/V26_1/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json new file mode 100644 index 00000000..1d126aba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json @@ -0,0 +1,50 @@ +{ + "parent": "minecraft:adventure/salvage_sherd", + "criteria": { + "pot_crafted_using_only_sherds": { + "conditions": { + "ingredients": [ + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + } + ], + "recipe_id": "minecraft:decorated_pot" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description" + }, + "icon": { + "components": { + "minecraft:pot_decorations": [ + "minecraft:brick", + "minecraft:heart_pottery_sherd", + "minecraft:brick", + "minecraft:explorer_pottery_sherd" + ] + }, + "id": "minecraft:decorated_pot" + }, + "title": { + "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title" + } + }, + "requirements": [ + [ + "pot_crafted_using_only_sherds" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/crafters_crafting_crafters.json b/data/generated/V26_1/data/minecraft/advancement/adventure/crafters_crafting_crafters.json new file mode 100644 index 00000000..1fdf0106 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/crafters_crafting_crafters.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "crafter_crafted_crafter": { + "conditions": { + "recipe_id": "minecraft:crafter" + }, + "trigger": "minecraft:crafter_recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.crafters_crafting_crafters.description" + }, + "icon": { + "id": "minecraft:crafter" + }, + "title": { + "translate": "advancements.adventure.crafters_crafting_crafters.title" + } + }, + "requirements": [ + [ + "crafter_crafted_crafter" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/fall_from_world_height.json b/data/generated/V26_1/data/minecraft/advancement/adventure/fall_from_world_height.json new file mode 100644 index 00000000..13ec0b8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/fall_from_world_height.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "fall_from_world_height": { + "conditions": { + "distance": { + "y": { + "min": 379.0 + } + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "position": { + "y": { + "max": -59.0 + } + } + } + } + } + ], + "start_position": { + "position": { + "y": { + "min": 319.0 + } + } + } + }, + "trigger": "minecraft:fall_from_height" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.fall_from_world_height.description" + }, + "icon": { + "id": "minecraft:water_bucket" + }, + "title": { + "translate": "advancements.adventure.fall_from_world_height.title" + } + }, + "requirements": [ + [ + "fall_from_world_height" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/heart_transplanter.json b/data/generated/V26_1/data/minecraft/advancement/adventure/heart_transplanter.json new file mode 100644 index 00000000..25ca3de5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/heart_transplanter.json @@ -0,0 +1,304 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "place_creaking_heart_awake": { + "conditions": { + "location": [ + { + "block": "minecraft:creaking_heart", + "condition": "minecraft:block_state_property", + "properties": { + "creaking_heart_state": "awake" + } + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "place_creaking_heart_dormant": { + "conditions": { + "location": [ + { + "block": "minecraft:creaking_heart", + "condition": "minecraft:block_state_property", + "properties": { + "creaking_heart_state": "dormant" + } + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "place_pale_oak_log": { + "conditions": { + "location": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + } + ] + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.heart_transplanter.description" + }, + "icon": { + "id": "minecraft:creaking_heart" + }, + "title": { + "translate": "advancements.adventure.heart_transplanter.title" + } + }, + "requirements": [ + [ + "place_creaking_heart_dormant", + "place_creaking_heart_awake", + "place_pale_oak_log" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/hero_of_the_village.json b/data/generated/V26_1/data/minecraft/advancement/adventure/hero_of_the_village.json new file mode 100644 index 00000000..eb8ebfd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/hero_of_the_village.json @@ -0,0 +1,75 @@ +{ + "parent": "minecraft:adventure/voluntary_exile", + "criteria": { + "hero_of_the_village": { + "trigger": "minecraft:hero_of_the_village" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.hero_of_the_village.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + }, + "minecraft:rarity": "uncommon", + "minecraft:tooltip_display": { + "hidden_components": [ + "minecraft:banner_patterns" + ] + } + }, + "id": "minecraft:white_banner" + }, + "title": { + "translate": "advancements.adventure.hero_of_the_village.title" + } + }, + "requirements": [ + [ + "hero_of_the_village" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/honey_block_slide.json b/data/generated/V26_1/data/minecraft/advancement/adventure/honey_block_slide.json new file mode 100644 index 00000000..2d1c59bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/honey_block_slide.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "honey_block_slide": { + "conditions": { + "block": "minecraft:honey_block" + }, + "trigger": "minecraft:slide_down_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.honey_block_slide.description" + }, + "icon": { + "id": "minecraft:honey_block" + }, + "title": { + "translate": "advancements.adventure.honey_block_slide.title" + } + }, + "requirements": [ + [ + "honey_block_slide" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/kill_a_mob.json b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_a_mob.json new file mode 100644 index 00000000..dab13175 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_a_mob.json @@ -0,0 +1,636 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "minecraft:blaze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:blaze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:bogged": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:bogged" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:breeze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:breeze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:camel_husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:camel_husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:cave_spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:cave_spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creaking": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:creaking" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creeper": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:creeper" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:drowned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:drowned" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:elder_guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:elder_guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ender_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:enderman": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:enderman" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:endermite": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:endermite" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:evoker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:evoker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ghast" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:hoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:magma_cube": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:magma_cube" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:parched": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:parched" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:phantom": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:phantom" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin_brute": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin_brute" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:pillager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:pillager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ravager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ravager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:shulker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:shulker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:silverfish": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:silverfish" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:slime": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:slime" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:stray": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:stray" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vex": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:vex" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vindicator": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:vindicator" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:witch": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:witch" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither_skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_horse": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_horse" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_nautilus": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_nautilus" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_villager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_villager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombified_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombified_piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_a_mob.description" + }, + "icon": { + "id": "minecraft:iron_sword" + }, + "title": { + "translate": "advancements.adventure.kill_a_mob.title" + } + }, + "requirements": [ + [ + "minecraft:blaze", + "minecraft:bogged", + "minecraft:breeze", + "minecraft:camel_husk", + "minecraft:cave_spider", + "minecraft:creaking", + "minecraft:creeper", + "minecraft:drowned", + "minecraft:elder_guardian", + "minecraft:ender_dragon", + "minecraft:enderman", + "minecraft:endermite", + "minecraft:evoker", + "minecraft:ghast", + "minecraft:guardian", + "minecraft:hoglin", + "minecraft:husk", + "minecraft:magma_cube", + "minecraft:parched", + "minecraft:phantom", + "minecraft:piglin", + "minecraft:piglin_brute", + "minecraft:pillager", + "minecraft:ravager", + "minecraft:shulker", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:stray", + "minecraft:vex", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither_skeleton", + "minecraft:wither", + "minecraft:zoglin", + "minecraft:zombie_villager", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombified_piglin", + "minecraft:zombie_nautilus" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/kill_all_mobs.json b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_all_mobs.json new file mode 100644 index 00000000..ec5f0ad0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_all_mobs.json @@ -0,0 +1,720 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "minecraft:blaze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:blaze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:bogged": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:bogged" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:breeze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:breeze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:camel_husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:camel_husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:cave_spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:cave_spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creaking": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:creaking" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creeper": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:creeper" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:drowned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:drowned" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:elder_guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:elder_guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ender_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:enderman": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:enderman" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:endermite": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:endermite" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:evoker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:evoker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ghast" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:hoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:magma_cube": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:magma_cube" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:parched": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:parched" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:phantom": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:phantom" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin_brute": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin_brute" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:pillager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:pillager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ravager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ravager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:shulker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:shulker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:silverfish": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:silverfish" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:slime": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:slime" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:stray": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:stray" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vex": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:vex" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vindicator": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:vindicator" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:witch": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:witch" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither_skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_horse": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_horse" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_nautilus": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_nautilus" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_villager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie_villager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombified_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombified_piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_all_mobs.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:diamond_sword" + }, + "title": { + "translate": "advancements.adventure.kill_all_mobs.title" + } + }, + "requirements": [ + [ + "minecraft:blaze" + ], + [ + "minecraft:bogged" + ], + [ + "minecraft:breeze" + ], + [ + "minecraft:camel_husk" + ], + [ + "minecraft:cave_spider" + ], + [ + "minecraft:creaking" + ], + [ + "minecraft:creeper" + ], + [ + "minecraft:drowned" + ], + [ + "minecraft:elder_guardian" + ], + [ + "minecraft:ender_dragon" + ], + [ + "minecraft:enderman" + ], + [ + "minecraft:endermite" + ], + [ + "minecraft:evoker" + ], + [ + "minecraft:ghast" + ], + [ + "minecraft:guardian" + ], + [ + "minecraft:hoglin" + ], + [ + "minecraft:husk" + ], + [ + "minecraft:magma_cube" + ], + [ + "minecraft:parched" + ], + [ + "minecraft:phantom" + ], + [ + "minecraft:piglin" + ], + [ + "minecraft:piglin_brute" + ], + [ + "minecraft:pillager" + ], + [ + "minecraft:ravager" + ], + [ + "minecraft:shulker" + ], + [ + "minecraft:silverfish" + ], + [ + "minecraft:skeleton" + ], + [ + "minecraft:slime" + ], + [ + "minecraft:spider" + ], + [ + "minecraft:stray" + ], + [ + "minecraft:vex" + ], + [ + "minecraft:vindicator" + ], + [ + "minecraft:witch" + ], + [ + "minecraft:wither_skeleton" + ], + [ + "minecraft:wither" + ], + [ + "minecraft:zoglin" + ], + [ + "minecraft:zombie_villager" + ], + [ + "minecraft:zombie" + ], + [ + "minecraft:zombie_horse" + ], + [ + "minecraft:zombified_piglin" + ], + [ + "minecraft:zombie_nautilus" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json new file mode 100644 index 00000000..cdd7d162 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json @@ -0,0 +1,26 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "kill_mob_near_sculk_catalyst": { + "trigger": "minecraft:kill_mob_near_sculk_catalyst" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:sculk_catalyst" + }, + "title": { + "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title" + } + }, + "requirements": [ + [ + "kill_mob_near_sculk_catalyst" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/lighten_up.json b/data/generated/V26_1/data/minecraft/advancement/adventure/lighten_up.json new file mode 100644 index 00000000..8a7c4cbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/lighten_up.json @@ -0,0 +1,61 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "lighten_up": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:oxidized_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_exposed_copper_bulb" + ], + "state": { + "lit": "true" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:wooden_axe", + "minecraft:golden_axe", + "minecraft:stone_axe", + "minecraft:copper_axe", + "minecraft:iron_axe", + "minecraft:diamond_axe", + "minecraft:netherite_axe" + ] + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.lighten_up.description" + }, + "icon": { + "id": "minecraft:copper_bulb" + }, + "title": { + "translate": "advancements.adventure.lighten_up.title" + } + }, + "requirements": [ + [ + "lighten_up" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json b/data/generated/V26_1/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json new file mode 100644 index 00000000..c5c1f599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json @@ -0,0 +1,53 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "lightning_rod_with_villager_no_fire": { + "conditions": { + "bystander": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:villager" + } + } + ], + "lightning": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "distance": { + "absolute": { + "max": 30.0 + } + }, + "type_specific": { + "type": "minecraft:lightning", + "blocks_set_on_fire": 0 + } + } + } + ] + }, + "trigger": "minecraft:lightning_strike" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description" + }, + "icon": { + "id": "minecraft:lightning_rod" + }, + "title": { + "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title" + } + }, + "requirements": [ + [ + "lightning_rod_with_villager_no_fire" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/minecraft_trials_edition.json b/data/generated/V26_1/data/minecraft/advancement/adventure/minecraft_trials_edition.json new file mode 100644 index 00000000..b226137d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/minecraft_trials_edition.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "minecraft_trials_edition": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structures": "minecraft:trial_chambers" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.minecraft_trials_edition.description" + }, + "icon": { + "id": "minecraft:chiseled_tuff" + }, + "title": { + "translate": "advancements.adventure.minecraft_trials_edition.title" + } + }, + "requirements": [ + [ + "minecraft_trials_edition" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/ol_betsy.json b/data/generated/V26_1/data/minecraft/advancement/adventure/ol_betsy.json new file mode 100644 index 00000000..589862d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/ol_betsy.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "shot_crossbow": { + "conditions": { + "item": { + "items": "minecraft:crossbow" + } + }, + "trigger": "minecraft:shot_crossbow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.ol_betsy.description" + }, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.ol_betsy.title" + } + }, + "requirements": [ + [ + "shot_crossbow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/overoverkill.json b/data/generated/V26_1/data/minecraft/advancement/adventure/overoverkill.json new file mode 100644 index 00000000..95edd780 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/overoverkill.json @@ -0,0 +1,52 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "overoverkill": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "type": "minecraft:player", + "equipment": { + "mainhand": { + "items": "minecraft:mace" + } + } + }, + "tags": [ + { + "expected": true, + "id": "minecraft:mace_smash" + } + ] + }, + "dealt": { + "min": 100.0 + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.overoverkill.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:mace" + }, + "title": { + "translate": "advancements.adventure.overoverkill.title" + } + }, + "requirements": [ + [ + "overoverkill" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json b/data/generated/V26_1/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json new file mode 100644 index 00000000..cde0a874 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "play_jukebox_in_meadows": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": "minecraft:meadow", + "block": { + "blocks": "minecraft:jukebox" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:jukebox_playable": {} + } + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.play_jukebox_in_meadows.description" + }, + "icon": { + "id": "minecraft:jukebox" + }, + "title": { + "translate": "advancements.adventure.play_jukebox_in_meadows.title" + } + }, + "requirements": [ + [ + "play_jukebox_in_meadows" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json b/data/generated/V26_1/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json new file mode 100644 index 00000000..bc61e8d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json @@ -0,0 +1,183 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "chiseled_bookshelf": { + "conditions": { + "location": [ + { + "block": "minecraft:chiseled_bookshelf", + "condition": "minecraft:block_state_property" + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "north" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "south" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "west" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "east" + } + } + } + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "comparator": { + "conditions": { + "location": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "north" + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "south" + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "west" + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "east" + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description" + }, + "icon": { + "id": "minecraft:chiseled_bookshelf" + }, + "title": { + "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title" + } + }, + "requirements": [ + [ + "chiseled_bookshelf", + "comparator" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/revaulting.json b/data/generated/V26_1/data/minecraft/advancement/adventure/revaulting.json new file mode 100644 index 00000000..b0d1a688 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/revaulting.json @@ -0,0 +1,47 @@ +{ + "parent": "minecraft:adventure/under_lock_and_key", + "criteria": { + "revaulting": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:vault", + "state": { + "ominous": "true" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:ominous_trial_key" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.revaulting.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:ominous_trial_key" + }, + "title": { + "translate": "advancements.adventure.revaulting.title" + } + }, + "requirements": [ + [ + "revaulting" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/root.json b/data/generated/V26_1/data/minecraft/advancement/adventure/root.json new file mode 100644 index 00000000..32afd18b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/root.json @@ -0,0 +1,31 @@ +{ + "criteria": { + "killed_by_something": { + "trigger": "minecraft:entity_killed_player" + }, + "killed_something": { + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/adventure", + "description": { + "translate": "advancements.adventure.root.description" + }, + "icon": { + "id": "minecraft:map" + }, + "show_toast": false, + "title": { + "translate": "advancements.adventure.root.title" + } + }, + "requirements": [ + [ + "killed_something", + "killed_by_something" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/salvage_sherd.json b/data/generated/V26_1/data/minecraft/advancement/adventure/salvage_sherd.json new file mode 100644 index 00000000..43db73ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/salvage_sherd.json @@ -0,0 +1,76 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "desert_pyramid": { + "conditions": { + "loot_table": "minecraft:archaeology/desert_pyramid" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "desert_well": { + "conditions": { + "loot_table": "minecraft:archaeology/desert_well" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "has_sherd": { + "conditions": { + "items": [ + { + "items": "#minecraft:decorated_pot_sherds" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "ocean_ruin_cold": { + "conditions": { + "loot_table": "minecraft:archaeology/ocean_ruin_cold" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "ocean_ruin_warm": { + "conditions": { + "loot_table": "minecraft:archaeology/ocean_ruin_warm" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "trail_ruins_common": { + "conditions": { + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "trail_ruins_rare": { + "conditions": { + "loot_table": "minecraft:archaeology/trail_ruins_rare" + }, + "trigger": "minecraft:player_generates_container_loot" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.salvage_sherd.description" + }, + "icon": { + "id": "minecraft:brush" + }, + "title": { + "translate": "advancements.adventure.salvage_sherd.title" + } + }, + "requirements": [ + [ + "desert_pyramid", + "desert_well", + "ocean_ruin_cold", + "ocean_ruin_warm", + "trail_ruins_rare", + "trail_ruins_common" + ], + [ + "has_sherd" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/shoot_arrow.json b/data/generated/V26_1/data/minecraft/advancement/adventure/shoot_arrow.json new file mode 100644 index 00000000..82c0e237 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/shoot_arrow.json @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "shot_arrow": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "type": "#minecraft:arrows" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.shoot_arrow.description" + }, + "icon": { + "id": "minecraft:bow" + }, + "title": { + "translate": "advancements.adventure.shoot_arrow.title" + } + }, + "requirements": [ + [ + "shot_arrow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/sleep_in_bed.json b/data/generated/V26_1/data/minecraft/advancement/adventure/sleep_in_bed.json new file mode 100644 index 00000000..62ec4f0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/sleep_in_bed.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "slept_in_bed": { + "trigger": "minecraft:slept_in_bed" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.sleep_in_bed.description" + }, + "icon": { + "id": "minecraft:red_bed" + }, + "title": { + "translate": "advancements.adventure.sleep_in_bed.title" + } + }, + "requirements": [ + [ + "slept_in_bed" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/sniper_duel.json b/data/generated/V26_1/data/minecraft/advancement/adventure/sniper_duel.json new file mode 100644 index 00000000..51e00204 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/sniper_duel.json @@ -0,0 +1,53 @@ +{ + "parent": "minecraft:adventure/shoot_arrow", + "criteria": { + "killed_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:skeleton", + "distance": { + "horizontal": { + "min": 50.0 + } + } + } + } + ], + "killing_blow": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.sniper_duel.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:arrow" + }, + "title": { + "translate": "advancements.adventure.sniper_duel.title" + } + }, + "requirements": [ + [ + "killed_skeleton" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/spear_many_mobs.json b/data/generated/V26_1/data/minecraft/advancement/adventure/spear_many_mobs.json new file mode 100644 index 00000000..3dfff22b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/spear_many_mobs.json @@ -0,0 +1,29 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "spear_many_mobs": { + "conditions": { + "count": 5 + }, + "trigger": "minecraft:spear_mobs" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spear_many_mobs.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:iron_spear" + }, + "title": { + "translate": "advancements.adventure.spear_many_mobs.title" + } + }, + "requirements": [ + [ + "spear_many_mobs" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_dragon.json b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_dragon.json new file mode 100644 index 00000000..eaf516c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_dragon.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:adventure/spyglass_at_ghast", + "criteria": { + "spyglass_at_dragon": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player", + "looking_at": { + "type": "minecraft:ender_dragon" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_dragon.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_dragon.title" + } + }, + "requirements": [ + [ + "spyglass_at_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_ghast.json b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_ghast.json new file mode 100644 index 00000000..8fd745a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_ghast.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:adventure/spyglass_at_parrot", + "criteria": { + "spyglass_at_ghast": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player", + "looking_at": { + "type": "minecraft:ghast" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_ghast.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_ghast.title" + } + }, + "requirements": [ + [ + "spyglass_at_ghast" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_parrot.json b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_parrot.json new file mode 100644 index 00000000..cbfae168 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/spyglass_at_parrot.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "spyglass_at_parrot": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player", + "looking_at": { + "type": "minecraft:parrot" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_parrot.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_parrot.title" + } + }, + "requirements": [ + [ + "spyglass_at_parrot" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/summon_iron_golem.json b/data/generated/V26_1/data/minecraft/advancement/adventure/summon_iron_golem.json new file mode 100644 index 00000000..dbc2b864 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/summon_iron_golem.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:adventure/trade", + "criteria": { + "summoned_golem": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:iron_golem" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.summon_iron_golem.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:carved_pumpkin" + }, + "title": { + "translate": "advancements.adventure.summon_iron_golem.title" + } + }, + "requirements": [ + [ + "summoned_golem" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/throw_trident.json b/data/generated/V26_1/data/minecraft/advancement/adventure/throw_trident.json new file mode 100644 index 00000000..4d254892 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/throw_trident.json @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "shot_trident": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "type": "minecraft:trident" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.throw_trident.description" + }, + "icon": { + "id": "minecraft:trident" + }, + "title": { + "translate": "advancements.adventure.throw_trident.title" + } + }, + "requirements": [ + [ + "shot_trident" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/totem_of_undying.json b/data/generated/V26_1/data/minecraft/advancement/adventure/totem_of_undying.json new file mode 100644 index 00000000..c72949a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/totem_of_undying.json @@ -0,0 +1,31 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "used_totem": { + "conditions": { + "item": { + "items": "minecraft:totem_of_undying" + } + }, + "trigger": "minecraft:used_totem" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.totem_of_undying.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:totem_of_undying" + }, + "title": { + "translate": "advancements.adventure.totem_of_undying.title" + } + }, + "requirements": [ + [ + "used_totem" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/trade.json b/data/generated/V26_1/data/minecraft/advancement/adventure/trade.json new file mode 100644 index 00000000..2c62d57e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/trade.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "traded": { + "trigger": "minecraft:villager_trade" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trade.description" + }, + "icon": { + "id": "minecraft:emerald" + }, + "title": { + "translate": "advancements.adventure.trade.title" + } + }, + "requirements": [ + [ + "traded" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/trade_at_world_height.json b/data/generated/V26_1/data/minecraft/advancement/adventure/trade_at_world_height.json new file mode 100644 index 00000000..fd3d36e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/trade_at_world_height.json @@ -0,0 +1,42 @@ +{ + "parent": "minecraft:adventure/trade", + "criteria": { + "trade_at_world_height": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "position": { + "y": { + "min": 319.0 + } + } + } + } + } + ] + }, + "trigger": "minecraft:villager_trade" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trade_at_world_height.description" + }, + "icon": { + "id": "minecraft:emerald" + }, + "title": { + "translate": "advancements.adventure.trade_at_world_height.title" + } + }, + "requirements": [ + [ + "trade_at_world_height" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json b/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json new file mode 100644 index 00000000..bfb72b1a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json @@ -0,0 +1,95 @@ +{ + "parent": "minecraft:adventure/trim_with_any_armor_pattern", + "criteria": { + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:silence_armor_trim_smithing_template" + }, + "title": { + "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title" + } + }, + "requirements": [ + [ + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + ] + ], + "rewards": { + "experience": 150 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json b/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json new file mode 100644 index 00000000..c68c568b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json @@ -0,0 +1,147 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:coast_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:dune_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:eye_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:flow_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:host_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wild_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trim_with_any_armor_pattern.description" + }, + "icon": { + "id": "minecraft:dune_armor_trim_smithing_template" + }, + "title": { + "translate": "advancements.adventure.trim_with_any_armor_pattern.title" + } + }, + "requirements": [ + [ + "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/two_birds_one_arrow.json b/data/generated/V26_1/data/minecraft/advancement/adventure/two_birds_one_arrow.json new file mode 100644 index 00000000..d1942626 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/two_birds_one_arrow.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "two_birds": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:phantom" + } + } + ], + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:phantom" + } + } + ] + ] + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.two_birds_one_arrow.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.two_birds_one_arrow.title" + } + }, + "requirements": [ + [ + "two_birds" + ] + ], + "rewards": { + "experience": 65 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/under_lock_and_key.json b/data/generated/V26_1/data/minecraft/advancement/adventure/under_lock_and_key.json new file mode 100644 index 00000000..b5598ea2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/under_lock_and_key.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "under_lock_and_key": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:vault", + "state": { + "ominous": "false" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:trial_key" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.under_lock_and_key.description" + }, + "icon": { + "id": "minecraft:trial_key" + }, + "title": { + "translate": "advancements.adventure.under_lock_and_key.title" + } + }, + "requirements": [ + [ + "under_lock_and_key" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/use_lodestone.json b/data/generated/V26_1/data/minecraft/advancement/adventure/use_lodestone.json new file mode 100644 index 00000000..da82e4cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/use_lodestone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "use_lodestone": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:lodestone" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:compass" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.use_lodestone.description" + }, + "icon": { + "id": "minecraft:lodestone" + }, + "title": { + "translate": "advancements.adventure.use_lodestone.title" + } + }, + "requirements": [ + [ + "use_lodestone" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/very_very_frightening.json b/data/generated/V26_1/data/minecraft/advancement/adventure/very_very_frightening.json new file mode 100644 index 00000000..fd2cfc1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/very_very_frightening.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:adventure/throw_trident", + "criteria": { + "struck_villager": { + "conditions": { + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:villager" + } + } + ] + ] + }, + "trigger": "minecraft:channeled_lightning" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.very_very_frightening.description" + }, + "icon": { + "id": "minecraft:trident" + }, + "title": { + "translate": "advancements.adventure.very_very_frightening.title" + } + }, + "requirements": [ + [ + "struck_villager" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/voluntary_exile.json b/data/generated/V26_1/data/minecraft/advancement/adventure/voluntary_exile.json new file mode 100644 index 00000000..5f748e96 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/voluntary_exile.json @@ -0,0 +1,126 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "voluntary_exile": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "#minecraft:raiders", + "equipment": { + "head": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + } + }, + "items": "minecraft:white_banner" + } + } + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.voluntary_exile.description" + }, + "hidden": true, + "icon": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + }, + "minecraft:rarity": "uncommon", + "minecraft:tooltip_display": { + "hidden_components": [ + "minecraft:banner_patterns" + ] + } + }, + "id": "minecraft:white_banner" + }, + "title": { + "translate": "advancements.adventure.voluntary_exile.title" + } + }, + "requirements": [ + [ + "voluntary_exile" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json b/data/generated/V26_1/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json new file mode 100644 index 00000000..f758964b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "walk_on_powder_snow_with_leather_boots": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "items": "minecraft:leather_boots" + } + }, + "stepping_on": { + "block": { + "blocks": "minecraft:powder_snow" + } + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description" + }, + "icon": { + "id": "minecraft:leather_boots" + }, + "title": { + "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title" + } + }, + "requirements": [ + [ + "walk_on_powder_snow_with_leather_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/who_needs_rockets.json b/data/generated/V26_1/data/minecraft/advancement/adventure/who_needs_rockets.json new file mode 100644 index 00000000..89c04e57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/who_needs_rockets.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "who_needs_rockets": { + "conditions": { + "cause": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wind_charge" + } + } + ], + "distance": { + "y": { + "min": 7.0 + } + } + }, + "trigger": "minecraft:fall_after_explosion" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.who_needs_rockets.description" + }, + "icon": { + "id": "minecraft:wind_charge" + }, + "title": { + "translate": "advancements.adventure.who_needs_rockets.title" + } + }, + "requirements": [ + [ + "who_needs_rockets" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/adventure/whos_the_pillager_now.json b/data/generated/V26_1/data/minecraft/advancement/adventure/whos_the_pillager_now.json new file mode 100644 index 00000000..8dead372 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/adventure/whos_the_pillager_now.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "kill_pillager": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:pillager" + } + } + ] + ] + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.whos_the_pillager_now.description" + }, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.whos_the_pillager_now.title" + } + }, + "requirements": [ + [ + "kill_pillager" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/dragon_breath.json b/data/generated/V26_1/data/minecraft/advancement/end/dragon_breath.json new file mode 100644 index 00000000..a204c7eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/dragon_breath.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "dragon_breath": { + "conditions": { + "items": [ + { + "items": "minecraft:dragon_breath" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.dragon_breath.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:dragon_breath" + }, + "title": { + "translate": "advancements.end.dragon_breath.title" + } + }, + "requirements": [ + [ + "dragon_breath" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/dragon_egg.json b/data/generated/V26_1/data/minecraft/advancement/end/dragon_egg.json new file mode 100644 index 00000000..96c36693 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/dragon_egg.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "dragon_egg": { + "conditions": { + "items": [ + { + "items": "minecraft:dragon_egg" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.dragon_egg.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:dragon_egg" + }, + "title": { + "translate": "advancements.end.dragon_egg.title" + } + }, + "requirements": [ + [ + "dragon_egg" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/elytra.json b/data/generated/V26_1/data/minecraft/advancement/end/elytra.json new file mode 100644 index 00000000..53739195 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/elytra.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/find_end_city", + "criteria": { + "elytra": { + "conditions": { + "items": [ + { + "items": "minecraft:elytra" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.elytra.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:elytra" + }, + "title": { + "translate": "advancements.end.elytra.title" + } + }, + "requirements": [ + [ + "elytra" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/enter_end_gateway.json b/data/generated/V26_1/data/minecraft/advancement/end/enter_end_gateway.json new file mode 100644 index 00000000..2f8b6cb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/enter_end_gateway.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "entered_end_gateway": { + "conditions": { + "block": "minecraft:end_gateway" + }, + "trigger": "minecraft:enter_block" + } + }, + "display": { + "description": { + "translate": "advancements.end.enter_end_gateway.description" + }, + "icon": { + "id": "minecraft:ender_pearl" + }, + "title": { + "translate": "advancements.end.enter_end_gateway.title" + } + }, + "requirements": [ + [ + "entered_end_gateway" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/find_end_city.json b/data/generated/V26_1/data/minecraft/advancement/end/find_end_city.json new file mode 100644 index 00000000..d3b6bc8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/find_end_city.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:end/enter_end_gateway", + "criteria": { + "in_city": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structures": "minecraft:end_city" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.end.find_end_city.description" + }, + "icon": { + "id": "minecraft:purpur_block" + }, + "title": { + "translate": "advancements.end.find_end_city.title" + } + }, + "requirements": [ + [ + "in_city" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/kill_dragon.json b/data/generated/V26_1/data/minecraft/advancement/end/kill_dragon.json new file mode 100644 index 00000000..ae6339e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/kill_dragon.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:end/root", + "criteria": { + "killed_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.end.kill_dragon.description" + }, + "icon": { + "id": "minecraft:dragon_head" + }, + "title": { + "translate": "advancements.end.kill_dragon.title" + } + }, + "requirements": [ + [ + "killed_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/levitate.json b/data/generated/V26_1/data/minecraft/advancement/end/levitate.json new file mode 100644 index 00000000..43105568 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/levitate.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:end/find_end_city", + "criteria": { + "levitated": { + "conditions": { + "distance": { + "y": { + "min": 50.0 + } + } + }, + "trigger": "minecraft:levitation" + } + }, + "display": { + "description": { + "translate": "advancements.end.levitate.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:shulker_shell" + }, + "title": { + "translate": "advancements.end.levitate.title" + } + }, + "requirements": [ + [ + "levitated" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/respawn_dragon.json b/data/generated/V26_1/data/minecraft/advancement/end/respawn_dragon.json new file mode 100644 index 00000000..c11696b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/respawn_dragon.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "summoned_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.end.respawn_dragon.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:end_crystal" + }, + "title": { + "translate": "advancements.end.respawn_dragon.title" + } + }, + "requirements": [ + [ + "summoned_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/end/root.json b/data/generated/V26_1/data/minecraft/advancement/end/root.json new file mode 100644 index 00000000..fae702c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/end/root.json @@ -0,0 +1,30 @@ +{ + "criteria": { + "entered_end": { + "conditions": { + "to": "minecraft:the_end" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/end", + "description": { + "translate": "advancements.end.root.description" + }, + "icon": { + "id": "minecraft:end_stone" + }, + "show_toast": false, + "title": { + "translate": "advancements.end.root.title" + } + }, + "requirements": [ + [ + "entered_end" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json new file mode 100644 index 00000000..c1cebdb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:husbandry/allay_deliver_item_to_player", + "criteria": { + "allay_deliver_cake_to_note_block": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:note_block" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:cake" + } + } + ] + }, + "trigger": "minecraft:allay_drop_item_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:note_block" + }, + "title": { + "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title" + } + }, + "requirements": [ + [ + "allay_deliver_cake_to_note_block" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json new file mode 100644 index 00000000..618f677b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "allay_deliver_item_to_player": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:allay" + } + } + ] + }, + "trigger": "minecraft:thrown_item_picked_up_by_player" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.allay_deliver_item_to_player.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:cookie" + }, + "title": { + "translate": "advancements.husbandry.allay_deliver_item_to_player.title" + } + }, + "requirements": [ + [ + "allay_deliver_item_to_player" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json new file mode 100644 index 00000000..de9ba72a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:husbandry/tactical_fishing", + "criteria": { + "axolotl_bucket": { + "conditions": { + "item": { + "items": "minecraft:axolotl_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.axolotl_in_a_bucket.description" + }, + "icon": { + "id": "minecraft:axolotl_bucket" + }, + "title": { + "translate": "advancements.husbandry.axolotl_in_a_bucket.title" + } + }, + "requirements": [ + [ + "axolotl_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/balanced_diet.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/balanced_diet.json new file mode 100644 index 00000000..9760a72c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/balanced_diet.json @@ -0,0 +1,463 @@ +{ + "parent": "minecraft:husbandry/plant_seed", + "criteria": { + "apple": { + "conditions": { + "item": { + "items": "minecraft:apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "baked_potato": { + "conditions": { + "item": { + "items": "minecraft:baked_potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "beef": { + "conditions": { + "item": { + "items": "minecraft:beef" + } + }, + "trigger": "minecraft:consume_item" + }, + "beetroot": { + "conditions": { + "item": { + "items": "minecraft:beetroot" + } + }, + "trigger": "minecraft:consume_item" + }, + "beetroot_soup": { + "conditions": { + "item": { + "items": "minecraft:beetroot_soup" + } + }, + "trigger": "minecraft:consume_item" + }, + "bread": { + "conditions": { + "item": { + "items": "minecraft:bread" + } + }, + "trigger": "minecraft:consume_item" + }, + "carrot": { + "conditions": { + "item": { + "items": "minecraft:carrot" + } + }, + "trigger": "minecraft:consume_item" + }, + "chicken": { + "conditions": { + "item": { + "items": "minecraft:chicken" + } + }, + "trigger": "minecraft:consume_item" + }, + "chorus_fruit": { + "conditions": { + "item": { + "items": "minecraft:chorus_fruit" + } + }, + "trigger": "minecraft:consume_item" + }, + "cod": { + "conditions": { + "item": { + "items": "minecraft:cod" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_beef": { + "conditions": { + "item": { + "items": "minecraft:cooked_beef" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_chicken": { + "conditions": { + "item": { + "items": "minecraft:cooked_chicken" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_cod": { + "conditions": { + "item": { + "items": "minecraft:cooked_cod" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_mutton": { + "conditions": { + "item": { + "items": "minecraft:cooked_mutton" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_porkchop": { + "conditions": { + "item": { + "items": "minecraft:cooked_porkchop" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_rabbit": { + "conditions": { + "item": { + "items": "minecraft:cooked_rabbit" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_salmon": { + "conditions": { + "item": { + "items": "minecraft:cooked_salmon" + } + }, + "trigger": "minecraft:consume_item" + }, + "cookie": { + "conditions": { + "item": { + "items": "minecraft:cookie" + } + }, + "trigger": "minecraft:consume_item" + }, + "dried_kelp": { + "conditions": { + "item": { + "items": "minecraft:dried_kelp" + } + }, + "trigger": "minecraft:consume_item" + }, + "enchanted_golden_apple": { + "conditions": { + "item": { + "items": "minecraft:enchanted_golden_apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "glow_berries": { + "conditions": { + "item": { + "items": "minecraft:glow_berries" + } + }, + "trigger": "minecraft:consume_item" + }, + "golden_apple": { + "conditions": { + "item": { + "items": "minecraft:golden_apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "golden_carrot": { + "conditions": { + "item": { + "items": "minecraft:golden_carrot" + } + }, + "trigger": "minecraft:consume_item" + }, + "honey_bottle": { + "conditions": { + "item": { + "items": "minecraft:honey_bottle" + } + }, + "trigger": "minecraft:consume_item" + }, + "melon_slice": { + "conditions": { + "item": { + "items": "minecraft:melon_slice" + } + }, + "trigger": "minecraft:consume_item" + }, + "mushroom_stew": { + "conditions": { + "item": { + "items": "minecraft:mushroom_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "mutton": { + "conditions": { + "item": { + "items": "minecraft:mutton" + } + }, + "trigger": "minecraft:consume_item" + }, + "poisonous_potato": { + "conditions": { + "item": { + "items": "minecraft:poisonous_potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "porkchop": { + "conditions": { + "item": { + "items": "minecraft:porkchop" + } + }, + "trigger": "minecraft:consume_item" + }, + "potato": { + "conditions": { + "item": { + "items": "minecraft:potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "pufferfish": { + "conditions": { + "item": { + "items": "minecraft:pufferfish" + } + }, + "trigger": "minecraft:consume_item" + }, + "pumpkin_pie": { + "conditions": { + "item": { + "items": "minecraft:pumpkin_pie" + } + }, + "trigger": "minecraft:consume_item" + }, + "rabbit": { + "conditions": { + "item": { + "items": "minecraft:rabbit" + } + }, + "trigger": "minecraft:consume_item" + }, + "rabbit_stew": { + "conditions": { + "item": { + "items": "minecraft:rabbit_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "rotten_flesh": { + "conditions": { + "item": { + "items": "minecraft:rotten_flesh" + } + }, + "trigger": "minecraft:consume_item" + }, + "salmon": { + "conditions": { + "item": { + "items": "minecraft:salmon" + } + }, + "trigger": "minecraft:consume_item" + }, + "spider_eye": { + "conditions": { + "item": { + "items": "minecraft:spider_eye" + } + }, + "trigger": "minecraft:consume_item" + }, + "suspicious_stew": { + "conditions": { + "item": { + "items": "minecraft:suspicious_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "sweet_berries": { + "conditions": { + "item": { + "items": "minecraft:sweet_berries" + } + }, + "trigger": "minecraft:consume_item" + }, + "tropical_fish": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish" + } + }, + "trigger": "minecraft:consume_item" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.balanced_diet.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:apple" + }, + "title": { + "translate": "advancements.husbandry.balanced_diet.title" + } + }, + "requirements": [ + [ + "apple" + ], + [ + "mushroom_stew" + ], + [ + "bread" + ], + [ + "porkchop" + ], + [ + "cooked_porkchop" + ], + [ + "golden_apple" + ], + [ + "enchanted_golden_apple" + ], + [ + "cod" + ], + [ + "salmon" + ], + [ + "tropical_fish" + ], + [ + "pufferfish" + ], + [ + "cooked_cod" + ], + [ + "cooked_salmon" + ], + [ + "cookie" + ], + [ + "melon_slice" + ], + [ + "beef" + ], + [ + "cooked_beef" + ], + [ + "chicken" + ], + [ + "cooked_chicken" + ], + [ + "rotten_flesh" + ], + [ + "spider_eye" + ], + [ + "carrot" + ], + [ + "potato" + ], + [ + "baked_potato" + ], + [ + "poisonous_potato" + ], + [ + "golden_carrot" + ], + [ + "pumpkin_pie" + ], + [ + "rabbit" + ], + [ + "cooked_rabbit" + ], + [ + "rabbit_stew" + ], + [ + "mutton" + ], + [ + "cooked_mutton" + ], + [ + "chorus_fruit" + ], + [ + "beetroot" + ], + [ + "beetroot_soup" + ], + [ + "dried_kelp" + ], + [ + "suspicious_stew" + ], + [ + "sweet_berries" + ], + [ + "honey_bottle" + ], + [ + "glow_berries" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/bred_all_animals.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/bred_all_animals.json new file mode 100644 index 00000000..4a58e642 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/bred_all_animals.json @@ -0,0 +1,492 @@ +{ + "parent": "minecraft:husbandry/breed_an_animal", + "criteria": { + "minecraft:armadillo": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:armadillo" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:axolotl": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:axolotl" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:bee": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:bee" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:camel": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:camel" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:cat": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:cat" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:chicken": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:chicken" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:cow": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:cow" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:donkey": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:donkey" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:fox": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:fox" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:frog": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:frog" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:frog" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:goat": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:goat" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:hoglin": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:horse": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:horse" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:llama": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:llama" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:mooshroom": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:mooshroom" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:mule": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:mule" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:nautilus": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:nautilus" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:ocelot": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ocelot" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:panda": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:panda" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:pig": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:pig" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:rabbit": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:rabbit" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:sheep": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:sheep" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:sniffer": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:sniffer" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:sniffer" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:strider": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:strider" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:turtle": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:turtle" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:turtle" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:wolf": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wolf" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.breed_all_animals.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:golden_carrot" + }, + "title": { + "translate": "advancements.husbandry.breed_all_animals.title" + } + }, + "requirements": [ + [ + "minecraft:horse" + ], + [ + "minecraft:donkey" + ], + [ + "minecraft:mule" + ], + [ + "minecraft:sheep" + ], + [ + "minecraft:cow" + ], + [ + "minecraft:mooshroom" + ], + [ + "minecraft:pig" + ], + [ + "minecraft:chicken" + ], + [ + "minecraft:wolf" + ], + [ + "minecraft:ocelot" + ], + [ + "minecraft:rabbit" + ], + [ + "minecraft:llama" + ], + [ + "minecraft:cat" + ], + [ + "minecraft:panda" + ], + [ + "minecraft:fox" + ], + [ + "minecraft:bee" + ], + [ + "minecraft:hoglin" + ], + [ + "minecraft:strider" + ], + [ + "minecraft:goat" + ], + [ + "minecraft:axolotl" + ], + [ + "minecraft:camel" + ], + [ + "minecraft:armadillo" + ], + [ + "minecraft:nautilus" + ], + [ + "minecraft:turtle" + ], + [ + "minecraft:frog" + ], + [ + "minecraft:sniffer" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/breed_an_animal.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/breed_an_animal.json new file mode 100644 index 00000000..ebda9230 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/breed_an_animal.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "bred": { + "trigger": "minecraft:bred_animals" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.breed_an_animal.description" + }, + "icon": { + "id": "minecraft:wheat" + }, + "title": { + "translate": "advancements.husbandry.breed_an_animal.title" + } + }, + "requirements": [ + [ + "bred" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/complete_catalogue.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/complete_catalogue.json new file mode 100644 index 00000000..9e3a7f16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/complete_catalogue.json @@ -0,0 +1,232 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "minecraft:all_black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:all_black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:british_shorthair": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:british_shorthair" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:calico": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:calico" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:jellie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:jellie" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:persian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:persian" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:ragdoll": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:ragdoll" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:red": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:red" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:siamese": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:siamese" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:tabby": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:tabby" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:white": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:cat/variant": "minecraft:white" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.complete_catalogue.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:cod" + }, + "title": { + "translate": "advancements.husbandry.complete_catalogue.title" + } + }, + "requirements": [ + [ + "minecraft:all_black" + ], + [ + "minecraft:black" + ], + [ + "minecraft:british_shorthair" + ], + [ + "minecraft:calico" + ], + [ + "minecraft:jellie" + ], + [ + "minecraft:persian" + ], + [ + "minecraft:ragdoll" + ], + [ + "minecraft:red" + ], + [ + "minecraft:siamese" + ], + [ + "minecraft:tabby" + ], + [ + "minecraft:white" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/feed_snifflet.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/feed_snifflet.json new file mode 100644 index 00000000..15c3c6cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/feed_snifflet.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:husbandry/obtain_sniffer_egg", + "criteria": { + "feed_snifflet": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:sniffer", + "flags": { + "is_baby": true + } + } + } + ], + "item": { + "items": "#minecraft:sniffer_food" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.feed_snifflet.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:torchflower_seeds" + }, + "title": { + "translate": "advancements.husbandry.feed_snifflet.title" + } + }, + "requirements": [ + [ + "feed_snifflet" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/fishy_business.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/fishy_business.json new file mode 100644 index 00000000..8cc0a39b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/fishy_business.json @@ -0,0 +1,57 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "cod": { + "conditions": { + "item": { + "items": "minecraft:cod" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "pufferfish": { + "conditions": { + "item": { + "items": "minecraft:pufferfish" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "salmon": { + "conditions": { + "item": { + "items": "minecraft:salmon" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "tropical_fish": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.fishy_business.description" + }, + "icon": { + "id": "minecraft:fishing_rod" + }, + "title": { + "translate": "advancements.husbandry.fishy_business.title" + } + }, + "requirements": [ + [ + "cod", + "tropical_fish", + "pufferfish", + "salmon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/froglights.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/froglights.json new file mode 100644 index 00000000..be680f0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/froglights.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:husbandry/leash_all_frog_variants", + "criteria": { + "froglights": { + "conditions": { + "items": [ + { + "items": "minecraft:ochre_froglight" + }, + { + "items": "minecraft:pearlescent_froglight" + }, + { + "items": "minecraft:verdant_froglight" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.froglights.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:verdant_froglight" + }, + "title": { + "translate": "advancements.husbandry.froglights.title" + } + }, + "requirements": [ + [ + "froglights" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/kill_axolotl_target.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/kill_axolotl_target.json new file mode 100644 index 00000000..b13d34e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/kill_axolotl_target.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/axolotl_in_a_bucket", + "criteria": { + "kill_axolotl_target": { + "conditions": { + "source": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:axolotl" + } + } + ] + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.kill_axolotl_target.description" + }, + "icon": { + "id": "minecraft:tropical_fish_bucket" + }, + "title": { + "translate": "advancements.husbandry.kill_axolotl_target.title" + } + }, + "requirements": [ + [ + "kill_axolotl_target" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/leash_all_frog_variants.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/leash_all_frog_variants.json new file mode 100644 index 00000000..3db2835f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/leash_all_frog_variants.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:husbandry/tadpole_in_a_bucket", + "criteria": { + "minecraft:cold": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:cold" + } + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + }, + "minecraft:temperate": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:temperate" + } + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + }, + "minecraft:warm": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:warm" + } + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.leash_all_frog_variants.description" + }, + "icon": { + "id": "minecraft:lead" + }, + "title": { + "translate": "advancements.husbandry.leash_all_frog_variants.title" + } + }, + "requirements": [ + [ + "minecraft:cold" + ], + [ + "minecraft:temperate" + ], + [ + "minecraft:warm" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/make_a_sign_glow.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/make_a_sign_glow.json new file mode 100644 index 00000000..b6efb827 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/make_a_sign_glow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "make_a_sign_glow": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:all_signs" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glow_ink_sac" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.make_a_sign_glow.description" + }, + "icon": { + "id": "minecraft:glow_ink_sac" + }, + "title": { + "translate": "advancements.husbandry.make_a_sign_glow.title" + } + }, + "requirements": [ + [ + "make_a_sign_glow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json new file mode 100644 index 00000000..5e19717f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/plant_seed", + "criteria": { + "netherite_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.netherite_hoe.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_hoe" + }, + "title": { + "translate": "advancements.husbandry.netherite_hoe.title" + } + }, + "requirements": [ + [ + "netherite_hoe" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json new file mode 100644 index 00000000..26bfff11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "obtain_sniffer_egg": { + "conditions": { + "items": [ + { + "items": "minecraft:sniffer_egg" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.obtain_sniffer_egg.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:sniffer_egg" + }, + "title": { + "translate": "advancements.husbandry.obtain_sniffer_egg.title" + } + }, + "requirements": [ + [ + "obtain_sniffer_egg" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json new file mode 100644 index 00000000..15605249 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "place_dried_ghast_in_water": { + "conditions": { + "location": [ + { + "block": "minecraft:dried_ghast", + "condition": "minecraft:block_state_property", + "properties": { + "waterlogged": "true" + } + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.place_dried_ghast_in_water.description" + }, + "icon": { + "id": "minecraft:dried_ghast" + }, + "title": { + "translate": "advancements.husbandry.place_dried_ghast_in_water.title" + } + }, + "requirements": [ + [ + "place_dried_ghast_in_water" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json new file mode 100644 index 00000000..83a7cc27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:husbandry/feed_snifflet", + "criteria": { + "pitcher_pod": { + "conditions": { + "location": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "torchflower": { + "conditions": { + "location": [ + { + "block": "minecraft:torchflower_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.plant_any_sniffer_seed.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:pitcher_pod" + }, + "title": { + "translate": "advancements.husbandry.plant_any_sniffer_seed.title" + } + }, + "requirements": [ + [ + "torchflower", + "pitcher_pod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_seed.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_seed.json new file mode 100644 index 00000000..a2477f68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/plant_seed.json @@ -0,0 +1,105 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "beetroots": { + "conditions": { + "location": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "melon_stem": { + "conditions": { + "location": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "nether_wart": { + "conditions": { + "location": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "pitcher_pod": { + "conditions": { + "location": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "pumpkin_stem": { + "conditions": { + "location": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "torchflower": { + "conditions": { + "location": [ + { + "block": "minecraft:torchflower_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "wheat": { + "conditions": { + "location": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.plant_seed.description" + }, + "icon": { + "id": "minecraft:wheat" + }, + "title": { + "translate": "advancements.husbandry.plant_seed.title" + } + }, + "requirements": [ + [ + "wheat", + "pumpkin_stem", + "melon_stem", + "beetroots", + "nether_wart", + "torchflower", + "pitcher_pod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/remove_wolf_armor.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/remove_wolf_armor.json new file mode 100644 index 00000000..8ef71590 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/remove_wolf_armor.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "remove_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wolf" + } + } + ], + "item": { + "items": "minecraft:wolf_armor" + } + }, + "trigger": "minecraft:player_sheared_equipment" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.remove_wolf_armor.description" + }, + "icon": { + "id": "minecraft:shears" + }, + "title": { + "translate": "advancements.husbandry.remove_wolf_armor.title" + } + }, + "requirements": [ + [ + "remove_wolf_armor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/repair_wolf_armor.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/repair_wolf_armor.json new file mode 100644 index 00000000..dca436c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/repair_wolf_armor.json @@ -0,0 +1,47 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "repair_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wolf", + "equipment": { + "body": { + "components": { + "minecraft:damage": 0 + }, + "items": "minecraft:wolf_armor" + } + } + } + } + ], + "item": { + "items": "minecraft:armadillo_scute" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.repair_wolf_armor.description" + }, + "icon": { + "id": "minecraft:wolf_armor" + }, + "title": { + "translate": "advancements.husbandry.repair_wolf_armor.title" + } + }, + "requirements": [ + [ + "repair_wolf_armor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json new file mode 100644 index 00000000..55b653a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "ride_a_boat_with_a_goat": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": { + "type": "#minecraft:boat", + "passenger": { + "type": "minecraft:goat" + } + } + } + } + ] + }, + "trigger": "minecraft:started_riding" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.ride_a_boat_with_a_goat.description" + }, + "icon": { + "id": "minecraft:oak_boat" + }, + "title": { + "translate": "advancements.husbandry.ride_a_boat_with_a_goat.title" + } + }, + "requirements": [ + [ + "ride_a_boat_with_a_goat" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/root.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/root.json new file mode 100644 index 00000000..91c4cbcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/root.json @@ -0,0 +1,27 @@ +{ + "criteria": { + "consumed_item": { + "trigger": "minecraft:consume_item" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/husbandry", + "description": { + "translate": "advancements.husbandry.root.description" + }, + "icon": { + "id": "minecraft:hay_block" + }, + "show_toast": false, + "title": { + "translate": "advancements.husbandry.root.title" + } + }, + "requirements": [ + [ + "consumed_item" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/safely_harvest_honey.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/safely_harvest_honey.json new file mode 100644 index 00000000..d35feb03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/safely_harvest_honey.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "safely_harvest_honey": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:beehives" + }, + "smokey": true + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glass_bottle" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.safely_harvest_honey.description" + }, + "icon": { + "id": "minecraft:honey_bottle" + }, + "title": { + "translate": "advancements.husbandry.safely_harvest_honey.title" + } + }, + "requirements": [ + [ + "safely_harvest_honey" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/silk_touch_nest.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/silk_touch_nest.json new file mode 100644 index 00000000..57e347f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/silk_touch_nest.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "silk_touch_nest": { + "conditions": { + "block": "minecraft:bee_nest", + "item": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + }, + "num_bees_inside": 3 + }, + "trigger": "minecraft:bee_nest_destroyed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.silk_touch_nest.description" + }, + "icon": { + "id": "minecraft:bee_nest" + }, + "title": { + "translate": "advancements.husbandry.silk_touch_nest.title" + } + }, + "requirements": [ + [ + "silk_touch_nest" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/tactical_fishing.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/tactical_fishing.json new file mode 100644 index 00000000..826e59df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/tactical_fishing.json @@ -0,0 +1,57 @@ +{ + "parent": "minecraft:husbandry/fishy_business", + "criteria": { + "cod_bucket": { + "conditions": { + "item": { + "items": "minecraft:cod_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "pufferfish_bucket": { + "conditions": { + "item": { + "items": "minecraft:pufferfish_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "salmon_bucket": { + "conditions": { + "item": { + "items": "minecraft:salmon_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "tropical_fish_bucket": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tactical_fishing.description" + }, + "icon": { + "id": "minecraft:pufferfish_bucket" + }, + "title": { + "translate": "advancements.husbandry.tactical_fishing.title" + } + }, + "requirements": [ + [ + "cod_bucket", + "tropical_fish_bucket", + "pufferfish_bucket", + "salmon_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json new file mode 100644 index 00000000..65cb9ec4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "tadpole_bucket": { + "conditions": { + "item": { + "items": "minecraft:tadpole_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tadpole_in_a_bucket.description" + }, + "icon": { + "id": "minecraft:tadpole_bucket" + }, + "title": { + "translate": "advancements.husbandry.tadpole_in_a_bucket.title" + } + }, + "requirements": [ + [ + "tadpole_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/tame_an_animal.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/tame_an_animal.json new file mode 100644 index 00000000..fd5602d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/tame_an_animal.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "tamed_animal": { + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tame_an_animal.description" + }, + "icon": { + "id": "minecraft:lead" + }, + "title": { + "translate": "advancements.husbandry.tame_an_animal.title" + } + }, + "requirements": [ + [ + "tamed_animal" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_off.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_off.json new file mode 100644 index 00000000..a67623ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_off.json @@ -0,0 +1,112 @@ +{ + "parent": "minecraft:husbandry/wax_on", + "criteria": { + "wax_off": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:waxed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:waxed_oxidized_copper_bars", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod", + "minecraft:waxed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern", + "minecraft:waxed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:wooden_axe", + "minecraft:golden_axe", + "minecraft:stone_axe", + "minecraft:copper_axe", + "minecraft:iron_axe", + "minecraft:diamond_axe", + "minecraft:netherite_axe" + ] + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.wax_off.description" + }, + "icon": { + "id": "minecraft:stone_axe" + }, + "title": { + "translate": "advancements.husbandry.wax_off.title" + } + }, + "requirements": [ + [ + "wax_off" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_on.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_on.json new file mode 100644 index 00000000..1bb73c6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/wax_on.json @@ -0,0 +1,104 @@ +{ + "parent": "minecraft:husbandry/safely_harvest_honey", + "criteria": { + "wax_on": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_cut_copper", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:oxidized_copper_chain" + ] + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:honeycomb" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.wax_on.description" + }, + "icon": { + "id": "minecraft:honeycomb" + }, + "title": { + "translate": "advancements.husbandry.wax_on.title" + } + }, + "requirements": [ + [ + "wax_on" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/husbandry/whole_pack.json b/data/generated/V26_1/data/minecraft/advancement/husbandry/whole_pack.json new file mode 100644 index 00000000..2c810d9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/husbandry/whole_pack.json @@ -0,0 +1,194 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "minecraft:ashen": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:ashen" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:chestnut": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:chestnut" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:pale": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:pale" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:rusty": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:rusty" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:snowy": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:snowy" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:spotted": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:spotted" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:striped": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:striped" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:woods": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:wolf/variant": "minecraft:woods" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.whole_pack.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:bone" + }, + "title": { + "translate": "advancements.husbandry.whole_pack.title" + } + }, + "requirements": [ + [ + "minecraft:ashen" + ], + [ + "minecraft:black" + ], + [ + "minecraft:chestnut" + ], + [ + "minecraft:pale" + ], + [ + "minecraft:rusty" + ], + [ + "minecraft:snowy" + ], + [ + "minecraft:spotted" + ], + [ + "minecraft:striped" + ], + [ + "minecraft:woods" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/all_effects.json b/data/generated/V26_1/data/minecraft/advancement/nether/all_effects.json new file mode 100644 index 00000000..d125184a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/all_effects.json @@ -0,0 +1,68 @@ +{ + "parent": "minecraft:nether/all_potions", + "criteria": { + "all_effects": { + "conditions": { + "effects": { + "minecraft:absorption": {}, + "minecraft:bad_omen": {}, + "minecraft:blindness": {}, + "minecraft:breath_of_the_nautilus": {}, + "minecraft:conduit_power": {}, + "minecraft:darkness": {}, + "minecraft:dolphins_grace": {}, + "minecraft:fire_resistance": {}, + "minecraft:glowing": {}, + "minecraft:haste": {}, + "minecraft:hero_of_the_village": {}, + "minecraft:hunger": {}, + "minecraft:infested": {}, + "minecraft:invisibility": {}, + "minecraft:jump_boost": {}, + "minecraft:levitation": {}, + "minecraft:mining_fatigue": {}, + "minecraft:nausea": {}, + "minecraft:night_vision": {}, + "minecraft:oozing": {}, + "minecraft:poison": {}, + "minecraft:raid_omen": {}, + "minecraft:regeneration": {}, + "minecraft:resistance": {}, + "minecraft:slow_falling": {}, + "minecraft:slowness": {}, + "minecraft:speed": {}, + "minecraft:strength": {}, + "minecraft:trial_omen": {}, + "minecraft:water_breathing": {}, + "minecraft:weakness": {}, + "minecraft:weaving": {}, + "minecraft:wind_charged": {}, + "minecraft:wither": {} + } + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.all_effects.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "id": "minecraft:bucket" + }, + "title": { + "translate": "advancements.nether.all_effects.title" + } + }, + "requirements": [ + [ + "all_effects" + ] + ], + "rewards": { + "experience": 1000 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/all_potions.json b/data/generated/V26_1/data/minecraft/advancement/nether/all_potions.json new file mode 100644 index 00000000..e5654fe4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/all_potions.json @@ -0,0 +1,50 @@ +{ + "parent": "minecraft:nether/brew_potion", + "criteria": { + "all_effects": { + "conditions": { + "effects": { + "minecraft:fire_resistance": {}, + "minecraft:infested": {}, + "minecraft:invisibility": {}, + "minecraft:jump_boost": {}, + "minecraft:night_vision": {}, + "minecraft:oozing": {}, + "minecraft:poison": {}, + "minecraft:regeneration": {}, + "minecraft:resistance": {}, + "minecraft:slow_falling": {}, + "minecraft:slowness": {}, + "minecraft:speed": {}, + "minecraft:strength": {}, + "minecraft:water_breathing": {}, + "minecraft:weakness": {}, + "minecraft:weaving": {}, + "minecraft:wind_charged": {} + } + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.all_potions.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:milk_bucket" + }, + "title": { + "translate": "advancements.nether.all_potions.title" + } + }, + "requirements": [ + [ + "all_effects" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/brew_potion.json b/data/generated/V26_1/data/minecraft/advancement/nether/brew_potion.json new file mode 100644 index 00000000..3fd5204c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/brew_potion.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:nether/obtain_blaze_rod", + "criteria": { + "potion": { + "trigger": "minecraft:brewed_potion" + } + }, + "display": { + "description": { + "translate": "advancements.nether.brew_potion.description" + }, + "icon": { + "id": "minecraft:potion" + }, + "title": { + "translate": "advancements.nether.brew_potion.title" + } + }, + "requirements": [ + [ + "potion" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/charge_respawn_anchor.json b/data/generated/V26_1/data/minecraft/advancement/nether/charge_respawn_anchor.json new file mode 100644 index 00000000..354b3c25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/charge_respawn_anchor.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:nether/obtain_crying_obsidian", + "criteria": { + "charge_respawn_anchor": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:respawn_anchor", + "state": { + "charges": "4" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glowstone" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.nether.charge_respawn_anchor.description" + }, + "icon": { + "id": "minecraft:respawn_anchor" + }, + "title": { + "translate": "advancements.nether.charge_respawn_anchor.title" + } + }, + "requirements": [ + [ + "charge_respawn_anchor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/create_beacon.json b/data/generated/V26_1/data/minecraft/advancement/nether/create_beacon.json new file mode 100644 index 00000000..b3902afc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/create_beacon.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:nether/summon_wither", + "criteria": { + "beacon": { + "conditions": { + "level": { + "min": 1 + } + }, + "trigger": "minecraft:construct_beacon" + } + }, + "display": { + "description": { + "translate": "advancements.nether.create_beacon.description" + }, + "icon": { + "id": "minecraft:beacon" + }, + "title": { + "translate": "advancements.nether.create_beacon.title" + } + }, + "requirements": [ + [ + "beacon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/create_full_beacon.json b/data/generated/V26_1/data/minecraft/advancement/nether/create_full_beacon.json new file mode 100644 index 00000000..004c1a75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/create_full_beacon.json @@ -0,0 +1,29 @@ +{ + "parent": "minecraft:nether/create_beacon", + "criteria": { + "beacon": { + "conditions": { + "level": 4 + }, + "trigger": "minecraft:construct_beacon" + } + }, + "display": { + "description": { + "translate": "advancements.nether.create_full_beacon.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:beacon" + }, + "title": { + "translate": "advancements.nether.create_full_beacon.title" + } + }, + "requirements": [ + [ + "beacon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/distract_piglin.json b/data/generated/V26_1/data/minecraft/advancement/nether/distract_piglin.json new file mode 100644 index 00000000..cfc5eb50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/distract_piglin.json @@ -0,0 +1,179 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "distract_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin", + "flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "#minecraft:piglin_loved" + }, + "player": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + } + ] + }, + "trigger": "minecraft:thrown_item_picked_up_by_entity" + }, + "distract_piglin_directly": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin", + "flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "minecraft:gold_ingot" + }, + "player": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "head": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "chest": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "legs": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "equipment": { + "feet": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + } + ] + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.distract_piglin.description" + }, + "icon": { + "id": "minecraft:gold_ingot" + }, + "title": { + "translate": "advancements.nether.distract_piglin.title" + } + }, + "requirements": [ + [ + "distract_piglin", + "distract_piglin_directly" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/explore_nether.json b/data/generated/V26_1/data/minecraft/advancement/nether/explore_nether.json new file mode 100644 index 00000000..15fe66ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/explore_nether.json @@ -0,0 +1,118 @@ +{ + "parent": "minecraft:nether/ride_strider", + "criteria": { + "minecraft:basalt_deltas": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:basalt_deltas" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:crimson_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:crimson_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:nether_wastes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:nether_wastes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:soul_sand_valley": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:soul_sand_valley" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:warped_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "biomes": "minecraft:warped_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.explore_nether.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_boots" + }, + "title": { + "translate": "advancements.nether.explore_nether.title" + } + }, + "requirements": [ + [ + "minecraft:nether_wastes" + ], + [ + "minecraft:soul_sand_valley" + ], + [ + "minecraft:crimson_forest" + ], + [ + "minecraft:warped_forest" + ], + [ + "minecraft:basalt_deltas" + ] + ], + "rewards": { + "experience": 500 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/fast_travel.json b/data/generated/V26_1/data/minecraft/advancement/nether/fast_travel.json new file mode 100644 index 00000000..4236f3fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/fast_travel.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "travelled": { + "conditions": { + "distance": { + "horizontal": { + "min": 7000.0 + } + } + }, + "trigger": "minecraft:nether_travel" + } + }, + "display": { + "description": { + "translate": "advancements.nether.fast_travel.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:map" + }, + "title": { + "translate": "advancements.nether.fast_travel.title" + } + }, + "requirements": [ + [ + "travelled" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/find_bastion.json b/data/generated/V26_1/data/minecraft/advancement/nether/find_bastion.json new file mode 100644 index 00000000..b055b60e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/find_bastion.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "bastion": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structures": "minecraft:bastion_remnant" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.find_bastion.description" + }, + "icon": { + "id": "minecraft:polished_blackstone_bricks" + }, + "title": { + "translate": "advancements.nether.find_bastion.title" + } + }, + "requirements": [ + [ + "bastion" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/find_fortress.json b/data/generated/V26_1/data/minecraft/advancement/nether/find_fortress.json new file mode 100644 index 00000000..6b3620be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/find_fortress.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "fortress": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structures": "minecraft:fortress" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.find_fortress.description" + }, + "icon": { + "id": "minecraft:nether_bricks" + }, + "title": { + "translate": "advancements.nether.find_fortress.title" + } + }, + "requirements": [ + [ + "fortress" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/get_wither_skull.json b/data/generated/V26_1/data/minecraft/advancement/nether/get_wither_skull.json new file mode 100644 index 00000000..2862af8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/get_wither_skull.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/find_fortress", + "criteria": { + "wither_skull": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_skeleton_skull" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.get_wither_skull.description" + }, + "icon": { + "id": "minecraft:wither_skeleton_skull" + }, + "title": { + "translate": "advancements.nether.get_wither_skull.title" + } + }, + "requirements": [ + [ + "wither_skull" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/loot_bastion.json b/data/generated/V26_1/data/minecraft/advancement/nether/loot_bastion.json new file mode 100644 index 00000000..d8ee7522 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/loot_bastion.json @@ -0,0 +1,49 @@ +{ + "parent": "minecraft:nether/find_bastion", + "criteria": { + "loot_bastion_bridge": { + "conditions": { + "loot_table": "minecraft:chests/bastion_bridge" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_hoglin_stable": { + "conditions": { + "loot_table": "minecraft:chests/bastion_hoglin_stable" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_other": { + "conditions": { + "loot_table": "minecraft:chests/bastion_other" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_treasure": { + "conditions": { + "loot_table": "minecraft:chests/bastion_treasure" + }, + "trigger": "minecraft:player_generates_container_loot" + } + }, + "display": { + "description": { + "translate": "advancements.nether.loot_bastion.description" + }, + "icon": { + "id": "minecraft:chest" + }, + "title": { + "translate": "advancements.nether.loot_bastion.title" + } + }, + "requirements": [ + [ + "loot_bastion_other", + "loot_bastion_treasure", + "loot_bastion_hoglin_stable", + "loot_bastion_bridge" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/netherite_armor.json b/data/generated/V26_1/data/minecraft/advancement/nether/netherite_armor.json new file mode 100644 index 00000000..0ddd1132 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/netherite_armor.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:nether/obtain_ancient_debris", + "criteria": { + "netherite_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_helmet" + }, + { + "items": "minecraft:netherite_chestplate" + }, + { + "items": "minecraft:netherite_leggings" + }, + { + "items": "minecraft:netherite_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.netherite_armor.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_chestplate" + }, + "title": { + "translate": "advancements.nether.netherite_armor.title" + } + }, + "requirements": [ + [ + "netherite_armor" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/obtain_ancient_debris.json b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_ancient_debris.json new file mode 100644 index 00000000..8f1873a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_ancient_debris.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_ancient_debris.description" + }, + "icon": { + "id": "minecraft:ancient_debris" + }, + "title": { + "translate": "advancements.nether.obtain_ancient_debris.title" + } + }, + "requirements": [ + [ + "ancient_debris" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/obtain_blaze_rod.json b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_blaze_rod.json new file mode 100644 index 00000000..f4512c53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_blaze_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/find_fortress", + "criteria": { + "blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_blaze_rod.description" + }, + "icon": { + "id": "minecraft:blaze_rod" + }, + "title": { + "translate": "advancements.nether.obtain_blaze_rod.title" + } + }, + "requirements": [ + [ + "blaze_rod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/obtain_crying_obsidian.json b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_crying_obsidian.json new file mode 100644 index 00000000..1d34e771 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/obtain_crying_obsidian.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "crying_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:crying_obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_crying_obsidian.description" + }, + "icon": { + "id": "minecraft:crying_obsidian" + }, + "title": { + "translate": "advancements.nether.obtain_crying_obsidian.title" + } + }, + "requirements": [ + [ + "crying_obsidian" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/return_to_sender.json b/data/generated/V26_1/data/minecraft/advancement/nether/return_to_sender.json new file mode 100644 index 00000000..ce99d414 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/return_to_sender.json @@ -0,0 +1,51 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "killed_ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ghast" + } + } + ], + "killing_blow": { + "direct_entity": { + "type": "minecraft:fireball" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.return_to_sender.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:fire_charge" + }, + "title": { + "translate": "advancements.nether.return_to_sender.title" + } + }, + "requirements": [ + [ + "killed_ghast" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider.json b/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider.json new file mode 100644 index 00000000..214e994e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "used_warped_fungus_on_a_stick": { + "conditions": { + "item": { + "items": "minecraft:warped_fungus_on_a_stick" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": { + "type": "minecraft:strider" + } + } + } + ] + }, + "trigger": "minecraft:item_durability_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.ride_strider.description" + }, + "icon": { + "id": "minecraft:warped_fungus_on_a_stick" + }, + "title": { + "translate": "advancements.nether.ride_strider.title" + } + }, + "requirements": [ + [ + "used_warped_fungus_on_a_stick" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json b/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json new file mode 100644 index 00000000..7dc9016b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:nether/ride_strider", + "criteria": { + "ride_entity_distance": { + "conditions": { + "distance": { + "horizontal": { + "min": 50.0 + } + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "dimension": "minecraft:overworld" + }, + "vehicle": { + "type": "minecraft:strider" + } + } + } + ] + }, + "trigger": "minecraft:ride_entity_in_lava" + } + }, + "display": { + "description": { + "translate": "advancements.nether.ride_strider_in_overworld_lava.description" + }, + "icon": { + "id": "minecraft:warped_fungus_on_a_stick" + }, + "title": { + "translate": "advancements.nether.ride_strider_in_overworld_lava.title" + } + }, + "requirements": [ + [ + "ride_entity_distance" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/root.json b/data/generated/V26_1/data/minecraft/advancement/nether/root.json new file mode 100644 index 00000000..8cc26181 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/root.json @@ -0,0 +1,30 @@ +{ + "criteria": { + "entered_nether": { + "conditions": { + "to": "minecraft:the_nether" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/nether", + "description": { + "translate": "advancements.nether.root.description" + }, + "icon": { + "id": "minecraft:red_nether_bricks" + }, + "show_toast": false, + "title": { + "translate": "advancements.nether.root.title" + } + }, + "requirements": [ + [ + "entered_nether" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/summon_wither.json b/data/generated/V26_1/data/minecraft/advancement/nether/summon_wither.json new file mode 100644 index 00000000..56b8b792 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/summon_wither.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:nether/get_wither_skull", + "criteria": { + "summoned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.summon_wither.description" + }, + "icon": { + "id": "minecraft:nether_star" + }, + "title": { + "translate": "advancements.nether.summon_wither.title" + } + }, + "requirements": [ + [ + "summoned" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/nether/uneasy_alliance.json b/data/generated/V26_1/data/minecraft/advancement/nether/uneasy_alliance.json new file mode 100644 index 00000000..ed65a071 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/nether/uneasy_alliance.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:nether/return_to_sender", + "criteria": { + "killed_ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:ghast", + "location": { + "dimension": "minecraft:overworld" + } + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.uneasy_alliance.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:ghast_tear" + }, + "title": { + "translate": "advancements.nether.uneasy_alliance.title" + } + }, + "requirements": [ + [ + "killed_ghast" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/blaze_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/blaze_powder.json new file mode 100644 index 00000000..8d1ddddb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/blaze_powder.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blaze_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blaze_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/brewing_stand.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/brewing_stand.json new file mode 100644 index 00000000..0ac47f8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/brewing_stand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brewing_stand" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brewing_stand" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/cauldron.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/cauldron.json new file mode 100644 index 00000000..ff39eb35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/cauldron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cauldron" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_water_bucket": { + "conditions": { + "items": [ + { + "items": "minecraft:water_bucket" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_water_bucket" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cauldron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json new file mode 100644 index 00000000..8a3761dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_spider_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:spider_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fermented_spider_eye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_spider_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fermented_spider_eye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glass_bottle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glass_bottle.json new file mode 100644 index 00000000..fe21e431 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glass_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json new file mode 100644 index 00000000..857f041b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glistering_melon_slice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glistering_melon_slice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/golden_carrot.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/golden_carrot.json new file mode 100644 index 00000000..08d9c0d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/golden_carrot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_carrot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_carrot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/magma_cream.json b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/magma_cream.json new file mode 100644 index 00000000..fc582504 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/brewing/magma_cream.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magma_cream" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magma_cream" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json new file mode 100644 index 00000000..6ac8ef07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:acacia_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json new file mode 100644 index 00000000..b689bb16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json new file mode 100644 index 00000000..48d940b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json new file mode 100644 index 00000000..3e2bb81a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json new file mode 100644 index 00000000..427da1bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:amethyst_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:amethyst_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite.json new file mode 100644 index 00000000..66f931d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json new file mode 100644 index 00000000..34f4b6fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..fd703a55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_slab_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_slab_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json new file mode 100644 index 00000000..a5645ee1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..2206f376 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_stairs_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_stairs_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json new file mode 100644 index 00000000..c738c907 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json new file mode 100644 index 00000000..9204c7f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_mosaic": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_mosaic" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_mosaic" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..7ba886be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_mosaic": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_mosaic" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_mosaic" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json new file mode 100644 index 00000000..f8a7cd8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:bamboo_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json new file mode 100644 index 00000000..bd1270c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json new file mode 100644 index 00000000..671a9915 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_planks.json new file mode 100644 index 00000000..33ff4525 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:birch_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_slab.json new file mode 100644 index 00000000..22b07f02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json new file mode 100644 index 00000000..93c4a0ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_wood.json new file mode 100644 index 00000000..ca814554 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/birch_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json new file mode 100644 index 00000000..cada244c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json new file mode 100644 index 00000000..8cdecae5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json new file mode 100644 index 00000000..da09c67b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json new file mode 100644 index 00000000..396bfc78 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..358fd4b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json new file mode 100644 index 00000000..4d3708f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..41a99daa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json new file mode 100644 index 00000000..9f25469c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_ice.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_ice.json new file mode 100644 index 00000000..da1920a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_ice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_ice": { + "conditions": { + "items": [ + { + "items": "minecraft:packed_ice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_ice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_ice" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json new file mode 100644 index 00000000..abfc34c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json new file mode 100644 index 00000000..76b6ed81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bone_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bone_block.json new file mode 100644 index 00000000..efb51c73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_meal": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_meal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_meal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bookshelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bookshelf.json new file mode 100644 index 00000000..940dc9dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bookshelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bookshelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bookshelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab.json new file mode 100644 index 00000000..bfc8c4a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json new file mode 100644 index 00000000..996dd7ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_slab_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_slab_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json new file mode 100644 index 00000000..ab6165aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json new file mode 100644 index 00000000..10f026af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_stairs_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_stairs_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bricks.json new file mode 100644 index 00000000..e7da1c7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json new file mode 100644 index 00000000..0d704969 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json new file mode 100644 index 00000000..e16a209e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json new file mode 100644 index 00000000..3bccb2ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json new file mode 100644 index 00000000..00dde3c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:cherry_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json new file mode 100644 index 00000000..0ec95c01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json new file mode 100644 index 00000000..50c80f14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json new file mode 100644 index 00000000..083d3a3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json new file mode 100644 index 00000000..4cac964b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_bookshelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_bookshelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json new file mode 100644 index 00000000..51c1eeb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..5140c19e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..466dcf86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json new file mode 100644 index 00000000..5150c4e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..ccf8dc07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..c2555331 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json new file mode 100644 index 00000000..88b409fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_brick_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_brick_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..0c2324bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json new file mode 100644 index 00000000..e089c93d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..affd482b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..f084caa4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json new file mode 100644 index 00000000..f56f83ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_quartz_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_quartz_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..2a50bf30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json new file mode 100644 index 00000000..236b2f26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..2ecfb755 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json new file mode 100644 index 00000000..f57d5e4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_brick_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_resin_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_brick_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_resin_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..77b8a16e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_resin_bricks_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_resin_bricks_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json new file mode 100644 index 00000000..450da418 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..8582a73b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sandstone_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sandstone_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json new file mode 100644 index 00000000..d51c7aef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_tag": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tag" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..d292337f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..3de92701 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json new file mode 100644 index 00000000..bf0d0329 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json new file mode 100644 index 00000000..471700c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_brick_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_brick_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..d6bcb51c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6a64f40a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..f6f51bac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..b596b5bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/clay.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/clay.json new file mode 100644 index 00000000..ca22e415 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/clay.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:clay_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:clay" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:clay" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coal_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coal_block.json new file mode 100644 index 00000000..fae9443d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coal_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal": { + "conditions": { + "items": [ + { + "items": "minecraft:coal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json new file mode 100644 index 00000000..f554b735 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coarse_dirt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coarse_dirt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..370e665d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json new file mode 100644 index 00000000..514d2f31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..c38bba27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..d30b4bb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..36881a5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..dc6df980 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..d4740fed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json new file mode 100644 index 00000000..c7fed17e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json new file mode 100644 index 00000000..e9137a33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..5a2a0ca5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..1d1ae1bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json new file mode 100644 index 00000000..313f238b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..0d7117d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..51069635 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_block.json new file mode 100644 index 00000000..ccb1af3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate.json new file mode 100644 index 00000000..0748aaa1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json new file mode 100644 index 00000000..db02a2ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_grate_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_grate_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json new file mode 100644 index 00000000..9d01062a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_deepslate_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_deepslate_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json new file mode 100644 index 00000000..a4088a47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_deepslate_tiles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_deepslate_tiles" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json new file mode 100644 index 00000000..8f52984a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..1c6e2b17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json new file mode 100644 index 00000000..afecad1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json new file mode 100644 index 00000000..ed56eba6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json new file mode 100644 index 00000000..068c734a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:crimson_stems" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json new file mode 100644 index 00000000..6287bba5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json new file mode 100644 index 00000000..54629e82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper.json new file mode 100644 index 00000000..5842a495 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b0f42cef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json new file mode 100644 index 00000000..8cd916bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json new file mode 100644 index 00000000..dd6699e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..1e1d3472 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json new file mode 100644 index 00000000..aa841a4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json new file mode 100644 index 00000000..d6021a03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..7ec35537 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json new file mode 100644 index 00000000..4f4e56d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..2626bf8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json new file mode 100644 index 00000000..a40ffcc3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json new file mode 100644 index 00000000..6e8c882a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..d7c8a632 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json new file mode 100644 index 00000000..a7b5cc6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..73db84e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json new file mode 100644 index 00000000..10affaab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json new file mode 100644 index 00000000..b6346479 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..3017cd62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json new file mode 100644 index 00000000..7e56c077 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json new file mode 100644 index 00000000..392dcac6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json new file mode 100644 index 00000000..88981ad7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json new file mode 100644 index 00000000..c2edc97e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:dark_oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json new file mode 100644 index 00000000..b9b79818 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json new file mode 100644 index 00000000..37fef663 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json new file mode 100644 index 00000000..7f626fbd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json new file mode 100644 index 00000000..c7f7a409 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json new file mode 100644 index 00000000..1aebf45f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..b3fb42e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json new file mode 100644 index 00000000..50d5dcf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..911f69e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate.json new file mode 100644 index 00000000..18d876e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json new file mode 100644 index 00000000..9a8c5d77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..32b6d215 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..c0e76246 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..5e898374 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..7fce54ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json new file mode 100644 index 00000000..513cc8f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3739988c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..49efdf86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f54a365f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b194ed1c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json new file mode 100644 index 00000000..6f21d28c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..50bb9a99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json new file mode 100644 index 00000000..382199d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..aef6f1ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json new file mode 100644 index 00000000..8b156c17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..a89f85d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..bea52e92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..77324576 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..35cd426f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b79c0f7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json new file mode 100644 index 00000000..7c3c72b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3ee1d0de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..3ba8b113 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..310f2f12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..3fd21053 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..de129b1c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json new file mode 100644 index 00000000..3ecb7255 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..5c4cfb25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..afb22edc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f0471ee7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..3236263b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diamond_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diamond_block.json new file mode 100644 index 00000000..06ac57a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diamond_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite.json new file mode 100644 index 00000000..4f8b5af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json new file mode 100644 index 00000000..666f1f2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..bee31440 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_slab_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_slab_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json new file mode 100644 index 00000000..70fd0448 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..fbb4c7f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_stairs_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_stairs_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json new file mode 100644 index 00000000..dd0457b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ghast_tear": { + "conditions": { + "items": [ + { + "items": "minecraft:ghast_tear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_ghast" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ghast_tear" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_ghast" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json new file mode 100644 index 00000000..6b5058dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json new file mode 100644 index 00000000..94c94194 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pointed_dripstone": { + "conditions": { + "items": [ + { + "items": "minecraft:pointed_dripstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dripstone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pointed_dripstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dripstone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json new file mode 100644 index 00000000..f3040dca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json new file mode 100644 index 00000000..66b95b3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json new file mode 100644 index 00000000..8345ecb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json new file mode 100644 index 00000000..dc500812 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json new file mode 100644 index 00000000..e7d85ca3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json new file mode 100644 index 00000000..70830bd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json new file mode 100644 index 00000000..22148aec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json new file mode 100644 index 00000000..97d25d47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json new file mode 100644 index 00000000..47e5df80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json new file mode 100644 index 00000000..f4bf3fbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json new file mode 100644 index 00000000..90541087 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json new file mode 100644 index 00000000..9b76b8b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json new file mode 100644 index 00000000..f59e38e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json new file mode 100644 index 00000000..7b9456e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json new file mode 100644 index 00000000..c5b267b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json new file mode 100644 index 00000000..0a0186cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/emerald_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/emerald_block.json new file mode 100644 index 00000000..7448651d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/emerald_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json new file mode 100644 index 00000000..3b54184d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..cb4860f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json new file mode 100644 index 00000000..00394e8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json new file mode 100644 index 00000000..cf734dbd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..d8fab36b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json new file mode 100644 index 00000000..750d97c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json new file mode 100644 index 00000000..3887ba0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json new file mode 100644 index 00000000..69e64180 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_bricks_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_bricks_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json new file mode 100644 index 00000000..901494ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..4856a0cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..41988aa4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json new file mode 100644 index 00000000..d0b76a60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..a3935174 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json new file mode 100644 index 00000000..960ad069 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..32f962b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json new file mode 100644 index 00000000..d815d619 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..426fd674 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e9782fd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..1d2bd270 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ee4a9fed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..8b077753 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glass.json new file mode 100644 index 00000000..fea555db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smelts_to_glass": { + "conditions": { + "items": [ + { + "items": "#minecraft:smelts_to_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smelts_to_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glowstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glowstone.json new file mode 100644 index 00000000..aa0f34d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/glowstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone_dust": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone_dust" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glowstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone_dust" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glowstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gold_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gold_block.json new file mode 100644 index 00000000..4e4a46e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite.json new file mode 100644 index 00000000..6bfad774 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab.json new file mode 100644 index 00000000..46331621 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..84cf8f1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_slab_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_slab_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json new file mode 100644 index 00000000..6603cc6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..6082c7f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_stairs_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_stairs_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json new file mode 100644 index 00000000..1f952538 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json new file mode 100644 index 00000000..dc962e80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json new file mode 100644 index 00000000..3df2b425 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json new file mode 100644 index 00000000..007e2905 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json new file mode 100644 index 00000000..09d32218 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json new file mode 100644 index 00000000..5a827b3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/hay_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/hay_block.json new file mode 100644 index 00000000..7c3eca36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/hay_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hay_block" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wheat": { + "conditions": { + "items": [ + { + "items": "minecraft:wheat" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wheat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hay_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/iron_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/iron_block.json new file mode 100644 index 00000000..d1f4ad33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json new file mode 100644 index 00000000..2d437a5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carved_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:carved_pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jack_o_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carved_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jack_o_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json new file mode 100644 index 00000000..ef63f549 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:jungle_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json new file mode 100644 index 00000000..1ed3e968 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json new file mode 100644 index 00000000..72e9cb8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json new file mode 100644 index 00000000..9b9f7497 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lapis_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lapis_block.json new file mode 100644 index 00000000..347dcbcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lapis_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_lazuli": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_lazuli" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_lazuli" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json new file mode 100644 index 00000000..99d9edf6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json new file mode 100644 index 00000000..ba006479 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json new file mode 100644 index 00000000..89d3dff3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json new file mode 100644 index 00000000..191b17a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json new file mode 100644 index 00000000..e1b47866 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json new file mode 100644 index 00000000..264ebe7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json new file mode 100644 index 00000000..7b68fd61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json new file mode 100644 index 00000000..b13111b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json new file mode 100644 index 00000000..42f0ed59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json new file mode 100644 index 00000000..49b0cde6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json new file mode 100644 index 00000000..8c72a24a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json new file mode 100644 index 00000000..d1c896f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magma_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magma_block.json new file mode 100644 index 00000000..e3159511 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/magma_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magma_cream": { + "conditions": { + "items": [ + { + "items": "minecraft:magma_cream" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magma_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magma_cream" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magma_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json new file mode 100644 index 00000000..2a7cecdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:mangrove_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json new file mode 100644 index 00000000..36e234ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json new file mode 100644 index 00000000..921298e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json new file mode 100644 index 00000000..d52aed59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/melon.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/melon.json new file mode 100644 index 00000000..a23ca0f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/melon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:melon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:melon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json new file mode 100644 index 00000000..0113de3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_moss_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_moss_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json new file mode 100644 index 00000000..9ff8e895 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_vine" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vine": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_vine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json new file mode 100644 index 00000000..ab6fcfd0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..1a7ce968 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..a35129db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..f6f19ce3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json new file mode 100644 index 00000000..a79f07a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..842ccada --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..71802c6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..5b1103ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json new file mode 100644 index 00000000..d63c5046 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_bricks_from_moss_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_bricks_from_moss_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json new file mode 100644 index 00000000..f3b1e2ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_bricks_from_vine" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vine": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_bricks_from_vine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json new file mode 100644 index 00000000..d2331ff7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..fed8ff7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_slab_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_slab_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json new file mode 100644 index 00000000..dce37c82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..6a1a23ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json new file mode 100644 index 00000000..0c6d3aac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_mud": { + "conditions": { + "items": [ + { + "items": "minecraft:packed_mud" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_mud" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json new file mode 100644 index 00000000..b704cb58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mangrove_roots": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_roots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:muddy_mangrove_roots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mangrove_roots" + ] + ], + "rewards": { + "recipes": [ + "minecraft:muddy_mangrove_roots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json new file mode 100644 index 00000000..c808e023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..9e803c17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_slab_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_slab_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json new file mode 100644 index 00000000..b57b9443 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..21500487 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json new file mode 100644 index 00000000..ed2c3ae2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json new file mode 100644 index 00000000..2728873b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_wart": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_wart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_wart_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_wart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_wart_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/netherite_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/netherite_block.json new file mode 100644 index 00000000..91d676a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/netherite_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_planks.json new file mode 100644 index 00000000..6c78d047 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_slab.json new file mode 100644 index 00000000..cef0e37e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json new file mode 100644 index 00000000..4a2b6cfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_wood.json new file mode 100644 index 00000000..bd62427e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json new file mode 100644 index 00000000..81168005 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json new file mode 100644 index 00000000..5ae8d6fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json new file mode 100644 index 00000000..ca71a5c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json new file mode 100644 index 00000000..6796d329 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..0a2b0577 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..dab869ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json new file mode 100644 index 00000000..5cea8fc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ecb78079 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json new file mode 100644 index 00000000..7eb45a16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..6f5bb3bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..3cea579d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ec034dd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..d321f6f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..02118cd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..3001961b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..30b343fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_ice.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_ice.json new file mode 100644 index 00000000..e4ac8a5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_ice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ice": { + "conditions": { + "items": [ + { + "items": "minecraft:ice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:packed_ice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ice" + ] + ], + "rewards": { + "recipes": [ + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_mud.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_mud.json new file mode 100644 index 00000000..5cd96a04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/packed_mud.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud": { + "conditions": { + "items": [ + { + "items": "minecraft:mud" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:packed_mud" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud" + ] + ], + "rewards": { + "recipes": [ + "minecraft:packed_mud" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json new file mode 100644 index 00000000..7bcea532 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:pale_oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json new file mode 100644 index 00000000..c8f7d94e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json new file mode 100644 index 00000000..8fed8cf9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json new file mode 100644 index 00000000..f1f79a27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json new file mode 100644 index 00000000..d66ee5ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json new file mode 100644 index 00000000..08559fc8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json new file mode 100644 index 00000000..77497150 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json new file mode 100644 index 00000000..ec5ca856 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json new file mode 100644 index 00000000..07256bf0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json new file mode 100644 index 00000000..7836486b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..d60cac02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..54578aee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json new file mode 100644 index 00000000..f2083558 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..3d21f9e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..21b84f44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json new file mode 100644 index 00000000..f048e7a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_basalt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json new file mode 100644 index 00000000..fad18170 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_basalt_from_basalt_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_basalt_from_basalt_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json new file mode 100644 index 00000000..13234a34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..e30b651c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..ca112003 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..557a6c16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..e3b0d310 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..06d31c5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..7b78a36f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..330d44ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..5570cf00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json new file mode 100644 index 00000000..6d89484a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json new file mode 100644 index 00000000..06d07a1a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..972c995c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..fc8687b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json new file mode 100644 index 00000000..51e8b24c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..28b6e2a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..1f4768be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json new file mode 100644 index 00000000..2ef334c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..17146d8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..16749d64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json new file mode 100644 index 00000000..ecbe21c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..0cb2f0cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..aaecce68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json new file mode 100644 index 00000000..5a2f9c98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..f5868a81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..46e0b19d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ea3650ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json new file mode 100644 index 00000000..5b98823b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..1018229c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..a603f026 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ac64672a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json new file mode 100644 index 00000000..8e20b110 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json new file mode 100644 index 00000000..002402db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json new file mode 100644 index 00000000..eee8ccf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..911b2abd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..c18e0885 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json new file mode 100644 index 00000000..622b47ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..c2a60aed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..ed96087e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite.json new file mode 100644 index 00000000..5f1d37e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json new file mode 100644 index 00000000..1e000496 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json new file mode 100644 index 00000000..ac14683b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..b24757dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..6a43c4d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab_from_polished_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab_from_polished_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json new file mode 100644 index 00000000..2c2637b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..b137a4e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..117e9df1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs_from_polished_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs_from_polished_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json new file mode 100644 index 00000000..5e61bb3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..7f1be72b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json new file mode 100644 index 00000000..b4c6d5c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..f4063a23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..8d875be2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..eace7ca0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0633449d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..3b03faee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine.json new file mode 100644 index 00000000..dc5eaf99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json new file mode 100644 index 00000000..5614f52b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..4d38034e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_slab_from_prismarine_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_slab_from_prismarine_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json new file mode 100644 index 00000000..27f1f326 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..80c15577 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_stairs_from_prismarine_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_stairs_from_prismarine_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json new file mode 100644 index 00000000..a3176dfd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json new file mode 100644 index 00000000..abd366e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json new file mode 100644 index 00000000..41d9ae0c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_slab_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_slab_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json new file mode 100644 index 00000000..a23db5e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json new file mode 100644 index 00000000..5808b086 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_stairs_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_stairs_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json new file mode 100644 index 00000000..5de5d7ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json new file mode 100644 index 00000000..8289f1de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json new file mode 100644 index 00000000..81c7336f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_block.json new file mode 100644 index 00000000..6ce1ad28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit_popped": { + "conditions": { + "items": [ + { + "items": "minecraft:popped_chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit_popped" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json new file mode 100644 index 00000000..5a128cfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_pillar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..9d861ff4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_pillar_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_pillar_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json new file mode 100644 index 00000000..ff760ee4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..21ec6c90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_slab_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_slab_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json new file mode 100644 index 00000000..de630a19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..5747d072 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_stairs_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_stairs_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_block.json new file mode 100644 index 00000000..816d4cd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json new file mode 100644 index 00000000..36432426 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..ca69b17c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_bricks_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_bricks_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json new file mode 100644 index 00000000..482fa9f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_pillar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..f5d143cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_pillar_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_pillar_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json new file mode 100644 index 00000000..5d18e2bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..369bdffa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_slab_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_slab_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json new file mode 100644 index 00000000..de4f0810 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..d060a077 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_stairs_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_stairs_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json new file mode 100644 index 00000000..007b887d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json new file mode 100644 index 00000000..a86e63fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json new file mode 100644 index 00000000..2a415de4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json new file mode 100644 index 00000000..4f2d6392 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json new file mode 100644 index 00000000..4cec61b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3ba4bf24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json new file mode 100644 index 00000000..750c3b8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3ca8fe8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json new file mode 100644 index 00000000..fcbfe155 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_wart": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_wart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_wart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json new file mode 100644 index 00000000..c6932f48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json new file mode 100644 index 00000000..37ffc7fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ae459a48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json new file mode 100644 index 00000000..050e62eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..6d5bc3e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json new file mode 100644 index 00000000..b65c87a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json new file mode 100644 index 00000000..6b9f6fdd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_block.json new file mode 100644 index 00000000..22188009 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_clump": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_clump" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_clump" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json new file mode 100644 index 00000000..b5ea3c4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..0d4173bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_slab_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_slab_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json new file mode 100644 index 00000000..25305d7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..5acd47e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_stairs_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_stairs_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json new file mode 100644 index 00000000..1b20dfcd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone.json new file mode 100644 index 00000000..05ac5881 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json new file mode 100644 index 00000000..5ea1df31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone", + "has_chiseled_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..86898830 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_slab_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_slab_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json new file mode 100644 index 00000000..aff96ef7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone", + "has_chiseled_sandstone", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json new file mode 100644 index 00000000..714dfad1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_stairs_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_stairs_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json new file mode 100644 index 00000000..1397713c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_crystals": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_crystals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sea_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_crystals" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sea_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json new file mode 100644 index 00000000..4ded68bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json new file mode 100644 index 00000000..b3866b8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json new file mode 100644 index 00000000..e5ad9a90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..f14f27a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json new file mode 100644 index 00000000..915eb347 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..7df6a2fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json new file mode 100644 index 00000000..f905834d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..53a07500 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..d7800ef4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..e3bb9a35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ce5fe098 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json new file mode 100644 index 00000000..0e7072e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json new file mode 100644 index 00000000..0bd95f73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..f420e673 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json new file mode 100644 index 00000000..ce61f570 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..89fff18d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json new file mode 100644 index 00000000..89b2fb04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json new file mode 100644 index 00000000..c8a50e84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json new file mode 100644 index 00000000..3023896e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/snow_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/snow_block.json new file mode 100644 index 00000000..1daf6154 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/snow_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snowball": { + "conditions": { + "items": [ + { + "items": "minecraft:snowball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snow_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snowball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snow_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sponge.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sponge.json new file mode 100644 index 00000000..4295d894 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/sponge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sponge" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wet_sponge": { + "conditions": { + "items": [ + { + "items": "minecraft:wet_sponge" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wet_sponge" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sponge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json new file mode 100644 index 00000000..67128d16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:spruce_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json new file mode 100644 index 00000000..9ab2ca88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json new file mode 100644 index 00000000..6c921e42 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json new file mode 100644 index 00000000..049df90f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone.json new file mode 100644 index 00000000..edf15f5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json new file mode 100644 index 00000000..c8f46fca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..1315d2da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..1dca74f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json new file mode 100644 index 00000000..cf2ece4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..e5d0039e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..6d540f19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json new file mode 100644 index 00000000..22788b02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..389841bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_bricks_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_bricks_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab.json new file mode 100644 index 00000000..52b39624 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..9772a6ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json new file mode 100644 index 00000000..59942e14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..c10f6cd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json new file mode 100644 index 00000000..6b9f12fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_acacia_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_acacia_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json new file mode 100644 index 00000000..d8dc4d55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_birch_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_birch_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json new file mode 100644 index 00000000..dbbe1592 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_cherry_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_cherry_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json new file mode 100644 index 00000000..51c71c3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_crimson_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_crimson_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json new file mode 100644 index 00000000..85bea3e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_dark_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_dark_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json new file mode 100644 index 00000000..04a87235 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_jungle_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_jungle_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json new file mode 100644 index 00000000..7c021353 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_mangrove_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_mangrove_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json new file mode 100644 index 00000000..fc3cc865 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json new file mode 100644 index 00000000..45a19e7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_pale_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_pale_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json new file mode 100644 index 00000000..7bdbfb28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_spruce_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_spruce_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json new file mode 100644 index 00000000..b0d9a4e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_warped_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_warped_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/terracotta.json new file mode 100644 index 00000000..81d3a796 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:clay" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json new file mode 100644 index 00000000..fedd8daf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tinted_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tinted_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json new file mode 100644 index 00000000..5af88e65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..6fc042a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6d86a383 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..997afe63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json new file mode 100644 index 00000000..b1b6ead9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..f0ff02ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..a28481c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..9480f34d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json new file mode 100644 index 00000000..56c6a18f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..56159bee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..ebad311e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json new file mode 100644 index 00000000..28dbd47a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..498bb7b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json new file mode 100644 index 00000000..1ac13897 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..561d405e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json new file mode 100644 index 00000000..46525e23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_planks.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_planks.json new file mode 100644 index 00000000..21ccebc6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:warped_stems" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_slab.json new file mode 100644 index 00000000..2d302c6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json new file mode 100644 index 00000000..bd52cf37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json new file mode 100644 index 00000000..20d25a37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..23ebad7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..629cf874 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..83327907 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..1429e034 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json new file mode 100644 index 00000000..a65972d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_block_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_block_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..49bf60b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..d58b0a4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..f44fb027 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json new file mode 100644 index 00000000..7e38162a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..b2e996eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..56c39a24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..6aa597c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json new file mode 100644 index 00000000..a8f00595 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..99c3cde1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..d96b28da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json new file mode 100644 index 00000000..159a33e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..08b2f6e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..0253a88d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..aa1b052c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..39346145 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..222709f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a058f90a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..ef6d1c06 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..09a9daef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..aac7b5a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..e061d518 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..ffff639f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..43320f30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..f7688dec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..80edb4da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json new file mode 100644 index 00000000..ee54119a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..41eb7856 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..32d24008 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..2e0b6b5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..08897f0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..7ba78279 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..02896bc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..ee22aede --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..09c272ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..1817e0c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..64483506 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ec5c46f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..7d9cc7c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..c8b842f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..b013c6ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..2049c56b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..3aebaf73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..ac0ebc02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..fb747290 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..3d577204 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..cd81b902 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ac054612 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..00468ce4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..291c40bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..2edc2da2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..71e0504d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json new file mode 100644 index 00000000..bc670d4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..7db95676 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..eb64938f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..acc1d3c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..d2554e13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..c80956cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..07cf847f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..7443a840 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..b4d1d1cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..802efadc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..a11599c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ae7d1e66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..e85f4455 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..5e41ffe7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..8af01a83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..40de729e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..88f608e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..f2e84834 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..67c1bed5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..64dfa3ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..756dd418 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..c2c95198 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..16e60e00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..443a0f88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..70ee37ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json new file mode 100644 index 00000000..0655153b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..19804e15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..136661a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..c4d3064c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..a1921007 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..a49e5793 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..8e49d5b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..6c6aac2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..2683a9bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..9400c115 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..d99fbf9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c9dfd3a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..ac6ccdc3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..80eebfe7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..72cf96eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..df3df9a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..82243853 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..dc84e091 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json new file mode 100644 index 00000000..86708450 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..95c49ebb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..c0500e09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json new file mode 100644 index 00000000..126185ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..4fea89fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json new file mode 100644 index 00000000..c65fd54b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..a5353723 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json new file mode 100644 index 00000000..ca088625 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c63d0b91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..63e0cfa1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..346f9250 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..fa296b12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..0a7bea31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json new file mode 100644 index 00000000..ac35a8ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json new file mode 100644 index 00000000..55062706 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json new file mode 100644 index 00000000..95ae5884 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json new file mode 100644 index 00000000..dced3658 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_wool_from_string" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_wool_from_string" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json new file mode 100644 index 00000000..4e540872 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json new file mode 100644 index 00000000..7a414594 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json new file mode 100644 index 00000000..b0f4b8cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/arrow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/arrow.json new file mode 100644 index 00000000..d9a949b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/arrow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_feather": { + "conditions": { + "items": [ + { + "items": "minecraft:feather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_feather", + "has_flint" + ] + ], + "rewards": { + "recipes": [ + "minecraft:arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/black_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/black_harness.json new file mode 100644 index 00000000..1dae0d67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/black_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/blue_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/blue_harness.json new file mode 100644 index 00000000..2aa627e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/bow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/bow.json new file mode 100644 index 00000000..475ddb24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/bow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/brown_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/brown_harness.json new file mode 100644 index 00000000..c881b49e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/brown_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_boots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_boots.json new file mode 100644 index 00000000..8c456ed1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_chestplate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_chestplate.json new file mode 100644 index 00000000..4fe1fdb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_helmet.json new file mode 100644 index 00000000..21228c1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_leggings.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_leggings.json new file mode 100644 index 00000000..aadb1217 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_spear.json new file mode 100644 index 00000000..1f89768c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_sword.json new file mode 100644 index 00000000..e9f59204 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/copper_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/crossbow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/crossbow.json new file mode 100644 index 00000000..5690c1ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/crossbow.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crossbow" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tripwire_hook": { + "conditions": { + "items": [ + { + "items": "minecraft:tripwire_hook" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string", + "has_iron_ingot", + "has_tripwire_hook" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crossbow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/cyan_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/cyan_harness.json new file mode 100644 index 00000000..7a64ee5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/cyan_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_boots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_boots.json new file mode 100644 index 00000000..1bbffa7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_chestplate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_chestplate.json new file mode 100644 index 00000000..22c62735 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_helmet.json new file mode 100644 index 00000000..9eb5c199 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_leggings.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_leggings.json new file mode 100644 index 00000000..4107beaf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_spear.json new file mode 100644 index 00000000..6a95cf15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_sword.json new file mode 100644 index 00000000..6d945b11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/diamond_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_black_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_black_harness.json new file mode 100644 index 00000000..9106bcfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_black_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_blue_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_blue_harness.json new file mode 100644 index 00000000..45a1224b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_brown_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_brown_harness.json new file mode 100644 index 00000000..488d3b31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_brown_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json new file mode 100644 index 00000000..7265f72d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_gray_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_gray_harness.json new file mode 100644 index 00000000..bbca3b0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_green_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_green_harness.json new file mode 100644 index 00000000..1b628ebe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_green_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json new file mode 100644 index 00000000..711e4f53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json new file mode 100644 index 00000000..d12b45c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_lime_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_lime_harness.json new file mode 100644 index 00000000..598aa402 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_lime_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json new file mode 100644 index 00000000..600c22ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_orange_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_orange_harness.json new file mode 100644 index 00000000..3156e92d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_orange_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_pink_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_pink_harness.json new file mode 100644 index 00000000..f04fd583 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_pink_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_purple_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_purple_harness.json new file mode 100644 index 00000000..06cdfd0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_purple_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_red_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_red_harness.json new file mode 100644 index 00000000..78efa4cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_red_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_white_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_white_harness.json new file mode 100644 index 00000000..525dae8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_white_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json new file mode 100644 index 00000000..734e65e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_boots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_boots.json new file mode 100644 index 00000000..ce4e66db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_chestplate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_chestplate.json new file mode 100644 index 00000000..1c40b6b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_helmet.json new file mode 100644 index 00000000..ee9bd55f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_leggings.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_leggings.json new file mode 100644 index 00000000..122729ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_spear.json new file mode 100644 index 00000000..1995655e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_sword.json new file mode 100644 index 00000000..a6b8a22e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/golden_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/gray_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/gray_harness.json new file mode 100644 index 00000000..2408659b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/green_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/green_harness.json new file mode 100644 index 00000000..7d65884b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/green_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_boots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_boots.json new file mode 100644 index 00000000..04a213f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_chestplate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_chestplate.json new file mode 100644 index 00000000..0b2f5852 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_helmet.json new file mode 100644 index 00000000..53a1667d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_leggings.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_leggings.json new file mode 100644 index 00000000..0a5c437f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_spear.json new file mode 100644 index 00000000..2f2ed934 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_sword.json new file mode 100644 index 00000000..5899a6a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/iron_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_boots.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_boots.json new file mode 100644 index 00000000..8394fc24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_chestplate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_chestplate.json new file mode 100644 index 00000000..a6626bcf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_helmet.json new file mode 100644 index 00000000..1b4e445d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_leggings.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_leggings.json new file mode 100644 index 00000000..726c89aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/leather_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_blue_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_blue_harness.json new file mode 100644 index 00000000..e417b9db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_gray_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_gray_harness.json new file mode 100644 index 00000000..5fe6b90f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/light_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/lime_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/lime_harness.json new file mode 100644 index 00000000..06a00932 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/lime_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/mace.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/mace.json new file mode 100644 index 00000000..ba0263ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/mace.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_breeze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:breeze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_heavy_core": { + "conditions": { + "items": [ + { + "items": "minecraft:heavy_core" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_breeze_rod", + "has_heavy_core" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/magenta_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/magenta_harness.json new file mode 100644 index 00000000..f0bda003 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/magenta_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json new file mode 100644 index 00000000..0ca28531 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_boots_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_boots_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json new file mode 100644 index 00000000..fec2f5cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_chestplate_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_chestplate_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json new file mode 100644 index 00000000..afc1f9cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_helmet_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_helmet_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json new file mode 100644 index 00000000..c2fd615b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_horse_armor_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_horse_armor_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json new file mode 100644 index 00000000..f2c162dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_leggings_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_leggings_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json new file mode 100644 index 00000000..5313ca38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_nautilus_armor_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_nautilus_armor_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json new file mode 100644 index 00000000..9fc631f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_spear_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_spear_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json new file mode 100644 index 00000000..0280ef80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_sword_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_sword_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/orange_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/orange_harness.json new file mode 100644 index 00000000..84963abd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/orange_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/pink_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/pink_harness.json new file mode 100644 index 00000000..a35a0459 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/pink_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/purple_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/purple_harness.json new file mode 100644 index 00000000..43be1672 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/purple_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/red_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/red_harness.json new file mode 100644 index 00000000..04a19361 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/red_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/saddle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/saddle.json new file mode 100644 index 00000000..1df7e159 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/saddle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:saddle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:saddle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/shield.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/shield.json new file mode 100644 index 00000000..b3e26b81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/shield.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shield" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shield" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/spectral_arrow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/spectral_arrow.json new file mode 100644 index 00000000..af318e41 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/spectral_arrow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone_dust": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone_dust" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spectral_arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone_dust" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spectral_arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_spear.json new file mode 100644 index 00000000..3b33c8c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_sword.json new file mode 100644 index 00000000..9d3a6e91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/stone_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/turtle_helmet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/turtle_helmet.json new file mode 100644 index 00000000..81e034cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/turtle_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:turtle_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_turtle_scute": { + "conditions": { + "items": [ + { + "items": "minecraft:turtle_scute" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_turtle_scute" + ] + ], + "rewards": { + "recipes": [ + "minecraft:turtle_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/white_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/white_harness.json new file mode 100644 index 00000000..6a9fd00d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/white_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wolf_armor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wolf_armor.json new file mode 100644 index 00000000..a280d0b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wolf_armor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_armadillo_scute": { + "conditions": { + "items": [ + { + "items": "minecraft:armadillo_scute" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wolf_armor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_armadillo_scute" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wolf_armor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_spear.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_spear.json new file mode 100644 index 00000000..88a532eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_sword.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_sword.json new file mode 100644 index 00000000..806742f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/wooden_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/combat/yellow_harness.json b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/yellow_harness.json new file mode 100644 index 00000000..4209d18a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/combat/yellow_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_fence.json new file mode 100644 index 00000000..679b762c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json new file mode 100644 index 00000000..684ac230 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_shelf.json new file mode 100644 index 00000000..05cee9bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_acacia_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_acacia_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_sign.json new file mode 100644 index 00000000..eb4acbdd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/acacia_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall.json new file mode 100644 index 00000000..540978aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json new file mode 100644 index 00000000..5cc823b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_wall_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_wall_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/anvil.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/anvil.json new file mode 100644 index 00000000..f8749cd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/anvil.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:anvil" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:anvil" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/armor_stand.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/armor_stand.json new file mode 100644 index 00000000..9184521b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/armor_stand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:armor_stand" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:armor_stand" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_fence.json new file mode 100644 index 00000000..8d8ae16a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json new file mode 100644 index 00000000..3ced0557 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_bamboo_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json new file mode 100644 index 00000000..a300333d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json new file mode 100644 index 00000000..eb3d7379 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_bamboo_block": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_bamboo_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_bamboo_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_sign.json new file mode 100644 index 00000000..360d08a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/bamboo_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/barrel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/barrel.json new file mode 100644 index 00000000..a78609db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/barrel.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "#minecraft:planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:barrel" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wood_slab": { + "conditions": { + "items": [ + { + "items": "#minecraft:wooden_slabs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks", + "has_wood_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:barrel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/beehive.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/beehive.json new file mode 100644 index 00000000..f1b9dc72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/beehive.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beehive" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beehive" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_fence.json new file mode 100644 index 00000000..c13058b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json new file mode 100644 index 00000000..38248fe6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_shelf.json new file mode 100644 index 00000000..34258e3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_birch_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_birch_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_sign.json new file mode 100644 index 00000000..66c8ce8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/birch_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_banner.json new file mode 100644 index 00000000..e10a4d48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_bed.json new file mode 100644 index 00000000..46216736 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_candle.json new file mode 100644 index 00000000..37fed0ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_carpet.json new file mode 100644 index 00000000..a1d68c3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json new file mode 100644 index 00000000..98fd4a64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:black_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_shulker_box.json new file mode 100644 index 00000000..0206b688 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json new file mode 100644 index 00000000..88db2846 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:black_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..769364b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall.json new file mode 100644 index 00000000..e567cb89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..e4855a9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blast_furnace.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blast_furnace.json new file mode 100644 index 00000000..d1a6817e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blast_furnace.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blast_furnace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blast_furnace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_banner.json new file mode 100644 index 00000000..12fe9666 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_bed.json new file mode 100644 index 00000000..d27e9652 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_candle.json new file mode 100644 index 00000000..e793487f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_carpet.json new file mode 100644 index 00000000..a8901ae0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json new file mode 100644 index 00000000..dd3a4fda --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json new file mode 100644 index 00000000..63af0808 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json new file mode 100644 index 00000000..a986fe40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..b63151ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall.json new file mode 100644 index 00000000..e2f5d6d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json new file mode 100644 index 00000000..ed610d9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_wall_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_wall_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_banner.json new file mode 100644 index 00000000..8ec9f5d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_bed.json new file mode 100644 index 00000000..03d31f4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_candle.json new file mode 100644 index 00000000..ac9060c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_carpet.json new file mode 100644 index 00000000..482d9674 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json new file mode 100644 index 00000000..cfb97244 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json new file mode 100644 index 00000000..2084251e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json new file mode 100644 index 00000000..b446f5fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..e13a7278 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/campfire.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/campfire.json new file mode 100644 index 00000000..66bca0ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/campfire.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal": { + "conditions": { + "items": [ + { + "items": "#minecraft:coals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:campfire" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick", + "has_coal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:campfire" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/candle.json new file mode 100644 index 00000000..13521a09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/candle.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cartography_table.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cartography_table.json new file mode 100644 index 00000000..d3d9de0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cartography_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cartography_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cartography_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_fence.json new file mode 100644 index 00000000..2d21e1ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json new file mode 100644 index 00000000..9998ef4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_shelf.json new file mode 100644 index 00000000..1b20c435 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_cherry_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_cherry_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_sign.json new file mode 100644 index 00000000..c1e2114d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cherry_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/chest.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/chest.json new file mode 100644 index 00000000..6e00416a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lots_of_items": { + "conditions": { + "slots": { + "occupied": { + "min": 10 + } + } + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lots_of_items" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json new file mode 100644 index 00000000..b695980b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..caeac7f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..e88773d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json new file mode 100644 index 00000000..cde03a7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..9cf1be91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..391819c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/composter.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/composter.json new file mode 100644 index 00000000..eeb7a2eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/composter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:composter" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wood_slab": { + "conditions": { + "items": [ + { + "items": "#minecraft:wooden_slabs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wood_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:composter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_bars.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_bars.json new file mode 100644 index 00000000..68a05dc4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_bars.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_bars" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_bars" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chain.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chain.json new file mode 100644 index 00000000..f9af61c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chain.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chain" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chain" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chest.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chest.json new file mode 100644 index 00000000..46344970 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_lantern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_lantern.json new file mode 100644 index 00000000..8ca9c75b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_torch.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_torch.json new file mode 100644 index 00000000..0b1a5953 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/copper_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crafting_table.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crafting_table.json new file mode 100644 index 00000000..a040c876 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crafting_table.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crafting_table" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "unlock_right_away": { + "trigger": "minecraft:tick" + } + }, + "requirements": [ + [ + "has_the_recipe", + "unlock_right_away" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crafting_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_fence.json new file mode 100644 index 00000000..0d2c70e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json new file mode 100644 index 00000000..24af841e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_shelf.json new file mode 100644 index 00000000..80113f9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_crimson_stem": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_crimson_stem" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_sign.json new file mode 100644 index 00000000..270f36a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/crimson_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_banner.json new file mode 100644 index 00000000..acd7aebb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_bed.json new file mode 100644 index 00000000..7ea83de7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_candle.json new file mode 100644 index 00000000..b7b8f75e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_carpet.json new file mode 100644 index 00000000..dea236e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json new file mode 100644 index 00000000..90da75ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json new file mode 100644 index 00000000..36c766a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json new file mode 100644 index 00000000..3b993179 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..ff50f603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json new file mode 100644 index 00000000..971316cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json new file mode 100644 index 00000000..a80fe559 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json new file mode 100644 index 00000000..f5a91268 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_dark_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_dark_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json new file mode 100644 index 00000000..119fcef6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json new file mode 100644 index 00000000..0b336480 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "#minecraft:decorated_pot_ingredients" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:decorated_pot_simple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:decorated_pot_simple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json new file mode 100644 index 00000000..ef37f9b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..5563bd2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..b16dae6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..67b5a7c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..e9c3bbd6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json new file mode 100644 index 00000000..9e33f69e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..d4dc2563 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..f41a111c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..668360d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..ef25a723 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..d07c0242 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall.json new file mode 100644 index 00000000..44e7acd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json new file mode 100644 index 00000000..f1bb5f13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_wall_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_wall_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_bed.json new file mode 100644 index 00000000..cf361c11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json new file mode 100644 index 00000000..39000276 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json new file mode 100644 index 00000000..dc6607d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json new file mode 100644 index 00000000..f1efd205 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json new file mode 100644 index 00000000..f57f8d7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json new file mode 100644 index 00000000..c6754e22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json new file mode 100644 index 00000000..30eb18aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json new file mode 100644 index 00000000..6dd04f3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json new file mode 100644 index 00000000..1b0e6ea6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json new file mode 100644 index 00000000..bcc80ed4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_bed.json new file mode 100644 index 00000000..6211d9db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json new file mode 100644 index 00000000..c77daaec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json new file mode 100644 index 00000000..dd1cd70e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json new file mode 100644 index 00000000..2d3c370c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json new file mode 100644 index 00000000..ef1f2b65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json new file mode 100644 index 00000000..15d9cd20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json new file mode 100644 index 00000000..775ac651 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json new file mode 100644 index 00000000..376f1be9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json new file mode 100644 index 00000000..d950fc6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json new file mode 100644 index 00000000..e6bc516c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json new file mode 100644 index 00000000..1cdd1483 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json new file mode 100644 index 00000000..75628c75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json new file mode 100644 index 00000000..48541cf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json new file mode 100644 index 00000000..cd85f0a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json new file mode 100644 index 00000000..f3d0e29b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json new file mode 100644 index 00000000..9072913f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_bed.json new file mode 100644 index 00000000..9ca7efcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json new file mode 100644 index 00000000..26226afa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_bed.json new file mode 100644 index 00000000..ac91e955 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json new file mode 100644 index 00000000..3ee77f15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json new file mode 100644 index 00000000..4945ceb9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json new file mode 100644 index 00000000..514a0403 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/enchanting_table.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/enchanting_table.json new file mode 100644 index 00000000..771cfc3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/enchanting_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:enchanting_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:enchanting_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_crystal.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_crystal.json new file mode 100644 index 00000000..3ac71d8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_crystal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ender_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:ender_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_crystal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ender_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_crystal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_rod.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_rod.json new file mode 100644 index 00000000..e5a5de92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit_popped": { + "conditions": { + "items": [ + { + "items": "minecraft:popped_chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit_popped" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json new file mode 100644 index 00000000..2fa03c7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..6975a52f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json new file mode 100644 index 00000000..eb59cb84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ender_chest.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ender_chest.json new file mode 100644 index 00000000..75cc0f3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ender_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ender_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:ender_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ender_chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ender_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ender_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/fletching_table.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/fletching_table.json new file mode 100644 index 00000000..c35a3250 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/fletching_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fletching_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flint" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fletching_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/flower_pot.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/flower_pot.json new file mode 100644 index 00000000..8cc4c029 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/flower_pot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flower_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flower_pot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/furnace.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/furnace.json new file mode 100644 index 00000000..9e131324 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/furnace.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_crafting_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:furnace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:furnace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glass_pane.json new file mode 100644 index 00000000..4a55af0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glow_item_frame.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glow_item_frame.json new file mode 100644 index 00000000..60b0e3a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/glow_item_frame.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glow_ink_sac": { + "conditions": { + "items": [ + { + "items": "minecraft:glow_ink_sac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_item_frame": { + "conditions": { + "items": [ + { + "items": "minecraft:item_frame" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glow_item_frame" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_item_frame", + "has_glow_ink_sac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glow_item_frame" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/golden_dandelion.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/golden_dandelion.json new file mode 100644 index 00000000..4f360276 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/golden_dandelion.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall.json new file mode 100644 index 00000000..abf17098 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json new file mode 100644 index 00000000..bd0796c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_wall_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_wall_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_banner.json new file mode 100644 index 00000000..0f5cdb66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_bed.json new file mode 100644 index 00000000..5976b3a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_candle.json new file mode 100644 index 00000000..819761c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_carpet.json new file mode 100644 index 00000000..3e17033a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json new file mode 100644 index 00000000..37f33e67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json new file mode 100644 index 00000000..0b180cd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json new file mode 100644 index 00000000..51b306c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..41997e58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_banner.json new file mode 100644 index 00000000..550a7fb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_bed.json new file mode 100644 index 00000000..acf62aa3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_candle.json new file mode 100644 index 00000000..4b3a88cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_carpet.json new file mode 100644 index 00000000..e10b5923 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json new file mode 100644 index 00000000..6e8830c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:green_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_shulker_box.json new file mode 100644 index 00000000..632a386c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json new file mode 100644 index 00000000..2d081cfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:green_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..6c03183e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/grindstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/grindstone.json new file mode 100644 index 00000000..57e51491 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/grindstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:grindstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:grindstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/honeycomb_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/honeycomb_block.json new file mode 100644 index 00000000..77367ece --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/honeycomb_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honeycomb_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honeycomb_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_bars.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_bars.json new file mode 100644 index 00000000..0b0b56cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_bars.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_bars" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_bars" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_chain.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_chain.json new file mode 100644 index 00000000..ba21e93a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/iron_chain.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_chain" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_chain" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/item_frame.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/item_frame.json new file mode 100644 index 00000000..b9a85d94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/item_frame.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:item_frame" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:item_frame" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jukebox.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jukebox.json new file mode 100644 index 00000000..d4a6202d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jukebox.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jukebox" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jukebox" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_fence.json new file mode 100644 index 00000000..589f773b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json new file mode 100644 index 00000000..1a75d7fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_shelf.json new file mode 100644 index 00000000..578798eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_jungle_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_jungle_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_sign.json new file mode 100644 index 00000000..e432d535 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/jungle_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ladder.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ladder.json new file mode 100644 index 00000000..6d3f284d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/ladder.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ladder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ladder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lantern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lantern.json new file mode 100644 index 00000000..115abdb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lantern.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_banner.json new file mode 100644 index 00000000..6a4fd4c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_bed.json new file mode 100644 index 00000000..bfa709af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_candle.json new file mode 100644 index 00000000..ddf547ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json new file mode 100644 index 00000000..d68bc4b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..8648482a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json new file mode 100644 index 00000000..53475fed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..959f02d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..f21a4d14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_banner.json new file mode 100644 index 00000000..25d833f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_bed.json new file mode 100644 index 00000000..264c7085 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_candle.json new file mode 100644 index 00000000..4d9e477a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json new file mode 100644 index 00000000..f378a58f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..34d2cdde --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json new file mode 100644 index 00000000..70574ede --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..0a813c4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..ff3c07ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_banner.json new file mode 100644 index 00000000..525efd7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_bed.json new file mode 100644 index 00000000..ebe169e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_candle.json new file mode 100644 index 00000000..f11f19ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_carpet.json new file mode 100644 index 00000000..d8096332 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json new file mode 100644 index 00000000..e573f1dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json new file mode 100644 index 00000000..908856a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json new file mode 100644 index 00000000..7ddc0d34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..12eef0c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lodestone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lodestone.json new file mode 100644 index 00000000..de00977e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/lodestone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_lodestone": { + "conditions": { + "items": [ + { + "items": "minecraft:lodestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lodestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot", + "has_lodestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lodestone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/loom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/loom.json new file mode 100644 index 00000000..c1829b79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/loom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:loom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:loom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_banner.json new file mode 100644 index 00000000..b9a0ce2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_bed.json new file mode 100644 index 00000000..eda1465d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_candle.json new file mode 100644 index 00000000..201b5296 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_carpet.json new file mode 100644 index 00000000..01b52ff7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json new file mode 100644 index 00000000..9d3ebde0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json new file mode 100644 index 00000000..2202d88a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json new file mode 100644 index 00000000..43b98405 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..0f1e26ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_fence.json new file mode 100644 index 00000000..103f4d12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json new file mode 100644 index 00000000..33d389ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json new file mode 100644 index 00000000..1cc32c48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_mangrove_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_mangrove_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_sign.json new file mode 100644 index 00000000..172ecacd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mangrove_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/moss_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/moss_carpet.json new file mode 100644 index 00000000..cec3703c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/moss_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:moss_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:moss_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json new file mode 100644 index 00000000..84af20f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..672880e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json new file mode 100644 index 00000000..41ec8830 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..3f2cd0ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json new file mode 100644 index 00000000..03ecfc9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..60f73b68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_wall_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_wall_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json new file mode 100644 index 00000000..689f18ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json new file mode 100644 index 00000000..7742728b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..0cdfae72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_wall_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_wall_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_fence.json new file mode 100644 index 00000000..209d0d64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json new file mode 100644 index 00000000..9ce6308a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_shelf.json new file mode 100644 index 00000000..52832e6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_sign.json new file mode 100644 index 00000000..d18ded65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_banner.json new file mode 100644 index 00000000..0295ee43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_bed.json new file mode 100644 index 00000000..46082788 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_candle.json new file mode 100644 index 00000000..d99adc25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_carpet.json new file mode 100644 index 00000000..2ff38e0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json new file mode 100644 index 00000000..b833cdf4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json new file mode 100644 index 00000000..a9f88b04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json new file mode 100644 index 00000000..f5ec07f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..293807ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/painting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/painting.json new file mode 100644 index 00000000..fe37a2d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/painting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:painting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wool": { + "conditions": { + "items": [ + { + "items": "#minecraft:wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:painting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json new file mode 100644 index 00000000..da87d689 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pale_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_moss_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pale_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_moss_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json new file mode 100644 index 00000000..a42d55c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json new file mode 100644 index 00000000..64a89bae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json new file mode 100644 index 00000000..d9d7cb22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_pale_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_pale_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json new file mode 100644 index 00000000..6319907f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_banner.json new file mode 100644 index 00000000..20afae63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_bed.json new file mode 100644 index 00000000..87d48fa4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_candle.json new file mode 100644 index 00000000..131449fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_carpet.json new file mode 100644 index 00000000..35f60795 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json new file mode 100644 index 00000000..2fdcf7f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json new file mode 100644 index 00000000..de707e6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json new file mode 100644 index 00000000..c85bffd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..9b632ef9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..e1fa93f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..5d31d82e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..13e22987 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..04ae817f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json new file mode 100644 index 00000000..739c693d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..82b745e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..530da8da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json new file mode 100644 index 00000000..a58bfdad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..71e72510 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..38472716 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b6299852 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json new file mode 100644 index 00000000..401bcf28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..5181c799 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..98f98157 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall.json new file mode 100644 index 00000000..fbe39219 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json new file mode 100644 index 00000000..3d076295 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_wall_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_wall_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_banner.json new file mode 100644 index 00000000..7ae53c0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_bed.json new file mode 100644 index 00000000..6386d4c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_candle.json new file mode 100644 index 00000000..3f4d76da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_carpet.json new file mode 100644 index 00000000..5275850d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json new file mode 100644 index 00000000..01c9ed29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json new file mode 100644 index 00000000..adfef665 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json new file mode 100644 index 00000000..bb779838 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..7e0bf03d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_banner.json new file mode 100644 index 00000000..77b5d97f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_bed.json new file mode 100644 index 00000000..7e5754fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_candle.json new file mode 100644 index 00000000..63bf3d66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_carpet.json new file mode 100644 index 00000000..88d6459c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json new file mode 100644 index 00000000..989a4504 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:red_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json new file mode 100644 index 00000000..c82f4069 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..5a21584f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json new file mode 100644 index 00000000..40242a45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..f9748732 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_shulker_box.json new file mode 100644 index 00000000..598f0009 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json new file mode 100644 index 00000000..86e58b98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:red_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..94cb1aed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json new file mode 100644 index 00000000..64cdcde5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..d6871b65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_wall_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_wall_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/respawn_anchor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/respawn_anchor.json new file mode 100644 index 00000000..ca1ad366 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/respawn_anchor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:crying_obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:respawn_anchor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:respawn_anchor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall.json new file mode 100644 index 00000000..25e00a10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json new file mode 100644 index 00000000..fa177930 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_wall_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_wall_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/scaffolding.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/scaffolding.json new file mode 100644 index 00000000..fc54ea8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/scaffolding.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:scaffolding" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:scaffolding" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/shulker_box.json new file mode 100644 index 00000000..05315846 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_shell": { + "conditions": { + "items": [ + { + "items": "minecraft:shulker_shell" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_shell" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smithing_table.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smithing_table.json new file mode 100644 index 00000000..bfc7a13f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smithing_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smithing_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smithing_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smoker.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smoker.json new file mode 100644 index 00000000..5a47eb48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/smoker.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_furnace": { + "conditions": { + "items": [ + { + "items": "minecraft:furnace" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smoker" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_furnace" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smoker" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/snow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/snow.json new file mode 100644 index 00000000..4d987ac0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/snow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snowball": { + "conditions": { + "items": [ + { + "items": "minecraft:snowball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snowball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_campfire.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_campfire.json new file mode 100644 index 00000000..b96e10fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_campfire.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_sand": { + "conditions": { + "items": [ + { + "items": "#minecraft:soul_fire_base_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_campfire" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_campfire" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_lantern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_lantern.json new file mode 100644 index 00000000..d9cbfea1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:soul_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_torch.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_torch.json new file mode 100644 index 00000000..cb9bdd3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/soul_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_sand": { + "conditions": { + "items": [ + { + "items": "#minecraft:soul_fire_base_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_fence.json new file mode 100644 index 00000000..235f7614 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json new file mode 100644 index 00000000..7d476d12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_shelf.json new file mode 100644 index 00000000..692ceaf8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_spruce_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_spruce_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_sign.json new file mode 100644 index 00000000..8087b5bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/spruce_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json new file mode 100644 index 00000000..b02a9026 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..dd565944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..be9e4bf2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stonecutter.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stonecutter.json new file mode 100644 index 00000000..9965629d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/stonecutter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stonecutter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stonecutter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/torch.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/torch.json new file mode 100644 index 00000000..2c86ba82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_pickaxe" + ] + ], + "rewards": { + "recipes": [ + "minecraft:torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json new file mode 100644 index 00000000..d42903ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..1c9055b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6b311d71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..f5369992 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall.json new file mode 100644 index 00000000..a9456cf0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..6a83e7af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_fence.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_fence.json new file mode 100644 index 00000000..d021617b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json new file mode 100644 index 00000000..c0257e32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_logs": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_shelf.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_shelf.json new file mode 100644 index 00000000..f8113728 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_warped_stem": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_warped_stem" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_sign.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_sign.json new file mode 100644 index 00000000..6d4cc769 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/warped_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_banner.json new file mode 100644 index 00000000..b6c95cd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_banner" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_bed.json new file mode 100644 index 00000000..85620b16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_bed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_candle.json new file mode 100644 index 00000000..0ce919aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_candle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_carpet.json new file mode 100644 index 00000000..58c14de6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json new file mode 100644 index 00000000..a1fa24d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:white_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_shulker_box.json new file mode 100644 index 00000000..adecba50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json new file mode 100644 index 00000000..60545827 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:white_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8dafc5c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_banner.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_banner.json new file mode 100644 index 00000000..b3280824 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_banner" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_bed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_bed.json new file mode 100644 index 00000000..00de75dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_bed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_candle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_candle.json new file mode 100644 index 00000000..75123753 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_candle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_carpet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_carpet.json new file mode 100644 index 00000000..aa60ede0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json new file mode 100644 index 00000000..b1a4dca1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json new file mode 100644 index 00000000..a43160e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json new file mode 100644 index 00000000..3fb7b04e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..76a23474 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato.json new file mode 100644 index 00000000..7f2a44f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json new file mode 100644 index 00000000..fd3565bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json new file mode 100644 index 00000000..73843d57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/beetroot_soup.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/beetroot_soup.json new file mode 100644 index 00000000..e04cda7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/beetroot_soup.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beetroot": { + "conditions": { + "items": [ + { + "items": "minecraft:beetroot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beetroot_soup" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beetroot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beetroot_soup" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/bread.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/bread.json new file mode 100644 index 00000000..b092f4e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/bread.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bread" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wheat": { + "conditions": { + "items": [ + { + "items": "minecraft:wheat" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wheat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bread" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cake.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cake.json new file mode 100644 index 00000000..beb3219d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cake.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_egg": { + "conditions": { + "items": [ + { + "items": "#minecraft:eggs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cake" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_egg" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cake" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef.json new file mode 100644 index 00000000..81d289ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json new file mode 100644 index 00000000..0fac9bbd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json new file mode 100644 index 00000000..d8dc3f16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken.json new file mode 100644 index 00000000..4174832c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json new file mode 100644 index 00000000..d2e1eb21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json new file mode 100644 index 00000000..4d13c860 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod.json new file mode 100644 index 00000000..7e51363a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json new file mode 100644 index 00000000..d50367b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json new file mode 100644 index 00000000..e27bd2ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton.json new file mode 100644 index 00000000..f49a02a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json new file mode 100644 index 00000000..da7a4a46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json new file mode 100644 index 00000000..9f3ed831 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop.json new file mode 100644 index 00000000..3dbb5d6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json new file mode 100644 index 00000000..7e42247e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json new file mode 100644 index 00000000..8c3d33bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit.json new file mode 100644 index 00000000..df3b5749 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json new file mode 100644 index 00000000..7faa2567 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json new file mode 100644 index 00000000..46489a8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon.json new file mode 100644 index 00000000..f0eb80aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json new file mode 100644 index 00000000..0cc70d99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json new file mode 100644 index 00000000..0fa18094 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/cookie.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cookie.json new file mode 100644 index 00000000..d225100e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/cookie.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cocoa": { + "conditions": { + "items": [ + { + "items": "minecraft:cocoa_beans" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cookie" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cocoa" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cookie" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp.json new file mode 100644 index 00000000..e229120c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_kelp_block": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_kelp_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_kelp_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json new file mode 100644 index 00000000..3ad3fd82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json new file mode 100644 index 00000000..82bdc4fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json new file mode 100644 index 00000000..146078a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/golden_apple.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/golden_apple.json new file mode 100644 index 00000000..69a539d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/golden_apple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_apple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_apple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/honey_bottle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/honey_bottle.json new file mode 100644 index 00000000..53930599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/honey_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_block": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honey_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honey_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/mushroom_stew.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/mushroom_stew.json new file mode 100644 index 00000000..976a5fc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/mushroom_stew.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bowl": { + "conditions": { + "items": [ + { + "items": "minecraft:bowl" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_brown_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mushroom_stew": { + "conditions": { + "items": [ + { + "items": "minecraft:mushroom_stew" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:red_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mushroom_stew" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mushroom_stew", + "has_bowl", + "has_brown_mushroom", + "has_red_mushroom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mushroom_stew" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/pumpkin_pie.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/pumpkin_pie.json new file mode 100644 index 00000000..9819648d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/pumpkin_pie.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carved_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:carved_pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pumpkin_pie" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carved_pumpkin", + "has_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pumpkin_pie" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json new file mode 100644 index 00000000..c9e2eaf0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cooked_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:cooked_rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rabbit_stew_from_brown_mushroom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cooked_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rabbit_stew_from_brown_mushroom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json new file mode 100644 index 00000000..bec51966 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cooked_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:cooked_rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rabbit_stew_from_red_mushroom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cooked_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rabbit_stew_from_red_mushroom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json new file mode 100644 index 00000000..7db1e637 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_allium": { + "conditions": { + "items": [ + { + "items": "minecraft:allium" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_allium" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_allium" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_allium" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json new file mode 100644 index 00000000..75568ad2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azure_bluet": { + "conditions": { + "items": [ + { + "items": "minecraft:azure_bluet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_azure_bluet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azure_bluet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_azure_bluet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json new file mode 100644 index 00000000..d7ca7e53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_orchid": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_orchid" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_blue_orchid" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_orchid" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_blue_orchid" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json new file mode 100644 index 00000000..86399a3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_closed_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:closed_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_closed_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_closed_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_closed_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json new file mode 100644 index 00000000..9b8e604a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cornflower": { + "conditions": { + "items": [ + { + "items": "minecraft:cornflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_cornflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cornflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_cornflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json new file mode 100644 index 00000000..b622eb31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json new file mode 100644 index 00000000..fc60c2a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json new file mode 100644 index 00000000..04349bf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lily_of_the_valley": { + "conditions": { + "items": [ + { + "items": "minecraft:lily_of_the_valley" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_lily_of_the_valley" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lily_of_the_valley" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_lily_of_the_valley" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json new file mode 100644 index 00000000..54e096cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_open_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:open_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_open_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_open_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_open_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json new file mode 100644 index 00000000..44b027be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_orange_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_orange_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json new file mode 100644 index 00000000..274a2d61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_oxeye_daisy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_oxeye_daisy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json new file mode 100644 index 00000000..54e91382 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_pink_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_pink_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json new file mode 100644 index 00000000..c1cdb32a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_poppy": { + "conditions": { + "items": [ + { + "items": "minecraft:poppy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_poppy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_poppy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_poppy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json new file mode 100644 index 00000000..a9ae49a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:red_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_red_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_red_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json new file mode 100644 index 00000000..367b11f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_torchflower" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torchflower": { + "conditions": { + "items": [ + { + "items": "minecraft:torchflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_torchflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_torchflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json new file mode 100644 index 00000000..3f5bd1ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_white_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:white_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_white_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json new file mode 100644 index 00000000..fc8b1643 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_wither_rose" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_rose": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_rose" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_rose" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_wither_rose" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/beacon.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/beacon.json new file mode 100644 index 00000000..b14a3492 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/beacon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_star": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_star" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beacon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_star" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beacon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye.json new file mode 100644 index 00000000..d06cfdb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ink_sac": { + "conditions": { + "items": [ + { + "items": "minecraft:ink_sac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ink_sac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json new file mode 100644 index 00000000..2dfe2bb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_dye_from_wither_rose" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_rose": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_rose" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_rose" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_dye_from_wither_rose" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye.json new file mode 100644 index 00000000..e8af8c79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_lazuli": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_lazuli" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_lazuli" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json new file mode 100644 index 00000000..d57f3926 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cornflower": { + "conditions": { + "items": [ + { + "items": "minecraft:cornflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_dye_from_cornflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cornflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_dye_from_cornflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..d98a2829 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bolt_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:bolt_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bolt_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bolt_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bolt_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..d33371a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:bolt_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal.json new file mode 100644 index 00000000..ca492283 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone": { + "conditions": { + "items": [ + { + "items": "minecraft:bone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_meal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_meal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json new file mode 100644 index 00000000..557e21ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_block": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_meal_from_bone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_meal_from_bone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/book.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/book.json new file mode 100644 index 00000000..1495fbd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/book.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:book" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:book" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..a2326600 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bordure_indented_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vines": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vines" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bordure_indented_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bowl.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bowl.json new file mode 100644 index 00000000..0c6dad6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bowl.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mushroom_stew": { + "conditions": { + "items": [ + { + "items": "minecraft:mushroom_stew" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:red_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bowl" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_mushroom", + "has_red_mushroom", + "has_mushroom_stew" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bowl" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brick.json new file mode 100644 index 00000000..ca618ad0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:clay_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brown_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brown_dye.json new file mode 100644 index 00000000..2e28670a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/brown_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cocoa_beans": { + "conditions": { + "items": [ + { + "items": "minecraft:cocoa_beans" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cocoa_beans" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bucket.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bucket.json new file mode 100644 index 00000000..4c60b01c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/bucket.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bucket" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bucket" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/charcoal.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/charcoal.json new file mode 100644 index 00000000..0b8ef61e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/charcoal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:logs_that_burn" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:charcoal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:charcoal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal.json new file mode 100644 index 00000000..3c91cfb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_block": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json new file mode 100644 index 00000000..cdef977d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_blasting_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_blasting_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json new file mode 100644 index 00000000..c1986a92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_blasting_deepslate_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_blasting_deepslate_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json new file mode 100644 index 00000000..989271bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_smelting_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_smelting_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json new file mode 100644 index 00000000..e1b9837d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_smelting_deepslate_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_smelting_deepslate_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..96dfc374 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coast_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:coast_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coast_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coast_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coast_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..1d0c534f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:coast_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coast_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coast_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/conduit.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/conduit.json new file mode 100644 index 00000000..b9efe8b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/conduit.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nautilus_core": { + "conditions": { + "items": [ + { + "items": "minecraft:heart_of_the_sea" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_nautilus_shell": { + "conditions": { + "items": [ + { + "items": "minecraft:nautilus_shell" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:conduit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nautilus_core", + "has_nautilus_shell" + ] + ], + "rewards": { + "recipes": [ + "minecraft:conduit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot.json new file mode 100644 index 00000000..2e8f4119 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json new file mode 100644 index 00000000..37c06adb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json new file mode 100644 index 00000000..ac09de74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_deepslate_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_deepslate_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json new file mode 100644 index 00000000..0b7081c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json new file mode 100644 index 00000000..aaa5f5d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json new file mode 100644 index 00000000..4a5b2d55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json new file mode 100644 index 00000000..f43f7adc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_deepslate_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_deepslate_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json new file mode 100644 index 00000000..caf783c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json new file mode 100644 index 00000000..6779c8f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_waxed_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_waxed_copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget.json new file mode 100644 index 00000000..c08cfad1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json new file mode 100644 index 00000000..d2efb350 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_pickaxe", + "has_copper_shovel", + "has_copper_axe", + "has_copper_hoe", + "has_copper_sword", + "has_copper_spear", + "has_copper_helmet", + "has_copper_chestplate", + "has_copper_leggings", + "has_copper_boots", + "has_copper_horse_armor", + "has_copper_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json new file mode 100644 index 00000000..73f29c08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_pickaxe", + "has_copper_shovel", + "has_copper_axe", + "has_copper_hoe", + "has_copper_sword", + "has_copper_spear", + "has_copper_helmet", + "has_copper_chestplate", + "has_copper_leggings", + "has_copper_boots", + "has_copper_horse_armor", + "has_copper_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creaking_heart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creaking_heart.json new file mode 100644 index 00000000..cffc161a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creaking_heart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_block": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:creaking_heart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:creaking_heart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json new file mode 100644 index 00000000..324e408b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_creeper_head": { + "conditions": { + "items": [ + { + "items": "minecraft:creeper_head" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:creeper_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_creeper_head" + ] + ], + "rewards": { + "recipes": [ + "minecraft:creeper_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye.json new file mode 100644 index 00000000..6c4f40c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json new file mode 100644 index 00000000..116d15df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pitcher_plant": { + "conditions": { + "items": [ + { + "items": "minecraft:pitcher_plant" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_dye_from_pitcher_plant" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pitcher_plant" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_dye_from_pitcher_plant" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond.json new file mode 100644 index 00000000..e6fed724 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_block": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json new file mode 100644 index 00000000..65f3bb48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_blasting_deepslate_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_blasting_deepslate_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json new file mode 100644 index 00000000..61e4459d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_blasting_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_blasting_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json new file mode 100644 index 00000000..ebeb39b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_smelting_deepslate_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_smelting_deepslate_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json new file mode 100644 index 00000000..2b1afe88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_smelting_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_smelting_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..e696da78 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dune_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:dune_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dune_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dune_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dune_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..297a8829 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:dune_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dune_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dune_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald.json new file mode 100644 index 00000000..2cd28b7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_block": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json new file mode 100644 index 00000000..d7774a7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_blasting_deepslate_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_blasting_deepslate_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json new file mode 100644 index 00000000..0876a9ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_blasting_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_blasting_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json new file mode 100644 index 00000000..2ca8e2f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_smelting_deepslate_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_smelting_deepslate_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json new file mode 100644 index 00000000..a7e2e784 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_smelting_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_smelting_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ender_eye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ender_eye.json new file mode 100644 index 00000000..796e5948 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ender_eye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ender_eye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ender_eye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..80ecd636 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_eye_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:eye_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:eye_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_eye_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:eye_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9a9412bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:eye_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:eye_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:eye_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json new file mode 100644 index 00000000..6709a6d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:field_masoned_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:field_masoned_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/fire_charge.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/fire_charge.json new file mode 100644 index 00000000..8104ff1c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/fire_charge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fire_charge" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fire_charge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json new file mode 100644 index 00000000..6a35e5c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gunpowder": { + "conditions": { + "items": [ + { + "items": "minecraft:gunpowder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:firework_rocket_simple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gunpowder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:firework_rocket_simple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..e6648847 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flow_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:flow_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flow_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flow_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flow_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..de75086b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:flow_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flow_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flow_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json new file mode 100644 index 00000000..43678b87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flower_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flower_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json new file mode 100644 index 00000000..5f1ac8a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_deepslate_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_deepslate_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json new file mode 100644 index 00000000..9482a9b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json new file mode 100644 index 00000000..71a722d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_nether_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_nether_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json new file mode 100644 index 00000000..a04bbd66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json new file mode 100644 index 00000000..989fc724 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_block": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json new file mode 100644 index 00000000..849a182c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json new file mode 100644 index 00000000..f080f27b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_deepslate_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_deepslate_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json new file mode 100644 index 00000000..d2331d3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json new file mode 100644 index 00000000..556d16a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_nether_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_nether_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json new file mode 100644 index 00000000..18fe8e0c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget.json new file mode 100644 index 00000000..6eeaf564 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json new file mode 100644 index 00000000..fe24aff6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_pickaxe", + "has_golden_shovel", + "has_golden_axe", + "has_golden_hoe", + "has_golden_sword", + "has_golden_spear", + "has_golden_helmet", + "has_golden_chestplate", + "has_golden_leggings", + "has_golden_boots", + "has_golden_horse_armor", + "has_golden_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json new file mode 100644 index 00000000..21e15e91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_pickaxe", + "has_golden_shovel", + "has_golden_axe", + "has_golden_hoe", + "has_golden_sword", + "has_golden_spear", + "has_golden_helmet", + "has_golden_chestplate", + "has_golden_leggings", + "has_golden_boots", + "has_golden_horse_armor", + "has_golden_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye.json new file mode 100644 index 00000000..55be0c29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json new file mode 100644 index 00000000..4b28341d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_closed_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:closed_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_dye_from_closed_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_closed_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_dye_from_closed_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/green_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/green_dye.json new file mode 100644 index 00000000..aca5bc6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/green_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cactus": { + "conditions": { + "items": [ + { + "items": "minecraft:cactus" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cactus" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..94be097a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_host_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:host_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:host_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_host_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:host_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..ab6ffc49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:host_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:host_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:host_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json new file mode 100644 index 00000000..ddbdc90c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_deepslate_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_deepslate_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json new file mode 100644 index 00000000..76bad9a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json new file mode 100644 index 00000000..1d02a7f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json new file mode 100644 index 00000000..9de9119f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json new file mode 100644 index 00000000..d344b901 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json new file mode 100644 index 00000000..3515fe9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_deepslate_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_deepslate_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json new file mode 100644 index 00000000..1f59473f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json new file mode 100644 index 00000000..997b86c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget.json new file mode 100644 index 00000000..b6f1d12b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json new file mode 100644 index 00000000..59992e18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json @@ -0,0 +1,197 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chainmail_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_pickaxe", + "has_iron_shovel", + "has_iron_axe", + "has_iron_hoe", + "has_iron_sword", + "has_iron_spear", + "has_iron_helmet", + "has_iron_chestplate", + "has_iron_leggings", + "has_iron_boots", + "has_iron_horse_armor", + "has_chainmail_helmet", + "has_chainmail_chestplate", + "has_chainmail_leggings", + "has_chainmail_boots", + "has_iron_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json new file mode 100644 index 00000000..851aa764 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json @@ -0,0 +1,197 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chainmail_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_pickaxe", + "has_iron_shovel", + "has_iron_axe", + "has_iron_hoe", + "has_iron_sword", + "has_iron_spear", + "has_iron_helmet", + "has_iron_chestplate", + "has_iron_leggings", + "has_iron_boots", + "has_iron_horse_armor", + "has_chainmail_helmet", + "has_chainmail_chestplate", + "has_chainmail_leggings", + "has_chainmail_boots", + "has_iron_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli.json new file mode 100644 index 00000000..14e93292 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_block": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json new file mode 100644 index 00000000..04418e80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json new file mode 100644 index 00000000..b72a2c3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_blasting_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_blasting_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json new file mode 100644 index 00000000..99265db5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json new file mode 100644 index 00000000..8830f060 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_smelting_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_smelting_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leaf_litter.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leaf_litter.json new file mode 100644 index 00000000..c6b83cb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leaf_litter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leaves": { + "conditions": { + "items": [ + { + "items": "#minecraft:leaves" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leaf_litter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leaves" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leaf_litter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather.json new file mode 100644 index 00000000..125ece1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit_hide": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit_hide" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit_hide" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json new file mode 100644 index 00000000..f8c7d4ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_boots_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_boots" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_boots_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json new file mode 100644 index 00000000..1ea793a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_chestplate_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_chestplate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_chestplate_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json new file mode 100644 index 00000000..8fe7df14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_helmet_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_helmet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_helmet_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor.json new file mode 100644 index 00000000..ba8c8914 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_horse_armor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_horse_armor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json new file mode 100644 index 00000000..341eb825 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_horse_armor_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_horse_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_horse_armor_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json new file mode 100644 index 00000000..3b2e5b2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_leggings_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_leggings" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_leggings_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json new file mode 100644 index 00000000..3e1a7ce2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_orchid": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_orchid" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_dye_from_blue_orchid" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_orchid" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_dye_from_blue_orchid" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json new file mode 100644 index 00000000..db51ab9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_dye_from_blue_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_dye_from_blue_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json new file mode 100644 index 00000000..16d5a695 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azure_bluet": { + "conditions": { + "items": [ + { + "items": "minecraft:azure_bluet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_azure_bluet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azure_bluet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_azure_bluet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json new file mode 100644 index 00000000..5bcb43d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_black_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_black_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json new file mode 100644 index 00000000..70baee04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_gray_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_gray_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json new file mode 100644 index 00000000..ba5e104f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_oxeye_daisy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_oxeye_daisy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json new file mode 100644 index 00000000..0dcf3613 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_white_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:white_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_white_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye.json new file mode 100644 index 00000000..0e3495e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json new file mode 100644 index 00000000..acda1076 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sea_pickle": { + "conditions": { + "items": [ + { + "items": "minecraft:sea_pickle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_dye_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sea_pickle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_dye_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json new file mode 100644 index 00000000..ae728273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_allium": { + "conditions": { + "items": [ + { + "items": "minecraft:allium" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_allium" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_allium" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_allium" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json new file mode 100644 index 00000000..6b147f6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_blue_red_pink" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye", + "has_blue_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_blue_red_pink" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json new file mode 100644 index 00000000..9c5f1010 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_rose_red": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_blue_red_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_rose_red", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_blue_red_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json new file mode 100644 index 00000000..56f9ba23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lilac": { + "conditions": { + "items": [ + { + "items": "minecraft:lilac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_lilac" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lilac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_lilac" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json new file mode 100644 index 00000000..687b375d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_purple_and_pink" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_purple_and_pink" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map.json new file mode 100644 index 00000000..016bfe2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_compass": { + "conditions": { + "items": [ + { + "items": "minecraft:compass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:map" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_compass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:map" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map_cloning.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map_cloning.json new file mode 100644 index 00000000..3f8361ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/map_cloning.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_filled_map": { + "conditions": { + "items": [ + { + "items": "minecraft:filled_map" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:map_cloning" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_filled_map" + ] + ], + "rewards": { + "recipes": [ + "minecraft:map_cloning" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/melon_seeds.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/melon_seeds.json new file mode 100644 index 00000000..64b5c509 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/melon_seeds.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:melon_seeds" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:melon_seeds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json new file mode 100644 index 00000000..4051b979 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_enchanted_golden_apple": { + "conditions": { + "items": [ + { + "items": "minecraft:enchanted_golden_apple" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mojang_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_enchanted_golden_apple" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mojang_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/music_disc_5.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/music_disc_5.json new file mode 100644 index 00000000..c0ae1449 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/music_disc_5.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_disc_fragment_5": { + "conditions": { + "items": [ + { + "items": "minecraft:disc_fragment_5" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:music_disc_5" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_disc_fragment_5" + ] + ], + "rewards": { + "recipes": [ + "minecraft:music_disc_5" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/nether_brick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/nether_brick.json new file mode 100644 index 00000000..6be93064 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/nether_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherrack": { + "conditions": { + "items": [ + { + "items": "minecraft:netherrack" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherrack" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot.json new file mode 100644 index 00000000..e302547e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_scrap": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_scrap" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_ingot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_scrap" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_ingot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json new file mode 100644 index 00000000..058f380b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_block": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_ingot_from_netherite_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_ingot_from_netherite_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap.json new file mode 100644 index 00000000..ff6c6376 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_scrap" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ancient_debris" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_scrap" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json new file mode 100644 index 00000000..999fa98f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_scrap_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ancient_debris" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_scrap_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..b8234c13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_upgrade_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_upgrade_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_upgrade_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_upgrade_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_upgrade_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json new file mode 100644 index 00000000..2183c653 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_open_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:open_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_open_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_open_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_open_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json new file mode 100644 index 00000000..4f415e10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_orange_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_orange_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json new file mode 100644 index 00000000..e0b836f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_red_yellow" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_red_yellow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json new file mode 100644 index 00000000..87b4a3a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_torchflower" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torchflower": { + "conditions": { + "items": [ + { + "items": "minecraft:torchflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_torchflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_torchflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/paper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/paper.json new file mode 100644 index 00000000..7d00fd6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/paper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_reeds": { + "conditions": { + "items": [ + { + "items": "minecraft:sugar_cane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:paper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_reeds" + ] + ], + "rewards": { + "recipes": [ + "minecraft:paper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json new file mode 100644 index 00000000..37b918ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cactus_flower": { + "conditions": { + "items": [ + { + "items": "minecraft:cactus_flower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_cactus_flower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cactus_flower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_cactus_flower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json new file mode 100644 index 00000000..2a417b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_peony": { + "conditions": { + "items": [ + { + "items": "minecraft:peony" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_peony" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_peony" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_peony" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json new file mode 100644 index 00000000..5f7f04c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_petals": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_petals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_pink_petals" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_petals" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_pink_petals" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json new file mode 100644 index 00000000..205ec848 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_pink_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_pink_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json new file mode 100644 index 00000000..003371ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_red_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_red_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json new file mode 100644 index 00000000..565ca38e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit": { + "conditions": { + "items": [ + { + "items": "minecraft:chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:popped_chorus_fruit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:popped_chorus_fruit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json new file mode 100644 index 00000000..b2681bdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pumpkin_seeds" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pumpkin_seeds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/purple_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/purple_dye.json new file mode 100644 index 00000000..283c4be4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/purple_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz.json new file mode 100644 index 00000000..617b0828 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_quartz_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_quartz_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_quartz_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json new file mode 100644 index 00000000..497982d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_quartz_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_quartz_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_quartz_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..acf39ca6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raiser_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:raiser_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raiser_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raiser_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raiser_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..477d3668 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:raiser_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_copper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_copper.json new file mode 100644 index 00000000..4fe7ab70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_gold.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_gold.json new file mode 100644 index 00000000..e81635d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_iron.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_iron.json new file mode 100644 index 00000000..f97f6053 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json new file mode 100644 index 00000000..7c0c252e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beetroot": { + "conditions": { + "items": [ + { + "items": "minecraft:beetroot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_beetroot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beetroot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_beetroot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json new file mode 100644 index 00000000..448bb810 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_poppy": { + "conditions": { + "items": [ + { + "items": "minecraft:poppy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_poppy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_poppy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_poppy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json new file mode 100644 index 00000000..bbb00fd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rose_bush": { + "conditions": { + "items": [ + { + "items": "minecraft:rose_bush" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_rose_bush" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rose_bush" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_rose_bush" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json new file mode 100644 index 00000000..e044398e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_flower": { + "conditions": { + "items": [ + { + "items": "minecraft:red_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_flower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_brick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_brick.json new file mode 100644 index 00000000..1a30bf38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_clump": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_clump" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_clump" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_clump.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_clump.json new file mode 100644 index 00000000..9a5c3895 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/resin_clump.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_block": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_clump" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_clump" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..cc02cd3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rib_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:rib_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rib_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rib_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rib_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..732193e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:rib_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rib_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..944a2fb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sentry_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:sentry_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sentry_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sentry_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sentry_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..efaf125b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:sentry_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..a68b9cba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shaper_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:shaper_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shaper_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shaper_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shaper_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..c743861e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:shaper_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..15b8cc37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silence_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:silence_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:silence_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silence_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:silence_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..e07c7070 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:silence_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:silence_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json new file mode 100644 index 00000000..de66343e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:skull_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_skeleton_skull": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_skeleton_skull" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_skeleton_skull" + ] + ], + "rewards": { + "recipes": [ + "minecraft:skull_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/slime_ball.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/slime_ball.json new file mode 100644 index 00000000..38c8a952 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/slime_ball.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_block": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:slime_ball" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:slime_ball" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..87b4beba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snout_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:snout_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snout_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snout_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snout_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..47d3d3da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:snout_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snout_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..ddb5562c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_spire_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:spire_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spire_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_spire_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spire_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..de70999d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:spire_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spire_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick.json new file mode 100644 index 00000000..74165bb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "#minecraft:planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json new file mode 100644 index 00000000..5e481f21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stick_from_bamboo_item" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stick_from_bamboo_item" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json new file mode 100644 index 00000000..57fddc97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_bottle": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_bottle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sugar_from_honey_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_bottle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sugar_from_honey_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json new file mode 100644 index 00000000..3981894c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sugar_cane": { + "conditions": { + "items": [ + { + "items": "minecraft:sugar_cane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sugar_from_sugar_cane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sugar_cane" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sugar_from_sugar_cane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..e25917d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tide_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tide_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:tide_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tide_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tide_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6155cc6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:tide_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tide_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tipped_arrow.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tipped_arrow.json new file mode 100644 index 00000000..fa6b310a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/tipped_arrow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lingering_potion": { + "conditions": { + "items": [ + { + "items": "minecraft:lingering_potion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tipped_arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lingering_potion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tipped_arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..0f691a66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:vex_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vex_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:vex_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vex_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:vex_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6820f5dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:vex_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:vex_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..5f4a3a77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ward_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_ward_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:ward_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ward_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ward_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..a48941b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:ward_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ward_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..b713cb00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wayfinder_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wayfinder_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wayfinder_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wayfinder_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wayfinder_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..173ea22c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wayfinder_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wheat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wheat.json new file mode 100644 index 00000000..32380a84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wheat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_hay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:hay_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wheat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_hay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wheat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye.json new file mode 100644 index 00000000..53f5a0a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_meal": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_meal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_meal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json new file mode 100644 index 00000000..8dfcad0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lily_of_the_valley": { + "conditions": { + "items": [ + { + "items": "minecraft:lily_of_the_valley" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_dye_from_lily_of_the_valley" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lily_of_the_valley" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_dye_from_lily_of_the_valley" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..6766be1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wild_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wild_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wild_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wild_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wild_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..64ffff58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wild_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wild_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wild_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wind_charge.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wind_charge.json new file mode 100644 index 00000000..059e1e33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wind_charge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_breeze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:breeze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wind_charge" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_breeze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wind_charge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json new file mode 100644 index 00000000..cde729c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wolf_armor_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wolf_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:wolf_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wolf_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wolf_armor_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/writable_book.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/writable_book.json new file mode 100644 index 00000000..2763d8a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/writable_book.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:writable_book" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:writable_book" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json new file mode 100644 index 00000000..abec5f12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json new file mode 100644 index 00000000..6783a9d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json new file mode 100644 index 00000000..4f6e4946 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sunflower": { + "conditions": { + "items": [ + { + "items": "minecraft:sunflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_sunflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sunflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_sunflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json new file mode 100644 index 00000000..872f6c51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_wildflowers" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wildflowers": { + "conditions": { + "items": [ + { + "items": "minecraft:wildflowers" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wildflowers" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_wildflowers" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_button.json new file mode 100644 index 00000000..6fffe347 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_door.json new file mode 100644 index 00000000..2f90170a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json new file mode 100644 index 00000000..be861e2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json new file mode 100644 index 00000000..fc492faa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json new file mode 100644 index 00000000..e515bb25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_button.json new file mode 100644 index 00000000..8804b515 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_door.json new file mode 100644 index 00000000..bec8191f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json new file mode 100644 index 00000000..b089d016 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json new file mode 100644 index 00000000..7ab171fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json new file mode 100644 index 00000000..3f90d161 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_button.json new file mode 100644 index 00000000..d3e4b7f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_door.json new file mode 100644 index 00000000..b35c30c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json new file mode 100644 index 00000000..6af682c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json new file mode 100644 index 00000000..58089b3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json new file mode 100644 index 00000000..b5eb36ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json new file mode 100644 index 00000000..4d0d6eb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:calibrated_sculk_sensor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:calibrated_sculk_sensor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_button.json new file mode 100644 index 00000000..342c373c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_door.json new file mode 100644 index 00000000..7b8cc4f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json new file mode 100644 index 00000000..40114d1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json new file mode 100644 index 00000000..9cf12d45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json new file mode 100644 index 00000000..dad9882d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/comparator.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/comparator.json new file mode 100644 index 00000000..7fc1301e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/comparator.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:comparator" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:comparator" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_bulb.json new file mode 100644 index 00000000..f9452a6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_door.json new file mode 100644 index 00000000..39580b4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json new file mode 100644 index 00000000..2dcecaa1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crafter.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crafter.json new file mode 100644 index 00000000..faf8ca37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crafter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dropper": { + "conditions": { + "items": [ + { + "items": "minecraft:dropper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crafter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dropper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crafter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_button.json new file mode 100644 index 00000000..e0da592f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_door.json new file mode 100644 index 00000000..a6834bee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json new file mode 100644 index 00000000..56414eb1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json new file mode 100644 index 00000000..09dfec89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json new file mode 100644 index 00000000..70d978bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_button.json new file mode 100644 index 00000000..c5c28603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_door.json new file mode 100644 index 00000000..bba6f2ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json new file mode 100644 index 00000000..54568b59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json new file mode 100644 index 00000000..dd90b8cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json new file mode 100644 index 00000000..47e2dd63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/daylight_detector.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/daylight_detector.json new file mode 100644 index 00000000..20df85be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/daylight_detector.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:daylight_detector" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:daylight_detector" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dispenser.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dispenser.json new file mode 100644 index 00000000..721489b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dispenser.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bow": { + "conditions": { + "items": [ + { + "items": "minecraft:bow" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dispenser" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bow" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dispenser" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dropper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dropper.json new file mode 100644 index 00000000..6defab3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/dropper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dropper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dropper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json new file mode 100644 index 00000000..96242b4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..4b2bdd34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:heavy_weighted_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:heavy_weighted_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/honey_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/honey_block.json new file mode 100644 index 00000000..89de00ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/honey_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_bottle": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_bottle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honey_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_bottle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honey_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/hopper.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/hopper.json new file mode 100644 index 00000000..4ce4826d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/hopper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hopper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hopper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_door.json new file mode 100644 index 00000000..807388c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json new file mode 100644 index 00000000..6e3d0559 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_button.json new file mode 100644 index 00000000..a152c028 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_door.json new file mode 100644 index 00000000..5c956ee8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json new file mode 100644 index 00000000..7772dec1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json new file mode 100644 index 00000000..3010d9a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json new file mode 100644 index 00000000..2a27a611 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lectern.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lectern.json new file mode 100644 index 00000000..d27109e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lectern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lectern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lectern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lever.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lever.json new file mode 100644 index 00000000..80e0dba4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lever.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lever" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lever" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json new file mode 100644 index 00000000..c11838e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_weighted_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_weighted_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lightning_rod.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lightning_rod.json new file mode 100644 index 00000000..1f27834a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/lightning_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lightning_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lightning_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_button.json new file mode 100644 index 00000000..d7a409b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_door.json new file mode 100644 index 00000000..8479072a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json new file mode 100644 index 00000000..eda78b19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json new file mode 100644 index 00000000..1d851e98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json new file mode 100644 index 00000000..7ea289ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/note_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/note_block.json new file mode 100644 index 00000000..d7ec664a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/note_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:note_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:note_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_button.json new file mode 100644 index 00000000..62a2145f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_door.json new file mode 100644 index 00000000..34a710b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json new file mode 100644 index 00000000..d8153775 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json new file mode 100644 index 00000000..8f9a353c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json new file mode 100644 index 00000000..873d96e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/observer.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/observer.json new file mode 100644 index 00000000..e40f179a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/observer.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:observer" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:observer" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json new file mode 100644 index 00000000..c5c57e28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_button.json new file mode 100644 index 00000000..9789127a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_door.json new file mode 100644 index 00000000..3185caa0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json new file mode 100644 index 00000000..66a72265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json new file mode 100644 index 00000000..953ddd67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json new file mode 100644 index 00000000..11749685 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/piston.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/piston.json new file mode 100644 index 00000000..191c268f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/piston.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:piston" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:piston" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json new file mode 100644 index 00000000..19b612ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..ed1d1945 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone.json new file mode 100644 index 00000000..4660d21f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_block": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_block.json new file mode 100644 index 00000000..d6fe3b27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json new file mode 100644 index 00000000..c5437d0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_blasting_deepslate_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_blasting_deepslate_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json new file mode 100644 index 00000000..7235f217 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_blasting_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_blasting_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json new file mode 100644 index 00000000..aa1748df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_smelting_deepslate_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_smelting_deepslate_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json new file mode 100644 index 00000000..739f04a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_smelting_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_smelting_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_lamp.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_lamp.json new file mode 100644 index 00000000..851832a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_lamp.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_lamp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_lamp" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_torch.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_torch.json new file mode 100644 index 00000000..d905287a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/redstone_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/repeater.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/repeater.json new file mode 100644 index 00000000..6d70605a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/repeater.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:repeater" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:repeater" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/slime_block.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/slime_block.json new file mode 100644 index 00000000..8f41914b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/slime_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:slime_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:slime_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_button.json new file mode 100644 index 00000000..d2117888 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_door.json new file mode 100644 index 00000000..f23de9f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json new file mode 100644 index 00000000..818987e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json new file mode 100644 index 00000000..ae4e166f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json new file mode 100644 index 00000000..20f57594 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/sticky_piston.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/sticky_piston.json new file mode 100644 index 00000000..60011ec2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/sticky_piston.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sticky_piston" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sticky_piston" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_button.json new file mode 100644 index 00000000..f8020133 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json new file mode 100644 index 00000000..e2af12eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/target.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/target.json new file mode 100644 index 00000000..21b2ae11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/target.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_hay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:hay_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:target" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone", + "has_hay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:target" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tnt.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tnt.json new file mode 100644 index 00000000..bf956522 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tnt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gunpowder": { + "conditions": { + "items": [ + { + "items": "minecraft:gunpowder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tnt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gunpowder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tnt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/trapped_chest.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/trapped_chest.json new file mode 100644 index 00000000..e5033bc2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/trapped_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:trapped_chest" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tripwire_hook": { + "conditions": { + "items": [ + { + "items": "minecraft:tripwire_hook" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tripwire_hook" + ] + ], + "rewards": { + "recipes": [ + "minecraft:trapped_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tripwire_hook.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tripwire_hook.json new file mode 100644 index 00000000..3a3cf54d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/tripwire_hook.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tripwire_hook" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tripwire_hook" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_button.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_button.json new file mode 100644 index 00000000..267ac24f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_door.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_door.json new file mode 100644 index 00000000..4088dbbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json new file mode 100644 index 00000000..ed7cfa67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json new file mode 100644 index 00000000..5b9b5816 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json new file mode 100644 index 00000000..6b3ceaee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json new file mode 100644 index 00000000..334612b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..35a26766 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..cda86792 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..67fe651b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..4cfd14c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..71379ea9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..72d19907 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..3b9514e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..77d0bb2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..9371e389 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json new file mode 100644 index 00000000..f943e07a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..4e7e1f35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..3ac483c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..f96fb0dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json new file mode 100644 index 00000000..b9b5c909 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..3f22f842 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json new file mode 100644 index 00000000..b19eb0bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/root.json b/data/generated/V26_1/data/minecraft/advancement/recipes/root.json new file mode 100644 index 00000000..78142c57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/root.json @@ -0,0 +1,12 @@ +{ + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + } + }, + "requirements": [ + [ + "impossible" + ] + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/black_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/black_bundle.json new file mode 100644 index 00000000..91ccc873 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/black_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/blue_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/blue_bundle.json new file mode 100644 index 00000000..43a67260 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/blue_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brown_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brown_bundle.json new file mode 100644 index 00000000..18d75fcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brown_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brush.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brush.json new file mode 100644 index 00000000..00aafb53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/brush.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brush" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brush" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/bundle.json new file mode 100644 index 00000000..5c589f86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/clock.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/clock.json new file mode 100644 index 00000000..dd3f2c49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/clock.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:clock" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:clock" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/compass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/compass.json new file mode 100644 index 00000000..627cfb31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/compass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:compass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:compass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_axe.json new file mode 100644 index 00000000..71e1c174 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_hoe.json new file mode 100644 index 00000000..883515e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_pickaxe.json new file mode 100644 index 00000000..5b8f6b8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_shovel.json new file mode 100644 index 00000000..9ffea9cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/copper_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/cyan_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/cyan_bundle.json new file mode 100644 index 00000000..68f8c387 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/cyan_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_axe.json new file mode 100644 index 00000000..f72454f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_hoe.json new file mode 100644 index 00000000..7be4e4a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json new file mode 100644 index 00000000..8e9b1b07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_shovel.json new file mode 100644 index 00000000..dc30177a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/diamond_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/fishing_rod.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/fishing_rod.json new file mode 100644 index 00000000..95b6b72a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/fishing_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fishing_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fishing_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/flint_and_steel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/flint_and_steel.json new file mode 100644 index 00000000..8950af6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/flint_and_steel.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flint_and_steel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flint", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flint_and_steel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_axe.json new file mode 100644 index 00000000..146169b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_hoe.json new file mode 100644 index 00000000..bfc7e725 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_pickaxe.json new file mode 100644 index 00000000..b8855c3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_shovel.json new file mode 100644 index 00000000..0e643c0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/golden_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/gray_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/gray_bundle.json new file mode 100644 index 00000000..b8ff6a2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/gray_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/green_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/green_bundle.json new file mode 100644 index 00000000..fc75d8ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/green_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_axe.json new file mode 100644 index 00000000..bba795e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_hoe.json new file mode 100644 index 00000000..3e28715f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_pickaxe.json new file mode 100644 index 00000000..0bbdbdef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_shovel.json new file mode 100644 index 00000000..38835c37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/iron_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lead.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lead.json new file mode 100644 index 00000000..750f4e84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lead.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lead" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lead" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_blue_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_blue_bundle.json new file mode 100644 index 00000000..880e5d90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_blue_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_gray_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_gray_bundle.json new file mode 100644 index 00000000..5b190fb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/light_gray_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lime_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lime_bundle.json new file mode 100644 index 00000000..2ac8c127 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/lime_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/magenta_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/magenta_bundle.json new file mode 100644 index 00000000..6ae38bc7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/magenta_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/name_tag.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/name_tag.json new file mode 100644 index 00000000..241cae89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/name_tag.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_metal_nugget": { + "conditions": { + "items": [ + { + "items": "#minecraft:metal_nuggets" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_name_tag": { + "conditions": { + "items": [ + { + "items": "minecraft:name_tag" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:name_tag" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_metal_nugget", + "has_paper", + "has_name_tag" + ] + ], + "rewards": { + "recipes": [ + "minecraft:name_tag" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json new file mode 100644 index 00000000..20a08b73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_axe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_axe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json new file mode 100644 index 00000000..186f0b05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_hoe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_hoe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json new file mode 100644 index 00000000..74feb952 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_pickaxe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_pickaxe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json new file mode 100644 index 00000000..0f3426a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_shovel_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_shovel_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/orange_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/orange_bundle.json new file mode 100644 index 00000000..e0c6a980 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/orange_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/pink_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/pink_bundle.json new file mode 100644 index 00000000..ba94bca7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/pink_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/purple_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/purple_bundle.json new file mode 100644 index 00000000..174244fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/purple_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/recovery_compass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/recovery_compass.json new file mode 100644 index 00000000..22a7b883 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/recovery_compass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_echo_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:echo_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:recovery_compass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_echo_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:recovery_compass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/red_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/red_bundle.json new file mode 100644 index 00000000..bc7abd62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/red_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/shears.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/shears.json new file mode 100644 index 00000000..4bf08acd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/shears.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shears" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shears" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/spyglass.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/spyglass.json new file mode 100644 index 00000000..de0605c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/spyglass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spyglass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spyglass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_axe.json new file mode 100644 index 00000000..b2fd156a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_hoe.json new file mode 100644 index 00000000..ef5185ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_pickaxe.json new file mode 100644 index 00000000..1377811c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_shovel.json new file mode 100644 index 00000000..cf566f50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/stone_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/white_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/white_bundle.json new file mode 100644 index 00000000..33061545 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/white_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_axe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_axe.json new file mode 100644 index 00000000..f058032c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_hoe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_hoe.json new file mode 100644 index 00000000..35cefbdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json new file mode 100644 index 00000000..e88dc29f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_shovel.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_shovel.json new file mode 100644 index 00000000..8fab2e74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/wooden_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/tools/yellow_bundle.json b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/yellow_bundle.json new file mode 100644 index 00000000..691e1fff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/tools/yellow_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_boat.json new file mode 100644 index 00000000..ea11dff8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json new file mode 100644 index 00000000..abe7cd39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/activator_rail.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/activator_rail.json new file mode 100644 index 00000000..45aabf4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/activator_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:activator_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:activator_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json new file mode 100644 index 00000000..3c35ddc3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_chest_raft" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_chest_raft" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_raft.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_raft.json new file mode 100644 index 00000000..cd845a7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/bamboo_raft.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_raft" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_raft" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_boat.json new file mode 100644 index 00000000..aabc78e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json new file mode 100644 index 00000000..a3467b94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json new file mode 100644 index 00000000..e7b31019 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carrot": { + "conditions": { + "items": [ + { + "items": "minecraft:carrot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:carrot_on_a_stick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carrot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:carrot_on_a_stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_boat.json new file mode 100644 index 00000000..e72ccdf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json new file mode 100644 index 00000000..8b87f01f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/chest_minecart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/chest_minecart.json new file mode 100644 index 00000000..5d5ba034 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/chest_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chest_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chest_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json new file mode 100644 index 00000000..6557ca3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json new file mode 100644 index 00000000..98236f77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/detector_rail.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/detector_rail.json new file mode 100644 index 00000000..cd2915ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/detector_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:detector_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:detector_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/furnace_minecart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/furnace_minecart.json new file mode 100644 index 00000000..a095f3f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/furnace_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:furnace_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:furnace_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/hopper_minecart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/hopper_minecart.json new file mode 100644 index 00000000..7ba8f538 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/hopper_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hopper_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hopper_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_boat.json new file mode 100644 index 00000000..604555d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json new file mode 100644 index 00000000..506945c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_boat.json new file mode 100644 index 00000000..2b778cdc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json new file mode 100644 index 00000000..8b2d68fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/minecart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/minecart.json new file mode 100644 index 00000000..0bc6a688 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_boat.json new file mode 100644 index 00000000..6ffdc386 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json new file mode 100644 index 00000000..141388f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json new file mode 100644 index 00000000..b060cc40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json new file mode 100644 index 00000000..06846142 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/powered_rail.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/powered_rail.json new file mode 100644 index 00000000..5e504c54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/powered_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:powered_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:powered_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/rail.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/rail.json new file mode 100644 index 00000000..78e0b5ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_boat.json new file mode 100644 index 00000000..70ae85eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json new file mode 100644 index 00000000..b365bc28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/tnt_minecart.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/tnt_minecart.json new file mode 100644 index 00000000..86146c6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/tnt_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tnt_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tnt_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..8cdeba35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fungus_on_a_stick" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_warped_fungus": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_fungus" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_warped_fungus" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fungus_on_a_stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/cure_zombie_villager.json b/data/generated/V26_1/data/minecraft/advancement/story/cure_zombie_villager.json new file mode 100644 index 00000000..e1c12dd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/cure_zombie_villager.json @@ -0,0 +1,26 @@ +{ + "parent": "minecraft:story/enter_the_nether", + "criteria": { + "cured_zombie": { + "trigger": "minecraft:cured_zombie_villager" + } + }, + "display": { + "description": { + "translate": "advancements.story.cure_zombie_villager.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:golden_apple" + }, + "title": { + "translate": "advancements.story.cure_zombie_villager.title" + } + }, + "requirements": [ + [ + "cured_zombie" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/deflect_arrow.json b/data/generated/V26_1/data/minecraft/advancement/story/deflect_arrow.json new file mode 100644 index 00000000..1ae408d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/deflect_arrow.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:story/obtain_armor", + "criteria": { + "deflected_projectile": { + "conditions": { + "damage": { + "type": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + }, + "blocked": true + } + }, + "trigger": "minecraft:entity_hurt_player" + } + }, + "display": { + "description": { + "translate": "advancements.story.deflect_arrow.description" + }, + "icon": { + "id": "minecraft:shield" + }, + "title": { + "translate": "advancements.story.deflect_arrow.title" + } + }, + "requirements": [ + [ + "deflected_projectile" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/enchant_item.json b/data/generated/V26_1/data/minecraft/advancement/story/enchant_item.json new file mode 100644 index 00000000..83ec7e9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/enchant_item.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:story/mine_diamond", + "criteria": { + "enchanted_item": { + "trigger": "minecraft:enchanted_item" + } + }, + "display": { + "description": { + "translate": "advancements.story.enchant_item.description" + }, + "icon": { + "id": "minecraft:enchanted_book" + }, + "title": { + "translate": "advancements.story.enchant_item.title" + } + }, + "requirements": [ + [ + "enchanted_item" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/enter_the_end.json b/data/generated/V26_1/data/minecraft/advancement/story/enter_the_end.json new file mode 100644 index 00000000..8af99272 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/enter_the_end.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:story/follow_ender_eye", + "criteria": { + "entered_end": { + "conditions": { + "to": "minecraft:the_end" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "description": { + "translate": "advancements.story.enter_the_end.description" + }, + "icon": { + "id": "minecraft:end_stone" + }, + "title": { + "translate": "advancements.story.enter_the_end.title" + } + }, + "requirements": [ + [ + "entered_end" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/enter_the_nether.json b/data/generated/V26_1/data/minecraft/advancement/story/enter_the_nether.json new file mode 100644 index 00000000..21f419b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/enter_the_nether.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:story/form_obsidian", + "criteria": { + "entered_nether": { + "conditions": { + "to": "minecraft:the_nether" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "description": { + "translate": "advancements.story.enter_the_nether.description" + }, + "icon": { + "id": "minecraft:flint_and_steel" + }, + "title": { + "translate": "advancements.story.enter_the_nether.title" + } + }, + "requirements": [ + [ + "entered_nether" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/follow_ender_eye.json b/data/generated/V26_1/data/minecraft/advancement/story/follow_ender_eye.json new file mode 100644 index 00000000..95699502 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/follow_ender_eye.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:story/enter_the_nether", + "criteria": { + "in_stronghold": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "structures": "minecraft:stronghold" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.story.follow_ender_eye.description" + }, + "icon": { + "id": "minecraft:ender_eye" + }, + "title": { + "translate": "advancements.story.follow_ender_eye.title" + } + }, + "requirements": [ + [ + "in_stronghold" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/form_obsidian.json b/data/generated/V26_1/data/minecraft/advancement/story/form_obsidian.json new file mode 100644 index 00000000..01f05643 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/form_obsidian.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/lava_bucket", + "criteria": { + "obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.form_obsidian.description" + }, + "icon": { + "id": "minecraft:obsidian" + }, + "title": { + "translate": "advancements.story.form_obsidian.title" + } + }, + "requirements": [ + [ + "obsidian" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/iron_tools.json b/data/generated/V26_1/data/minecraft/advancement/story/iron_tools.json new file mode 100644 index 00000000..308a7738 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/iron_tools.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.iron_tools.description" + }, + "icon": { + "id": "minecraft:iron_pickaxe" + }, + "title": { + "translate": "advancements.story.iron_tools.title" + } + }, + "requirements": [ + [ + "iron_pickaxe" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/lava_bucket.json b/data/generated/V26_1/data/minecraft/advancement/story/lava_bucket.json new file mode 100644 index 00000000..77ace85d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/lava_bucket.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "lava_bucket": { + "conditions": { + "items": [ + { + "items": "minecraft:lava_bucket" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.lava_bucket.description" + }, + "icon": { + "id": "minecraft:lava_bucket" + }, + "title": { + "translate": "advancements.story.lava_bucket.title" + } + }, + "requirements": [ + [ + "lava_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/mine_diamond.json b/data/generated/V26_1/data/minecraft/advancement/story/mine_diamond.json new file mode 100644 index 00000000..bb0c3cf6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/mine_diamond.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/iron_tools", + "criteria": { + "diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.mine_diamond.description" + }, + "icon": { + "id": "minecraft:diamond" + }, + "title": { + "translate": "advancements.story.mine_diamond.title" + } + }, + "requirements": [ + [ + "diamond" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/mine_stone.json b/data/generated/V26_1/data/minecraft/advancement/story/mine_stone.json new file mode 100644 index 00000000..ebc2f0d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/mine_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/root", + "criteria": { + "get_stone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.mine_stone.description" + }, + "icon": { + "id": "minecraft:wooden_pickaxe" + }, + "title": { + "translate": "advancements.story.mine_stone.title" + } + }, + "requirements": [ + [ + "get_stone" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/obtain_armor.json b/data/generated/V26_1/data/minecraft/advancement/story/obtain_armor.json new file mode 100644 index 00000000..17291800 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/obtain_armor.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.obtain_armor.description" + }, + "icon": { + "id": "minecraft:iron_chestplate" + }, + "title": { + "translate": "advancements.story.obtain_armor.title" + } + }, + "requirements": [ + [ + "iron_helmet", + "iron_chestplate", + "iron_leggings", + "iron_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/root.json b/data/generated/V26_1/data/minecraft/advancement/story/root.json new file mode 100644 index 00000000..40b31c9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/root.json @@ -0,0 +1,34 @@ +{ + "criteria": { + "crafting_table": { + "conditions": { + "items": [ + { + "items": "minecraft:crafting_table" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/stone", + "description": { + "translate": "advancements.story.root.description" + }, + "icon": { + "id": "minecraft:grass_block" + }, + "show_toast": false, + "title": { + "translate": "advancements.story.root.title" + } + }, + "requirements": [ + [ + "crafting_table" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/shiny_gear.json b/data/generated/V26_1/data/minecraft/advancement/story/shiny_gear.json new file mode 100644 index 00000000..46fd0dfd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/shiny_gear.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:story/mine_diamond", + "criteria": { + "diamond_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.shiny_gear.description" + }, + "icon": { + "id": "minecraft:diamond_chestplate" + }, + "title": { + "translate": "advancements.story.shiny_gear.title" + } + }, + "requirements": [ + [ + "diamond_helmet", + "diamond_chestplate", + "diamond_leggings", + "diamond_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/smelt_iron.json b/data/generated/V26_1/data/minecraft/advancement/story/smelt_iron.json new file mode 100644 index 00000000..1c06c4f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/smelt_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/upgrade_tools", + "criteria": { + "iron": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.smelt_iron.description" + }, + "icon": { + "id": "minecraft:iron_ingot" + }, + "title": { + "translate": "advancements.story.smelt_iron.title" + } + }, + "requirements": [ + [ + "iron" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/advancement/story/upgrade_tools.json b/data/generated/V26_1/data/minecraft/advancement/story/upgrade_tools.json new file mode 100644 index 00000000..4c5bbd51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/advancement/story/upgrade_tools.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/mine_stone", + "criteria": { + "stone_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.upgrade_tools.description" + }, + "icon": { + "id": "minecraft:stone_pickaxe" + }, + "title": { + "translate": "advancements.story.upgrade_tools.title" + } + }, + "requirements": [ + [ + "stone_pickaxe" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/base.json b/data/generated/V26_1/data/minecraft/banner_pattern/base.json new file mode 100644 index 00000000..2b9ca993 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/base.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:base", + "translation_key": "block.minecraft.banner.base" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/border.json b/data/generated/V26_1/data/minecraft/banner_pattern/border.json new file mode 100644 index 00000000..02a7140b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/border.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:border", + "translation_key": "block.minecraft.banner.border" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/bricks.json b/data/generated/V26_1/data/minecraft/banner_pattern/bricks.json new file mode 100644 index 00000000..96fb4afa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/bricks.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:bricks", + "translation_key": "block.minecraft.banner.bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/circle.json b/data/generated/V26_1/data/minecraft/banner_pattern/circle.json new file mode 100644 index 00000000..6be3abb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/circle.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:circle", + "translation_key": "block.minecraft.banner.circle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/creeper.json b/data/generated/V26_1/data/minecraft/banner_pattern/creeper.json new file mode 100644 index 00000000..d40f1a04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/creeper.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:creeper", + "translation_key": "block.minecraft.banner.creeper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/cross.json b/data/generated/V26_1/data/minecraft/banner_pattern/cross.json new file mode 100644 index 00000000..7aaebd17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/cross.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:cross", + "translation_key": "block.minecraft.banner.cross" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/curly_border.json b/data/generated/V26_1/data/minecraft/banner_pattern/curly_border.json new file mode 100644 index 00000000..075a738c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/curly_border.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:curly_border", + "translation_key": "block.minecraft.banner.curly_border" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_left.json b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_left.json new file mode 100644 index 00000000..aded65eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_left", + "translation_key": "block.minecraft.banner.diagonal_left" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_right.json new file mode 100644 index 00000000..118712e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_right", + "translation_key": "block.minecraft.banner.diagonal_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_left.json b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_left.json new file mode 100644 index 00000000..03568b57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_up_left", + "translation_key": "block.minecraft.banner.diagonal_up_left" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_right.json new file mode 100644 index 00000000..fd565eb9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/diagonal_up_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_up_right", + "translation_key": "block.minecraft.banner.diagonal_up_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/flow.json b/data/generated/V26_1/data/minecraft/banner_pattern/flow.json new file mode 100644 index 00000000..00ec9c54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/flow.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:flow", + "translation_key": "block.minecraft.banner.flow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/flower.json b/data/generated/V26_1/data/minecraft/banner_pattern/flower.json new file mode 100644 index 00000000..61d1dac7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/flower.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:flower", + "translation_key": "block.minecraft.banner.flower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/globe.json b/data/generated/V26_1/data/minecraft/banner_pattern/globe.json new file mode 100644 index 00000000..8de960df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/globe.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:globe", + "translation_key": "block.minecraft.banner.globe" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/gradient.json b/data/generated/V26_1/data/minecraft/banner_pattern/gradient.json new file mode 100644 index 00000000..a006dee9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/gradient.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:gradient", + "translation_key": "block.minecraft.banner.gradient" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/gradient_up.json b/data/generated/V26_1/data/minecraft/banner_pattern/gradient_up.json new file mode 100644 index 00000000..13e3ec05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/gradient_up.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:gradient_up", + "translation_key": "block.minecraft.banner.gradient_up" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/guster.json b/data/generated/V26_1/data/minecraft/banner_pattern/guster.json new file mode 100644 index 00000000..99f7d6b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/guster.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:guster", + "translation_key": "block.minecraft.banner.guster" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal.json b/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal.json new file mode 100644 index 00000000..79f588c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_horizontal", + "translation_key": "block.minecraft.banner.half_horizontal" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal_bottom.json b/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal_bottom.json new file mode 100644 index 00000000..ae9e1b27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/half_horizontal_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_horizontal_bottom", + "translation_key": "block.minecraft.banner.half_horizontal_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical.json b/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical.json new file mode 100644 index 00000000..402cb016 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_vertical", + "translation_key": "block.minecraft.banner.half_vertical" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical_right.json new file mode 100644 index 00000000..0f3d7226 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/half_vertical_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_vertical_right", + "translation_key": "block.minecraft.banner.half_vertical_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/mojang.json b/data/generated/V26_1/data/minecraft/banner_pattern/mojang.json new file mode 100644 index 00000000..fb8de92c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/mojang.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:mojang", + "translation_key": "block.minecraft.banner.mojang" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/piglin.json b/data/generated/V26_1/data/minecraft/banner_pattern/piglin.json new file mode 100644 index 00000000..7250324f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/piglin.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:piglin", + "translation_key": "block.minecraft.banner.piglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/rhombus.json b/data/generated/V26_1/data/minecraft/banner_pattern/rhombus.json new file mode 100644 index 00000000..445cc9c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/rhombus.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:rhombus", + "translation_key": "block.minecraft.banner.rhombus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/skull.json b/data/generated/V26_1/data/minecraft/banner_pattern/skull.json new file mode 100644 index 00000000..10476189 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/skull.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:skull", + "translation_key": "block.minecraft.banner.skull" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/small_stripes.json b/data/generated/V26_1/data/minecraft/banner_pattern/small_stripes.json new file mode 100644 index 00000000..fd76fc03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/small_stripes.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:small_stripes", + "translation_key": "block.minecraft.banner.small_stripes" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_left.json b/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_left.json new file mode 100644 index 00000000..f7376d61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_bottom_left", + "translation_key": "block.minecraft.banner.square_bottom_left" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_right.json new file mode 100644 index 00000000..b78aafa5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/square_bottom_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_bottom_right", + "translation_key": "block.minecraft.banner.square_bottom_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/square_top_left.json b/data/generated/V26_1/data/minecraft/banner_pattern/square_top_left.json new file mode 100644 index 00000000..a1505ad0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/square_top_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_top_left", + "translation_key": "block.minecraft.banner.square_top_left" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/square_top_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/square_top_right.json new file mode 100644 index 00000000..3b099655 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/square_top_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_top_right", + "translation_key": "block.minecraft.banner.square_top_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/straight_cross.json b/data/generated/V26_1/data/minecraft/banner_pattern/straight_cross.json new file mode 100644 index 00000000..8df6cdc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/straight_cross.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:straight_cross", + "translation_key": "block.minecraft.banner.straight_cross" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_bottom.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_bottom.json new file mode 100644 index 00000000..0aa50a51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_bottom", + "translation_key": "block.minecraft.banner.stripe_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_center.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_center.json new file mode 100644 index 00000000..98fc7aba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_center.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_center", + "translation_key": "block.minecraft.banner.stripe_center" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downleft.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downleft.json new file mode 100644 index 00000000..4034606d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downleft.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_downleft", + "translation_key": "block.minecraft.banner.stripe_downleft" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downright.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downright.json new file mode 100644 index 00000000..3d5d1858 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_downright.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_downright", + "translation_key": "block.minecraft.banner.stripe_downright" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_left.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_left.json new file mode 100644 index 00000000..e47d144c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_left", + "translation_key": "block.minecraft.banner.stripe_left" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_middle.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_middle.json new file mode 100644 index 00000000..2a45a922 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_middle.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_middle", + "translation_key": "block.minecraft.banner.stripe_middle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_right.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_right.json new file mode 100644 index 00000000..d36b02ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_right", + "translation_key": "block.minecraft.banner.stripe_right" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/stripe_top.json b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_top.json new file mode 100644 index 00000000..620c2b58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/stripe_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_top", + "translation_key": "block.minecraft.banner.stripe_top" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/triangle_bottom.json b/data/generated/V26_1/data/minecraft/banner_pattern/triangle_bottom.json new file mode 100644 index 00000000..b6d0952d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/triangle_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangle_bottom", + "translation_key": "block.minecraft.banner.triangle_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/triangle_top.json b/data/generated/V26_1/data/minecraft/banner_pattern/triangle_top.json new file mode 100644 index 00000000..291315d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/triangle_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangle_top", + "translation_key": "block.minecraft.banner.triangle_top" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/triangles_bottom.json b/data/generated/V26_1/data/minecraft/banner_pattern/triangles_bottom.json new file mode 100644 index 00000000..b837ad05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/triangles_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangles_bottom", + "translation_key": "block.minecraft.banner.triangles_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/banner_pattern/triangles_top.json b/data/generated/V26_1/data/minecraft/banner_pattern/triangles_top.json new file mode 100644 index 00000000..370c045c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/banner_pattern/triangles_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangles_top", + "translation_key": "block.minecraft.banner.triangles_top" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_sound_variant/classic.json b/data/generated/V26_1/data/minecraft/cat_sound_variant/classic.json new file mode 100644 index 00000000..0619322f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_sound_variant/classic.json @@ -0,0 +1,24 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.cat.ambient", + "beg_for_food_sound": "minecraft:entity.cat.beg_for_food", + "death_sound": "minecraft:entity.cat.death", + "eat_sound": "minecraft:entity.cat.eat", + "hiss_sound": "minecraft:entity.cat.hiss", + "hurt_sound": "minecraft:entity.cat.hurt", + "purr_sound": "minecraft:entity.cat.purr", + "purreow_sound": "minecraft:entity.cat.purreow", + "stray_ambient_sound": "minecraft:entity.cat.stray_ambient" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_cat.ambient", + "beg_for_food_sound": "minecraft:entity.baby_cat.beg_for_food", + "death_sound": "minecraft:entity.baby_cat.death", + "eat_sound": "minecraft:entity.baby_cat.eat", + "hiss_sound": "minecraft:entity.baby_cat.hiss", + "hurt_sound": "minecraft:entity.baby_cat.hurt", + "purr_sound": "minecraft:entity.baby_cat.purr", + "purreow_sound": "minecraft:entity.baby_cat.purreow", + "stray_ambient_sound": "minecraft:entity.baby_cat.stray_ambient" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_sound_variant/royal.json b/data/generated/V26_1/data/minecraft/cat_sound_variant/royal.json new file mode 100644 index 00000000..64407950 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_sound_variant/royal.json @@ -0,0 +1,24 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.cat_royal.ambient", + "beg_for_food_sound": "minecraft:entity.cat_royal.beg_for_food", + "death_sound": "minecraft:entity.cat_royal.death", + "eat_sound": "minecraft:entity.cat_royal.eat", + "hiss_sound": "minecraft:entity.cat_royal.hiss", + "hurt_sound": "minecraft:entity.cat_royal.hurt", + "purr_sound": "minecraft:entity.cat_royal.purr", + "purreow_sound": "minecraft:entity.cat_royal.purreow", + "stray_ambient_sound": "minecraft:entity.cat_royal.stray_ambient" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_cat.ambient", + "beg_for_food_sound": "minecraft:entity.baby_cat.beg_for_food", + "death_sound": "minecraft:entity.baby_cat.death", + "eat_sound": "minecraft:entity.baby_cat.eat", + "hiss_sound": "minecraft:entity.baby_cat.hiss", + "hurt_sound": "minecraft:entity.baby_cat.hurt", + "purr_sound": "minecraft:entity.baby_cat.purr", + "purreow_sound": "minecraft:entity.baby_cat.purreow", + "stray_ambient_sound": "minecraft:entity.baby_cat.stray_ambient" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/all_black.json b/data/generated/V26_1/data/minecraft/cat_variant/all_black.json new file mode 100644 index 00000000..07453da3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/all_black.json @@ -0,0 +1,22 @@ +{ + "asset_id": "minecraft:entity/cat/cat_all_black", + "baby_asset_id": "minecraft:entity/cat/cat_all_black_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:structure", + "structures": "#minecraft:cats_spawn_as_black" + }, + "priority": 1 + }, + { + "condition": { + "type": "minecraft:moon_brightness", + "range": { + "min": 0.9 + } + }, + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/black.json b/data/generated/V26_1/data/minecraft/cat_variant/black.json new file mode 100644 index 00000000..b73cbe10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/black.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_black", + "baby_asset_id": "minecraft:entity/cat/cat_black_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/british_shorthair.json b/data/generated/V26_1/data/minecraft/cat_variant/british_shorthair.json new file mode 100644 index 00000000..fe984537 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/british_shorthair.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_british_shorthair", + "baby_asset_id": "minecraft:entity/cat/cat_british_shorthair_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/calico.json b/data/generated/V26_1/data/minecraft/cat_variant/calico.json new file mode 100644 index 00000000..aa934c45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/calico.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_calico", + "baby_asset_id": "minecraft:entity/cat/cat_calico_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/jellie.json b/data/generated/V26_1/data/minecraft/cat_variant/jellie.json new file mode 100644 index 00000000..ec4e45ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/jellie.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_jellie", + "baby_asset_id": "minecraft:entity/cat/cat_jellie_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/persian.json b/data/generated/V26_1/data/minecraft/cat_variant/persian.json new file mode 100644 index 00000000..7b34a4f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/persian.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_persian", + "baby_asset_id": "minecraft:entity/cat/cat_persian_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/ragdoll.json b/data/generated/V26_1/data/minecraft/cat_variant/ragdoll.json new file mode 100644 index 00000000..ba7e6188 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/ragdoll.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_ragdoll", + "baby_asset_id": "minecraft:entity/cat/cat_ragdoll_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/red.json b/data/generated/V26_1/data/minecraft/cat_variant/red.json new file mode 100644 index 00000000..71112cd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/red.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_red", + "baby_asset_id": "minecraft:entity/cat/cat_red_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/siamese.json b/data/generated/V26_1/data/minecraft/cat_variant/siamese.json new file mode 100644 index 00000000..e0efc955 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/siamese.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_siamese", + "baby_asset_id": "minecraft:entity/cat/cat_siamese_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/tabby.json b/data/generated/V26_1/data/minecraft/cat_variant/tabby.json new file mode 100644 index 00000000..e35a735b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/tabby.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_tabby", + "baby_asset_id": "minecraft:entity/cat/cat_tabby_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cat_variant/white.json b/data/generated/V26_1/data/minecraft/cat_variant/white.json new file mode 100644 index 00000000..96d1e101 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cat_variant/white.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_white", + "baby_asset_id": "minecraft:entity/cat/cat_white_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/chat.json b/data/generated/V26_1/data/minecraft/chat_type/chat.json new file mode 100644 index 00000000..f84c68ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/chat.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/emote_command.json b/data/generated/V26_1/data/minecraft/chat_type/emote_command.json new file mode 100644 index 00000000..93aa7a27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/emote_command.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.emote" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.emote" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/msg_command_incoming.json b/data/generated/V26_1/data/minecraft/chat_type/msg_command_incoming.json new file mode 100644 index 00000000..67ed0870 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/msg_command_incoming.json @@ -0,0 +1,20 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "style": { + "color": "gray", + "italic": true + }, + "translation_key": "commands.message.display.incoming" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/msg_command_outgoing.json b/data/generated/V26_1/data/minecraft/chat_type/msg_command_outgoing.json new file mode 100644 index 00000000..a8c2eb7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/msg_command_outgoing.json @@ -0,0 +1,20 @@ +{ + "chat": { + "parameters": [ + "target", + "content" + ], + "style": { + "color": "gray", + "italic": true + }, + "translation_key": "commands.message.display.outgoing" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/say_command.json b/data/generated/V26_1/data/minecraft/chat_type/say_command.json new file mode 100644 index 00000000..8a587a05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/say_command.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.announcement" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_incoming.json b/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_incoming.json new file mode 100644 index 00000000..e25ecedd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_incoming.json @@ -0,0 +1,17 @@ +{ + "chat": { + "parameters": [ + "target", + "sender", + "content" + ], + "translation_key": "chat.type.team.text" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_outgoing.json b/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_outgoing.json new file mode 100644 index 00000000..f488846f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chat_type/team_msg_command_outgoing.json @@ -0,0 +1,17 @@ +{ + "chat": { + "parameters": [ + "target", + "sender", + "content" + ], + "translation_key": "chat.type.team.sent" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chicken_sound_variant/classic.json b/data/generated/V26_1/data/minecraft/chicken_sound_variant/classic.json new file mode 100644 index 00000000..b048af70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chicken_sound_variant/classic.json @@ -0,0 +1,14 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.chicken.ambient", + "death_sound": "minecraft:entity.chicken.death", + "hurt_sound": "minecraft:entity.chicken.hurt", + "step_sound": "minecraft:entity.chicken.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_chicken.ambient", + "death_sound": "minecraft:entity.baby_chicken.death", + "hurt_sound": "minecraft:entity.baby_chicken.hurt", + "step_sound": "minecraft:entity.baby_chicken.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chicken_sound_variant/picky.json b/data/generated/V26_1/data/minecraft/chicken_sound_variant/picky.json new file mode 100644 index 00000000..11fb3376 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chicken_sound_variant/picky.json @@ -0,0 +1,14 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.chicken_picky.ambient", + "death_sound": "minecraft:entity.chicken_picky.death", + "hurt_sound": "minecraft:entity.chicken_picky.hurt", + "step_sound": "minecraft:entity.chicken.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_chicken.ambient", + "death_sound": "minecraft:entity.baby_chicken.death", + "hurt_sound": "minecraft:entity.baby_chicken.hurt", + "step_sound": "minecraft:entity.baby_chicken.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chicken_variant/cold.json b/data/generated/V26_1/data/minecraft/chicken_variant/cold.json new file mode 100644 index 00000000..883832a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chicken_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_cold", + "baby_asset_id": "minecraft:entity/chicken/chicken_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chicken_variant/temperate.json b/data/generated/V26_1/data/minecraft/chicken_variant/temperate.json new file mode 100644 index 00000000..9d7a1a9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chicken_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_temperate", + "baby_asset_id": "minecraft:entity/chicken/chicken_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/chicken_variant/warm.json b/data/generated/V26_1/data/minecraft/chicken_variant/warm.json new file mode 100644 index 00000000..347b57d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/chicken_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_warm", + "baby_asset_id": "minecraft:entity/chicken/chicken_warm_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cow_sound_variant/classic.json b/data/generated/V26_1/data/minecraft/cow_sound_variant/classic.json new file mode 100644 index 00000000..7d42614b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cow_sound_variant/classic.json @@ -0,0 +1,6 @@ +{ + "ambient_sound": "minecraft:entity.cow.ambient", + "death_sound": "minecraft:entity.cow.death", + "hurt_sound": "minecraft:entity.cow.hurt", + "step_sound": "minecraft:entity.cow.step" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cow_sound_variant/moody.json b/data/generated/V26_1/data/minecraft/cow_sound_variant/moody.json new file mode 100644 index 00000000..cb4767e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cow_sound_variant/moody.json @@ -0,0 +1,6 @@ +{ + "ambient_sound": "minecraft:entity.cow_moody.ambient", + "death_sound": "minecraft:entity.cow_moody.death", + "hurt_sound": "minecraft:entity.cow_moody.hurt", + "step_sound": "minecraft:entity.cow_moody.step" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cow_variant/cold.json b/data/generated/V26_1/data/minecraft/cow_variant/cold.json new file mode 100644 index 00000000..3254eb57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cow_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/cow/cow_cold", + "baby_asset_id": "minecraft:entity/cow/cow_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cow_variant/temperate.json b/data/generated/V26_1/data/minecraft/cow_variant/temperate.json new file mode 100644 index 00000000..b1684a26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cow_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cow/cow_temperate", + "baby_asset_id": "minecraft:entity/cow/cow_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/cow_variant/warm.json b/data/generated/V26_1/data/minecraft/cow_variant/warm.json new file mode 100644 index 00000000..28fa95fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/cow_variant/warm.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/cow/cow_warm", + "baby_asset_id": "minecraft:entity/cow/cow_warm_baby", + "model": "warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/arrow.json b/data/generated/V26_1/data/minecraft/damage_type/arrow.json new file mode 100644 index 00000000..62e94695 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/arrow.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "arrow", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/bad_respawn_point.json b/data/generated/V26_1/data/minecraft/damage_type/bad_respawn_point.json new file mode 100644 index 00000000..0970fd56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/bad_respawn_point.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "intentional_game_design", + "exhaustion": 0.1, + "message_id": "badRespawnPoint", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/cactus.json b/data/generated/V26_1/data/minecraft/damage_type/cactus.json new file mode 100644 index 00000000..23877ae6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/cactus.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "cactus", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/campfire.json b/data/generated/V26_1/data/minecraft/damage_type/campfire.json new file mode 100644 index 00000000..53255eed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/campfire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "inFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/cramming.json b/data/generated/V26_1/data/minecraft/damage_type/cramming.json new file mode 100644 index 00000000..2dd8c786 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/cramming.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "cramming", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/dragon_breath.json b/data/generated/V26_1/data/minecraft/damage_type/dragon_breath.json new file mode 100644 index 00000000..902f0275 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/dragon_breath.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "dragonBreath", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/drown.json b/data/generated/V26_1/data/minecraft/damage_type/drown.json new file mode 100644 index 00000000..5d1d3ef6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/drown.json @@ -0,0 +1,6 @@ +{ + "effects": "drowning", + "exhaustion": 0.0, + "message_id": "drown", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/dry_out.json b/data/generated/V26_1/data/minecraft/damage_type/dry_out.json new file mode 100644 index 00000000..2bfa7428 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/dry_out.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "dryout", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/ender_pearl.json b/data/generated/V26_1/data/minecraft/damage_type/ender_pearl.json new file mode 100644 index 00000000..511ec358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/ender_pearl.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "fall_variants", + "exhaustion": 0.0, + "message_id": "fall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/explosion.json b/data/generated/V26_1/data/minecraft/damage_type/explosion.json new file mode 100644 index 00000000..fb4317a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "explosion", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/fall.json b/data/generated/V26_1/data/minecraft/damage_type/fall.json new file mode 100644 index 00000000..511ec358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/fall.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "fall_variants", + "exhaustion": 0.0, + "message_id": "fall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/falling_anvil.json b/data/generated/V26_1/data/minecraft/damage_type/falling_anvil.json new file mode 100644 index 00000000..7fe7d18c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/falling_anvil.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "anvil", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/falling_block.json b/data/generated/V26_1/data/minecraft/damage_type/falling_block.json new file mode 100644 index 00000000..05599028 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/falling_block.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fallingBlock", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/falling_stalactite.json b/data/generated/V26_1/data/minecraft/damage_type/falling_stalactite.json new file mode 100644 index 00000000..dab896d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/falling_stalactite.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fallingStalactite", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/fireball.json b/data/generated/V26_1/data/minecraft/damage_type/fireball.json new file mode 100644 index 00000000..48c8e315 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/fireball.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "fireball", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/fireworks.json b/data/generated/V26_1/data/minecraft/damage_type/fireworks.json new file mode 100644 index 00000000..0ec54467 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/fireworks.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fireworks", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/fly_into_wall.json b/data/generated/V26_1/data/minecraft/damage_type/fly_into_wall.json new file mode 100644 index 00000000..649336ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/fly_into_wall.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "flyIntoWall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/freeze.json b/data/generated/V26_1/data/minecraft/damage_type/freeze.json new file mode 100644 index 00000000..d4b28da2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/freeze.json @@ -0,0 +1,6 @@ +{ + "effects": "freezing", + "exhaustion": 0.0, + "message_id": "freeze", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/generic.json b/data/generated/V26_1/data/minecraft/damage_type/generic.json new file mode 100644 index 00000000..3e83b89f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/generic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "generic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/generic_kill.json b/data/generated/V26_1/data/minecraft/damage_type/generic_kill.json new file mode 100644 index 00000000..1dc198a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/generic_kill.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "genericKill", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/hot_floor.json b/data/generated/V26_1/data/minecraft/damage_type/hot_floor.json new file mode 100644 index 00000000..52f8ac30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/hot_floor.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "hotFloor", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/in_fire.json b/data/generated/V26_1/data/minecraft/damage_type/in_fire.json new file mode 100644 index 00000000..53255eed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/in_fire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "inFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/in_wall.json b/data/generated/V26_1/data/minecraft/damage_type/in_wall.json new file mode 100644 index 00000000..8ad45036 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/in_wall.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "inWall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/indirect_magic.json b/data/generated/V26_1/data/minecraft/damage_type/indirect_magic.json new file mode 100644 index 00000000..86fb3ec9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/indirect_magic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "indirectMagic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/lava.json b/data/generated/V26_1/data/minecraft/damage_type/lava.json new file mode 100644 index 00000000..a164a6a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/lava.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "lava", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/lightning_bolt.json b/data/generated/V26_1/data/minecraft/damage_type/lightning_bolt.json new file mode 100644 index 00000000..6d302c83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/lightning_bolt.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "lightningBolt", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/mace_smash.json b/data/generated/V26_1/data/minecraft/damage_type/mace_smash.json new file mode 100644 index 00000000..931f77c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/mace_smash.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mace_smash", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/magic.json b/data/generated/V26_1/data/minecraft/damage_type/magic.json new file mode 100644 index 00000000..ef634d5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/magic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "magic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/mob_attack.json b/data/generated/V26_1/data/minecraft/damage_type/mob_attack.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/mob_attack.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/mob_attack_no_aggro.json b/data/generated/V26_1/data/minecraft/damage_type/mob_attack_no_aggro.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/mob_attack_no_aggro.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/mob_projectile.json b/data/generated/V26_1/data/minecraft/damage_type/mob_projectile.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/mob_projectile.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/on_fire.json b/data/generated/V26_1/data/minecraft/damage_type/on_fire.json new file mode 100644 index 00000000..bc19ee2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/on_fire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.0, + "message_id": "onFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/out_of_world.json b/data/generated/V26_1/data/minecraft/damage_type/out_of_world.json new file mode 100644 index 00000000..f67d3f6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/out_of_world.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "outOfWorld", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/outside_border.json b/data/generated/V26_1/data/minecraft/damage_type/outside_border.json new file mode 100644 index 00000000..09c30641 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/outside_border.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "outsideBorder", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/player_attack.json b/data/generated/V26_1/data/minecraft/damage_type/player_attack.json new file mode 100644 index 00000000..674995e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/player_attack.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "player", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/player_explosion.json b/data/generated/V26_1/data/minecraft/damage_type/player_explosion.json new file mode 100644 index 00000000..360c81e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/player_explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "explosion.player", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/sonic_boom.json b/data/generated/V26_1/data/minecraft/damage_type/sonic_boom.json new file mode 100644 index 00000000..0959660c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/sonic_boom.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "sonic_boom", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/spear.json b/data/generated/V26_1/data/minecraft/damage_type/spear.json new file mode 100644 index 00000000..dd65ea35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/spear.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "spear", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/spit.json b/data/generated/V26_1/data/minecraft/damage_type/spit.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/spit.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/stalagmite.json b/data/generated/V26_1/data/minecraft/damage_type/stalagmite.json new file mode 100644 index 00000000..e9f6146d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/stalagmite.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "stalagmite", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/starve.json b/data/generated/V26_1/data/minecraft/damage_type/starve.json new file mode 100644 index 00000000..41cfca02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/starve.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "starve", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/sting.json b/data/generated/V26_1/data/minecraft/damage_type/sting.json new file mode 100644 index 00000000..3ddf311b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/sting.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "sting", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/sweet_berry_bush.json b/data/generated/V26_1/data/minecraft/damage_type/sweet_berry_bush.json new file mode 100644 index 00000000..5daa1a6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/sweet_berry_bush.json @@ -0,0 +1,6 @@ +{ + "effects": "poking", + "exhaustion": 0.1, + "message_id": "sweetBerryBush", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/thorns.json b/data/generated/V26_1/data/minecraft/damage_type/thorns.json new file mode 100644 index 00000000..da7ed2f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/thorns.json @@ -0,0 +1,6 @@ +{ + "effects": "thorns", + "exhaustion": 0.1, + "message_id": "thorns", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/thrown.json b/data/generated/V26_1/data/minecraft/damage_type/thrown.json new file mode 100644 index 00000000..2a277af9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/thrown.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "thrown", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/trident.json b/data/generated/V26_1/data/minecraft/damage_type/trident.json new file mode 100644 index 00000000..0002f823 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/trident.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "trident", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/unattributed_fireball.json b/data/generated/V26_1/data/minecraft/damage_type/unattributed_fireball.json new file mode 100644 index 00000000..02751b6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/unattributed_fireball.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "onFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/wind_charge.json b/data/generated/V26_1/data/minecraft/damage_type/wind_charge.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/wind_charge.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/wither.json b/data/generated/V26_1/data/minecraft/damage_type/wither.json new file mode 100644 index 00000000..27776cf4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/wither.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "wither", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/damage_type/wither_skull.json b/data/generated/V26_1/data/minecraft/damage_type/wither_skull.json new file mode 100644 index 00000000..b216a66e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/damage_type/wither_skull.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "witherSkull", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/minecart_improvements/pack.mcmeta b/data/generated/V26_1/data/minecraft/datapacks/minecart_improvements/pack.mcmeta new file mode 100644 index 00000000..bf25617a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/minecart_improvements/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:minecart_improvements" + ] + }, + "pack": { + "description": { + "translate": "dataPack.minecart_improvements.description" + }, + "max_format": 101, + "min_format": [ + 101, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/redstone_experiments/pack.mcmeta b/data/generated/V26_1/data/minecraft/datapacks/redstone_experiments/pack.mcmeta new file mode 100644 index 00000000..d24bfb6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/redstone_experiments/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:redstone_experiments" + ] + }, + "pack": { + "description": { + "translate": "dataPack.redstone_experiments.description" + }, + "max_format": 101, + "min_format": [ + 101, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json new file mode 100644 index 00000000..93b3ac11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json @@ -0,0 +1,338 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 30 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:empty", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rail", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:powered_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:detector_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:activator_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 15 + } + ], + "rolls": 3.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:efficiency" + } + ], + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/abandoned_mineshaft" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json new file mode 100644 index 00000000..cc89150b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json @@ -0,0 +1,435 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:compass", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_catalyst", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lead", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_horse_armor", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:swift_sneak" + } + ], + "name": "minecraft:book", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_sensor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:candle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:experience_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:echo_shard", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:disc_fragment_5", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_regeneration" + } + ], + "name": "minecraft:potion", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_torch", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 7 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 71 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:mending" + } + ], + "name": "minecraft:book", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:ward_armor_trim_smithing_template", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:silence_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ancient_city" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json new file mode 100644 index 00000000..ec1b8248 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json @@ -0,0 +1,296 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spider_eye", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 25 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:empty", + "weight": 15 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sand", + "weight": 10 + } + ], + "rolls": 4.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dune_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:unbreaking" + } + ], + "name": "minecraft:book", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json new file mode 100644 index 00000000..10c4f909 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json @@ -0,0 +1,200 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 16 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wild_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:unbreaking" + } + ], + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/jungle_temple" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json new file mode 100644 index 00000000..6d34b74c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json @@ -0,0 +1,253 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tripwire_hook", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:goat_horn" + } + ], + "functions": [ + { + "function": "minecraft:set_instrument", + "options": "#minecraft:regular_goat_horns" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sentry_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:quick_charge" + } + ], + "name": "minecraft:book", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/pillager_outpost" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json new file mode 100644 index 00000000..e088c7fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fire_protection", + "minecraft:thorns", + "minecraft:infinity" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json new file mode 100644 index 00000000..7b9d6b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:feather_falling", + "minecraft:projectile_protection", + "minecraft:power" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json new file mode 100644 index 00000000..92e5d607 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:punch", + "minecraft:smite", + "minecraft:bane_of_arthropods" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json new file mode 100644 index 00000000..046971a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:knockback", + "minecraft:binding_curse", + "minecraft:sweeping_edge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json new file mode 100644 index 00000000..c9b6fb3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:aqua_affinity", + "minecraft:looting", + "minecraft:frost_walker" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json new file mode 100644 index 00000000..d2cb6a75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:depth_strider", + "minecraft:respiration", + "minecraft:vanishing_curse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json new file mode 100644 index 00000000..a9ab715c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:blast_protection", + "minecraft:fire_aspect", + "minecraft:flame" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json new file mode 100644 index 00000000..26e19a3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json @@ -0,0 +1,7 @@ +{ + "replace": true, + "values": [ + "minecraft:smith/1/coal_emerald", + "minecraft:armorer/1/iron_ingot_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json new file mode 100644 index 00000000..f381382e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json @@ -0,0 +1,13 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/2/emerald_iron_boots_group_1", + "minecraft:armorer/2/emerald_iron_chestplate_group_1", + "minecraft:armorer/2/emerald_iron_leggings_group_1", + "minecraft:armorer/2/emerald_iron_helmet_group_1", + "minecraft:armorer/2/emerald_chainmail_helmet_group_2", + "minecraft:armorer/2/emerald_chainmail_boots_group_2", + "minecraft:armorer/2/emerald_chainmail_chainmail_group_2", + "minecraft:armorer/2/emerald_chainmail_leggings_group_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json new file mode 100644 index 00000000..142a40e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/3/lava_bucket_emerald", + "minecraft:armorer/3/emerald_shield", + "minecraft:armorer/3/emerald_bell" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json new file mode 100644 index 00000000..f99ada2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json @@ -0,0 +1,31 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/4/emerald_enchanted_iron_boots_desert", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_desert", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_desert", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_desert", + "minecraft:armorer/4/emerald_enchanted_iron_boots_plains", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_plains", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_plains", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_plains", + "minecraft:armorer/4/emerald_enchanted_iron_boots_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_boots_snow", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_snow", + "minecraft:armorer/4/emerald_enchanted_chainmail_boots_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_helmet_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_leggings_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_chestplate_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_boots_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_helmet_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_leggings_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_chestplate_swamp", + "minecraft:armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga", + "minecraft:armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga", + "minecraft:armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga", + "minecraft:armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json new file mode 100644 index 00000000..effa9eb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json @@ -0,0 +1,21 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_desert", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_desert", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_plains", + "minecraft:armorer/5/emerald_and_diamond_diamond_boots_plains", + "minecraft:armorer/5/emerald_and_diamond_diamond_helmet_savanna", + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_savanna", + "minecraft:armorer/5/emerald_and_diamond_diamond_boots_snow", + "minecraft:armorer/5/emerald_and_diamond_diamond_helmet_snow", + "minecraft:armorer/5/emerald_chainmail_helmet_jungle", + "minecraft:armorer/5/emerald_chainmail_boots_jungle", + "minecraft:armorer/5/emerald_chainmail_helmet_swamp", + "minecraft:armorer/5/emerald_chainmail_boots_swamp", + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_taiga", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_taiga", + "minecraft:armorer/5/diamond_block_emerald_taiga", + "minecraft:armorer/5/iron_block_emerald_non_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json new file mode 100644 index 00000000..9a9287cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/1/paper_emerald", + "minecraft:librarian/1/emerald_bookshelf", + "minecraft:librarian/1/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/1/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/1/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/1/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/1/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/1/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/1/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json new file mode 100644 index 00000000..b384e32d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/2/book_emerald", + "minecraft:librarian/2/emerald_lantern", + "minecraft:librarian/2/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/2/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/2/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/2/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/2/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/2/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/2/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json new file mode 100644 index 00000000..f5c8c62c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/3/ink_sac_emerald", + "minecraft:librarian/3/emerald_glass", + "minecraft:librarian/3/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/3/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/3/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/3/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/3/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/3/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/3/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json new file mode 100644 index 00000000..5598463d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/4/writable_book_emerald", + "minecraft:librarian/4/emerald_clock", + "minecraft:librarian/4/emerald_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json new file mode 100644 index 00000000..acdb02ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/5/emerald_yellow_candle", + "minecraft:librarian/5/emerald_red_candle", + "minecraft:librarian/5/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/5/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/5/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/5/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/5/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/5/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/5/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json new file mode 100644 index 00000000..f0863724 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:iron_ingot" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json new file mode 100644 index 00000000..aa6f2cb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json new file mode 100644 index 00000000..59eb8557 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json new file mode 100644 index 00000000..8e566f35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json new file mode 100644 index 00000000..b9926933 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json new file mode 100644 index 00000000..80c6d774 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json new file mode 100644 index 00000000..77eb85ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json new file mode 100644 index 00000000..3f049f3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json new file mode 100644 index 00000000..1439268c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json new file mode 100644 index 00000000..f18845a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bell" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 36.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json new file mode 100644 index 00000000..830df4df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_boots" + }, + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json new file mode 100644 index 00000000..63cfaa16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_chestplate" + }, + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json new file mode 100644 index 00000000..2c73a736 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_helmet" + }, + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json new file mode 100644 index 00000000..9885447c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_leggings" + }, + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json new file mode 100644 index 00000000..76de37d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json new file mode 100644 index 00000000..f089ea71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json new file mode 100644 index 00000000..b73ce3d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json new file mode 100644 index 00000000..f1444155 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json new file mode 100644 index 00000000..127c3f94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json new file mode 100644 index 00000000..f629d124 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json new file mode 100644 index 00000000..425102ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json new file mode 100644 index 00000000..48f37681 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json new file mode 100644 index 00000000..e9b49b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json new file mode 100644 index 00000000..041c2e3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json new file mode 100644 index 00000000..0e231280 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json new file mode 100644 index 00000000..69cda59f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:frost_walker": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json new file mode 100644 index 00000000..aab8ebec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json new file mode 100644 index 00000000..e0cdc930 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json new file mode 100644 index 00000000..3c6a9ab4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json new file mode 100644 index 00000000..05ba03fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json new file mode 100644 index 00000000..43f08ad3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json new file mode 100644 index 00000000..f57729f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json new file mode 100644 index 00000000..5cdcd185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:aqua_affinity": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json new file mode 100644 index 00000000..2f1dce38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json new file mode 100644 index 00000000..98b30e11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json new file mode 100644 index 00000000..3eb47044 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json new file mode 100644 index 00000000..b76eb538 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json @@ -0,0 +1,21 @@ +{ + "gives": { + "count": 42, + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json new file mode 100644 index 00000000..6d70f502 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json new file mode 100644 index 00000000..ea508d6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:frost_walker": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json new file mode 100644 index 00000000..3cabd68a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 4.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json new file mode 100644 index 00000000..9021d302 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json new file mode 100644 index 00000000..9f8ae77c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 4.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:blast_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json new file mode 100644 index 00000000..bcf1513e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json new file mode 100644 index 00000000..01dff075 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:aqua_affinity": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json new file mode 100644 index 00000000..0fc68fc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json new file mode 100644 index 00000000..7ec998ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json new file mode 100644 index 00000000..78656191 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json @@ -0,0 +1,50 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:blast_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json new file mode 100644 index 00000000..cacdee91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:feather_falling": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json new file mode 100644 index 00000000..33c435db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:depth_strider": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json new file mode 100644 index 00000000..02734167 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:projectile_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json new file mode 100644 index 00000000..015b7a9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json @@ -0,0 +1,46 @@ +{ + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:respiration": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json new file mode 100644 index 00000000..e42a7b59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json @@ -0,0 +1,28 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:jungle", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:iron_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..7674f26c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..20eca846 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..17db8cd6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..5615c32f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..0e01d63d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..b8431c95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..219490df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json new file mode 100644 index 00000000..9df17f4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:book" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..5c0310cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..a608ba62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..b0547db6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..d719e818 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..8baa93d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..448d4d7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..e9209dd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..dfd93753 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..659f0e1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..2169b35a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..daf2ed40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..4b0567d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..a36dabb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..8ab76354 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..74dddb3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,60 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:efficiency": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..11e105e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,60 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:unbreaking": 2.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 2 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 8.0, + { + "type": "minecraft:uniform", + "max": 25.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..0b45b844 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,60 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:protection": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..7d1b6a55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,60 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:sharpness": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..b036488d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "minecraft:silk_touch" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..86ae5e1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "minecraft:mending" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..cfc79c2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,60 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "add": false, + "enchantments": { + "minecraft:fortune": 2.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 2 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 8.0, + { + "type": "minecraft:uniform", + "max": 25.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/pack.mcmeta b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/pack.mcmeta new file mode 100644 index 00000000..119c4218 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/datapacks/trade_rebalance/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:trade_rebalance" + ] + }, + "pack": { + "description": { + "translate": "dataPack.trade_rebalance.description" + }, + "max_format": 101, + "min_format": [ + 101, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dialog/custom_options.json b/data/generated/V26_1/data/minecraft/dialog/custom_options.json new file mode 100644 index 00000000..21b4f8a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dialog/custom_options.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:dialog_list", + "button_width": 310, + "columns": 1, + "dialogs": "#minecraft:pause_screen_additions", + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.custom_options" + }, + "title": { + "translate": "menu.custom_options.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dialog/quick_actions.json b/data/generated/V26_1/data/minecraft/dialog/quick_actions.json new file mode 100644 index 00000000..9a8345fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dialog/quick_actions.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:dialog_list", + "button_width": 310, + "columns": 1, + "dialogs": "#minecraft:quick_actions", + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.quick_actions" + }, + "title": { + "translate": "menu.quick_actions.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dialog/server_links.json b/data/generated/V26_1/data/minecraft/dialog/server_links.json new file mode 100644 index 00000000..44840928 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dialog/server_links.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:server_links", + "button_width": 310, + "columns": 1, + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.server_links" + }, + "title": { + "translate": "menu.server_links.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dimension_type/overworld.json b/data/generated/V26_1/data/minecraft/dimension_type/overworld.json new file mode 100644 index 00000000..ff1f4903 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dimension_type/overworld.json @@ -0,0 +1,55 @@ +{ + "ambient_light": 0.0, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "always", + "can_sleep": "when_dark", + "error_message": { + "translate": "block.minecraft.bed.no_sleep" + } + }, + "minecraft:gameplay/nether_portal_spawns_piglin": true, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#0a0a0a", + "minecraft:visual/cloud_color": "#ccffffff", + "minecraft:visual/cloud_height": 192.33, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff" + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:overworld", + "has_ceiling": false, + "has_ender_dragon_fight": false, + "has_skylight": true, + "height": 384, + "infiniburn": "#minecraft:infiniburn_overworld", + "logical_height": 384, + "min_y": -64, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, + "timelines": "#minecraft:in_overworld" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dimension_type/overworld_caves.json b/data/generated/V26_1/data/minecraft/dimension_type/overworld_caves.json new file mode 100644 index 00000000..6e6bb48e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dimension_type/overworld_caves.json @@ -0,0 +1,55 @@ +{ + "ambient_light": 0.0, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "always", + "can_sleep": "when_dark", + "error_message": { + "translate": "block.minecraft.bed.no_sleep" + } + }, + "minecraft:gameplay/nether_portal_spawns_piglin": true, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#0a0a0a", + "minecraft:visual/cloud_color": "#ccffffff", + "minecraft:visual/cloud_height": 192.33, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff" + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:overworld", + "has_ceiling": true, + "has_ender_dragon_fight": false, + "has_skylight": true, + "height": 384, + "infiniburn": "#minecraft:infiniburn_overworld", + "logical_height": 384, + "min_y": -64, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, + "timelines": "#minecraft:in_overworld" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dimension_type/the_end.json b/data/generated/V26_1/data/minecraft/dimension_type/the_end.json new file mode 100644 index 00000000..2efed780 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dimension_type/the_end.json @@ -0,0 +1,46 @@ +{ + "ambient_light": 0.25, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 6000, + "replace_current_music": true, + "sound": "minecraft:music.end" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "never", + "can_sleep": "never", + "explodes": true + }, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#3f473f", + "minecraft:visual/fog_color": "#181318", + "minecraft:visual/sky_color": "#000000", + "minecraft:visual/sky_light_color": "#ac60cd", + "minecraft:visual/sky_light_factor": 0.0 + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:the_end", + "has_ceiling": false, + "has_ender_dragon_fight": true, + "has_fixed_time": true, + "has_skylight": true, + "height": 256, + "infiniburn": "#minecraft:infiniburn_end", + "logical_height": 256, + "min_y": 0, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": 15, + "skybox": "end", + "timelines": "#minecraft:in_end" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/dimension_type/the_nether.json b/data/generated/V26_1/data/minecraft/dimension_type/the_nether.json new file mode 100644 index 00000000..eb656121 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/dimension_type/the_nether.json @@ -0,0 +1,39 @@ +{ + "ambient_light": 0.1, + "attributes": { + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "never", + "can_sleep": "never", + "explodes": true + }, + "minecraft:gameplay/can_start_raid": false, + "minecraft:gameplay/fast_lava": true, + "minecraft:gameplay/piglins_zombify": false, + "minecraft:gameplay/respawn_anchor_works": true, + "minecraft:gameplay/sky_light_level": 4.0, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:gameplay/water_evaporates": true, + "minecraft:visual/ambient_light_color": "#302821", + "minecraft:visual/default_dripstone_particle": { + "type": "minecraft:dripping_dripstone_lava" + }, + "minecraft:visual/fog_end_distance": 96.0, + "minecraft:visual/fog_start_distance": 10.0, + "minecraft:visual/sky_light_color": "#7a7aff", + "minecraft:visual/sky_light_factor": 0.0 + }, + "cardinal_light": "nether", + "coordinate_scale": 8.0, + "has_ceiling": true, + "has_ender_dragon_fight": false, + "has_fixed_time": true, + "has_skylight": false, + "height": 256, + "infiniburn": "#minecraft:infiniburn_nether", + "logical_height": 128, + "min_y": 0, + "monster_spawn_block_light_limit": 15, + "monster_spawn_light_level": 7, + "skybox": "none", + "timelines": "#minecraft:in_nether" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/aqua_affinity.json b/data/generated/V26_1/data/minecraft/enchantment/aqua_affinity.json new file mode 100644 index 00000000..ea88d33c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/aqua_affinity.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.aqua_affinity" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + }, + "attribute": "minecraft:submerged_mining_speed", + "id": "minecraft:enchantment.aqua_affinity", + "operation": "add_multiplied_total" + } + ] + }, + "max_cost": { + "base": 41, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 1, + "per_level_above_first": 0 + }, + "slots": [ + "head" + ], + "supported_items": "#minecraft:enchantable/head_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/bane_of_arthropods.json b/data/generated/V26_1/data/minecraft/enchantment/bane_of_arthropods.json new file mode 100644 index 00000000..1e417c38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/bane_of_arthropods.json @@ -0,0 +1,79 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.bane_of_arthropods" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "#minecraft:sensitive_to_bane_of_arthropods" + } + } + } + ], + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:apply_mob_effect", + "max_amplifier": 3.0, + "max_duration": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.5 + }, + "min_amplifier": 3.0, + "min_duration": 1.5, + "to_apply": "minecraft:slowness" + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "#minecraft:sensitive_to_bane_of_arthropods" + } + }, + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "is_direct": true + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/binding_curse.json b/data/generated/V26_1/data/minecraft/enchantment/binding_curse.json new file mode 100644 index 00000000..69f255ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/binding_curse.json @@ -0,0 +1,23 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.binding_curse" + }, + "effects": { + "minecraft:prevent_armor_change": {} + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/equippable", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/blast_protection.json b/data/generated/V26_1/data/minecraft/enchantment/blast_protection.json new file mode 100644 index 00000000..a8a036de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/blast_protection.json @@ -0,0 +1,62 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.blast_protection" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + }, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:enchantment.blast_protection", + "operation": "add_value" + } + ], + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_explosion" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 13, + "per_level_above_first": 8 + }, + "max_level": 4, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/breach.json b/data/generated/V26_1/data/minecraft/enchantment/breach.json new file mode 100644 index 00000000..deab4e68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/breach.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.breach" + }, + "effects": { + "minecraft:armor_effectiveness": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": -0.15, + "per_level_above_first": -0.15 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 4, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/channeling.json b/data/generated/V26_1/data/minecraft/enchantment/channeling.json new file mode 100644 index 00000000..b71373b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/channeling.json @@ -0,0 +1,112 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.channeling" + }, + "effects": { + "minecraft:hit_block": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:summon_entity", + "entity": "minecraft:lightning_bolt" + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": "minecraft:item.trident.thunder", + "volume": 5.0 + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:weather_check", + "thundering": true + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:trident" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:lightning_rods" + }, + "can_see_sky": true + } + } + ] + } + } + ], + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:summon_entity", + "entity": "minecraft:lightning_bolt" + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": "minecraft:item.trident.thunder", + "volume": 5.0 + } + ] + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:weather_check", + "thundering": true + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "location": { + "can_see_sky": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "type": "minecraft:trident" + } + } + ] + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/density.json b/data/generated/V26_1/data/minecraft/enchantment/density.json new file mode 100644 index 00000000..63f74ce2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/density.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.density" + }, + "effects": { + "minecraft:smash_damage_per_fallen_block": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 0.5, + "per_level_above_first": 0.5 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/depth_strider.json b/data/generated/V26_1/data/minecraft/enchantment/depth_strider.json new file mode 100644 index 00000000..a13601e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/depth_strider.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.depth_strider" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.33333334, + "per_level_above_first": 0.33333334 + }, + "attribute": "minecraft:water_movement_efficiency", + "id": "minecraft:enchantment.depth_strider", + "operation": "add_value" + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/boots", + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/efficiency.json b/data/generated/V26_1/data/minecraft/enchantment/efficiency.json new file mode 100644 index 00000000..749d701f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/efficiency.json @@ -0,0 +1,33 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.efficiency" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:levels_squared", + "added": 1.0 + }, + "attribute": "minecraft:mining_efficiency", + "id": "minecraft:enchantment.efficiency", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 51, + "per_level_above_first": 10 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/feather_falling.json b/data/generated/V26_1/data/minecraft/enchantment/feather_falling.json new file mode 100644 index 00000000..d69f7430 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/feather_falling.json @@ -0,0 +1,49 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.feather_falling" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 3.0, + "per_level_above_first": 3.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_fall" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "max_cost": { + "base": 11, + "per_level_above_first": 6 + }, + "max_level": 4, + "min_cost": { + "base": 5, + "per_level_above_first": 6 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/fire_aspect.json b/data/generated/V26_1/data/minecraft/enchantment/fire_aspect.json new file mode 100644 index 00000000..5764ed52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/fire_aspect.json @@ -0,0 +1,43 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.fire_aspect" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:ignite", + "duration": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + } + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "is_direct": true + } + } + } + ] + }, + "max_cost": { + "base": 60, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 10, + "per_level_above_first": 20 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fire_aspect", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/fire_protection.json b/data/generated/V26_1/data/minecraft/enchantment/fire_protection.json new file mode 100644 index 00000000..fc6e32e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/fire_protection.json @@ -0,0 +1,67 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.fire_protection" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": -0.15, + "per_level_above_first": -0.15 + }, + "attribute": "minecraft:burning_time", + "id": "minecraft:enchantment.fire_protection", + "operation": "add_multiplied_base" + } + ], + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_fire" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 18, + "per_level_above_first": 8 + }, + "max_level": 4, + "min_cost": { + "base": 10, + "per_level_above_first": 8 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/flame.json b/data/generated/V26_1/data/minecraft/enchantment/flame.json new file mode 100644 index 00000000..7b9af5ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/flame.json @@ -0,0 +1,30 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.flame" + }, + "effects": { + "minecraft:projectile_spawned": [ + { + "effect": { + "type": "minecraft:ignite", + "duration": 100.0 + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/fortune.json b/data/generated/V26_1/data/minecraft/enchantment/fortune.json new file mode 100644 index 00000000..3d292758 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/fortune.json @@ -0,0 +1,21 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.fortune" + }, + "exclusive_set": "#minecraft:exclusive_set/mining", + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining_loot", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/frost_walker.json b/data/generated/V26_1/data/minecraft/enchantment/frost_walker.json new file mode 100644 index 00000000..5bd83b7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/frost_walker.json @@ -0,0 +1,125 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.frost_walker" + }, + "effects": { + "minecraft:damage_immunity": [ + { + "effect": {}, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:burn_from_stepping" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ], + "minecraft:location_changed": [ + { + "effect": { + "type": "minecraft:replace_disk", + "block_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:frosted_ice", + "Properties": { + "age": "0" + } + } + }, + "height": 1.0, + "offset": [ + 0, + -1, + 0 + ], + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ + 0, + 1, + 0 + ], + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + }, + { + "type": "minecraft:unobstructed" + } + ] + }, + "radius": { + "type": "minecraft:clamped", + "max": 16.0, + "min": 0.0, + "value": { + "type": "minecraft:linear", + "base": 3.0, + "per_level_above_first": 1.0 + } + }, + "trigger_game_event": "minecraft:block_place" + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_ground": true + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": {} + } + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/boots", + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 2, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/impaling.json b/data/generated/V26_1/data/minecraft/enchantment/impaling.json new file mode 100644 index 00000000..8c1bcf5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/impaling.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.impaling" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "#minecraft:sensitive_to_impaling" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 21, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 8 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/infinity.json b/data/generated/V26_1/data/minecraft/enchantment/infinity.json new file mode 100644 index 00000000..6bb53bed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/infinity.json @@ -0,0 +1,37 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.infinity" + }, + "effects": { + "minecraft:ammo_use": [ + { + "effect": { + "type": "minecraft:set", + "value": 0.0 + }, + "requirements": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:arrow" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/bow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/knockback.json b/data/generated/V26_1/data/minecraft/enchantment/knockback.json new file mode 100644 index 00000000..2daf925c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/knockback.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.knockback" + }, + "effects": { + "minecraft:knockback": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 55, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 5, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/melee_weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/looting.json b/data/generated/V26_1/data/minecraft/enchantment/looting.json new file mode 100644 index 00000000..da3f7f57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/looting.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.looting" + }, + "effects": { + "minecraft:equipment_drops": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 0.01, + "per_level_above_first": 0.01 + } + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "attacker", + "predicate": { + "type": "minecraft:player" + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/melee_weapon", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/loyalty.json b/data/generated/V26_1/data/minecraft/enchantment/loyalty.json new file mode 100644 index 00000000..c0769ed3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/loyalty.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.loyalty" + }, + "effects": { + "minecraft:trident_return_acceleration": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 12, + "per_level_above_first": 7 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/luck_of_the_sea.json b/data/generated/V26_1/data/minecraft/enchantment/luck_of_the_sea.json new file mode 100644 index 00000000..74b8e792 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/luck_of_the_sea.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.luck_of_the_sea" + }, + "effects": { + "minecraft:fishing_luck_bonus": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fishing", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/lunge.json b/data/generated/V26_1/data/minecraft/enchantment/lunge.json new file mode 100644 index 00000000..01f985f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/lunge.json @@ -0,0 +1,147 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.lunge" + }, + "effects": { + "minecraft:post_piercing_attack": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:change_item_damage", + "amount": 1.0 + }, + { + "type": "minecraft:apply_exhaustion", + "amount": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + } + }, + { + "type": "minecraft:apply_impulse", + "coordinate_scale": [ + 1.0, + 0.0, + 1.0 + ], + "direction": [ + 0.0, + 0.0, + 1.0 + ], + "magnitude": { + "type": "minecraft:linear", + "base": 0.458, + "per_level_above_first": 0.458 + } + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": [ + "minecraft:item.spear.lunge_1", + "minecraft:item.spear.lunge_2", + "minecraft:item.spear.lunge_3" + ], + "volume": 1.0 + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": {} + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_fall_flying": false + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_in_water": false + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player", + "gamemode": [ + "creative" + ] + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:player", + "food": { + "level": { + "min": 7 + } + } + } + } + } + ] + } + ] + } + } + ] + }, + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "hand" + ], + "supported_items": "#minecraft:enchantable/lunge", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/lure.json b/data/generated/V26_1/data/minecraft/enchantment/lure.json new file mode 100644 index 00000000..1df8c10a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/lure.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.lure" + }, + "effects": { + "minecraft:fishing_time_reduction": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 5.0, + "per_level_above_first": 5.0 + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fishing", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/mending.json b/data/generated/V26_1/data/minecraft/enchantment/mending.json new file mode 100644 index 00000000..f762c8d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/mending.json @@ -0,0 +1,30 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.mending" + }, + "effects": { + "minecraft:repair_with_xp": [ + { + "effect": { + "type": "minecraft:multiply", + "factor": 2.0 + } + } + ] + }, + "max_cost": { + "base": 75, + "per_level_above_first": 25 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 25 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/durability", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/multishot.json b/data/generated/V26_1/data/minecraft/enchantment/multishot.json new file mode 100644 index 00000000..b656f911 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/multishot.json @@ -0,0 +1,47 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.multishot" + }, + "effects": { + "minecraft:projectile_count": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + } + } + ], + "minecraft:projectile_spread": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 10.0, + "per_level_above_first": 10.0 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/crossbow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/piercing.json b/data/generated/V26_1/data/minecraft/enchantment/piercing.json new file mode 100644 index 00000000..29ebfa65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/piercing.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.piercing" + }, + "effects": { + "minecraft:projectile_piercing": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/crossbow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 4, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/power.json b/data/generated/V26_1/data/minecraft/enchantment/power.json new file mode 100644 index 00000000..145936c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/power.json @@ -0,0 +1,41 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.power" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 0.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "type": "#minecraft:arrows" + } + } + } + ] + }, + "max_cost": { + "base": 16, + "per_level_above_first": 10 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/projectile_protection.json b/data/generated/V26_1/data/minecraft/enchantment/projectile_protection.json new file mode 100644 index 00000000..52431649 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/projectile_protection.json @@ -0,0 +1,50 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.projectile_protection" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 9, + "per_level_above_first": 6 + }, + "max_level": 4, + "min_cost": { + "base": 3, + "per_level_above_first": 6 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/protection.json b/data/generated/V26_1/data/minecraft/enchantment/protection.json new file mode 100644 index 00000000..97b24aa8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/protection.json @@ -0,0 +1,46 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.protection" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 12, + "per_level_above_first": 11 + }, + "max_level": 4, + "min_cost": { + "base": 1, + "per_level_above_first": 11 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/punch.json b/data/generated/V26_1/data/minecraft/enchantment/punch.json new file mode 100644 index 00000000..f2db6d38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/punch.json @@ -0,0 +1,41 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.punch" + }, + "effects": { + "minecraft:knockback": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "type": "#minecraft:arrows" + } + } + } + ] + }, + "max_cost": { + "base": 37, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 12, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/quick_charge.json b/data/generated/V26_1/data/minecraft/enchantment/quick_charge.json new file mode 100644 index 00000000..5b320d77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/quick_charge.json @@ -0,0 +1,45 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.quick_charge" + }, + "effects": { + "minecraft:crossbow_charge_time": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": -0.25, + "per_level_above_first": -0.25 + } + }, + "minecraft:crossbow_charging_sounds": [ + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_1" + }, + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_2" + }, + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_3" + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 12, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand", + "offhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/respiration.json b/data/generated/V26_1/data/minecraft/enchantment/respiration.json new file mode 100644 index 00000000..9b7bf1c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/respiration.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.respiration" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + }, + "attribute": "minecraft:oxygen_bonus", + "id": "minecraft:enchantment.respiration", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 40, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "head" + ], + "supported_items": "#minecraft:enchantable/head_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/riptide.json b/data/generated/V26_1/data/minecraft/enchantment/riptide.json new file mode 100644 index 00000000..7049ff72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/riptide.json @@ -0,0 +1,36 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.riptide" + }, + "effects": { + "minecraft:trident_sound": [ + "minecraft:item.trident.riptide_1", + "minecraft:item.trident.riptide_2", + "minecraft:item.trident.riptide_3" + ], + "minecraft:trident_spin_attack_strength": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.75 + } + } + }, + "exclusive_set": "#minecraft:exclusive_set/riptide", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 17, + "per_level_above_first": 7 + }, + "slots": [ + "hand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/sharpness.json b/data/generated/V26_1/data/minecraft/enchantment/sharpness.json new file mode 100644 index 00000000..07e9f9bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/sharpness.json @@ -0,0 +1,36 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.sharpness" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 0.5 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 21, + "per_level_above_first": 11 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 11 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/sharp_weapon", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/silk_touch.json b/data/generated/V26_1/data/minecraft/enchantment/silk_touch.json new file mode 100644 index 00000000..1e00ee8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/silk_touch.json @@ -0,0 +1,31 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.silk_touch" + }, + "effects": { + "minecraft:block_experience": [ + { + "effect": { + "type": "minecraft:set", + "value": 0.0 + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/mining", + "max_cost": { + "base": 65, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 15, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining_loot", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/smite.json b/data/generated/V26_1/data/minecraft/enchantment/smite.json new file mode 100644 index 00000000..74866dba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/smite.json @@ -0,0 +1,43 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.smite" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "#minecraft:sensitive_to_smite" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/soul_speed.json b/data/generated/V26_1/data/minecraft/enchantment/soul_speed.json new file mode 100644 index 00000000..a0f59080 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/soul_speed.json @@ -0,0 +1,254 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.soul_speed" + }, + "effects": { + "minecraft:location_changed": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:attribute", + "amount": { + "type": "minecraft:linear", + "base": 0.0405, + "per_level_above_first": 0.0105 + }, + "attribute": "minecraft:movement_speed", + "id": "minecraft:enchantment.soul_speed", + "operation": "add_value" + }, + { + "type": "minecraft:attribute", + "amount": 1.0, + "attribute": "minecraft:movement_efficiency", + "id": "minecraft:enchantment.soul_speed", + "operation": "add_value" + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": {} + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "active": true, + "condition": "minecraft:enchantment_active_check" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_flying": false + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_ground": false + } + } + } + ] + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "active": false, + "condition": "minecraft:enchantment_active_check" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_flying": false + }, + "movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + } + ] + } + ] + } + ] + } + }, + { + "effect": { + "type": "minecraft:change_item_damage", + "amount": 1.0 + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "chance": { + "type": "minecraft:enchantment_level", + "amount": 0.04 + }, + "condition": "minecraft:random_chance" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_ground": true + }, + "movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + } + ] + } + } + ], + "minecraft:tick": [ + { + "effect": { + "type": "minecraft:spawn_particles", + "horizontal_position": { + "type": "in_bounding_box" + }, + "horizontal_velocity": { + "movement_scale": -0.2 + }, + "particle": { + "type": "minecraft:soul" + }, + "speed": 1.0, + "vertical_position": { + "type": "entity_position", + "offset": 0.1 + }, + "vertical_velocity": { + "base": 0.1 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_flying": false, + "is_on_ground": true + }, + "movement": { + "horizontal_speed": { + "min": 9.999999747378752E-6 + } + }, + "movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + }, + "periodic_tick": 5 + } + } + }, + { + "effect": { + "type": "minecraft:play_sound", + "pitch": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.6 + }, + "sound": "minecraft:particle.soul_escape", + "volume": 0.6 + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "chance": 0.35, + "condition": "minecraft:random_chance" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_flying": false, + "is_on_ground": true + }, + "movement": { + "horizontal_speed": { + "min": 9.999999747378752E-6 + } + }, + "movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + }, + "periodic_tick": 5 + } + } + ] + } + } + ] + }, + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/sweeping_edge.json b/data/generated/V26_1/data/minecraft/enchantment/sweeping_edge.json new file mode 100644 index 00000000..1a9dbf8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/sweeping_edge.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.sweeping_edge" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 1.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "attribute": "minecraft:sweeping_damage_ratio", + "id": "minecraft:enchantment.sweeping_edge", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 20, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/sweeping", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/swift_sneak.json b/data/generated/V26_1/data/minecraft/enchantment/swift_sneak.json new file mode 100644 index 00000000..7b4a36b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/swift_sneak.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.swift_sneak" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + }, + "attribute": "minecraft:sneaking_speed", + "id": "minecraft:enchantment.swift_sneak", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 75, + "per_level_above_first": 25 + }, + "max_level": 3, + "min_cost": { + "base": 25, + "per_level_above_first": 25 + }, + "slots": [ + "legs" + ], + "supported_items": "#minecraft:enchantable/leg_armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/thorns.json b/data/generated/V26_1/data/minecraft/enchantment/thorns.json new file mode 100644 index 00000000..178396c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/thorns.json @@ -0,0 +1,55 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.thorns" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "attacker", + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:damage_entity", + "damage_type": "minecraft:thorns", + "max_damage": 5.0, + "min_damage": 1.0 + }, + { + "type": "minecraft:change_item_damage", + "amount": 2.0 + } + ] + }, + "enchanted": "victim", + "requirements": { + "chance": { + "type": "minecraft:enchantment_level", + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + } + }, + "condition": "minecraft:random_chance" + } + } + ] + }, + "max_cost": { + "base": 60, + "per_level_above_first": 20 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 20 + }, + "primary_items": "#minecraft:enchantable/chest_armor", + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/unbreaking.json b/data/generated/V26_1/data/minecraft/enchantment/unbreaking.json new file mode 100644 index 00000000..6028e42f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/unbreaking.json @@ -0,0 +1,75 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.unbreaking" + }, + "effects": { + "minecraft:item_damage": [ + { + "effect": { + "type": "minecraft:remove_binomial", + "chance": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 10.0, + "per_level_above_first": 5.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + } + }, + "requirements": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:enchantable/armor" + } + } + }, + { + "effect": { + "type": "minecraft:remove_binomial", + "chance": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 1.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + }, + "requirements": { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:enchantable/armor" + } + } + } + } + ] + }, + "max_cost": { + "base": 55, + "per_level_above_first": 8 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/durability", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/vanishing_curse.json b/data/generated/V26_1/data/minecraft/enchantment/vanishing_curse.json new file mode 100644 index 00000000..c82f1191 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/vanishing_curse.json @@ -0,0 +1,23 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.vanishing_curse" + }, + "effects": { + "minecraft:prevent_equipment_drop": {} + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/vanishing", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment/wind_burst.json b/data/generated/V26_1/data/minecraft/enchantment/wind_burst.json new file mode 100644 index 00000000..cdc33187 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment/wind_burst.json @@ -0,0 +1,68 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.wind_burst" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "attacker", + "effect": { + "type": "minecraft:explode", + "block_interaction": "trigger", + "immune_blocks": "#minecraft:blocks_wind_charge_explosions", + "knockback_multiplier": { + "type": "minecraft:lookup", + "fallback": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.35 + }, + "values": [ + 1.2, + 1.75, + 2.2 + ] + }, + "large_particle": { + "type": "minecraft:gust_emitter_large" + }, + "radius": 3.5, + "small_particle": { + "type": "minecraft:gust_emitter_small" + }, + "sound": "minecraft:entity.wind_charge.wind_burst" + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "flags": { + "is_flying": false + }, + "movement": { + "fall_distance": { + "min": 1.5 + } + } + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/enderman_loot_drop.json b/data/generated/V26_1/data/minecraft/enchantment_provider/enderman_loot_drop.json new file mode 100644 index 00000000..3c19ad13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/enderman_loot_drop.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:silk_touch", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/mob_spawn_equipment.json b/data/generated/V26_1/data/minecraft/enchantment_provider/mob_spawn_equipment.json new file mode 100644 index 00000000..7a5e5cd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/mob_spawn_equipment.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:by_cost_with_difficulty", + "enchantments": "#minecraft:on_mob_spawn_equipment", + "max_cost_span": 17, + "min_cost": 5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json b/data/generated/V26_1/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json new file mode 100644 index 00000000..b3633f37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:piercing", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json new file mode 100644 index 00000000..aaa4aeba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:quick_charge", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json new file mode 100644 index 00000000..b6f00cad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:quick_charge", + "level": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator.json b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator.json new file mode 100644 index 00000000..1ce996f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:sharpness", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json new file mode 100644 index 00000000..bce93e79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:sharpness", + "level": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/frog_variant/cold.json b/data/generated/V26_1/data/minecraft/frog_variant/cold.json new file mode 100644 index 00000000..860e01f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/frog_variant/cold.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/frog_cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_frogs" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/frog_variant/temperate.json b/data/generated/V26_1/data/minecraft/frog_variant/temperate.json new file mode 100644 index 00000000..25d2f0ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/frog_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/frog/frog_temperate", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/frog_variant/warm.json b/data/generated/V26_1/data/minecraft/frog_variant/warm.json new file mode 100644 index 00000000..598e9299 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/frog_variant/warm.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/frog_warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_frogs" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/admire_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/admire_goat_horn.json new file mode 100644 index 00000000..62fbefe4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/admire_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.admire_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.4", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/call_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/call_goat_horn.json new file mode 100644 index 00000000..11894ccd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/call_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.call_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.5", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/dream_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/dream_goat_horn.json new file mode 100644 index 00000000..b1379d31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/dream_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.dream_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.7", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/feel_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/feel_goat_horn.json new file mode 100644 index 00000000..09911ed6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/feel_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.feel_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.3", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/ponder_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/ponder_goat_horn.json new file mode 100644 index 00000000..ba0c285b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/ponder_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.ponder_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.0", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/seek_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/seek_goat_horn.json new file mode 100644 index 00000000..d9c27978 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/seek_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.seek_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.2", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/sing_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/sing_goat_horn.json new file mode 100644 index 00000000..0de5cf2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/sing_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.sing_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.1", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/instrument/yearn_goat_horn.json b/data/generated/V26_1/data/minecraft/instrument/yearn_goat_horn.json new file mode 100644 index 00000000..b562490d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/instrument/yearn_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.yearn_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.6", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/11.json b/data/generated/V26_1/data/minecraft/jukebox_song/11.json new file mode 100644 index 00000000..44b6598c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/11.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 11, + "description": { + "translate": "jukebox_song.minecraft.11" + }, + "length_in_seconds": 71.0, + "sound_event": "minecraft:music_disc.11" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/13.json b/data/generated/V26_1/data/minecraft/jukebox_song/13.json new file mode 100644 index 00000000..86dc2f41 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/13.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 1, + "description": { + "translate": "jukebox_song.minecraft.13" + }, + "length_in_seconds": 178.0, + "sound_event": "minecraft:music_disc.13" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/5.json b/data/generated/V26_1/data/minecraft/jukebox_song/5.json new file mode 100644 index 00000000..f441bbe5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/5.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 15, + "description": { + "translate": "jukebox_song.minecraft.5" + }, + "length_in_seconds": 178.0, + "sound_event": "minecraft:music_disc.5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/blocks.json b/data/generated/V26_1/data/minecraft/jukebox_song/blocks.json new file mode 100644 index 00000000..94d000b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/blocks.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 3, + "description": { + "translate": "jukebox_song.minecraft.blocks" + }, + "length_in_seconds": 345.0, + "sound_event": "minecraft:music_disc.blocks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/cat.json b/data/generated/V26_1/data/minecraft/jukebox_song/cat.json new file mode 100644 index 00000000..598c1657 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/cat.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 2, + "description": { + "translate": "jukebox_song.minecraft.cat" + }, + "length_in_seconds": 185.0, + "sound_event": "minecraft:music_disc.cat" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/chirp.json b/data/generated/V26_1/data/minecraft/jukebox_song/chirp.json new file mode 100644 index 00000000..d7228806 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/chirp.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 4, + "description": { + "translate": "jukebox_song.minecraft.chirp" + }, + "length_in_seconds": 185.0, + "sound_event": "minecraft:music_disc.chirp" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/creator.json b/data/generated/V26_1/data/minecraft/jukebox_song/creator.json new file mode 100644 index 00000000..3b63f55e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/creator.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 12, + "description": { + "translate": "jukebox_song.minecraft.creator" + }, + "length_in_seconds": 176.0, + "sound_event": "minecraft:music_disc.creator" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/creator_music_box.json b/data/generated/V26_1/data/minecraft/jukebox_song/creator_music_box.json new file mode 100644 index 00000000..6184d36d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/creator_music_box.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 11, + "description": { + "translate": "jukebox_song.minecraft.creator_music_box" + }, + "length_in_seconds": 73.0, + "sound_event": "minecraft:music_disc.creator_music_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/far.json b/data/generated/V26_1/data/minecraft/jukebox_song/far.json new file mode 100644 index 00000000..f57cf8d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/far.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 5, + "description": { + "translate": "jukebox_song.minecraft.far" + }, + "length_in_seconds": 174.0, + "sound_event": "minecraft:music_disc.far" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/lava_chicken.json b/data/generated/V26_1/data/minecraft/jukebox_song/lava_chicken.json new file mode 100644 index 00000000..cc84a7fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/lava_chicken.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 9, + "description": { + "translate": "jukebox_song.minecraft.lava_chicken" + }, + "length_in_seconds": 134.0, + "sound_event": "minecraft:music_disc.lava_chicken" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/mall.json b/data/generated/V26_1/data/minecraft/jukebox_song/mall.json new file mode 100644 index 00000000..a5a8ddb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/mall.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 6, + "description": { + "translate": "jukebox_song.minecraft.mall" + }, + "length_in_seconds": 197.0, + "sound_event": "minecraft:music_disc.mall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/mellohi.json b/data/generated/V26_1/data/minecraft/jukebox_song/mellohi.json new file mode 100644 index 00000000..cdea238b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/mellohi.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 7, + "description": { + "translate": "jukebox_song.minecraft.mellohi" + }, + "length_in_seconds": 96.0, + "sound_event": "minecraft:music_disc.mellohi" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/otherside.json b/data/generated/V26_1/data/minecraft/jukebox_song/otherside.json new file mode 100644 index 00000000..78562393 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/otherside.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 14, + "description": { + "translate": "jukebox_song.minecraft.otherside" + }, + "length_in_seconds": 195.0, + "sound_event": "minecraft:music_disc.otherside" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/pigstep.json b/data/generated/V26_1/data/minecraft/jukebox_song/pigstep.json new file mode 100644 index 00000000..3d4d74a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/pigstep.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 13, + "description": { + "translate": "jukebox_song.minecraft.pigstep" + }, + "length_in_seconds": 149.0, + "sound_event": "minecraft:music_disc.pigstep" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/precipice.json b/data/generated/V26_1/data/minecraft/jukebox_song/precipice.json new file mode 100644 index 00000000..2cb2124b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/precipice.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 13, + "description": { + "translate": "jukebox_song.minecraft.precipice" + }, + "length_in_seconds": 299.0, + "sound_event": "minecraft:music_disc.precipice" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/relic.json b/data/generated/V26_1/data/minecraft/jukebox_song/relic.json new file mode 100644 index 00000000..077ca97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/relic.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 14, + "description": { + "translate": "jukebox_song.minecraft.relic" + }, + "length_in_seconds": 218.0, + "sound_event": "minecraft:music_disc.relic" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/stal.json b/data/generated/V26_1/data/minecraft/jukebox_song/stal.json new file mode 100644 index 00000000..c069d614 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/stal.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 8, + "description": { + "translate": "jukebox_song.minecraft.stal" + }, + "length_in_seconds": 150.0, + "sound_event": "minecraft:music_disc.stal" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/strad.json b/data/generated/V26_1/data/minecraft/jukebox_song/strad.json new file mode 100644 index 00000000..918a7dc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/strad.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 9, + "description": { + "translate": "jukebox_song.minecraft.strad" + }, + "length_in_seconds": 188.0, + "sound_event": "minecraft:music_disc.strad" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/tears.json b/data/generated/V26_1/data/minecraft/jukebox_song/tears.json new file mode 100644 index 00000000..37147b82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/tears.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 10, + "description": { + "translate": "jukebox_song.minecraft.tears" + }, + "length_in_seconds": 175.0, + "sound_event": "minecraft:music_disc.tears" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/wait.json b/data/generated/V26_1/data/minecraft/jukebox_song/wait.json new file mode 100644 index 00000000..c0cd84b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/wait.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 12, + "description": { + "translate": "jukebox_song.minecraft.wait" + }, + "length_in_seconds": 238.0, + "sound_event": "minecraft:music_disc.wait" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/jukebox_song/ward.json b/data/generated/V26_1/data/minecraft/jukebox_song/ward.json new file mode 100644 index 00000000..7f08af1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/jukebox_song/ward.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 10, + "description": { + "translate": "jukebox_song.minecraft.ward" + }, + "length_in_seconds": 251.0, + "sound_event": "minecraft:music_disc.ward" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_pyramid.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_pyramid.json new file mode 100644 index 00000000..773306a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_pyramid.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:archer_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:miner_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:prize_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:skull_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "name": "minecraft:tnt" + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_well.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_well.json new file mode 100644 index 00000000..06078963 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/desert_well.json @@ -0,0 +1,93 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:arms_up_pottery_sherd", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brewer_pottery_sherd", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brick" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:stick" + }, + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:jump_boost", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:weakness", + "duration": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 6.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + }, + { + "type": "minecraft:poison", + "duration": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + } + }, + { + "type": "minecraft:saturation", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "name": "minecraft:suspicious_stew" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/desert_well" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json new file mode 100644 index 00000000..aab9955d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blade_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:explorer_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:mourner_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:plenty_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/ocean_ruin_cold" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json new file mode 100644 index 00000000..37fab6a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:angler_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:shelter_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:snort_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:sniffer_egg" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/ocean_ruin_warm" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_common.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_common.json new file mode 100644 index 00000000..ed2855d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_common.json @@ -0,0 +1,150 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:clay", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brick", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:white_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:orange_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:red_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:green_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brown_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:spruce_hanging_sign" + }, + { + "type": "minecraft:item", + "name": "minecraft:oak_hanging_sign" + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:coal" + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:dead_bush" + }, + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + }, + { + "type": "minecraft:item", + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "name": "minecraft:lead" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/trail_ruins_common" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_rare.json b/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_rare.json new file mode 100644 index 00000000..1de414d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/archaeology/trail_ruins_rare.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:burn_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:danger_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:friend_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:heart_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:heartbreak_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:howl_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:sheaf_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:wayfinder_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:raiser_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:shaper_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:host_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_relic" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/trail_ruins_rare" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_button.json new file mode 100644 index 00000000..675e0492 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_door.json new file mode 100644 index 00000000..9176c991 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:acacia_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:acacia_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence.json new file mode 100644 index 00000000..d1f65ef0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence_gate.json new file mode 100644 index 00000000..02ace3a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_hanging_sign.json new file mode 100644 index 00000000..ef4901d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_leaves.json new file mode 100644 index 00000000..7d0e2703 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:acacia_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:acacia_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_log.json new file mode 100644 index 00000000..d47e3799 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_planks.json new file mode 100644 index 00000000..cb616b31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_pressure_plate.json new file mode 100644 index 00000000..e58528d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sapling.json new file mode 100644 index 00000000..621cf3ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_shelf.json new file mode 100644 index 00000000..4296b557 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sign.json new file mode 100644 index 00000000..f506bb3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_slab.json new file mode 100644 index 00000000..4a42027f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:acacia_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:acacia_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_stairs.json new file mode 100644 index 00000000..c34077e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_trapdoor.json new file mode 100644 index 00000000..543f7939 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_wood.json new file mode 100644 index 00000000..d2b40a74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/acacia_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/activator_rail.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/activator_rail.json new file mode 100644 index 00000000..8ce73f86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/activator_rail.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:activator_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/activator_rail" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/allium.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/allium.json new file mode 100644 index 00000000..745cce83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/allium.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:allium" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/allium" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_block.json new file mode 100644 index 00000000..32152c61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:amethyst_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/amethyst_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_cluster.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_cluster.json new file mode 100644 index 00000000..9b470f1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/amethyst_cluster.json @@ -0,0 +1,81 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:amethyst_cluster" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:cluster_max_harvestables" + } + } + ], + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + } + ], + "name": "minecraft:amethyst_shard" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:amethyst_shard" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/amethyst_cluster" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/ancient_debris.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/ancient_debris.json new file mode 100644 index 00000000..654ec598 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/ancient_debris.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ancient_debris" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ancient_debris" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite.json new file mode 100644 index 00000000..977ccd9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_slab.json new file mode 100644 index 00000000..27cfb068 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:andesite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:andesite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_stairs.json new file mode 100644 index 00000000..2b698f3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_wall.json new file mode 100644 index 00000000..23d7eaeb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/andesite_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/anvil.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/anvil.json new file mode 100644 index 00000000..9d813710 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/anvil.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/anvil" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_melon_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_melon_stem.json new file mode 100644 index 00000000..0adc9023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_melon_stem.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/attached_melon_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json new file mode 100644 index 00000000..8febdc52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/attached_pumpkin_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea.json new file mode 100644 index 00000000..f47814c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azalea" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea_leaves.json new file mode 100644 index 00000000..885d37be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/azalea_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:azalea_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:azalea" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azalea_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/azure_bluet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/azure_bluet.json new file mode 100644 index 00000000..1eb6059d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/azure_bluet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azure_bluet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azure_bluet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo.json new file mode 100644 index 00000000..bff9dfaa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_block.json new file mode 100644 index 00000000..408e663a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_button.json new file mode 100644 index 00000000..73015675 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_door.json new file mode 100644 index 00000000..c5cdf42c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:bamboo_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:bamboo_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence.json new file mode 100644 index 00000000..4870bb86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence_gate.json new file mode 100644 index 00000000..351d9c4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json new file mode 100644 index 00000000..4e6f336e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic.json new file mode 100644 index 00000000..f9a4e62a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_mosaic" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json new file mode 100644 index 00000000..443b9358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:bamboo_mosaic_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:bamboo_mosaic_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..a009132e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_mosaic_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_planks.json new file mode 100644 index 00000000..dce013ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json new file mode 100644 index 00000000..409fa3d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sapling.json new file mode 100644 index 00000000..88a9d5f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_shelf.json new file mode 100644 index 00000000..40e63572 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sign.json new file mode 100644 index 00000000..087ef95e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_slab.json new file mode 100644 index 00000000..6b4ce3a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:bamboo_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:bamboo_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_stairs.json new file mode 100644 index 00000000..3165bb5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_trapdoor.json new file mode 100644 index 00000000..f00c5363 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bamboo_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/barrel.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/barrel.json new file mode 100644 index 00000000..905e1a0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/barrel.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:barrel" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/barrel" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/basalt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/basalt.json new file mode 100644 index 00000000..ab3ec6a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/basalt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/basalt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/beacon.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/beacon.json new file mode 100644 index 00000000..ea087788 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/beacon.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:beacon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beacon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bee_nest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bee_nest.json new file mode 100644 index 00000000..d2502a46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bee_nest.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:bees" + ], + "source": "block_entity" + }, + { + "block": "minecraft:bee_nest", + "function": "minecraft:copy_state", + "properties": [ + "honey_level" + ] + } + ], + "name": "minecraft:bee_nest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bee_nest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/beehive.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/beehive.json new file mode 100644 index 00000000..422ed51a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/beehive.json @@ -0,0 +1,58 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:bees" + ], + "source": "block_entity" + }, + { + "block": "minecraft:beehive", + "function": "minecraft:copy_state", + "properties": [ + "honey_level" + ] + } + ], + "name": "minecraft:beehive" + }, + { + "type": "minecraft:item", + "name": "minecraft:beehive" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beehive" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/beetroots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/beetroots.json new file mode 100644 index 00000000..4db1d7f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/beetroots.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "name": "minecraft:beetroot" + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:beetroot_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beetroots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bell.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bell.json new file mode 100644 index 00000000..c59f7fb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bell.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bell" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf.json new file mode 100644 index 00000000..f4687d5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:big_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/big_dripleaf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf_stem.json new file mode 100644 index 00000000..781e8008 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/big_dripleaf_stem.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:big_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/big_dripleaf_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_button.json new file mode 100644 index 00000000..28a086f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_door.json new file mode 100644 index 00000000..856a21c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:birch_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:birch_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence.json new file mode 100644 index 00000000..8fbb0716 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence_gate.json new file mode 100644 index 00000000..b7745fc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_hanging_sign.json new file mode 100644 index 00000000..d6581e8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_leaves.json new file mode 100644 index 00000000..829bc340 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:birch_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:birch_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_log.json new file mode 100644 index 00000000..be062c32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_planks.json new file mode 100644 index 00000000..7045d4db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_pressure_plate.json new file mode 100644 index 00000000..e32cff6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sapling.json new file mode 100644 index 00000000..cee9c56e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_shelf.json new file mode 100644 index 00000000..9182f27f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sign.json new file mode 100644 index 00000000..fdcdcdcf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_slab.json new file mode 100644 index 00000000..ad5932bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:birch_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:birch_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_stairs.json new file mode 100644 index 00000000..350b8868 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_trapdoor.json new file mode 100644 index 00000000..5ba1be9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_wood.json new file mode 100644 index 00000000..92a60a7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/birch_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_banner.json new file mode 100644 index 00000000..e4e07eaa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:black_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_bed.json new file mode 100644 index 00000000..1b2b8fa2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:black_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:black_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle.json new file mode 100644 index 00000000..d6e6632a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:black_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle_cake.json new file mode 100644 index 00000000..d936a4b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_carpet.json new file mode 100644 index 00000000..e4cd4185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete.json new file mode 100644 index 00000000..deb3d3ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete_powder.json new file mode 100644 index 00000000..dd6f733f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_glazed_terracotta.json new file mode 100644 index 00000000..337c7463 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_shulker_box.json new file mode 100644 index 00000000..cf06e009 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:black_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass.json new file mode 100644 index 00000000..a71bf62b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass_pane.json new file mode 100644 index 00000000..f78711ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_terracotta.json new file mode 100644 index 00000000..198fddea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/black_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_wool.json new file mode 100644 index 00000000..3d8b0740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/black_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone.json new file mode 100644 index 00000000..edad1350 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_slab.json new file mode 100644 index 00000000..4060b726 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:blackstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:blackstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_stairs.json new file mode 100644 index 00000000..8a422b67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_wall.json new file mode 100644 index 00000000..89cdfe6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blackstone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blast_furnace.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blast_furnace.json new file mode 100644 index 00000000..fb35e9af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blast_furnace.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blast_furnace" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blast_furnace" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_banner.json new file mode 100644 index 00000000..1afc9d7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blue_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_bed.json new file mode 100644 index 00000000..f8555c3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:blue_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:blue_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle.json new file mode 100644 index 00000000..40d9f21b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle_cake.json new file mode 100644 index 00000000..5db8ccbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_carpet.json new file mode 100644 index 00000000..310e8754 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete.json new file mode 100644 index 00000000..45da734e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete_powder.json new file mode 100644 index 00000000..dcc352fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json new file mode 100644 index 00000000..bebd6031 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_ice.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_ice.json new file mode 100644 index 00000000..9ba93295 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_ice.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_ice" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_orchid.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_orchid.json new file mode 100644 index 00000000..4a5e5c0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_orchid.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_orchid" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_orchid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_shulker_box.json new file mode 100644 index 00000000..84fd89cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blue_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass.json new file mode 100644 index 00000000..9de05fe8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json new file mode 100644 index 00000000..726d037f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_terracotta.json new file mode 100644 index 00000000..b35f5b2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_wool.json new file mode 100644 index 00000000..c31cdf53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/blue_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bone_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bone_block.json new file mode 100644 index 00000000..80afd6d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bone_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bone_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bookshelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bookshelf.json new file mode 100644 index 00000000..ed87a16d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bookshelf.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:bookshelf" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:book" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bookshelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral.json new file mode 100644 index 00000000..9a0ceb2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brain_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_block.json new file mode 100644 index 00000000..d3ac3022 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:brain_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_brain_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_fan.json new file mode 100644 index 00000000..45459594 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brain_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brain_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brewing_stand.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brewing_stand.json new file mode 100644 index 00000000..d300fdc8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brewing_stand.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brewing_stand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brewing_stand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_slab.json new file mode 100644 index 00000000..f705e946 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_stairs.json new file mode 100644 index 00000000..9c30747d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_wall.json new file mode 100644 index 00000000..01226465 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bricks.json new file mode 100644 index 00000000..ab7ce5d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_banner.json new file mode 100644 index 00000000..77eee1c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brown_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_bed.json new file mode 100644 index 00000000..73b73c07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:brown_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:brown_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle.json new file mode 100644 index 00000000..64957e26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brown_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle_cake.json new file mode 100644 index 00000000..b08e7b6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_carpet.json new file mode 100644 index 00000000..dbd7b052 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete.json new file mode 100644 index 00000000..157f7f61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete_powder.json new file mode 100644 index 00000000..e7671675 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json new file mode 100644 index 00000000..70f8305c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom.json new file mode 100644 index 00000000..b2835762 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom_block.json new file mode 100644 index 00000000..bdcdd04e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_mushroom_block.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:brown_mushroom_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": -6.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:limit_count", + "limit": { + "min": 0.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brown_mushroom" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_mushroom_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_shulker_box.json new file mode 100644 index 00000000..30467bcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brown_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass.json new file mode 100644 index 00000000..7445895a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json new file mode 100644 index 00000000..6d3d3836 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_terracotta.json new file mode 100644 index 00000000..78542b03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_wool.json new file mode 100644 index 00000000..51ec42e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/brown_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral.json new file mode 100644 index 00000000..5db2f741 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bubble_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_block.json new file mode 100644 index 00000000..7bc85af7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:bubble_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_bubble_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_fan.json new file mode 100644 index 00000000..083b0989 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bubble_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bubble_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/budding_amethyst.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/budding_amethyst.json new file mode 100644 index 00000000..5570eb62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/budding_amethyst.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/budding_amethyst" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/bush.json new file mode 100644 index 00000000..7c465247 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/bush.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus.json new file mode 100644 index 00000000..e310ec3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cactus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus_flower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus_flower.json new file mode 100644 index 00000000..087ade13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cactus_flower.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus_flower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cactus_flower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cake.json new file mode 100644 index 00000000..cf98e008 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cake.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/calcite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/calcite.json new file mode 100644 index 00000000..ccf97a39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/calcite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:calcite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/calcite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json new file mode 100644 index 00000000..499447ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:calibrated_sculk_sensor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/calibrated_sculk_sensor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/campfire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/campfire.json new file mode 100644 index 00000000..ee97874d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/campfire.json @@ -0,0 +1,54 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:campfire" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:charcoal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/campfire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/candle.json new file mode 100644 index 00000000..28547e1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/candle_cake.json new file mode 100644 index 00000000..1f6b7185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/carrots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/carrots.json new file mode 100644 index 00000000..71cd96ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/carrots.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carrot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:carrots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:carrot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/carrots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cartography_table.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cartography_table.json new file mode 100644 index 00000000..664cf950 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cartography_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cartography_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cartography_table" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/carved_pumpkin.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/carved_pumpkin.json new file mode 100644 index 00000000..170e7a29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/carved_pumpkin.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/carved_pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cauldron.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cauldron.json new file mode 100644 index 00000000..c959482c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cauldron.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines.json new file mode 100644 index 00000000..17b89ab9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:cave_vines", + "condition": "minecraft:block_state_property", + "properties": { + "berries": "true" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cave_vines" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines_plant.json new file mode 100644 index 00000000..6bf6c393 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cave_vines_plant.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:cave_vines_plant", + "condition": "minecraft:block_state_property", + "properties": { + "berries": "true" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cave_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_button.json new file mode 100644 index 00000000..1aa943b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_door.json new file mode 100644 index 00000000..5e9fdedb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:cherry_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:cherry_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence.json new file mode 100644 index 00000000..c61b470c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence_gate.json new file mode 100644 index 00000000..ec56e4bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_hanging_sign.json new file mode 100644 index 00000000..3905d42f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_leaves.json new file mode 100644 index 00000000..b79e709e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:cherry_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:cherry_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_log.json new file mode 100644 index 00000000..e35232e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_planks.json new file mode 100644 index 00000000..9cbbb4f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_pressure_plate.json new file mode 100644 index 00000000..fb0c2385 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sapling.json new file mode 100644 index 00000000..62c3e70c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_shelf.json new file mode 100644 index 00000000..57fd4a5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sign.json new file mode 100644 index 00000000..5010b090 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_slab.json new file mode 100644 index 00000000..158d2d70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cherry_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cherry_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_stairs.json new file mode 100644 index 00000000..5ae1bce7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_trapdoor.json new file mode 100644 index 00000000..f960ed46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_wood.json new file mode 100644 index 00000000..0e245a81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cherry_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chest.json new file mode 100644 index 00000000..6c9d7f0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chipped_anvil.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chipped_anvil.json new file mode 100644 index 00000000..5ef5dbe7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chipped_anvil.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chipped_anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chipped_anvil" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_bookshelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_bookshelf.json new file mode 100644 index 00000000..1c9194c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_bookshelf.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_bookshelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_bookshelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_copper.json new file mode 100644 index 00000000..d650123f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_deepslate.json new file mode 100644 index 00000000..7074fc93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_deepslate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json new file mode 100644 index 00000000..24f4884f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json new file mode 100644 index 00000000..7571f172 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_polished_blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_polished_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_quartz_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_quartz_block.json new file mode 100644 index 00000000..cccaf59d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_quartz_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_quartz_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_quartz_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json new file mode 100644 index 00000000..fb4948ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json new file mode 100644 index 00000000..10f6ba15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_resin_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_resin_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_sandstone.json new file mode 100644 index 00000000..474b41ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json new file mode 100644 index 00000000..031bd2b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff.json new file mode 100644 index 00000000..9c5dfd6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_tuff" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json new file mode 100644 index 00000000..a5eb37b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_tuff_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_tuff_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_flower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_flower.json new file mode 100644 index 00000000..b36cef67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_flower.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ], + "name": "minecraft:chorus_flower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chorus_flower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_plant.json new file mode 100644 index 00000000..a035e6a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/chorus_plant.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:chorus_fruit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chorus_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/clay.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/clay.json new file mode 100644 index 00000000..da2577a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/clay.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:clay" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:clay_ball" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/clay" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/closed_eyeblossom.json new file mode 100644 index 00000000..a15cac59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/closed_eyeblossom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:closed_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/closed_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_block.json new file mode 100644 index 00000000..1789c0a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coal_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_ore.json new file mode 100644 index 00000000..c4a69297 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/coal_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:coal_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:coal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coal_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/coarse_dirt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/coarse_dirt.json new file mode 100644 index 00000000..cf70f226 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/coarse_dirt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coarse_dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coarse_dirt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate.json new file mode 100644 index 00000000..fe66f84f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json new file mode 100644 index 00000000..f465f03a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cobbled_deepslate_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cobbled_deepslate_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..5588bb07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json new file mode 100644 index 00000000..2254960a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone.json new file mode 100644 index 00000000..14da366c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_slab.json new file mode 100644 index 00000000..9817b21f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cobblestone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cobblestone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_stairs.json new file mode 100644 index 00000000..4ae412f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_wall.json new file mode 100644 index 00000000..0d4d4fa8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobblestone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cobweb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobweb.json new file mode 100644 index 00000000..0f7ab37c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cobweb.json @@ -0,0 +1,58 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:cobweb" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:string" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobweb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cocoa.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cocoa.json new file mode 100644 index 00000000..cffb4562 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cocoa.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cocoa", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cocoa_beans" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cocoa" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/comparator.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/comparator.json new file mode 100644 index 00000000..4615936c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/comparator.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:comparator" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/comparator" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/composter.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/composter.json new file mode 100644 index 00000000..4292b043 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/composter.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:composter" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:composter", + "condition": "minecraft:block_state_property", + "properties": { + "level": "8" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/composter" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/conduit.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/conduit.json new file mode 100644 index 00000000..39afe958 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/conduit.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:conduit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/conduit" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bars.json new file mode 100644 index 00000000..3b39f131 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_block.json new file mode 100644 index 00000000..54e17e17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bulb.json new file mode 100644 index 00000000..d8996ad0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chain.json new file mode 100644 index 00000000..2ab2cd93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chest.json new file mode 100644 index 00000000..a62aa4e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_door.json new file mode 100644 index 00000000..e5e163a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_golem_statue.json new file mode 100644 index 00000000..93ee4994 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_grate.json new file mode 100644 index 00000000..c1d24a56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_lantern.json new file mode 100644 index 00000000..f6562f8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_ore.json new file mode 100644 index 00000000..493c2d62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_ore.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:copper_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_copper" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_torch.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_torch.json new file mode 100644 index 00000000..7c3254cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_torch" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_trapdoor.json new file mode 100644 index 00000000..bcfd1808 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cornflower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cornflower.json new file mode 100644 index 00000000..0f9b2da8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cornflower.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cornflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cornflower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json new file mode 100644 index 00000000..190cc898 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_deepslate_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_deepslate_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json new file mode 100644 index 00000000..cf8c81cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_deepslate_tiles" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_deepslate_tiles" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_nether_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_nether_bricks.json new file mode 100644 index 00000000..76078bf6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_nether_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..024b4031 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_polished_blackstone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_stone_bricks.json new file mode 100644 index 00000000..b2dfa530 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cracked_stone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crafter.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crafter.json new file mode 100644 index 00000000..a6af34c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crafter.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crafter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crafter" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crafting_table.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crafting_table.json new file mode 100644 index 00000000..3203998b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crafting_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crafting_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crafting_table" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/creaking_heart.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/creaking_heart.json new file mode 100644 index 00000000..69ec1a69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/creaking_heart.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:creaking_heart" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 9.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_clump" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/creaking_heart" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/creeper_head.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/creeper_head.json new file mode 100644 index 00000000..bfccfb53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/creeper_head.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:creeper_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/creeper_head" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_button.json new file mode 100644 index 00000000..e105e8e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_door.json new file mode 100644 index 00000000..94520868 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:crimson_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:crimson_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence.json new file mode 100644 index 00000000..22525c2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence_gate.json new file mode 100644 index 00000000..e1586f6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fungus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fungus.json new file mode 100644 index 00000000..4f4986f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_fungus.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hanging_sign.json new file mode 100644 index 00000000..e9579b89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hyphae.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hyphae.json new file mode 100644 index 00000000..b7495606 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_nylium.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_nylium.json new file mode 100644 index 00000000..4cc43ee0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_nylium.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:crimson_nylium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:netherrack" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_nylium" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_planks.json new file mode 100644 index 00000000..f9c8a8c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_pressure_plate.json new file mode 100644 index 00000000..8fa42d33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_roots.json new file mode 100644 index 00000000..73837c87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_roots.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_shelf.json new file mode 100644 index 00000000..6894207e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_sign.json new file mode 100644 index 00000000..fe0643ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_slab.json new file mode 100644 index 00000000..4efc373b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:crimson_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:crimson_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stairs.json new file mode 100644 index 00000000..8a889e10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stem.json new file mode 100644 index 00000000..8f7f7e55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_stem.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_trapdoor.json new file mode 100644 index 00000000..33a19203 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crimson_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/crying_obsidian.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/crying_obsidian.json new file mode 100644 index 00000000..7abf7540 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/crying_obsidian.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crying_obsidian" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crying_obsidian" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper.json new file mode 100644 index 00000000..97ae18a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_slab.json new file mode 100644 index 00000000..fe2a31a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_stairs.json new file mode 100644 index 00000000..57eabc97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone.json new file mode 100644 index 00000000..810c6301 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json new file mode 100644 index 00000000..d3fee584 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cut_red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone.json new file mode 100644 index 00000000..5142302a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone_slab.json new file mode 100644 index 00000000..10dac77b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cut_sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cut_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_banner.json new file mode 100644 index 00000000..8e063f58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:cyan_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_bed.json new file mode 100644 index 00000000..35c927ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:cyan_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:cyan_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle.json new file mode 100644 index 00000000..2aff483e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cyan_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle_cake.json new file mode 100644 index 00000000..83f87841 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_carpet.json new file mode 100644 index 00000000..62bc479f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete.json new file mode 100644 index 00000000..5b2a4b71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete_powder.json new file mode 100644 index 00000000..99fe9e9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json new file mode 100644 index 00000000..48ea7e52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_shulker_box.json new file mode 100644 index 00000000..b6c1267f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:cyan_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass.json new file mode 100644 index 00000000..81b46691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json new file mode 100644 index 00000000..5fcaaf9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_terracotta.json new file mode 100644 index 00000000..949753ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_wool.json new file mode 100644 index 00000000..da40ebee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/cyan_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/damaged_anvil.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/damaged_anvil.json new file mode 100644 index 00000000..484d61e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/damaged_anvil.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:damaged_anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/damaged_anvil" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dandelion.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dandelion.json new file mode 100644 index 00000000..9775bbd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dandelion.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_button.json new file mode 100644 index 00000000..df1eb11b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_door.json new file mode 100644 index 00000000..c3e90594 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:dark_oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:dark_oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence.json new file mode 100644 index 00000000..4aa8c51b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json new file mode 100644 index 00000000..7de0125d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json new file mode 100644 index 00000000..c2beb6a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_leaves.json new file mode 100644 index 00000000..52c49ad7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_leaves.json @@ -0,0 +1,193 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:dark_oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:dark_oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.005, + 0.0055555557, + 0.00625, + 0.008333334, + 0.025 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_log.json new file mode 100644 index 00000000..8e6e1514 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_planks.json new file mode 100644 index 00000000..6f42d752 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json new file mode 100644 index 00000000..842eda8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sapling.json new file mode 100644 index 00000000..893d535a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_shelf.json new file mode 100644 index 00000000..7ace3810 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sign.json new file mode 100644 index 00000000..75a3c0b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_slab.json new file mode 100644 index 00000000..8a0846b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:dark_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:dark_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_stairs.json new file mode 100644 index 00000000..513cc276 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json new file mode 100644 index 00000000..6e2feed6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_wood.json new file mode 100644 index 00000000..e71b4db2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine.json new file mode 100644 index 00000000..435a7241 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_prismarine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_slab.json new file mode 100644 index 00000000..e5908b31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:dark_prismarine_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:dark_prismarine_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json new file mode 100644 index 00000000..c907f15c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_prismarine_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/daylight_detector.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/daylight_detector.json new file mode 100644 index 00000000..62c370f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/daylight_detector.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:daylight_detector" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/daylight_detector" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral.json new file mode 100644 index 00000000..f1eeef9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_block.json new file mode 100644 index 00000000..6b960392 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json new file mode 100644 index 00000000..ebef5d3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral.json new file mode 100644 index 00000000..ecfd426f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json new file mode 100644 index 00000000..cf861ce3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json new file mode 100644 index 00000000..c4314857 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bush.json new file mode 100644 index 00000000..024455b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_bush.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:dead_bush" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral.json new file mode 100644 index 00000000..bb26a930 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_block.json new file mode 100644 index 00000000..985ba2d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json new file mode 100644 index 00000000..286f9ee4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral.json new file mode 100644 index 00000000..de09705d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_block.json new file mode 100644 index 00000000..d7c6a0c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json new file mode 100644 index 00000000..73c39d14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral.json new file mode 100644 index 00000000..b4b73ecb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_block.json new file mode 100644 index 00000000..26ed86dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json new file mode 100644 index 00000000..430fd161 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/decorated_pot.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/decorated_pot.json new file mode 100644 index 00000000..9092b1cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/decorated_pot.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:dynamic", + "conditions": [ + { + "block": "minecraft:decorated_pot", + "condition": "minecraft:block_state_property", + "properties": { + "cracked": "true" + } + } + ], + "name": "minecraft:sherds" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:pot_decorations" + ], + "source": "block_entity" + } + ], + "name": "minecraft:decorated_pot" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/decorated_pot" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate.json new file mode 100644 index 00000000..e3f598be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:cobbled_deepslate" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_slab.json new file mode 100644 index 00000000..92142832 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:deepslate_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:deepslate_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json new file mode 100644 index 00000000..37f315c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_wall.json new file mode 100644 index 00000000..b5ee8f4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_bricks.json new file mode 100644 index 00000000..52744d28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_coal_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_coal_ore.json new file mode 100644 index 00000000..0f20e1ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_coal_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_coal_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:coal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_coal_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_copper_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_copper_ore.json new file mode 100644 index 00000000..2af165bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_copper_ore.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_copper_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_copper" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_copper_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json new file mode 100644 index 00000000..e613e5ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_diamond_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diamond" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_diamond_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json new file mode 100644 index 00000000..cf83bb37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_emerald_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:emerald" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_emerald_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_gold_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_gold_ore.json new file mode 100644 index 00000000..601d17fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_gold_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_gold" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_iron_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_iron_ore.json new file mode 100644 index 00000000..d581122c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_iron_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_iron_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_iron" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_iron_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json new file mode 100644 index 00000000..daf243d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_lapis_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lapis_lazuli" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_lapis_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json new file mode 100644 index 00000000..02821e73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_redstone_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:redstone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_redstone_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_slab.json new file mode 100644 index 00000000..4d20d495 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:deepslate_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:deepslate_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json new file mode 100644 index 00000000..1430a358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_wall.json new file mode 100644 index 00000000..ec3931b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tile_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tile_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tiles.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tiles.json new file mode 100644 index 00000000..76540450 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/deepslate_tiles.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tiles" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tiles" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/detector_rail.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/detector_rail.json new file mode 100644 index 00000000..7bf29667 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/detector_rail.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:detector_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/detector_rail" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_block.json new file mode 100644 index 00000000..e292c844 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diamond_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_ore.json new file mode 100644 index 00000000..6a036dea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diamond_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:diamond_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diamond" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diamond_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite.json new file mode 100644 index 00000000..aa308713 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_slab.json new file mode 100644 index 00000000..96d37ead --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:diorite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diorite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_stairs.json new file mode 100644 index 00000000..ea059e71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_wall.json new file mode 100644 index 00000000..0dde20fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/diorite_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt.json new file mode 100644 index 00000000..6b0e9678 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dirt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt_path.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt_path.json new file mode 100644 index 00000000..7b34c5cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dirt_path.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dirt_path" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dispenser.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dispenser.json new file mode 100644 index 00000000..184ecc59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dispenser.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dispenser" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dispenser" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_egg.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_egg.json new file mode 100644 index 00000000..ecb7e3a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_egg.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dragon_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dragon_egg" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_head.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_head.json new file mode 100644 index 00000000..8b29d711 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dragon_head.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dragon_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dragon_head" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_ghast.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_ghast.json new file mode 100644 index 00000000..0657cf0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_ghast.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dried_ghast" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dried_ghast" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_kelp_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_kelp_block.json new file mode 100644 index 00000000..8454cc9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dried_kelp_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dried_kelp_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dried_kelp_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dripstone_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dripstone_block.json new file mode 100644 index 00000000..c92e5353 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dripstone_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dripstone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dripstone_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/dropper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/dropper.json new file mode 100644 index 00000000..980829f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/dropper.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dropper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dropper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_block.json new file mode 100644 index 00000000..9a0389b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/emerald_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_ore.json new file mode 100644 index 00000000..2b0c27eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/emerald_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:emerald_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:emerald" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/emerald_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/enchanting_table.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/enchanting_table.json new file mode 100644 index 00000000..3e177c22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/enchanting_table.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:enchanting_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/enchanting_table" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_rod.json new file mode 100644 index 00000000..48b992a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone.json new file mode 100644 index 00000000..7c800b74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_slab.json new file mode 100644 index 00000000..a4119055 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:end_stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:end_stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json new file mode 100644 index 00000000..380f9084 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_wall.json new file mode 100644 index 00000000..fbd0ff57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_bricks.json new file mode 100644 index 00000000..2240000c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/end_stone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/ender_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/ender_chest.json new file mode 100644 index 00000000..75342f94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/ender_chest.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:ender_chest" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 8.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:obsidian" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ender_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json new file mode 100644 index 00000000..bf07cd4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper.json new file mode 100644 index 00000000..9d0144b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bars.json new file mode 100644 index 00000000..5e6eb670 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bulb.json new file mode 100644 index 00000000..31c40d4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chain.json new file mode 100644 index 00000000..91b72d9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chest.json new file mode 100644 index 00000000..f97f280c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:exposed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_door.json new file mode 100644 index 00000000..32dbefcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:exposed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:exposed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json new file mode 100644 index 00000000..bd7f6ec5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:exposed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:exposed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_grate.json new file mode 100644 index 00000000..72b84eec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_lantern.json new file mode 100644 index 00000000..88acf3da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json new file mode 100644 index 00000000..abd0e202 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper.json new file mode 100644 index 00000000..5cae0429 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json new file mode 100644 index 00000000..58c098d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:exposed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:exposed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..6fe1157b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_lightning_rod.json new file mode 100644 index 00000000..76db3000 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/exposed_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/farmland.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/farmland.json new file mode 100644 index 00000000..4d71ae8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/farmland.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/farmland" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fern.json new file mode 100644 index 00000000..639154f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fern.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 2 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire.json new file mode 100644 index 00000000..7c51a605 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/fire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral.json new file mode 100644 index 00000000..83a54ffd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fire_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_block.json new file mode 100644 index 00000000..e92de319 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:fire_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_fire_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_fan.json new file mode 100644 index 00000000..60698346 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fire_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fire_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/firefly_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/firefly_bush.json new file mode 100644 index 00000000..d0b166e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/firefly_bush.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:firefly_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/firefly_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/fletching_table.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/fletching_table.json new file mode 100644 index 00000000..875af574 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/fletching_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fletching_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fletching_table" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/flower_pot.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/flower_pot.json new file mode 100644 index 00000000..1e12e1ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/flower_pot.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flower_pot" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea.json new file mode 100644 index 00000000..ea7ebb05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flowering_azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flowering_azalea" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json new file mode 100644 index 00000000..103754d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:flowering_azalea_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:flowering_azalea" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flowering_azalea_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/frogspawn.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/frogspawn.json new file mode 100644 index 00000000..19a12812 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/frogspawn.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/frogspawn" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/frosted_ice.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/frosted_ice.json new file mode 100644 index 00000000..2a641a5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/frosted_ice.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/frosted_ice" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/furnace.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/furnace.json new file mode 100644 index 00000000..9905cb51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/furnace.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:furnace" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/furnace" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gilded_blackstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gilded_blackstone.json new file mode 100644 index 00000000..7e213c17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gilded_blackstone.json @@ -0,0 +1,79 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.1, + 0.14285715, + 0.25, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:gilded_blackstone" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gilded_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/glass.json new file mode 100644 index 00000000..e6511e6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/glass_pane.json new file mode 100644 index 00000000..92a921bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/glow_lichen.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/glow_lichen.json new file mode 100644 index 00000000..db3f17e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/glow_lichen.json @@ -0,0 +1,118 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:glow_lichen" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glow_lichen" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/glowstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/glowstone.json new file mode 100644 index 00000000..849301ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/glowstone.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:glowstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 4.0, + "min": 1.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:glowstone_dust" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glowstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_block.json new file mode 100644 index 00000000..9c3df287 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gold_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_ore.json new file mode 100644 index 00000000..ec85db70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gold_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_gold" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/golden_dandelion.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/golden_dandelion.json new file mode 100644 index 00000000..5be36e2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/golden_dandelion.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/golden_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/granite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite.json new file mode 100644 index 00000000..e0118642 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_slab.json new file mode 100644 index 00000000..bf40d1a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:granite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:granite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_stairs.json new file mode 100644 index 00000000..487c046c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_wall.json new file mode 100644 index 00000000..dd18fd45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/granite_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/grass_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/grass_block.json new file mode 100644 index 00000000..1041fc09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/grass_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:grass_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/grass_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gravel.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gravel.json new file mode 100644 index 00000000..8493f462 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gravel.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gravel" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.1, + 0.14285715, + 0.25, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:flint" + }, + { + "type": "minecraft:item", + "name": "minecraft:gravel" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gravel" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_banner.json new file mode 100644 index 00000000..5aad6ec0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:gray_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_bed.json new file mode 100644 index 00000000..30e35eb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:gray_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:gray_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle.json new file mode 100644 index 00000000..caca65c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle_cake.json new file mode 100644 index 00000000..07edceb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_carpet.json new file mode 100644 index 00000000..2e255ee1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete.json new file mode 100644 index 00000000..b036b0fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete_powder.json new file mode 100644 index 00000000..8770a6be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json new file mode 100644 index 00000000..02e62304 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_shulker_box.json new file mode 100644 index 00000000..2dbb097a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:gray_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass.json new file mode 100644 index 00000000..a768a726 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json new file mode 100644 index 00000000..09179a09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_terracotta.json new file mode 100644 index 00000000..159d20c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_wool.json new file mode 100644 index 00000000..89c0672c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/gray_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_banner.json new file mode 100644 index 00000000..ae4f34d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:green_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_bed.json new file mode 100644 index 00000000..f33c15be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:green_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:green_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle.json new file mode 100644 index 00000000..f07d8f0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:green_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle_cake.json new file mode 100644 index 00000000..b092b54d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_carpet.json new file mode 100644 index 00000000..2492b227 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete.json new file mode 100644 index 00000000..53ffa0e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete_powder.json new file mode 100644 index 00000000..32397e82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_glazed_terracotta.json new file mode 100644 index 00000000..3d7cb021 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_shulker_box.json new file mode 100644 index 00000000..eefff81e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:green_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass.json new file mode 100644 index 00000000..bd2e440e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass_pane.json new file mode 100644 index 00000000..fd706e03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_terracotta.json new file mode 100644 index 00000000..83434e5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/green_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_wool.json new file mode 100644 index 00000000..ceabbab4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/green_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/grindstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/grindstone.json new file mode 100644 index 00000000..f51a4cec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/grindstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:grindstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/grindstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/hanging_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/hanging_roots.json new file mode 100644 index 00000000..618e3d33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/hanging_roots.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:hanging_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hanging_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/hay_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/hay_block.json new file mode 100644 index 00000000..873d675f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/hay_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:hay_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hay_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_core.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_core.json new file mode 100644 index 00000000..c13ed7f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_core.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heavy_core" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/heavy_core" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..d6db93c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heavy_weighted_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/heavy_weighted_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/honey_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/honey_block.json new file mode 100644 index 00000000..7d3264f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/honey_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:honey_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/honey_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/honeycomb_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/honeycomb_block.json new file mode 100644 index 00000000..62069cf0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/honeycomb_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:honeycomb_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/honeycomb_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/hopper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/hopper.json new file mode 100644 index 00000000..daae78f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/hopper.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:hopper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hopper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral.json new file mode 100644 index 00000000..501e2a45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:horn_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_block.json new file mode 100644 index 00000000..7fc90e75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:horn_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_horn_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_fan.json new file mode 100644 index 00000000..cf5a0a1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/horn_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:horn_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/ice.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/ice.json new file mode 100644 index 00000000..71225d84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/ice.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ice" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json new file mode 100644 index 00000000..3ed87c0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_chiseled_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cobblestone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cobblestone.json new file mode 100644 index 00000000..5e380667 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cobblestone.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json new file mode 100644 index 00000000..730968a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_cracked_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_deepslate.json new file mode 100644 index 00000000..e1b1fe05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_deepslate.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json new file mode 100644 index 00000000..9348b04a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_mossy_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone.json new file mode 100644 index 00000000..ba0c6e4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_stone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone_bricks.json new file mode 100644 index 00000000..736ff87b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/infested_stone_bricks.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_bars.json new file mode 100644 index 00000000..c0cf0023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_block.json new file mode 100644 index 00000000..85ab3371 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_chain.json new file mode 100644 index 00000000..0d593e43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_door.json new file mode 100644 index 00000000..d33e7e68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:iron_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:iron_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_ore.json new file mode 100644 index 00000000..7644052f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:iron_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_iron" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_trapdoor.json new file mode 100644 index 00000000..198db257 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/iron_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jack_o_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jack_o_lantern.json new file mode 100644 index 00000000..2444400b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jack_o_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jack_o_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jack_o_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jukebox.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jukebox.json new file mode 100644 index 00000000..518700cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jukebox.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jukebox" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jukebox" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_button.json new file mode 100644 index 00000000..7c8f0a8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_door.json new file mode 100644 index 00000000..5a1123ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:jungle_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:jungle_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence.json new file mode 100644 index 00000000..bcd1c3c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence_gate.json new file mode 100644 index 00000000..e669de9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_hanging_sign.json new file mode 100644 index 00000000..29a57934 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_leaves.json new file mode 100644 index 00000000..98b7ea39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_leaves.json @@ -0,0 +1,137 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:jungle_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.025, + 0.027777778, + 0.03125, + 0.041666668, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:jungle_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_log.json new file mode 100644 index 00000000..2043a0dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_planks.json new file mode 100644 index 00000000..0ef4b151 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_pressure_plate.json new file mode 100644 index 00000000..17df14a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sapling.json new file mode 100644 index 00000000..bf0989fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_shelf.json new file mode 100644 index 00000000..0ae02ac8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sign.json new file mode 100644 index 00000000..a5c95c50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_slab.json new file mode 100644 index 00000000..e1cdcaf2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:jungle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:jungle_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_stairs.json new file mode 100644 index 00000000..bc18261e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_trapdoor.json new file mode 100644 index 00000000..d7560566 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_wood.json new file mode 100644 index 00000000..0eb94398 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/jungle_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp.json new file mode 100644 index 00000000..ff2e2f45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:kelp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/kelp" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp_plant.json new file mode 100644 index 00000000..fa3b69fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/kelp_plant.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:kelp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/kelp_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/ladder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/ladder.json new file mode 100644 index 00000000..c50f04b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/ladder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ladder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ladder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lantern.json new file mode 100644 index 00000000..dc015ad7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_block.json new file mode 100644 index 00000000..c6338c51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lapis_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_ore.json new file mode 100644 index 00000000..48076a35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lapis_ore.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:lapis_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lapis_lazuli" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lapis_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/large_amethyst_bud.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/large_amethyst_bud.json new file mode 100644 index 00000000..d653b142 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/large_amethyst_bud.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:large_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/large_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/large_fern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/large_fern.json new file mode 100644 index 00000000..421aed4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/large_fern.json @@ -0,0 +1,134 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:large_fern", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:large_fern", + "state": { + "half": "upper" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:large_fern", + "condition": "minecraft:block_state_property", + "properties": { + "half": "upper" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:large_fern", + "state": { + "half": "lower" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/large_fern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lava_cauldron.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lava_cauldron.json new file mode 100644 index 00000000..5941988f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lava_cauldron.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lava_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/leaf_litter.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/leaf_litter.json new file mode 100644 index 00000000..20da2508 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/leaf_litter.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:leaf_litter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/leaf_litter" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lectern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lectern.json new file mode 100644 index 00000000..a261b804 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lectern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lectern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lectern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lever.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lever.json new file mode 100644 index 00000000..29bff364 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lever.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lever" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lever" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_banner.json new file mode 100644 index 00000000..457eb95d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_blue_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_bed.json new file mode 100644 index 00000000..109da39f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:light_blue_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:light_blue_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle.json new file mode 100644 index 00000000..7ee46f01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:light_blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle_cake.json new file mode 100644 index 00000000..602a795a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_carpet.json new file mode 100644 index 00000000..432c47b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete.json new file mode 100644 index 00000000..20cbfd5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json new file mode 100644 index 00000000..25b20f76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..f0a95796 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_shulker_box.json new file mode 100644 index 00000000..d4de84c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_blue_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass.json new file mode 100644 index 00000000..4255cd10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..73795a18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_terracotta.json new file mode 100644 index 00000000..b333250d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_wool.json new file mode 100644 index 00000000..531832cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_blue_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_banner.json new file mode 100644 index 00000000..c03d0d55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_gray_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_bed.json new file mode 100644 index 00000000..50291246 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:light_gray_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:light_gray_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle.json new file mode 100644 index 00000000..9c2bd724 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:light_gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle_cake.json new file mode 100644 index 00000000..49cd0e6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_carpet.json new file mode 100644 index 00000000..6f1b3867 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete.json new file mode 100644 index 00000000..ef3a9a84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json new file mode 100644 index 00000000..4c1c12e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..fddb1c92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_shulker_box.json new file mode 100644 index 00000000..83576bbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_gray_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass.json new file mode 100644 index 00000000..45948373 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..3ab99cc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_terracotta.json new file mode 100644 index 00000000..bdfc1409 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_wool.json new file mode 100644 index 00000000..7bc06e30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_gray_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json new file mode 100644 index 00000000..d439049c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_weighted_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_weighted_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lightning_rod.json new file mode 100644 index 00000000..c27c60f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lilac.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lilac.json new file mode 100644 index 00000000..13202c94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lilac.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:lilac", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:lilac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lilac" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_of_the_valley.json new file mode 100644 index 00000000..4fffcf93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_of_the_valley.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_of_the_valley" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lily_of_the_valley" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_pad.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_pad.json new file mode 100644 index 00000000..8dee4f40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lily_pad.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_pad" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lily_pad" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_banner.json new file mode 100644 index 00000000..5824e8b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:lime_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_bed.json new file mode 100644 index 00000000..6a167cd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:lime_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:lime_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle.json new file mode 100644 index 00000000..a30c8d56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lime_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle_cake.json new file mode 100644 index 00000000..6669056d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_carpet.json new file mode 100644 index 00000000..0871cf7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete.json new file mode 100644 index 00000000..8a1a9fda --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete_powder.json new file mode 100644 index 00000000..3734754a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json new file mode 100644 index 00000000..52cd1d6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_shulker_box.json new file mode 100644 index 00000000..e2925e4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:lime_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass.json new file mode 100644 index 00000000..574be2e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json new file mode 100644 index 00000000..c9b8e9c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_terracotta.json new file mode 100644 index 00000000..f34a6ef5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_wool.json new file mode 100644 index 00000000..97eeb71a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lime_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/lodestone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/lodestone.json new file mode 100644 index 00000000..5f0e0b7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/lodestone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lodestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lodestone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/loom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/loom.json new file mode 100644 index 00000000..a4c95115 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/loom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:loom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/loom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_banner.json new file mode 100644 index 00000000..458a4fe0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:magenta_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_bed.json new file mode 100644 index 00000000..c932550d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:magenta_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:magenta_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle.json new file mode 100644 index 00000000..3211c28c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:magenta_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle_cake.json new file mode 100644 index 00000000..842cceb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_carpet.json new file mode 100644 index 00000000..36afc437 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete.json new file mode 100644 index 00000000..dff1ea68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete_powder.json new file mode 100644 index 00000000..7f3c9ab2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json new file mode 100644 index 00000000..d5634980 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_shulker_box.json new file mode 100644 index 00000000..d463d049 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:magenta_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass.json new file mode 100644 index 00000000..2113dda7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json new file mode 100644 index 00000000..5ce7b7a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_terracotta.json new file mode 100644 index 00000000..44ac0197 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_wool.json new file mode 100644 index 00000000..80a979f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magenta_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/magma_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/magma_block.json new file mode 100644 index 00000000..c2d754ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/magma_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magma_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magma_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_button.json new file mode 100644 index 00000000..509537f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_door.json new file mode 100644 index 00000000..3f844b59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:mangrove_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:mangrove_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence.json new file mode 100644 index 00000000..4c4344c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence_gate.json new file mode 100644 index 00000000..1ffa2a9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json new file mode 100644 index 00000000..262985d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_leaves.json new file mode 100644 index 00000000..4eb9ca6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_leaves.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:mangrove_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_log.json new file mode 100644 index 00000000..a09c2524 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_planks.json new file mode 100644 index 00000000..524d1e2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json new file mode 100644 index 00000000..1aeec93c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_propagule.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_propagule.json new file mode 100644 index 00000000..2594bcda --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_propagule.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:mangrove_propagule", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_propagule" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_propagule" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_roots.json new file mode 100644 index 00000000..d4a917c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_roots.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_shelf.json new file mode 100644 index 00000000..08ff9a18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_sign.json new file mode 100644 index 00000000..e17e149c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_slab.json new file mode 100644 index 00000000..fbd67d8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:mangrove_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mangrove_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_stairs.json new file mode 100644 index 00000000..0c3f930a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_trapdoor.json new file mode 100644 index 00000000..161d10c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_wood.json new file mode 100644 index 00000000..8aeb2c68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mangrove_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/medium_amethyst_bud.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/medium_amethyst_bud.json new file mode 100644 index 00000000..927a8c2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/medium_amethyst_bud.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:medium_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/medium_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/melon.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/melon.json new file mode 100644 index 00000000..2d2eeafd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/melon.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:melon" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 9.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:melon_slice" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/melon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/melon_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/melon_stem.json new file mode 100644 index 00000000..d3aee4d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/melon_stem.json @@ -0,0 +1,167 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.06666667 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.13333334 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.2 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.26666668 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.33333334 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "5" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.4 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "6" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.46666667 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/melon_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_block.json new file mode 100644 index 00000000..1d0bfb2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:moss_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/moss_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_carpet.json new file mode 100644 index 00000000..45c835a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/moss_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:moss_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/moss_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone.json new file mode 100644 index 00000000..0c00648c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json new file mode 100644 index 00000000..8cb8600c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:mossy_cobblestone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mossy_cobblestone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..bd326567 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json new file mode 100644 index 00000000..76a6d148 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json new file mode 100644 index 00000000..eb87e90a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:mossy_stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mossy_stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..ff05bb24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json new file mode 100644 index 00000000..28ddb990 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_bricks.json new file mode 100644 index 00000000..34bd3304 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mossy_stone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mud.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud.json new file mode 100644 index 00000000..751ddf75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_slab.json new file mode 100644 index 00000000..63a37725 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:mud_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mud_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_stairs.json new file mode 100644 index 00000000..4de65ef8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_wall.json new file mode 100644 index 00000000..395ca907 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_bricks.json new file mode 100644 index 00000000..48cbb70d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mud_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json new file mode 100644 index 00000000..8dcd315b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:muddy_mangrove_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/muddy_mangrove_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mushroom_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mushroom_stem.json new file mode 100644 index 00000000..1d6e70a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mushroom_stem.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mushroom_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mushroom_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/mycelium.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/mycelium.json new file mode 100644 index 00000000..ab082b86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/mycelium.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:mycelium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mycelium" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_fence.json new file mode 100644 index 00000000..93d2d29c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_slab.json new file mode 100644 index 00000000..6e9278e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:nether_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:nether_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_stairs.json new file mode 100644 index 00000000..a4c472cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_wall.json new file mode 100644 index 00000000..22760a55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_bricks.json new file mode 100644 index 00000000..78f1707d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_gold_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_gold_ore.json new file mode 100644 index 00000000..9a61e273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_gold_ore.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:nether_gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:gold_nugget" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_portal.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_portal.json new file mode 100644 index 00000000..c739666f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_portal.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/nether_portal" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_quartz_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_quartz_ore.json new file mode 100644 index 00000000..ecad0af8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_quartz_ore.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:nether_quartz_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:quartz" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_quartz_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_sprouts.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_sprouts.json new file mode 100644 index 00000000..e5be1c7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_sprouts.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_sprouts" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_sprouts" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart.json new file mode 100644 index 00000000..bfd0f8f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart.json @@ -0,0 +1,58 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "name": "minecraft:nether_wart" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_wart" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart_block.json new file mode 100644 index 00000000..0a3687af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/nether_wart_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_wart_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_wart_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/netherite_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/netherite_block.json new file mode 100644 index 00000000..0c750362 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/netherite_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/netherite_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/netherrack.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/netherrack.json new file mode 100644 index 00000000..c876b9f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/netherrack.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherrack" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/netherrack" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/note_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/note_block.json new file mode 100644 index 00000000..5cafae60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/note_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:note_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/note_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_button.json new file mode 100644 index 00000000..2f139be2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_door.json new file mode 100644 index 00000000..de9f7317 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence.json new file mode 100644 index 00000000..19b6938b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence_gate.json new file mode 100644 index 00000000..a90402ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_hanging_sign.json new file mode 100644 index 00000000..d55d1f55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_leaves.json new file mode 100644 index 00000000..ceb10233 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_leaves.json @@ -0,0 +1,193 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.005, + 0.0055555557, + 0.00625, + 0.008333334, + 0.025 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_log.json new file mode 100644 index 00000000..5134439e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_planks.json new file mode 100644 index 00000000..c2629de2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_pressure_plate.json new file mode 100644 index 00000000..22ffa9a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sapling.json new file mode 100644 index 00000000..a726c25b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_shelf.json new file mode 100644 index 00000000..c1fdce66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sign.json new file mode 100644 index 00000000..87c080fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_slab.json new file mode 100644 index 00000000..b8f2584e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_stairs.json new file mode 100644 index 00000000..4caf08d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_trapdoor.json new file mode 100644 index 00000000..1ec99331 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_wood.json new file mode 100644 index 00000000..0423620f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/observer.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/observer.json new file mode 100644 index 00000000..413814a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/observer.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:observer" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/observer" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/obsidian.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/obsidian.json new file mode 100644 index 00000000..aaaf7b08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/obsidian.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:obsidian" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/obsidian" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/ochre_froglight.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/ochre_froglight.json new file mode 100644 index 00000000..46cdefe4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/ochre_froglight.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ochre_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ochre_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/open_eyeblossom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/open_eyeblossom.json new file mode 100644 index 00000000..7f02f9e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/open_eyeblossom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:open_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/open_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_banner.json new file mode 100644 index 00000000..4f1d0b77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:orange_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_bed.json new file mode 100644 index 00000000..6c0c13cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:orange_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:orange_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle.json new file mode 100644 index 00000000..1908de4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:orange_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle_cake.json new file mode 100644 index 00000000..0e8eaf2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_carpet.json new file mode 100644 index 00000000..c3586baf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete.json new file mode 100644 index 00000000..9d0660bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete_powder.json new file mode 100644 index 00000000..1357c33f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json new file mode 100644 index 00000000..625b47b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_shulker_box.json new file mode 100644 index 00000000..747de355 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:orange_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass.json new file mode 100644 index 00000000..d77ff937 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json new file mode 100644 index 00000000..e9bda619 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_terracotta.json new file mode 100644 index 00000000..44bf3657 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_tulip.json new file mode 100644 index 00000000..82da7382 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_wool.json new file mode 100644 index 00000000..4653d403 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/orange_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxeye_daisy.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxeye_daisy.json new file mode 100644 index 00000000..e26d57e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxeye_daisy.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxeye_daisy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxeye_daisy" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json new file mode 100644 index 00000000..17838301 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper.json new file mode 100644 index 00000000..4352f5ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bars.json new file mode 100644 index 00000000..2abd0b3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json new file mode 100644 index 00000000..b0043763 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chain.json new file mode 100644 index 00000000..c85235a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chest.json new file mode 100644 index 00000000..400be50e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:oxidized_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_door.json new file mode 100644 index 00000000..eeeb51dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:oxidized_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:oxidized_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json new file mode 100644 index 00000000..16649531 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:oxidized_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:oxidized_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_grate.json new file mode 100644 index 00000000..ce68f270 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json new file mode 100644 index 00000000..7c1ad350 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json new file mode 100644 index 00000000..08eeea77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper.json new file mode 100644 index 00000000..36f5c34f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..97934fad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:oxidized_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:oxidized_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..3f5fd9bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json new file mode 100644 index 00000000..e08a52d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_ice.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_ice.json new file mode 100644 index 00000000..af33e706 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_ice.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:packed_ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/packed_ice" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_mud.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_mud.json new file mode 100644 index 00000000..78a84421 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/packed_mud.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:packed_mud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/packed_mud" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_hanging_moss.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_hanging_moss.json new file mode 100644 index 00000000..6f06ee04 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_hanging_moss.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_hanging_moss" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_hanging_moss" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_block.json new file mode 100644 index 00000000..8a535930 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_moss_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_moss_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_carpet.json new file mode 100644 index 00000000..609106a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_moss_carpet.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pale_moss_carpet", + "condition": "minecraft:block_state_property", + "properties": { + "bottom": "true" + } + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pale_moss_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_moss_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_button.json new file mode 100644 index 00000000..3782634d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_door.json new file mode 100644 index 00000000..e54f21a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pale_oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:pale_oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence.json new file mode 100644 index 00000000..443e0156 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json new file mode 100644 index 00000000..7614cd5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json new file mode 100644 index 00000000..93f5c08e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_leaves.json new file mode 100644 index 00000000..1122938a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:pale_oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:pale_oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_log.json new file mode 100644 index 00000000..4dc2e078 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_planks.json new file mode 100644 index 00000000..0097b5e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json new file mode 100644 index 00000000..45f4fc49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sapling.json new file mode 100644 index 00000000..960d922b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_shelf.json new file mode 100644 index 00000000..487bf7ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sign.json new file mode 100644 index 00000000..d46ce7a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_slab.json new file mode 100644 index 00000000..6170569b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:pale_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pale_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_stairs.json new file mode 100644 index 00000000..d64c5bf7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json new file mode 100644 index 00000000..9acb6ce1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_wood.json new file mode 100644 index 00000000..128fc986 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pale_oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pearlescent_froglight.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pearlescent_froglight.json new file mode 100644 index 00000000..54657d36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pearlescent_froglight.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pearlescent_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pearlescent_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/peony.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/peony.json new file mode 100644 index 00000000..56fe2266 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/peony.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:peony", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:peony" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/peony" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/petrified_oak_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/petrified_oak_slab.json new file mode 100644 index 00000000..eca7289f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/petrified_oak_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:petrified_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:petrified_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/petrified_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/piglin_head.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/piglin_head.json new file mode 100644 index 00000000..66d61223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/piglin_head.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:piglin_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/piglin_head" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_banner.json new file mode 100644 index 00000000..c46b2b28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:pink_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_bed.json new file mode 100644 index 00000000..1688bc89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pink_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:pink_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle.json new file mode 100644 index 00000000..7e507731 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pink_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle_cake.json new file mode 100644 index 00000000..9fbb025b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_carpet.json new file mode 100644 index 00000000..5d8ee531 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete.json new file mode 100644 index 00000000..f9fa9b86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete_powder.json new file mode 100644 index 00000000..467867c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json new file mode 100644 index 00000000..2c99bbe1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_petals.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_petals.json new file mode 100644 index 00000000..8491a91e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_petals.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pink_petals" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_petals" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_shulker_box.json new file mode 100644 index 00000000..9600bcaf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:pink_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass.json new file mode 100644 index 00000000..74a38d29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json new file mode 100644 index 00000000..00a8e97a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_terracotta.json new file mode 100644 index 00000000..3c782e48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_tulip.json new file mode 100644 index 00000000..9d0e5978 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_wool.json new file mode 100644 index 00000000..04395e40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pink_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/piston.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/piston.json new file mode 100644 index 00000000..b9ceb7b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/piston.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:piston" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/piston" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_crop.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_crop.json new file mode 100644 index 00000000..019df6f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_crop.json @@ -0,0 +1,157 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_plant" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pitcher_crop" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_plant.json new file mode 100644 index 00000000..a7183c06 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pitcher_plant.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_plant", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:pitcher_plant" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pitcher_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/player_head.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/player_head.json new file mode 100644 index 00000000..9abc1959 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/player_head.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:profile", + "minecraft:note_block_sound", + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:player_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/player_head" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/podzol.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/podzol.json new file mode 100644 index 00000000..daffbde7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/podzol.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:podzol" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/podzol" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pointed_dripstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pointed_dripstone.json new file mode 100644 index 00000000..a38b8bdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pointed_dripstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pointed_dripstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pointed_dripstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite.json new file mode 100644 index 00000000..d4a7c823 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_andesite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_slab.json new file mode 100644 index 00000000..72537c2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_andesite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_andesite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_stairs.json new file mode 100644 index 00000000..7ab9f9db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_andesite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_andesite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_basalt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_basalt.json new file mode 100644 index 00000000..18ff9ecb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_basalt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_basalt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone.json new file mode 100644 index 00000000..da214cb9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..fd8de6b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_blackstone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_blackstone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..2f5ff68b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..6c8b2423 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json new file mode 100644 index 00000000..749eca73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_button.json new file mode 100644 index 00000000..1b18dff9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..2b2ac694 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_slab.json new file mode 100644 index 00000000..3bba0e52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_blackstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_blackstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json new file mode 100644 index 00000000..811d1806 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_wall.json new file mode 100644 index 00000000..9f494f94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_blackstone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate.json new file mode 100644 index 00000000..901d4cff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_slab.json new file mode 100644 index 00000000..891dd7db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_deepslate_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_deepslate_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json new file mode 100644 index 00000000..69f7e0b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_wall.json new file mode 100644 index 00000000..81d673f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_deepslate_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite.json new file mode 100644 index 00000000..c61e8f45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_diorite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_slab.json new file mode 100644 index 00000000..19403a2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_diorite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_diorite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_stairs.json new file mode 100644 index 00000000..2df33e32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_diorite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_diorite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite.json new file mode 100644 index 00000000..00ec9989 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_granite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_slab.json new file mode 100644 index 00000000..da6642be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_granite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_granite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_stairs.json new file mode 100644 index 00000000..ae4b9ca3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_granite_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_granite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff.json new file mode 100644 index 00000000..6fb6717e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_slab.json new file mode 100644 index 00000000..268d8d62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:polished_tuff_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_tuff_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..a7375763 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_wall.json new file mode 100644 index 00000000..dbf47dac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/polished_tuff_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/poppy.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/poppy.json new file mode 100644 index 00000000..7c125ff7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/poppy.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/poppy" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potatoes.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potatoes.json new file mode 100644 index 00000000..a96918dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potatoes.json @@ -0,0 +1,76 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:potatoes", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:potatoes", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.02, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:poisonous_potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potatoes" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_acacia_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_acacia_sapling.json new file mode 100644 index 00000000..62f12bf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_acacia_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_acacia_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_allium.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_allium.json new file mode 100644 index 00000000..31869544 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_allium.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:allium" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_allium" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azalea_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azalea_bush.json new file mode 100644 index 00000000..f8ec4f64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azalea_bush.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_azalea_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azure_bluet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azure_bluet.json new file mode 100644 index 00000000..413e7ea5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_azure_bluet.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azure_bluet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_azure_bluet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_bamboo.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_bamboo.json new file mode 100644 index 00000000..642f7a81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_bamboo.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_bamboo" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_birch_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_birch_sapling.json new file mode 100644 index 00000000..ba71d044 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_birch_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_birch_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_blue_orchid.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_blue_orchid.json new file mode 100644 index 00000000..97d269aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_blue_orchid.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_orchid" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_blue_orchid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_brown_mushroom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_brown_mushroom.json new file mode 100644 index 00000000..78ce1584 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_brown_mushroom.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_brown_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cactus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cactus.json new file mode 100644 index 00000000..d121c236 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cactus.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cactus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cherry_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cherry_sapling.json new file mode 100644 index 00000000..22c82bf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cherry_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cherry_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json new file mode 100644 index 00000000..2e7f5160 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:closed_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_closed_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cornflower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cornflower.json new file mode 100644 index 00000000..70bba7ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_cornflower.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cornflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cornflower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_fungus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_fungus.json new file mode 100644 index 00000000..947ad097 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_fungus.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_crimson_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_roots.json new file mode 100644 index 00000000..308b6f0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_crimson_roots.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_crimson_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dandelion.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dandelion.json new file mode 100644 index 00000000..4b559d10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dandelion.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json new file mode 100644 index 00000000..ed6d6a4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dark_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dead_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dead_bush.json new file mode 100644 index 00000000..9e432e9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_dead_bush.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dead_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_fern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_fern.json new file mode 100644 index 00000000..8c362fb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_fern.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_fern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json new file mode 100644 index 00000000..48288438 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flowering_azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_flowering_azalea_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_golden_dandelion.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_golden_dandelion.json new file mode 100644 index 00000000..88c4bdad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_golden_dandelion.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_golden_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_jungle_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_jungle_sapling.json new file mode 100644 index 00000000..dd1e9302 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_jungle_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_jungle_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json new file mode 100644 index 00000000..10dfd538 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_of_the_valley" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_lily_of_the_valley" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json new file mode 100644 index 00000000..2afcf4c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_propagule" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_mangrove_propagule" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oak_sapling.json new file mode 100644 index 00000000..f1f8e373 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oak_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json new file mode 100644 index 00000000..5b2e9d07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:open_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_open_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_orange_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_orange_tulip.json new file mode 100644 index 00000000..81eab09e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_orange_tulip.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_orange_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json new file mode 100644 index 00000000..912ea7dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxeye_daisy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_oxeye_daisy" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json new file mode 100644 index 00000000..7ebed877 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_pale_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pink_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pink_tulip.json new file mode 100644 index 00000000..e7a63e75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_pink_tulip.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_pink_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_poppy.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_poppy.json new file mode 100644 index 00000000..d75f2d18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_poppy.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_poppy" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_mushroom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_mushroom.json new file mode 100644 index 00000000..e20d84a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_mushroom.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_red_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_tulip.json new file mode 100644 index 00000000..b5cea4ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_red_tulip.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_red_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_spruce_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_spruce_sapling.json new file mode 100644 index 00000000..47cf9855 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_spruce_sapling.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_spruce_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_torchflower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_torchflower.json new file mode 100644 index 00000000..b92f91a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_torchflower.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_torchflower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_fungus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_fungus.json new file mode 100644 index 00000000..a798f64c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_fungus.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_warped_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_roots.json new file mode 100644 index 00000000..7abe315e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_warped_roots.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_warped_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_white_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_white_tulip.json new file mode 100644 index 00000000..aad13071 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_white_tulip.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_white_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_wither_rose.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_wither_rose.json new file mode 100644 index 00000000..fc241306 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/potted_wither_rose.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_rose" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_wither_rose" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow.json new file mode 100644 index 00000000..91aa4aea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/powder_snow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow_cauldron.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow_cauldron.json new file mode 100644 index 00000000..540379b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/powder_snow_cauldron.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/powder_snow_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/powered_rail.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/powered_rail.json new file mode 100644 index 00000000..1baa78e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/powered_rail.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:powered_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/powered_rail" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine.json new file mode 100644 index 00000000..667cd338 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_slab.json new file mode 100644 index 00000000..81d7b0cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:prismarine_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json new file mode 100644 index 00000000..12ab9200 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_bricks.json new file mode 100644 index 00000000..fa2f5e87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_slab.json new file mode 100644 index 00000000..d1646bd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:prismarine_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_stairs.json new file mode 100644 index 00000000..d4d22716 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_wall.json new file mode 100644 index 00000000..e4a8db9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/prismarine_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin.json new file mode 100644 index 00000000..668cb829 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin_stem.json new file mode 100644 index 00000000..41e6c805 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/pumpkin_stem.json @@ -0,0 +1,167 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.06666667 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.13333334 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.2 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.26666668 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.33333334 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "5" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.4 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "6" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.46666667 + }, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pumpkin_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_banner.json new file mode 100644 index 00000000..6435da02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:purple_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_bed.json new file mode 100644 index 00000000..6a9b0be6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:purple_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:purple_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle.json new file mode 100644 index 00000000..875b38e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:purple_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle_cake.json new file mode 100644 index 00000000..60bc8519 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_carpet.json new file mode 100644 index 00000000..875defd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete.json new file mode 100644 index 00000000..6c3a7646 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete_powder.json new file mode 100644 index 00000000..1a4146f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json new file mode 100644 index 00000000..fa3cafdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_shulker_box.json new file mode 100644 index 00000000..a0370401 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:purple_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass.json new file mode 100644 index 00000000..b7e099dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json new file mode 100644 index 00000000..698cd87c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_terracotta.json new file mode 100644 index 00000000..b03c9a13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_wool.json new file mode 100644 index 00000000..1904e3ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purple_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_block.json new file mode 100644 index 00000000..08a90f63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_pillar.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_pillar.json new file mode 100644 index 00000000..644bba00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_pillar.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_pillar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_pillar" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_slab.json new file mode 100644 index 00000000..e4e44649 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:purpur_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:purpur_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_stairs.json new file mode 100644 index 00000000..eb1c24a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/purpur_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_block.json new file mode 100644 index 00000000..7eb0ba9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_bricks.json new file mode 100644 index 00000000..81dcc883 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_pillar.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_pillar.json new file mode 100644 index 00000000..792f6e79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_pillar.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_pillar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_pillar" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_slab.json new file mode 100644 index 00000000..b9d013c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:quartz_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:quartz_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_stairs.json new file mode 100644 index 00000000..67934f24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/quartz_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/rail.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/rail.json new file mode 100644 index 00000000..6439e1c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/rail.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rail" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_copper_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_copper_block.json new file mode 100644 index 00000000..96f3df63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_copper_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_gold_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_gold_block.json new file mode 100644 index 00000000..f542446c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_gold_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_gold_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_iron_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_iron_block.json new file mode 100644 index 00000000..ebb81954 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/raw_iron_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_iron_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_banner.json new file mode 100644 index 00000000..9cd58ad2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:red_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_bed.json new file mode 100644 index 00000000..5539e346 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:red_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:red_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle.json new file mode 100644 index 00000000..7d811a6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle_cake.json new file mode 100644 index 00000000..012bdf52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_carpet.json new file mode 100644 index 00000000..90d0b72c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete.json new file mode 100644 index 00000000..8cfcb7e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete_powder.json new file mode 100644 index 00000000..43e49128 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_glazed_terracotta.json new file mode 100644 index 00000000..901ad17a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom.json new file mode 100644 index 00000000..06781ffb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom_block.json new file mode 100644 index 00000000..26dd196f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_mushroom_block.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:red_mushroom_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": -6.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:limit_count", + "limit": { + "min": 0.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_mushroom" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_mushroom_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_slab.json new file mode 100644 index 00000000..fba983c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:red_nether_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_nether_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json new file mode 100644 index 00000000..043c84c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_wall.json new file mode 100644 index 00000000..a5689eb1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_bricks.json new file mode 100644 index 00000000..134ff079 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_nether_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sand.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sand.json new file mode 100644 index 00000000..c14fb7cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sand.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone.json new file mode 100644 index 00000000..c361abe6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_slab.json new file mode 100644 index 00000000..44a0c415 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_stairs.json new file mode 100644 index 00000000..41904518 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_wall.json new file mode 100644 index 00000000..133f5a3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_sandstone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_shulker_box.json new file mode 100644 index 00000000..b05c91ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:red_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass.json new file mode 100644 index 00000000..b4884b86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass_pane.json new file mode 100644 index 00000000..c7cd10e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_terracotta.json new file mode 100644 index 00000000..66cb3eea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_tulip.json new file mode 100644 index 00000000..bb7d64d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/red_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_wool.json new file mode 100644 index 00000000..ec75bf8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/red_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_block.json new file mode 100644 index 00000000..f6381965 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_lamp.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_lamp.json new file mode 100644 index 00000000..72691b07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_lamp.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_lamp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_lamp" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_ore.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_ore.json new file mode 100644 index 00000000..630032a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_ore.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:redstone_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:redstone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_ore" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_torch.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_torch.json new file mode 100644 index 00000000..cfbd4feb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_torch" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_wire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_wire.json new file mode 100644 index 00000000..464c462d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/redstone_wire.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_wire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/reinforced_deepslate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/reinforced_deepslate.json new file mode 100644 index 00000000..8b7ca25d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/reinforced_deepslate.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/reinforced_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/repeater.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/repeater.json new file mode 100644 index 00000000..4b479efe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/repeater.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:repeater" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/repeater" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_block.json new file mode 100644 index 00000000..aff47617 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_slab.json new file mode 100644 index 00000000..7b85e6d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:resin_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_stairs.json new file mode 100644 index 00000000..45cac065 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_wall.json new file mode 100644 index 00000000..8624725a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_bricks.json new file mode 100644 index 00000000..10fb8963 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_clump.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_clump.json new file mode 100644 index 00000000..d2f4b6f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/resin_clump.json @@ -0,0 +1,110 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_clump" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_clump" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/respawn_anchor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/respawn_anchor.json new file mode 100644 index 00000000..19aa5add --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/respawn_anchor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:respawn_anchor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/respawn_anchor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/rooted_dirt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/rooted_dirt.json new file mode 100644 index 00000000..da18a7b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/rooted_dirt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rooted_dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rooted_dirt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/rose_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/rose_bush.json new file mode 100644 index 00000000..1f76a29b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/rose_bush.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:rose_bush", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:rose_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rose_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sand.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sand.json new file mode 100644 index 00000000..694cf214 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sand.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone.json new file mode 100644 index 00000000..bcf6258c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_slab.json new file mode 100644 index 00000000..c2104e58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_stairs.json new file mode 100644 index 00000000..b6e09b43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_wall.json new file mode 100644 index 00000000..badc92b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sandstone_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/scaffolding.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/scaffolding.json new file mode 100644 index 00000000..0ef83d24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/scaffolding.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:scaffolding" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/scaffolding" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk.json new file mode 100644 index 00000000..3624da12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_catalyst.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_catalyst.json new file mode 100644 index 00000000..edb425bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_catalyst.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_catalyst" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_catalyst" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_sensor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_sensor.json new file mode 100644 index 00000000..89ea81f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_sensor.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_sensor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_sensor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_shrieker.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_shrieker.json new file mode 100644 index 00000000..9a70d662 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_shrieker.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_shrieker" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_shrieker" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_vein.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_vein.json new file mode 100644 index 00000000..4e7f5272 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sculk_vein.json @@ -0,0 +1,127 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sculk_vein" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_vein" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_lantern.json new file mode 100644 index 00000000..a966fa5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_lantern.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:sea_lantern" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 5.0, + "min": 1.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_crystals" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sea_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_pickle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_pickle.json new file mode 100644 index 00000000..04ebbab7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sea_pickle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sea_pickle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sea_pickle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/seagrass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/seagrass.json new file mode 100644 index 00000000..618fdc65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/seagrass.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:seagrass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/seagrass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/short_dry_grass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/short_dry_grass.json new file mode 100644 index 00000000..e19e59db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/short_dry_grass.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:short_dry_grass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/short_dry_grass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/short_grass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/short_grass.json new file mode 100644 index 00000000..61e0786b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/short_grass.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 2 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/short_grass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/shroomlight.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/shroomlight.json new file mode 100644 index 00000000..82bdfdca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/shroomlight.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shroomlight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/shroomlight" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/shulker_box.json new file mode 100644 index 00000000..b5187206 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/skeleton_skull.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/skeleton_skull.json new file mode 100644 index 00000000..4fa7f79d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/skeleton_skull.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/skeleton_skull" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/slime_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/slime_block.json new file mode 100644 index 00000000..c76a0c0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/slime_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:slime_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/slime_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/small_amethyst_bud.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/small_amethyst_bud.json new file mode 100644 index 00000000..f912468a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/small_amethyst_bud.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:small_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/small_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/small_dripleaf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/small_dripleaf.json new file mode 100644 index 00000000..85bd2915 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/small_dripleaf.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:small_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/small_dripleaf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smithing_table.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smithing_table.json new file mode 100644 index 00000000..b4e8eedf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smithing_table.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smithing_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smithing_table" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smoker.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smoker.json new file mode 100644 index 00000000..da107961 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smoker.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:smoker" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smoker" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_basalt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_basalt.json new file mode 100644 index 00000000..6012d142 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_basalt.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_basalt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz.json new file mode 100644 index 00000000..b878b713 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_quartz" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_slab.json new file mode 100644 index 00000000..d83dae74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:smooth_quartz_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_quartz_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json new file mode 100644 index 00000000..8b3ab2fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_quartz_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone.json new file mode 100644 index 00000000..662f011e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..f83fe609 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:smooth_red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..3f4ffac5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_red_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone.json new file mode 100644 index 00000000..74eced28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json new file mode 100644 index 00000000..88bb7cd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:smooth_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json new file mode 100644 index 00000000..8ff80105 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone.json new file mode 100644 index 00000000..d5f47a64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_stone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone_slab.json new file mode 100644 index 00000000..89c7ffc5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/smooth_stone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:smooth_stone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_stone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_stone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sniffer_egg.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sniffer_egg.json new file mode 100644 index 00000000..679bb56f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sniffer_egg.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sniffer_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sniffer_egg" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/snow.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/snow.json new file mode 100644 index 00000000..337656ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/snow.json @@ -0,0 +1,358 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "1" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "2" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "3" + } + } + ], + "functions": [ + { + "add": false, + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "4" + } + } + ], + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "5" + } + } + ], + "functions": [ + { + "add": false, + "count": 5.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "6" + } + } + ], + "functions": [ + { + "add": false, + "count": 6.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "7" + } + } + ], + "functions": [ + { + "add": false, + "count": 7.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "8" + } + } + ], + "functions": [ + { + "add": false, + "count": 8.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + } + ], + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + } + ] + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "1" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "2" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "3" + } + } + ], + "functions": [ + { + "add": false, + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "4" + } + } + ], + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "5" + } + } + ], + "functions": [ + { + "add": false, + "count": 5.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "6" + } + } + ], + "functions": [ + { + "add": false, + "count": 6.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "7" + } + } + ], + "functions": [ + { + "add": false, + "count": 7.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/snow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/snow_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/snow_block.json new file mode 100644 index 00000000..f4c0d358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/snow_block.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:snowball" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/snow_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_campfire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_campfire.json new file mode 100644 index 00000000..7df1bf1c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_campfire.json @@ -0,0 +1,54 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:soul_campfire" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_soil" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_campfire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_fire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_fire.json new file mode 100644 index 00000000..c903d01a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_fire.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/soul_fire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_lantern.json new file mode 100644 index 00000000..f30954c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_sand.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_sand.json new file mode 100644 index 00000000..3c8ea141 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_sand.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_sand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_soil.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_soil.json new file mode 100644 index 00000000..6d0286a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_soil.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_soil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_soil" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_torch.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_torch.json new file mode 100644 index 00000000..15fb096d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/soul_torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_torch" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spawner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spawner.json new file mode 100644 index 00000000..ef3cbef2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spawner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/spawner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sponge.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sponge.json new file mode 100644 index 00000000..779d58e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sponge.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sponge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sponge" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spore_blossom.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spore_blossom.json new file mode 100644 index 00000000..4954974c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spore_blossom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spore_blossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spore_blossom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_button.json new file mode 100644 index 00000000..1b9db660 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_door.json new file mode 100644 index 00000000..e2709b50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:spruce_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:spruce_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence.json new file mode 100644 index 00000000..70f9087d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence_gate.json new file mode 100644 index 00000000..c9a633bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_hanging_sign.json new file mode 100644 index 00000000..1c7d3324 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_leaves.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_leaves.json new file mode 100644 index 00000000..6ccb5c7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_leaves.json @@ -0,0 +1,136 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:spruce_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:spruce_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_log.json new file mode 100644 index 00000000..0fcdc96c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_planks.json new file mode 100644 index 00000000..4b226d25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_pressure_plate.json new file mode 100644 index 00000000..a34f19c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sapling.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sapling.json new file mode 100644 index 00000000..33832b40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sapling.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_shelf.json new file mode 100644 index 00000000..b98af397 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sign.json new file mode 100644 index 00000000..7e632128 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_slab.json new file mode 100644 index 00000000..55ceb701 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:spruce_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:spruce_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_stairs.json new file mode 100644 index 00000000..66490bb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_trapdoor.json new file mode 100644 index 00000000..49c1de24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_wood.json new file mode 100644 index 00000000..8f5cd239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/spruce_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sticky_piston.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sticky_piston.json new file mode 100644 index 00000000..5c313900 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sticky_piston.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sticky_piston" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sticky_piston" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone.json new file mode 100644 index 00000000..7d0be2a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:stone" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:cobblestone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_slab.json new file mode 100644 index 00000000..1b73fc34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_stairs.json new file mode 100644 index 00000000..abfc0133 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_wall.json new file mode 100644 index 00000000..c7817c90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_bricks.json new file mode 100644 index 00000000..18a4f303 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_button.json new file mode 100644 index 00000000..9faae124 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_pressure_plate.json new file mode 100644 index 00000000..54a30ca6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_slab.json new file mode 100644 index 00000000..7bcdc50d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:stone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_stairs.json new file mode 100644 index 00000000..675105c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stone_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stonecutter.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stonecutter.json new file mode 100644 index 00000000..e4461997 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stonecutter.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stonecutter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stonecutter" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_log.json new file mode 100644 index 00000000..0fd9484e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_acacia_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_acacia_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_wood.json new file mode 100644 index 00000000..92336ab9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_acacia_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_acacia_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_acacia_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_bamboo_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_bamboo_block.json new file mode 100644 index 00000000..75b40e43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_bamboo_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_bamboo_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_bamboo_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_log.json new file mode 100644 index 00000000..96825df9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_birch_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_birch_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_wood.json new file mode 100644 index 00000000..22e87a72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_birch_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_birch_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_birch_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_log.json new file mode 100644 index 00000000..4623aeb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_cherry_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_cherry_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_wood.json new file mode 100644 index 00000000..efb7c692 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_cherry_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_cherry_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_cherry_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json new file mode 100644 index 00000000..2d4df929 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_crimson_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_crimson_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_stem.json new file mode 100644 index 00000000..4ba97f15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_crimson_stem.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_crimson_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_crimson_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json new file mode 100644 index 00000000..31cf8d92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_dark_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_dark_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json new file mode 100644 index 00000000..e3f14364 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_dark_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_dark_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_log.json new file mode 100644 index 00000000..d588810c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_jungle_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_jungle_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_wood.json new file mode 100644 index 00000000..cf363c9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_jungle_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_jungle_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_jungle_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_log.json new file mode 100644 index 00000000..439c4642 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_mangrove_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_mangrove_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json new file mode 100644 index 00000000..a0add2f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_mangrove_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_mangrove_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_log.json new file mode 100644 index 00000000..6f4a965d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_wood.json new file mode 100644 index 00000000..746044f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json new file mode 100644 index 00000000..5254c198 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_pale_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_pale_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json new file mode 100644 index 00000000..ac053b60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_pale_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_pale_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_log.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_log.json new file mode 100644 index 00000000..c1d0afaf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_log.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_spruce_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_spruce_log" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_wood.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_wood.json new file mode 100644 index 00000000..b9bb7849 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_spruce_wood.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_spruce_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_spruce_wood" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json new file mode 100644 index 00000000..b3e7e185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_warped_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_warped_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_stem.json new file mode 100644 index 00000000..9dba0ad3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/stripped_warped_stem.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_warped_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_warped_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sugar_cane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sugar_cane.json new file mode 100644 index 00000000..d9003975 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sugar_cane.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sugar_cane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sugar_cane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sunflower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sunflower.json new file mode 100644 index 00000000..482f67ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sunflower.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:sunflower", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:sunflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sunflower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_gravel.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_gravel.json new file mode 100644 index 00000000..75e77656 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_gravel.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/suspicious_gravel" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_sand.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_sand.json new file mode 100644 index 00000000..a3981f93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/suspicious_sand.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/suspicious_sand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/sweet_berry_bush.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/sweet_berry_bush.json new file mode 100644 index 00000000..dc6e63f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/sweet_berry_bush.json @@ -0,0 +1,87 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sweet_berries" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sweet_berries" + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sweet_berry_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_dry_grass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_dry_grass.json new file mode 100644 index 00000000..7055b9e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_dry_grass.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tall_dry_grass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_dry_grass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_grass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_grass.json new file mode 100644 index 00000000..11ee82a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_grass.json @@ -0,0 +1,134 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:tall_grass", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:tall_grass", + "state": { + "half": "upper" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:tall_grass", + "condition": "minecraft:block_state_property", + "properties": { + "half": "upper" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:tall_grass", + "state": { + "half": "lower" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_grass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_seagrass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_seagrass.json new file mode 100644 index 00000000..81358944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tall_seagrass.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:seagrass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_seagrass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/target.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/target.json new file mode 100644 index 00000000..5ae21779 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/target.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:target" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/target" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/terracotta.json new file mode 100644 index 00000000..cb0855ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tinted_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tinted_glass.json new file mode 100644 index 00000000..283cb8b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tinted_glass.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tinted_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tinted_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tnt.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tnt.json new file mode 100644 index 00000000..65c724aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tnt.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:tnt", + "condition": "minecraft:block_state_property", + "properties": { + "unstable": "false" + } + } + ], + "name": "minecraft:tnt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tnt" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/torch.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/torch.json new file mode 100644 index 00000000..6fb63492 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torch" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower.json new file mode 100644 index 00000000..022d8250 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torchflower" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower_crop.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower_crop.json new file mode 100644 index 00000000..d22eeea8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/torchflower_crop.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torchflower_crop" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/trapped_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/trapped_chest.json new file mode 100644 index 00000000..99af49eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/trapped_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:trapped_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/trapped_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/trial_spawner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/trial_spawner.json new file mode 100644 index 00000000..d0c24937 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/trial_spawner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/trial_spawner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire.json new file mode 100644 index 00000000..d1d92512 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tripwire" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire_hook.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire_hook.json new file mode 100644 index 00000000..fbb87eb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tripwire_hook.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tripwire_hook" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tripwire_hook" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral.json new file mode 100644 index 00000000..063c249d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tube_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_block.json new file mode 100644 index 00000000..74350462 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_block.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:tube_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_tube_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_fan.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_fan.json new file mode 100644 index 00000000..cf1881ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tube_coral_fan.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tube_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff.json new file mode 100644 index 00000000..22106d14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_slab.json new file mode 100644 index 00000000..2a8a70f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:tuff_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:tuff_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_stairs.json new file mode 100644 index 00000000..dedb959e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_wall.json new file mode 100644 index 00000000..5c1857fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_brick_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_bricks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_bricks.json new file mode 100644 index 00000000..dd27ec06 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_bricks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_slab.json new file mode 100644 index 00000000..b12cec29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:tuff_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:tuff_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_stairs.json new file mode 100644 index 00000000..d02c0cf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_wall.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_wall.json new file mode 100644 index 00000000..221c81a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/tuff_wall.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_wall" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/turtle_egg.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/turtle_egg.json new file mode 100644 index 00000000..38df3bda --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/turtle_egg.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:turtle_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/turtle_egg" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines.json new file mode 100644 index 00000000..98a6f116 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:twisting_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:twisting_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/twisting_vines" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines_plant.json new file mode 100644 index 00000000..b46194c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/twisting_vines_plant.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:twisting_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:twisting_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/twisting_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/vault.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/vault.json new file mode 100644 index 00000000..d36c29f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/vault.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/vault" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/verdant_froglight.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/verdant_froglight.json new file mode 100644 index 00000000..83b913db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/verdant_froglight.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:verdant_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/verdant_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/vine.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/vine.json new file mode 100644 index 00000000..1a7251e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/vine.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:vine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/vine" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_button.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_button.json new file mode 100644 index 00000000..e215348d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_button.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_button" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_door.json new file mode 100644 index 00000000..ccfed102 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:warped_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:warped_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence.json new file mode 100644 index 00000000..b7a85a29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fence" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence_gate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence_gate.json new file mode 100644 index 00000000..f22c3c0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fence_gate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fungus.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fungus.json new file mode 100644 index 00000000..7b87dfed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_fungus.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hanging_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hanging_sign.json new file mode 100644 index 00000000..7fde3f2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hanging_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hyphae.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hyphae.json new file mode 100644 index 00000000..629a040e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_hyphae.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_nylium.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_nylium.json new file mode 100644 index 00000000..2ad493f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_nylium.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:warped_nylium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:netherrack" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_nylium" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_planks.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_planks.json new file mode 100644 index 00000000..5e911b3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_planks.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_planks" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_pressure_plate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_pressure_plate.json new file mode 100644 index 00000000..fdd662bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_pressure_plate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_roots.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_roots.json new file mode 100644 index 00000000..a2028365 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_roots.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_roots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_shelf.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_shelf.json new file mode 100644 index 00000000..11e221b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_shelf.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_sign.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_sign.json new file mode 100644 index 00000000..56fd8ff4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_sign.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_sign" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_slab.json new file mode 100644 index 00000000..bd79c8bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:warped_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:warped_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stairs.json new file mode 100644 index 00000000..db65341e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stem.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stem.json new file mode 100644 index 00000000..e49d82c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_stem.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_stem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_trapdoor.json new file mode 100644 index 00000000..0ba747d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_wart_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_wart_block.json new file mode 100644 index 00000000..44f1239e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/warped_wart_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_wart_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_wart_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/water_cauldron.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/water_cauldron.json new file mode 100644 index 00000000..65480c7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/water_cauldron.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/water_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json new file mode 100644 index 00000000..ab095765 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bars.json new file mode 100644 index 00000000..ab05c92a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_block.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_block.json new file mode 100644 index 00000000..7a19b048 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_block.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bulb.json new file mode 100644 index 00000000..78d96ba2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chain.json new file mode 100644 index 00000000..5f515a34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chest.json new file mode 100644 index 00000000..a1a54591 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_door.json new file mode 100644 index 00000000..10852959 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json new file mode 100644 index 00000000..3aee3bd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_grate.json new file mode 100644 index 00000000..fe71fd94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_lantern.json new file mode 100644 index 00000000..48fcdc0c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json new file mode 100644 index 00000000..045671e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper.json new file mode 100644 index 00000000..7bc23efa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json new file mode 100644 index 00000000..a36a0d73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:waxed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..b4a0187b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..259a1f56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper.json new file mode 100644 index 00000000..1177577d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json new file mode 100644 index 00000000..a33ad2a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..75b3aadb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json new file mode 100644 index 00000000..b66d641c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json new file mode 100644 index 00000000..40cd583b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_exposed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json new file mode 100644 index 00000000..27f5149a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_exposed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_exposed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json new file mode 100644 index 00000000..734dbbaa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_exposed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_exposed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..5bf864df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json new file mode 100644 index 00000000..9aec0fb9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json new file mode 100644 index 00000000..1b630bcd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..3bc5d389 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..5c666508 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:waxed_exposed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_exposed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..a6016074 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json new file mode 100644 index 00000000..40c8b8d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_lightning_rod.json new file mode 100644 index 00000000..0e5cc144 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..436ba856 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json new file mode 100644 index 00000000..1adcc9dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json new file mode 100644 index 00000000..728c809b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..8ffa3bae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json new file mode 100644 index 00000000..df8d08b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json new file mode 100644 index 00000000..b36bfd06 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_oxidized_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json new file mode 100644 index 00000000..f5772d80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_oxidized_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_oxidized_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json new file mode 100644 index 00000000..78b588a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_oxidized_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_oxidized_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..2e56d5c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json new file mode 100644 index 00000000..e3e2c4d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 00000000..86f33c3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..8c60af17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..1d775c12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:waxed_oxidized_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..61bacc93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json new file mode 100644 index 00000000..7b77ce73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..dafd3229 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper.json new file mode 100644 index 00000000..e219db69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json new file mode 100644 index 00000000..5af84223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..3e88f84e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json new file mode 100644 index 00000000..344e5daa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json new file mode 100644 index 00000000..397c7640 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_weathered_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json new file mode 100644 index 00000000..410607df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_weathered_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_weathered_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json new file mode 100644 index 00000000..a8d62ae2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_weathered_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_weathered_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..81890f92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json new file mode 100644 index 00000000..da6dc34c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json new file mode 100644 index 00000000..fec411c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..0aaca0c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..d25ebd6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:waxed_weathered_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_weathered_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..8f2aebf9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json new file mode 100644 index 00000000..bb6e80a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json new file mode 100644 index 00000000..4e5aebff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper.json new file mode 100644 index 00000000..57859720 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bars.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bars.json new file mode 100644 index 00000000..6249d8cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bars.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bulb.json new file mode 100644 index 00000000..f90c6c43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_bulb.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chain.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chain.json new file mode 100644 index 00000000..9764c0ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chain.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chest.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chest.json new file mode 100644 index 00000000..045e3372 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_chest.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:weathered_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_door.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_door.json new file mode 100644 index 00000000..ccfbcab1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_door.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:weathered_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:weathered_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json new file mode 100644 index 00000000..5575a575 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:weathered_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:weathered_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_grate.json new file mode 100644 index 00000000..01b9e1b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_grate.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_lantern.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_lantern.json new file mode 100644 index 00000000..c528b5b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_lantern.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json new file mode 100644 index 00000000..088b4d65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper.json new file mode 100644 index 00000000..6a1d285f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json new file mode 100644 index 00000000..a6ce591d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:weathered_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:weathered_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..77b67345 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_lightning_rod.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_lightning_rod.json new file mode 100644 index 00000000..c7c8dc6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weathered_lightning_rod.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines.json new file mode 100644 index 00000000..59c2955b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:weeping_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:weeping_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weeping_vines" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines_plant.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines_plant.json new file mode 100644 index 00000000..5215e6aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/weeping_vines_plant.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:weeping_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:weeping_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weeping_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/wet_sponge.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/wet_sponge.json new file mode 100644 index 00000000..c2356cb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/wet_sponge.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wet_sponge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wet_sponge" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/wheat.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/wheat.json new file mode 100644 index 00000000..bcd5d2b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/wheat.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "name": "minecraft:wheat" + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:wheat_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wheat" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_banner.json new file mode 100644 index 00000000..d6b17c66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:white_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_bed.json new file mode 100644 index 00000000..69889d2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:white_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:white_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle.json new file mode 100644 index 00000000..c3ed1aa0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:white_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle_cake.json new file mode 100644 index 00000000..b59f6602 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_carpet.json new file mode 100644 index 00000000..e71f5188 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete.json new file mode 100644 index 00000000..45e2cbfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete_powder.json new file mode 100644 index 00000000..d1095288 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_glazed_terracotta.json new file mode 100644 index 00000000..468f2c1a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_shulker_box.json new file mode 100644 index 00000000..b9a0c67d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:white_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass.json new file mode 100644 index 00000000..f23bd2c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass_pane.json new file mode 100644 index 00000000..73183264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_terracotta.json new file mode 100644 index 00000000..bf3042e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_tulip.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_tulip.json new file mode 100644 index 00000000..d5fd984e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/white_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_wool.json new file mode 100644 index 00000000..4822669e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/white_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/wildflowers.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/wildflowers.json new file mode 100644 index 00000000..69787c38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/wildflowers.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wildflowers" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wildflowers" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_rose.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_rose.json new file mode 100644 index 00000000..18e4dfad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_rose.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_rose" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wither_rose" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_skeleton_skull.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_skeleton_skull.json new file mode 100644 index 00000000..38f38017 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/wither_skeleton_skull.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wither_skeleton_skull" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_banner.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_banner.json new file mode 100644 index 00000000..9b36ed28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_banner.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:yellow_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_banner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_bed.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_bed.json new file mode 100644 index 00000000..97335d6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_bed.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:yellow_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:yellow_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_bed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle.json new file mode 100644 index 00000000..c38b02d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:yellow_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_candle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle_cake.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle_cake.json new file mode 100644 index 00000000..c51cada5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_candle_cake.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_carpet.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_carpet.json new file mode 100644 index 00000000..b2009168 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_carpet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete.json new file mode 100644 index 00000000..7ff63915 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete_powder.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete_powder.json new file mode 100644 index 00000000..0f0f4df1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_concrete_powder.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json new file mode 100644 index 00000000..e0e08963 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_shulker_box.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_shulker_box.json new file mode 100644 index 00000000..f28b2556 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_shulker_box.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:yellow_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass.json new file mode 100644 index 00000000..b5831594 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json new file mode 100644 index 00000000..a400920c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_terracotta.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_terracotta.json new file mode 100644 index 00000000..96d9cab0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_terracotta.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_wool.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_wool.json new file mode 100644 index 00000000..27511288 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/yellow_wool.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_wool" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/blocks/zombie_head.json b/data/generated/V26_1/data/minecraft/loot_table/blocks/zombie_head.json new file mode 100644 index 00000000..d3bfa33d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/blocks/zombie_head.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:zombie_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/zombie_head" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/brush/armadillo.json b/data/generated/V26_1/data/minecraft/loot_table/brush/armadillo.json new file mode 100644 index 00000000..6444ae73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/brush/armadillo.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity_interact", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:armadillo_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:brush/armadillo" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/carve/pumpkin.json b/data/generated/V26_1/data/minecraft/loot_table/carve/pumpkin.json new file mode 100644 index 00000000..0690d66d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/carve/pumpkin.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:carve/pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/creeper.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/creeper.json new file mode 100644 index 00000000..cf9d5ae6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/creeper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:creeper_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/creeper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/piglin.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/piglin.json new file mode 100644 index 00000000..9fb41664 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/piglin.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:piglin_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/piglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/root.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/root.json new file mode 100644 index 00000000..bdd68e55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/root.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:piglin" + } + } + ], + "value": "minecraft:charged_creeper/piglin" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:creeper" + } + } + ], + "value": "minecraft:charged_creeper/creeper" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:skeleton" + } + } + ], + "value": "minecraft:charged_creeper/skeleton" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:wither_skeleton" + } + } + ], + "value": "minecraft:charged_creeper/wither_skeleton" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type": "minecraft:zombie" + } + } + ], + "value": "minecraft:charged_creeper/zombie" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/root" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/skeleton.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/skeleton.json new file mode 100644 index 00000000..e6e78fdc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/skeleton.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/wither_skeleton.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/wither_skeleton.json new file mode 100644 index 00000000..b56efc08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/wither_skeleton.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/wither_skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/zombie.json b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/zombie.json new file mode 100644 index 00000000..f3c798c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/charged_creeper/zombie.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:zombie_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/zombie" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/abandoned_mineshaft.json b/data/generated/V26_1/data/minecraft/loot_table/chests/abandoned_mineshaft.json new file mode 100644 index 00000000..a930c04b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/abandoned_mineshaft.json @@ -0,0 +1,318 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 30 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:empty", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rail", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:powered_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:detector_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:activator_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 15 + } + ], + "rolls": 3.0 + } + ], + "random_sequence": "minecraft:chests/abandoned_mineshaft" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city.json b/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city.json new file mode 100644 index 00000000..c7a542ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city.json @@ -0,0 +1,428 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:compass", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_catalyst", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lead", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_horse_armor", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:swift_sneak" + } + ], + "name": "minecraft:book", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_sensor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:candle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:experience_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:echo_shard", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:disc_fragment_5", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_regeneration" + } + ], + "name": "minecraft:potion", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_torch", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 7 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 75 + }, + { + "type": "minecraft:item", + "name": "minecraft:ward_armor_trim_smithing_template", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:silence_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ancient_city" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city_ice_box.json b/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city_ice_box.json new file mode 100644 index 00000000..ce166703 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/ancient_city_ice_box.json @@ -0,0 +1,114 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + } + ], + "function": "minecraft:set_stew_effect" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:suspicious_stew" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:packed_ice", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 4 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + } + } + ], + "random_sequence": "minecraft:chests/ancient_city_ice_box" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_bridge.json b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_bridge.json new file mode 100644 index 00000000..ea42955a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_bridge.json @@ -0,0 +1,337 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lodestone" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 28.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_leggings" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_bridge" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_hoglin_stable.json b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_hoglin_stable.json new file mode 100644 index 00000000..77e66ddc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_hoglin_stable.json @@ -0,0 +1,397 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.95, + "min": 0.15 + }, + "function": "minecraft:set_damage" + }, + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block", + "weight": 16 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_apple", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glowstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_sand" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_nylium" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:porkchop" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_porkchop" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_fungus" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_roots" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_hoglin_stable" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_other.json b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_other.json new file mode 100644 index 00000000..7bf03293 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_other.json @@ -0,0 +1,549 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 22.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:piglin_banner_pattern", + "weight": 9 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:music_disc_pigstep", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_apple", + "weight": 9 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_sword", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crossbow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_leggings" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian", + "weight": 2 + } + ], + "rolls": 2.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_chain" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:magma_cream", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_porkchop" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_other" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_treasure.json b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_treasure.json new file mode 100644 index 00000000..4531d177 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/bastion_treasure.json @@ -0,0 +1,407 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_sword", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_spear", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_helmet", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_boots", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_spear", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + } + ], + "rolls": 3.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 25.0, + "min": 12.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 23.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:quartz" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:magma_cream" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/buried_treasure.json b/data/generated/V26_1/data/minecraft/loot_table/chests/buried_treasure.json new file mode 100644 index 00000000..5a7eea3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/buried_treasure.json @@ -0,0 +1,268 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heart_of_the_sea" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tnt", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 5.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_spear" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_cod" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_salmon" + } + ], + "rolls": 2.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:potion" + } + ], + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water_breathing" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/buried_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/desert_pyramid.json b/data/generated/V26_1/data/minecraft/loot_table/chests/desert_pyramid.json new file mode 100644 index 00000000..7c1d8281 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/desert_pyramid.json @@ -0,0 +1,296 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spider_eye", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:empty", + "weight": 15 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sand", + "weight": 10 + } + ], + "rolls": 4.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dune_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/end_city_treasure.json b/data/generated/V26_1/data/minecraft/loot_table/chests/end_city_treasure.json new file mode 100644 index 00000000..0e58e461 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/end_city_treasure.json @@ -0,0 +1,371 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_sword", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_spear", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_boots", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_sword", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_boots", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_pickaxe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_shovel", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 14 + }, + { + "type": "minecraft:item", + "name": "minecraft:spire_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/end_city_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/igloo_chest.json b/data/generated/V26_1/data/minecraft/loot_table/chests/igloo_chest.json new file mode 100644 index 00000000..e2f6f0f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/igloo_chest.json @@ -0,0 +1,104 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/igloo_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple.json b/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple.json new file mode 100644 index 00000000..a8fa022c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple.json @@ -0,0 +1,192 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 16 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wild_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/jungle_temple" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple_dispenser.json b/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple_dispenser.json new file mode 100644 index 00000000..118e9c2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/jungle_temple_dispenser.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 30 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/jungle_temple_dispenser" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/nether_bridge.json b/data/generated/V26_1/data/minecraft/loot_table/chests/nether_bridge.json new file mode 100644 index 00000000..4da990ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/nether_bridge.json @@ -0,0 +1,150 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:flint_and_steel", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:nether_wart", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 8 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 14 + }, + { + "type": "minecraft:item", + "name": "minecraft:rib_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/nether_bridge" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/pillager_outpost.json b/data/generated/V26_1/data/minecraft/loot_table/chests/pillager_outpost.json new file mode 100644 index 00000000..36a8ef1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/pillager_outpost.json @@ -0,0 +1,233 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tripwire_hook", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:goat_horn" + } + ], + "functions": [ + { + "function": "minecraft:set_instrument", + "options": "#minecraft:regular_goat_horns" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sentry_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/pillager_outpost" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/ruined_portal.json b/data/generated/V26_1/data/minecraft/loot_table/chests/ruined_portal.json new file mode 100644 index 00000000..671ecb07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/ruined_portal.json @@ -0,0 +1,305 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:flint", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 18.0, + "min": 9.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:flint_and_steel", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:fire_charge", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 24.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_sword", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_hoe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_shovel", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_pickaxe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_boots", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_chestplate", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_helmet", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_leggings", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glistering_melon_slice", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:light_weighted_pressure_plate", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:clock", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bell" + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lodestone", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ruined_portal" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_map.json b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_map.json new file mode 100644 index 00000000..61ba239b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_map.json @@ -0,0 +1,176 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:clock" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:feather", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + } + ], + "rolls": 3.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_map" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_supply.json b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_supply.json new file mode 100644 index 00000000..12f2d49a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_supply.json @@ -0,0 +1,390 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:moss_block", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:poisonous_potato", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 21.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:jump_boost", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:weakness", + "duration": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 6.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + }, + { + "type": "minecraft:poison", + "duration": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + } + }, + { + "type": "minecraft:saturation", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "name": "minecraft:suspicious_stew", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 24.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tnt" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_boots", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_supply" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_treasure.json b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_treasure.json new file mode 100644 index 00000000..a403a994 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/shipwreck_treasure.json @@ -0,0 +1,211 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 90 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 50 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 20 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/simple_dungeon.json b/data/generated/V26_1/data/minecraft/loot_table/chests/simple_dungeon.json new file mode 100644 index 00000000..4b5c5133 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/simple_dungeon.json @@ -0,0 +1,311 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bread", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + } + ], + "rolls": 3.0 + } + ], + "random_sequence": "minecraft:chests/simple_dungeon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/spawn_bonus_chest.json b/data/generated/V26_1/data/minecraft/loot_table/chests/spawn_bonus_chest.json new file mode 100644 index 00000000..0ead9928 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/spawn_bonus_chest.json @@ -0,0 +1,240 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_axe", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pickaxe" + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_pickaxe", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:salmon", + "weight": 3 + } + ], + "rolls": 3.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_planks", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:birch_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:jungle_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:mangrove_log", + "weight": 3 + } + ], + "rolls": 4.0 + } + ], + "random_sequence": "minecraft:chests/spawn_bonus_chest" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_corridor.json b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_corridor.json new file mode 100644 index 00000000..4a5db691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_corridor.json @@ -0,0 +1,211 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ender_pearl", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:eye_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/stronghold_corridor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_crossing.json b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_crossing.json new file mode 100644 index 00000000..5fec0f29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_crossing.json @@ -0,0 +1,127 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/stronghold_crossing" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_library.json b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_library.json new file mode 100644 index 00000000..4994a86e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/stronghold_library.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:eye_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/stronghold_library" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/corridor.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/corridor.json new file mode 100644 index 00000000..f9ff784f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/corridor.json @@ -0,0 +1,193 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.4 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_pickaxe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ender_pearl", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_hanging_sign", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_planks", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:scaffolding", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tuff", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/entrance.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/entrance.json new file mode 100644 index 00000000..0eadd954 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/entrance.json @@ -0,0 +1,87 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:trial_key" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wooden_axe", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/entrance" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection.json new file mode 100644 index 00000000..810c3579 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection.json @@ -0,0 +1,149 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_axe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cake", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block", + "weight": 20 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/intersection" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json new file mode 100644 index 00000000..8b56cd46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json @@ -0,0 +1,184 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.4 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_pickaxe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bucket" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:golden_axe", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:golden_pickaxe", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_planks", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/intersection_barrel" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward.json new file mode 100644 index 00000000..6e779bd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_rare", + "weight": 8 + }, + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_common", + "weight": 2 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_common" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.25, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_unique" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_common.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_common.json new file mode 100644 index 00000000..90b1824b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_common.json @@ -0,0 +1,162 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honey_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_common" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json new file mode 100644 index 00000000..ee4b6fd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_rare", + "weight": 8 + }, + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_common", + "weight": 2 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_common" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.75, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_unique" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json new file mode 100644 index 00000000..02986a53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json @@ -0,0 +1,99 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_slowness" + } + ], + "name": "minecraft:tipped_arrow", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_common" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json new file mode 100644 index 00000000..3b7fe8dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json @@ -0,0 +1,124 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_block", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:knockback", + "minecraft:punch", + "minecraft:smite", + "minecraft:looting", + "minecraft:multishot" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:breach", + "minecraft:density" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "enchantments": { + "minecraft:wind_burst": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_rare" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json new file mode 100644 index 00000000..fc2a714c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:flow_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:flow_banner_pattern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_creator" + }, + { + "type": "minecraft:item", + "name": "minecraft:heavy_core" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_unique" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json new file mode 100644 index 00000000..54f069a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json @@ -0,0 +1,189 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.5 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:shield", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:bow", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 0.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 0.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_chestplate", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:sharpness", + "minecraft:bane_of_arthropods", + "minecraft:efficiency", + "minecraft:fortune", + "minecraft:silk_touch", + "minecraft:feather_falling" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:riptide", + "minecraft:loyalty", + "minecraft:channeling", + "minecraft:impaling", + "minecraft:mending" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_rare" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json new file mode 100644 index 00000000..be2147b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:bolt_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:guster_banner_pattern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_precipice", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:trident" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_unique" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/supply.json b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/supply.json new file mode 100644 index 00000000..8fef39c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/trial_chambers/supply.json @@ -0,0 +1,239 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 14.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_planks" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:moss_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone_meal" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tuff" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_pickaxe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:milk_bucket" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/supply" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_big.json b/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_big.json new file mode 100644 index 00000000..a616127a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_big.json @@ -0,0 +1,191 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_spear", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/underwater_ruin_big" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_small.json b/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_small.json new file mode 100644 index 00000000..f5dded63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/underwater_ruin_small.json @@ -0,0 +1,170 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_spear", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/underwater_ruin_small" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_armorer.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_armorer.json new file mode 100644 index 00000000..d89b241a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_armorer.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_armorer" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_butcher.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_butcher.json new file mode 100644 index 00000000..0d9aae4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_butcher.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:porkchop", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beef", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:mutton", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_butcher" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_cartographer.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_cartographer.json new file mode 100644 index 00000000..06a3d7b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_cartographer.json @@ -0,0 +1,106 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:map", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:compass", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_cartographer" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_desert_house.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_desert_house.json new file mode 100644 index 00000000..d18930c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_desert_house.json @@ -0,0 +1,128 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball" + }, + { + "type": "minecraft:item", + "name": "minecraft:green_dye" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cactus", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dead_bush", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_desert_house" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fisher.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fisher.json new file mode 100644 index 00000000..5161a96a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fisher.json @@ -0,0 +1,113 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cod", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:salmon" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:barrel" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat_seeds", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_fisher" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fletcher.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fletcher.json new file mode 100644 index 00000000..4afe2fc3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_fletcher.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:feather", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:egg", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:flint", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 6 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_fletcher" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_mason.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_mason.json new file mode 100644 index 00000000..58fc550c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_mason.json @@ -0,0 +1,73 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:clay_ball" + }, + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_dye" + }, + { + "type": "minecraft:item", + "name": "minecraft:smooth_stone" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_mason" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_plains_house.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_plains_house.json new file mode 100644 index 00000000..282170d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_plains_house.json @@ -0,0 +1,149 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:dandelion", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:poppy" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "name": "minecraft:feather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_sapling", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_plains_house" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_savanna_house.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_savanna_house.json new file mode 100644 index 00000000..2f7e410c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_savanna_house.json @@ -0,0 +1,149 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:short_grass", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:tall_grass", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_sapling", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch" + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_savanna_house" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_shepherd.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_shepherd.json new file mode 100644 index 00000000..c1a8ad96 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_shepherd.json @@ -0,0 +1,120 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:white_wool", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:black_wool", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gray_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:brown_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:light_gray_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:shears" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 6 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_shepherd" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_snowy_house.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_snowy_house.json new file mode 100644 index 00000000..c044db9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_snowy_house.json @@ -0,0 +1,149 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_soup" + }, + { + "type": "minecraft:item", + "name": "minecraft:furnace" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_snowy_house" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_taiga_house.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_taiga_house.json new file mode 100644 index 00000000..ee9225da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_taiga_house.json @@ -0,0 +1,182 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:fern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:large_fern", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:pumpkin_pie" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_sapling", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:spruce_sign" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_log", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_taiga_house" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_tannery.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_tannery.json new file mode 100644 index 00000000..d6140128 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_tannery.json @@ -0,0 +1,107 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_boots", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_helmet", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_tannery" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_temple.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_temple.json new file mode 100644 index 00000000..f260813e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_temple.json @@ -0,0 +1,109 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_temple" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_toolsmith.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_toolsmith.json new file mode 100644 index 00000000..ac461575 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_toolsmith.json @@ -0,0 +1,119 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_shovel", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_toolsmith" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_weaponsmith.json b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_weaponsmith.json new file mode 100644 index 00000000..7b8411d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/village/village_weaponsmith.json @@ -0,0 +1,210 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_spear", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_spear", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_sapling", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_weaponsmith" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/chests/woodland_mansion.json b/data/generated/V26_1/data/minecraft/loot_table/chests/woodland_mansion.json new file mode 100644 index 00000000..3c5b87b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/chests/woodland_mansion.json @@ -0,0 +1,314 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lead", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_hoe", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bread", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:resin_clump", + "weight": 50 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + } + ], + "rolls": 3.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/woodland_mansion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json new file mode 100644 index 00000000..ebddad8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json @@ -0,0 +1,221 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:egg", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fire_charge", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:healing" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/chamber" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json new file mode 100644 index 00000000..287748d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/water.json b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/water.json new file mode 100644 index 00000000..0e08c9e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/dispensers/trial_chambers/water.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/water" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/allay.json b/data/generated/V26_1/data/minecraft/loot_table/entities/allay.json new file mode 100644 index 00000000..47019bce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/allay.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/allay" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/armadillo.json b/data/generated/V26_1/data/minecraft/loot_table/entities/armadillo.json new file mode 100644 index 00000000..588982f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/armadillo.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/armadillo" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/armor_stand.json b/data/generated/V26_1/data/minecraft/loot_table/entities/armor_stand.json new file mode 100644 index 00000000..ef330f37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/armor_stand.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/armor_stand" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/axolotl.json b/data/generated/V26_1/data/minecraft/loot_table/entities/axolotl.json new file mode 100644 index 00000000..cd69d7df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/axolotl.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/axolotl" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/bat.json b/data/generated/V26_1/data/minecraft/loot_table/entities/bat.json new file mode 100644 index 00000000..9b01c0fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/bat.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/bat" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/bee.json b/data/generated/V26_1/data/minecraft/loot_table/entities/bee.json new file mode 100644 index 00000000..db24d0ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/bee.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/bee" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/blaze.json b/data/generated/V26_1/data/minecraft/loot_table/entities/blaze.json new file mode 100644 index 00000000..10f636b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/blaze.json @@ -0,0 +1,41 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:blaze_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/blaze" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/bogged.json b/data/generated/V26_1/data/minecraft/loot_table/entities/bogged.json new file mode 100644 index 00000000..35675294 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/bogged.json @@ -0,0 +1,106 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/bogged" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/breeze.json b/data/generated/V26_1/data/minecraft/loot_table/entities/breeze.json new file mode 100644 index 00000000..75f224db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/breeze.json @@ -0,0 +1,41 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:breeze_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/breeze" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/camel.json b/data/generated/V26_1/data/minecraft/loot_table/entities/camel.json new file mode 100644 index 00000000..15031d4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/camel.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/camel" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/camel_husk.json b/data/generated/V26_1/data/minecraft/loot_table/entities/camel_husk.json new file mode 100644 index 00000000..7b511432 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/camel_husk.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/camel_husk" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/cat.json b/data/generated/V26_1/data/minecraft/loot_table/entities/cat.json new file mode 100644 index 00000000..986f159d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/cat.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cat" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/cave_spider.json b/data/generated/V26_1/data/minecraft/loot_table/entities/cave_spider.json new file mode 100644 index 00000000..280eaa54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/cave_spider.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cave_spider" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/chicken.json b/data/generated/V26_1/data/minecraft/loot_table/entities/chicken.json new file mode 100644 index 00000000..8e0dd027 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/chicken.json @@ -0,0 +1,93 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:feather" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:chicken" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/chicken" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/cod.json b/data/generated/V26_1/data/minecraft/loot_table/entities/cod.json new file mode 100644 index 00000000..8f04a378 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/cod.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cod" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/copper_golem.json b/data/generated/V26_1/data/minecraft/loot_table/entities/copper_golem.json new file mode 100644 index 00000000..cf55b329 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/copper_golem.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:copper_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/copper_golem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/cow.json b/data/generated/V26_1/data/minecraft/loot_table/entities/cow.json new file mode 100644 index 00000000..d56a5017 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/cow.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:beef" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/creaking.json b/data/generated/V26_1/data/minecraft/loot_table/entities/creaking.json new file mode 100644 index 00000000..0e3c196f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/creaking.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/creaking" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/creeper.json b/data/generated/V26_1/data/minecraft/loot_table/entities/creeper.json new file mode 100644 index 00000000..c547ddd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/creeper.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "attacker", + "predicate": { + "type": "#minecraft:skeletons" + } + } + ], + "entries": [ + { + "type": "minecraft:tag", + "expand": true, + "name": "minecraft:creeper_drop_music_discs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/creeper" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/dolphin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/dolphin.json new file mode 100644 index 00000000..9683e15d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/dolphin.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/dolphin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/donkey.json b/data/generated/V26_1/data/minecraft/loot_table/entities/donkey.json new file mode 100644 index 00000000..3be08fd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/donkey.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/donkey" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/drowned.json b/data/generated/V26_1/data/minecraft/loot_table/entities/drowned.json new file mode 100644 index 00000000..83e8c20c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/drowned.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.13, + "per_level_above_first": 0.02 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.11 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/drowned" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/elder_guardian.json b/data/generated/V26_1/data/minecraft/loot_table/entities/elder_guardian.json new file mode 100644 index 00000000..1a37b9db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/elder_guardian.json @@ -0,0 +1,205 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_shard" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 2 + }, + { + "type": "minecraft:empty" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wet_sponge" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "value": "minecraft:gameplay/fishing/fish" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:tide_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/elder_guardian" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/ender_dragon.json b/data/generated/V26_1/data/minecraft/loot_table/entities/ender_dragon.json new file mode 100644 index 00000000..9067e7f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/ender_dragon.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/ender_dragon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/enderman.json b/data/generated/V26_1/data/minecraft/loot_table/entities/enderman.json new file mode 100644 index 00000000..db017740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/enderman.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ender_pearl" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/enderman" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/endermite.json b/data/generated/V26_1/data/minecraft/loot_table/entities/endermite.json new file mode 100644 index 00000000..81f0dc58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/endermite.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/endermite" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/evoker.json b/data/generated/V26_1/data/minecraft/loot_table/entities/evoker.json new file mode 100644 index 00000000..624fa786 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/evoker.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/evoker" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/fox.json b/data/generated/V26_1/data/minecraft/loot_table/entities/fox.json new file mode 100644 index 00000000..befa68b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/fox.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/fox" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/frog.json b/data/generated/V26_1/data/minecraft/loot_table/entities/frog.json new file mode 100644 index 00000000..0faaf14b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/frog.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/frog" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/ghast.json b/data/generated/V26_1/data/minecraft/loot_table/entities/ghast.json new file mode 100644 index 00000000..8fdc086e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/ghast.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ghast_tear" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "direct_entity": { + "type": "minecraft:fireball" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:music_disc_tears" + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/ghast" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/giant.json b/data/generated/V26_1/data/minecraft/loot_table/entities/giant.json new file mode 100644 index 00000000..67b0af8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/giant.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/giant" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/glow_squid.json b/data/generated/V26_1/data/minecraft/loot_table/entities/glow_squid.json new file mode 100644 index 00000000..2430aca3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/glow_squid.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glow_ink_sac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/glow_squid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/goat.json b/data/generated/V26_1/data/minecraft/loot_table/entities/goat.json new file mode 100644 index 00000000..c312db7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/goat.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/goat" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/guardian.json b/data/generated/V26_1/data/minecraft/loot_table/entities/guardian.json new file mode 100644 index 00000000..a11b14ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/guardian.json @@ -0,0 +1,176 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_shard" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 2 + }, + { + "type": "minecraft:empty" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "value": "minecraft:gameplay/fishing/fish" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/guardian" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/happy_ghast.json b/data/generated/V26_1/data/minecraft/loot_table/entities/happy_ghast.json new file mode 100644 index 00000000..97d8ab86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/happy_ghast.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/happy_ghast" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/hoglin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/hoglin.json new file mode 100644 index 00000000..fbeec229 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/hoglin.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:porkchop" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/hoglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/horse.json b/data/generated/V26_1/data/minecraft/loot_table/entities/horse.json new file mode 100644 index 00000000..90333d76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/horse.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/horse" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/husk.json b/data/generated/V26_1/data/minecraft/loot_table/entities/husk.json new file mode 100644 index 00000000..3c32cf0c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/husk.json @@ -0,0 +1,148 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": { + "type": "minecraft:camel_husk" + } + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit_foot" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/husk" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/illusioner.json b/data/generated/V26_1/data/minecraft/loot_table/entities/illusioner.json new file mode 100644 index 00000000..5efa2e3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/illusioner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/illusioner" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/iron_golem.json b/data/generated/V26_1/data/minecraft/loot_table/entities/iron_golem.json new file mode 100644 index 00000000..25f21ae4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/iron_golem.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/iron_golem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/llama.json b/data/generated/V26_1/data/minecraft/loot_table/entities/llama.json new file mode 100644 index 00000000..db129748 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/llama.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/llama" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/magma_cube.json b/data/generated/V26_1/data/minecraft/loot_table/entities/magma_cube.json new file mode 100644 index 00000000..56038643 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/magma_cube.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:slime", + "size": { + "min": 2 + } + } + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:magma_cream" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:warm" + } + } + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pearlescent_froglight" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:cold" + } + } + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:verdant_froglight" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog", + "components": { + "minecraft:frog/variant": "minecraft:temperate" + } + } + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ochre_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/magma_cube" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/mannequin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/mannequin.json new file mode 100644 index 00000000..fb4a4ea6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/mannequin.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/mannequin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/mooshroom.json b/data/generated/V26_1/data/minecraft/loot_table/entities/mooshroom.json new file mode 100644 index 00000000..1f1523d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/mooshroom.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:beef" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/mooshroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/mule.json b/data/generated/V26_1/data/minecraft/loot_table/entities/mule.json new file mode 100644 index 00000000..a491b7e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/mule.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/mule" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/nautilus.json b/data/generated/V26_1/data/minecraft/loot_table/entities/nautilus.json new file mode 100644 index 00000000..09628923 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/nautilus.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.060000002, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.05 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nautilus_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/nautilus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/ocelot.json b/data/generated/V26_1/data/minecraft/loot_table/entities/ocelot.json new file mode 100644 index 00000000..ab51d391 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/ocelot.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/ocelot" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/panda.json b/data/generated/V26_1/data/minecraft/loot_table/entities/panda.json new file mode 100644 index 00000000..fb4490e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/panda.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/panda" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/parched.json b/data/generated/V26_1/data/minecraft/loot_table/entities/parched.json new file mode 100644 index 00000000..6899257d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/parched.json @@ -0,0 +1,106 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/parched" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/parrot.json b/data/generated/V26_1/data/minecraft/loot_table/entities/parrot.json new file mode 100644 index 00000000..ad2e18e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/parrot.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:feather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/parrot" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/phantom.json b/data/generated/V26_1/data/minecraft/loot_table/entities/phantom.json new file mode 100644 index 00000000..41254d6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/phantom.json @@ -0,0 +1,41 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:phantom_membrane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/phantom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/pig.json b/data/generated/V26_1/data/minecraft/loot_table/entities/pig.json new file mode 100644 index 00000000..a945d461 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/pig.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:porkchop" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pig" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/piglin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/piglin.json new file mode 100644 index 00000000..5752d041 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/piglin.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/piglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/piglin_brute.json b/data/generated/V26_1/data/minecraft/loot_table/entities/piglin_brute.json new file mode 100644 index 00000000..af2fd348 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/piglin_brute.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/piglin_brute" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/pillager.json b/data/generated/V26_1/data/minecraft/loot_table/entities/pillager.json new file mode 100644 index 00000000..2cbad174 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/pillager.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:raider", + "is_captain": true + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 0.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pillager" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/player.json b/data/generated/V26_1/data/minecraft/loot_table/entities/player.json new file mode 100644 index 00000000..f2a59603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/player.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/player" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/polar_bear.json b/data/generated/V26_1/data/minecraft/loot_table/entities/polar_bear.json new file mode 100644 index 00000000..1e54cf10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/polar_bear.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:cod", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/polar_bear" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/pufferfish.json b/data/generated/V26_1/data/minecraft/loot_table/entities/pufferfish.json new file mode 100644 index 00000000..fa8c356b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/pufferfish.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pufferfish" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pufferfish" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/rabbit.json b/data/generated/V26_1/data/minecraft/loot_table/entities/rabbit.json new file mode 100644 index 00000000..e1f1aa24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/rabbit.json @@ -0,0 +1,123 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit_hide" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.13, + "per_level_above_first": 0.03 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.1 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/rabbit" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/ravager.json b/data/generated/V26_1/data/minecraft/loot_table/entities/ravager.json new file mode 100644 index 00000000..2d47e497 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/ravager.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/ravager" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/salmon.json b/data/generated/V26_1/data/minecraft/loot_table/entities/salmon.json new file mode 100644 index 00000000..e349719f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/salmon.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/salmon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep.json new file mode 100644 index 00000000..5b8069f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep.json @@ -0,0 +1,387 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:mutton" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "white" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/white" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "orange" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/orange" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "magenta" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/magenta" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "light_blue" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/light_blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "yellow" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/yellow" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "lime" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/lime" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "pink" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/pink" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "gray" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "light_gray" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/light_gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "cyan" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/cyan" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "purple" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/purple" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "blue" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "brown" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/brown" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "green" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/green" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "red" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "black" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/black" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/black.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/black.json new file mode 100644 index 00000000..7e80cd55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/black.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/black" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/blue.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/blue.json new file mode 100644 index 00000000..3eee5a16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/blue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/brown.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/brown.json new file mode 100644 index 00000000..39dd224d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/brown" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/cyan.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/cyan.json new file mode 100644 index 00000000..e0edae83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/cyan.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/cyan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/gray.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/gray.json new file mode 100644 index 00000000..4caaae5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/gray" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/green.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/green.json new file mode 100644 index 00000000..6553d9c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/green.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/green" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_blue.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_blue.json new file mode 100644 index 00000000..ef4bddf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_blue.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/light_blue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_gray.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_gray.json new file mode 100644 index 00000000..d1ab7393 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/light_gray.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/light_gray" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/lime.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/lime.json new file mode 100644 index 00000000..4957506b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/lime.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/lime" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/magenta.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/magenta.json new file mode 100644 index 00000000..43710e76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/magenta.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/magenta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/orange.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/orange.json new file mode 100644 index 00000000..ce3ca050 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/orange.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/orange" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/pink.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/pink.json new file mode 100644 index 00000000..135d57ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/pink.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/pink" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/purple.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/purple.json new file mode 100644 index 00000000..d806a96f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/purple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/purple" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/red.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/red.json new file mode 100644 index 00000000..624992ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/red" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/white.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/white.json new file mode 100644 index 00000000..2ba73e39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/white.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/white" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/yellow.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/yellow.json new file mode 100644 index 00000000..edb9ebf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sheep/yellow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/yellow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/shulker.json b/data/generated/V26_1/data/minecraft/loot_table/entities/shulker.json new file mode 100644 index 00000000..67da836b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/shulker.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.5625, + "per_level_above_first": 0.0625 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.5 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shulker_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/shulker" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/silverfish.json b/data/generated/V26_1/data/minecraft/loot_table/entities/silverfish.json new file mode 100644 index 00000000..8499c3aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/silverfish.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/silverfish" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton.json b/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton.json new file mode 100644 index 00000000..c81080f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton_horse.json b/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton_horse.json new file mode 100644 index 00000000..286807ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/skeleton_horse.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/skeleton_horse" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/slime.json b/data/generated/V26_1/data/minecraft/loot_table/entities/slime.json new file mode 100644 index 00000000..4047b14d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/slime.json @@ -0,0 +1,82 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:slime", + "size": 1 + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog" + } + } + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:slime_ball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "type": "minecraft:frog" + } + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:slime_ball" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/slime" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/sniffer.json b/data/generated/V26_1/data/minecraft/loot_table/entities/sniffer.json new file mode 100644 index 00000000..bc023ba7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/sniffer.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/sniffer" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/snow_golem.json b/data/generated/V26_1/data/minecraft/loot_table/entities/snow_golem.json new file mode 100644 index 00000000..df001a22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/snow_golem.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/snow_golem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/spider.json b/data/generated/V26_1/data/minecraft/loot_table/entities/spider.json new file mode 100644 index 00000000..e5309149 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/spider.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/spider" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/squid.json b/data/generated/V26_1/data/minecraft/loot_table/entities/squid.json new file mode 100644 index 00000000..90b24ce7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/squid.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ink_sac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/squid" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/stray.json b/data/generated/V26_1/data/minecraft/loot_table/entities/stray.json new file mode 100644 index 00000000..b521a7a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/stray.json @@ -0,0 +1,106 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/stray" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/strider.json b/data/generated/V26_1/data/minecraft/loot_table/entities/strider.json new file mode 100644 index 00000000..bc484c9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/strider.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/strider" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/tadpole.json b/data/generated/V26_1/data/minecraft/loot_table/entities/tadpole.json new file mode 100644 index 00000000..e5849400 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/tadpole.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/tadpole" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/trader_llama.json b/data/generated/V26_1/data/minecraft/loot_table/entities/trader_llama.json new file mode 100644 index 00000000..76d7c217 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/trader_llama.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/trader_llama" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/tropical_fish.json b/data/generated/V26_1/data/minecraft/loot_table/entities/tropical_fish.json new file mode 100644 index 00000000..9d05e61b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/tropical_fish.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tropical_fish" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/tropical_fish" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/turtle.json b/data/generated/V26_1/data/minecraft/loot_table/entities/turtle.json new file mode 100644 index 00000000..6d8f3042 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/turtle.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:seagrass", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_lightning" + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bowl" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/turtle" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/vex.json b/data/generated/V26_1/data/minecraft/loot_table/entities/vex.json new file mode 100644 index 00000000..b43c526f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/vex.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/vex" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/villager.json b/data/generated/V26_1/data/minecraft/loot_table/entities/villager.json new file mode 100644 index 00000000..76000a05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/villager.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/villager" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/vindicator.json b/data/generated/V26_1/data/minecraft/loot_table/entities/vindicator.json new file mode 100644 index 00000000..f9153dd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/vindicator.json @@ -0,0 +1,41 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/vindicator" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/wandering_trader.json b/data/generated/V26_1/data/minecraft/loot_table/entities/wandering_trader.json new file mode 100644 index 00000000..e329a2b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/wandering_trader.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wandering_trader" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/warden.json b/data/generated/V26_1/data/minecraft/loot_table/entities/warden.json new file mode 100644 index 00000000..641080f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/warden.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_catalyst" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/warden" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/witch.json b/data/generated/V26_1/data/minecraft/loot_table/entities/witch.json new file mode 100644 index 00000000..44689097 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/witch.json @@ -0,0 +1,191 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glowstone_dust" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:sugar" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glass_bottle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:stick", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:redstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/witch" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/wither.json b/data/generated/V26_1/data/minecraft/loot_table/entities/wither.json new file mode 100644 index 00000000..91301c93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/wither.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wither" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/wither_skeleton.json b/data/generated/V26_1/data/minecraft/loot_table/entities/wither_skeleton.json new file mode 100644 index 00000000..a5a9a5a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/wither_skeleton.json @@ -0,0 +1,91 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:coal" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/wither_skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/wolf.json b/data/generated/V26_1/data/minecraft/loot_table/entities/wolf.json new file mode 100644 index 00000000..baf3ea80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/wolf.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wolf" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zoglin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zoglin.json new file mode 100644 index 00000000..cbb21c24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zoglin.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zoglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zombie.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie.json new file mode 100644 index 00000000..61c72f94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie.json @@ -0,0 +1,175 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "vehicle": { + "type": "minecraft:zombie_horse" + } + } + } + ], + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_baby": true + }, + "vehicle": { + "type": "minecraft:chicken" + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:music_disc_lava_chicken" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_horse.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_horse.json new file mode 100644 index 00000000..1f8adf35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_horse.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_horse" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_nautilus.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_nautilus.json new file mode 100644 index 00000000..e774f5f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_nautilus.json @@ -0,0 +1,41 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_nautilus" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_villager.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_villager.json new file mode 100644 index 00000000..3f3776e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zombie_villager.json @@ -0,0 +1,107 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_villager" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/entities/zombified_piglin.json b/data/generated/V26_1/data/minecraft/loot_table/entities/zombified_piglin.json new file mode 100644 index 00000000..9bd71b3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/entities/zombified_piglin.json @@ -0,0 +1,91 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gold_nugget" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombified_piglin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber.json b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber.json new file mode 100644 index 00000000..990aa0be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber.json @@ -0,0 +1,251 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:bolt" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:chainmail_helmet" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:bolt" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:chainmail_chestplate" + } + ], + "rolls": 1.0 + } + ] + }, + "weight": 4 + }, + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_helmet" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_chestplate" + } + ], + "rolls": 1.0 + } + ] + }, + "weight": 2 + }, + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:diamond_helmet" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "add": false, + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:diamond_chestplate" + } + ], + "rolls": 1.0 + } + ] + } + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_melee.json b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_melee.json new file mode 100644 index 00000000..03a2ed71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_melee.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:equipment/trial_chamber" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "enchantments": { + "minecraft:sharpness": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "enchantments": { + "minecraft:knockback": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber_melee" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_ranged.json b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_ranged.json new file mode 100644 index 00000000..d03309d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/equipment/trial_chamber_ranged.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:equipment/trial_chamber" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "enchantments": { + "minecraft:power": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:bow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "enchantments": { + "minecraft:punch": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:bow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber_ranged" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/armadillo_shed.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/armadillo_shed.json new file mode 100644 index 00000000..aca0282d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/armadillo_shed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:armadillo_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/armadillo_shed" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/cat_morning_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/cat_morning_gift.json new file mode 100644 index 00000000..11a1df6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/cat_morning_gift.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rabbit_hide", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:chicken", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:feather", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:phantom_membrane", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/cat_morning_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/chicken_lay.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/chicken_lay.json new file mode 100644 index 00000000..1cbcbc49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/chicken_lay.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:chicken/variant": "minecraft:temperate" + } + } + } + ], + "name": "minecraft:egg" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:chicken/variant": "minecraft:warm" + } + } + } + ], + "name": "minecraft:brown_egg" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:chicken/variant": "minecraft:cold" + } + } + } + ], + "name": "minecraft:blue_egg" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/chicken_lay" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing.json new file mode 100644 index 00000000..f501b335 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:loot_table", + "quality": -2, + "value": "minecraft:gameplay/fishing/junk", + "weight": 10 + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "type_specific": { + "type": "minecraft:fishing_hook", + "in_open_water": true + } + } + } + ], + "quality": 2, + "value": "minecraft:gameplay/fishing/treasure", + "weight": 5 + }, + { + "type": "minecraft:loot_table", + "quality": -1, + "value": "minecraft:gameplay/fishing/fish", + "weight": 85 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/fish.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/fish.json new file mode 100644 index 00000000..ec7badb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/fish.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cod", + "weight": 60 + }, + { + "type": "minecraft:item", + "name": "minecraft:salmon", + "weight": 25 + }, + { + "type": "minecraft:item", + "name": "minecraft:tropical_fish", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:pufferfish", + "weight": 13 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/fish" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/junk.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/junk.json new file mode 100644 index 00000000..6d2e0ef1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/junk.json @@ -0,0 +1,123 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_pad", + "weight": 17 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.0 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:leather_boots", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water" + } + ], + "name": "minecraft:potion", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:string", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.0 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:fishing_rod", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:bowl", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stick", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 10.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ink_sac" + }, + { + "type": "minecraft:item", + "name": "minecraft:tripwire_hook", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": [ + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle" + ] + } + } + ], + "name": "minecraft:bamboo", + "weight": 10 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/junk" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/treasure.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/treasure.json new file mode 100644 index 00000000..974c3885 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/fishing/treasure.json @@ -0,0 +1,75 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:name_tag" + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.25, + "min": 0.0 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:bow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "damage": { + "type": "minecraft:uniform", + "max": 0.25, + "min": 0.0 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "name": "minecraft:nautilus_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/treasure" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json new file mode 100644 index 00000000..5aec602d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chainmail_helmet" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_leggings" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_boots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/armorer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json new file mode 100644 index 00000000..62ec102f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/baby_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json new file mode 100644 index 00000000..c90ae711 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cooked_rabbit" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_chicken" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_porkchop" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_beef" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_mutton" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/butcher_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json new file mode 100644 index 00000000..331d5d55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:paper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/cartographer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json new file mode 100644 index 00000000..140d3dcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone" + }, + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/cleric_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json new file mode 100644 index 00000000..ec3eef7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bread" + }, + { + "type": "minecraft:item", + "name": "minecraft:pumpkin_pie" + }, + { + "type": "minecraft:item", + "name": "minecraft:cookie" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/farmer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json new file mode 100644 index 00000000..f5e605c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cod" + }, + { + "type": "minecraft:item", + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/fisherman_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json new file mode 100644 index 00000000..4640b8a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json @@ -0,0 +1,264 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 26 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:healing" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:harming" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:leaping" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:water_breathing" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:invisibility" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:night_vision" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/fletcher_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json new file mode 100644 index 00000000..257c9494 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/leatherworker_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json new file mode 100644 index 00000000..5d2570dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/librarian_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json new file mode 100644 index 00000000..ca902e57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/mason_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json new file mode 100644 index 00000000..847ea322 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json @@ -0,0 +1,76 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/shepherd_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json new file mode 100644 index 00000000..3063329e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pickaxe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_hoe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_shovel" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/toolsmith_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json new file mode 100644 index 00000000..2ffcb47d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/unemployed_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json new file mode 100644 index 00000000..2d9a247f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/weaponsmith_gift" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/panda_sneeze.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/panda_sneeze.json new file mode 100644 index 00000000..a937ccb9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/panda_sneeze.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:slime_ball" + }, + { + "type": "minecraft:empty", + "weight": 699 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/panda_sneeze" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/piglin_bartering.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/piglin_bartering.json new file mode 100644 index 00000000..97a5e3f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/piglin_bartering.json @@ -0,0 +1,265 @@ +{ + "type": "minecraft:barter", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:iron_boots", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:potion", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:splash_potion", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water" + } + ], + "name": "minecraft:potion", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 36.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ender_pearl", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dried_ghast", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:quartz", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:fire_charge", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_sand", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:nether_brick", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gravel", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:blackstone", + "weight": 40 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/piglin_bartering" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/sniffer_digging.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/sniffer_digging.json new file mode 100644 index 00000000..acc1e97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/sniffer_digging.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:pitcher_pod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/sniffer_digging" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/gameplay/turtle_grow.json b/data/generated/V26_1/data/minecraft/loot_table/gameplay/turtle_grow.json new file mode 100644 index 00000000..c494a92b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/gameplay/turtle_grow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:turtle_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/turtle_grow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/harvest/beehive.json b/data/generated/V26_1/data/minecraft/loot_table/harvest/beehive.json new file mode 100644 index 00000000..c8028d01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/harvest/beehive.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/beehive" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/harvest/cave_vine.json b/data/generated/V26_1/data/minecraft/loot_table/harvest/cave_vine.json new file mode 100644 index 00000000..117f6635 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/harvest/cave_vine.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/cave_vine" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/harvest/sweet_berry_bush.json b/data/generated/V26_1/data/minecraft/loot_table/harvest/sweet_berry_bush.json new file mode 100644 index 00000000..bdc459fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/harvest/sweet_berry_bush.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/sweet_berry_bush" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/pots/trial_chambers/corridor.json b/data/generated/V26_1/data/minecraft/loot_table/pots/trial_chambers/corridor.json new file mode 100644 index 00000000..d45a17ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/pots/trial_chambers/corridor.json @@ -0,0 +1,116 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 125 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 100 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:trial_key", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_creator_music_box", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:pots/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/bogged.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/bogged.json new file mode 100644 index 00000000..5ef6804e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/bogged.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:brown_mushroom" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:red_mushroom" + } + ], + "rolls": 2.0 + } + ], + "random_sequence": "minecraft:shearing/bogged" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom.json new file mode 100644 index 00000000..0c2c6225 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom.json @@ -0,0 +1,47 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:mooshroom/variant": "red" + } + } + } + ], + "value": "minecraft:shearing/mooshroom/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:mooshroom/variant": "brown" + } + } + } + ], + "value": "minecraft:shearing/mooshroom/brown" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/brown.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/brown.json new file mode 100644 index 00000000..0110137a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/brown.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 5.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom/brown" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/red.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/red.json new file mode 100644 index 00000000..cb88f481 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/mooshroom/red.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 5.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom/red" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep.json new file mode 100644 index 00000000..dfb6a5ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep.json @@ -0,0 +1,321 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "white" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/white" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "orange" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/orange" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "magenta" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/magenta" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "light_blue" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/light_blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "yellow" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/yellow" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "lime" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/lime" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "pink" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/pink" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "gray" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "light_gray" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/light_gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "cyan" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/cyan" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "purple" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/purple" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "blue" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "brown" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/brown" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "green" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/green" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "red" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "components": { + "minecraft:sheep/color": "black" + }, + "type_specific": { + "type": "minecraft:sheep", + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/black" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/sheep" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/black.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/black.json new file mode 100644 index 00000000..42db5aa2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/black.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/black" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/blue.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/blue.json new file mode 100644 index 00000000..604d1ed2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/blue.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/blue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/brown.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/brown.json new file mode 100644 index 00000000..e6cf9a89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/brown.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/brown" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/cyan.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/cyan.json new file mode 100644 index 00000000..e26e816f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/cyan.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/cyan" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/gray.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/gray.json new file mode 100644 index 00000000..38b16d28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/gray.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/gray" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/green.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/green.json new file mode 100644 index 00000000..5dbcb37a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/green.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/green" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_blue.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_blue.json new file mode 100644 index 00000000..02993a97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_blue.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/light_blue" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_gray.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_gray.json new file mode 100644 index 00000000..c0a91443 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/light_gray.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/light_gray" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/lime.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/lime.json new file mode 100644 index 00000000..08c14074 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/lime.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/lime" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/magenta.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/magenta.json new file mode 100644 index 00000000..66e4ad8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/magenta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/magenta" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/orange.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/orange.json new file mode 100644 index 00000000..923cdfe6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/orange.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/orange" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/pink.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/pink.json new file mode 100644 index 00000000..721234d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/pink.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/pink" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/purple.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/purple.json new file mode 100644 index 00000000..707becba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/purple.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/purple" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/red.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/red.json new file mode 100644 index 00000000..85df9c58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/red.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/red" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/white.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/white.json new file mode 100644 index 00000000..a14d9740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/white.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/white" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/yellow.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/yellow.json new file mode 100644 index 00000000..de15f5fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/sheep/yellow.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/yellow" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/shearing/snow_golem.json b/data/generated/V26_1/data/minecraft/loot_table/shearing/snow_golem.json new file mode 100644 index 00000000..6e020599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/shearing/snow_golem.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/snow_golem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json b/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json new file mode 100644 index 00000000..dca8a875 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_beef", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/ominous/trial_chamber/consumables" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json b/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json new file mode 100644 index 00000000..226f57f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ominous_trial_key" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/ominous/trial_chamber/key" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/consumables.json b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/consumables.json new file mode 100644 index 00000000..a26d23fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/consumables.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_chicken", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/consumables" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json new file mode 100644 index 00000000..afb82f4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json @@ -0,0 +1,194 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:wind_charged" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:oozing" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weaving" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:infested" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slow_falling" + } + ], + "name": "minecraft:lingering_potion" + } + ], + "rolls": 1.0 + }, + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_slowness" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fire_charge" + }, + { + "type": "minecraft:item", + "functions": [ + { + "add": false, + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/items_to_drop_when_ominous" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/key.json b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/key.json new file mode 100644 index 00000000..5ee213b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/loot_table/spawners/trial_chamber/key.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "bonus_rolls": 0.0, + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:trial_key" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/key" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/alban.json b/data/generated/V26_1/data/minecraft/painting_variant/alban.json new file mode 100644 index 00000000..39719caf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/alban.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:alban", + "author": { + "color": "gray", + "translate": "painting.minecraft.alban.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.alban.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/aztec.json b/data/generated/V26_1/data/minecraft/painting_variant/aztec.json new file mode 100644 index 00000000..40c37293 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/aztec.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:aztec", + "author": { + "color": "gray", + "translate": "painting.minecraft.aztec.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.aztec.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/aztec2.json b/data/generated/V26_1/data/minecraft/painting_variant/aztec2.json new file mode 100644 index 00000000..28a521fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/aztec2.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:aztec2", + "author": { + "color": "gray", + "translate": "painting.minecraft.aztec2.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.aztec2.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/backyard.json b/data/generated/V26_1/data/minecraft/painting_variant/backyard.json new file mode 100644 index 00000000..cdd3fc32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/backyard.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:backyard", + "author": { + "color": "gray", + "translate": "painting.minecraft.backyard.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.backyard.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/baroque.json b/data/generated/V26_1/data/minecraft/painting_variant/baroque.json new file mode 100644 index 00000000..3c593a1a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/baroque.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:baroque", + "author": { + "color": "gray", + "translate": "painting.minecraft.baroque.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.baroque.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/bomb.json b/data/generated/V26_1/data/minecraft/painting_variant/bomb.json new file mode 100644 index 00000000..ec784d2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/bomb.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bomb", + "author": { + "color": "gray", + "translate": "painting.minecraft.bomb.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bomb.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/bouquet.json b/data/generated/V26_1/data/minecraft/painting_variant/bouquet.json new file mode 100644 index 00000000..1d8a4197 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/bouquet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bouquet", + "author": { + "color": "gray", + "translate": "painting.minecraft.bouquet.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bouquet.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/burning_skull.json b/data/generated/V26_1/data/minecraft/painting_variant/burning_skull.json new file mode 100644 index 00000000..5d28fe28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/burning_skull.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:burning_skull", + "author": { + "color": "gray", + "translate": "painting.minecraft.burning_skull.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.burning_skull.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/bust.json b/data/generated/V26_1/data/minecraft/painting_variant/bust.json new file mode 100644 index 00000000..4df7b603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/bust.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bust", + "author": { + "color": "gray", + "translate": "painting.minecraft.bust.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bust.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/cavebird.json b/data/generated/V26_1/data/minecraft/painting_variant/cavebird.json new file mode 100644 index 00000000..1ab7483e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/cavebird.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:cavebird", + "author": { + "color": "gray", + "translate": "painting.minecraft.cavebird.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.cavebird.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/changing.json b/data/generated/V26_1/data/minecraft/painting_variant/changing.json new file mode 100644 index 00000000..4afe2442 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/changing.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:changing", + "author": { + "color": "gray", + "translate": "painting.minecraft.changing.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.changing.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/cotan.json b/data/generated/V26_1/data/minecraft/painting_variant/cotan.json new file mode 100644 index 00000000..067feffe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/cotan.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:cotan", + "author": { + "color": "gray", + "translate": "painting.minecraft.cotan.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.cotan.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/courbet.json b/data/generated/V26_1/data/minecraft/painting_variant/courbet.json new file mode 100644 index 00000000..6cd1b831 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/courbet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:courbet", + "author": { + "color": "gray", + "translate": "painting.minecraft.courbet.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.courbet.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/creebet.json b/data/generated/V26_1/data/minecraft/painting_variant/creebet.json new file mode 100644 index 00000000..69710652 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/creebet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:creebet", + "author": { + "color": "gray", + "translate": "painting.minecraft.creebet.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.creebet.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/dennis.json b/data/generated/V26_1/data/minecraft/painting_variant/dennis.json new file mode 100644 index 00000000..468684c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/dennis.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:dennis", + "author": { + "color": "gray", + "translate": "painting.minecraft.dennis.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.dennis.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/donkey_kong.json b/data/generated/V26_1/data/minecraft/painting_variant/donkey_kong.json new file mode 100644 index 00000000..79ecbd00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/donkey_kong.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:donkey_kong", + "author": { + "color": "gray", + "translate": "painting.minecraft.donkey_kong.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.donkey_kong.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/earth.json b/data/generated/V26_1/data/minecraft/painting_variant/earth.json new file mode 100644 index 00000000..d52b2366 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/earth.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:earth", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.earth.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/endboss.json b/data/generated/V26_1/data/minecraft/painting_variant/endboss.json new file mode 100644 index 00000000..5d869183 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/endboss.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:endboss", + "author": { + "color": "gray", + "translate": "painting.minecraft.endboss.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.endboss.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/fern.json b/data/generated/V26_1/data/minecraft/painting_variant/fern.json new file mode 100644 index 00000000..49db47d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/fern.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:fern", + "author": { + "color": "gray", + "translate": "painting.minecraft.fern.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fern.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/fighters.json b/data/generated/V26_1/data/minecraft/painting_variant/fighters.json new file mode 100644 index 00000000..091530d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/fighters.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:fighters", + "author": { + "color": "gray", + "translate": "painting.minecraft.fighters.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fighters.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/finding.json b/data/generated/V26_1/data/minecraft/painting_variant/finding.json new file mode 100644 index 00000000..235cb6b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/finding.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:finding", + "author": { + "color": "gray", + "translate": "painting.minecraft.finding.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.finding.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/fire.json b/data/generated/V26_1/data/minecraft/painting_variant/fire.json new file mode 100644 index 00000000..ff45c9ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/fire.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:fire", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fire.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/graham.json b/data/generated/V26_1/data/minecraft/painting_variant/graham.json new file mode 100644 index 00000000..c34738ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/graham.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:graham", + "author": { + "color": "gray", + "translate": "painting.minecraft.graham.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.graham.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/humble.json b/data/generated/V26_1/data/minecraft/painting_variant/humble.json new file mode 100644 index 00000000..36343392 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/humble.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:humble", + "author": { + "color": "gray", + "translate": "painting.minecraft.humble.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.humble.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/kebab.json b/data/generated/V26_1/data/minecraft/painting_variant/kebab.json new file mode 100644 index 00000000..bff9be3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/kebab.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:kebab", + "author": { + "color": "gray", + "translate": "painting.minecraft.kebab.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.kebab.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/lowmist.json b/data/generated/V26_1/data/minecraft/painting_variant/lowmist.json new file mode 100644 index 00000000..d052c782 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/lowmist.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:lowmist", + "author": { + "color": "gray", + "translate": "painting.minecraft.lowmist.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.lowmist.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/match.json b/data/generated/V26_1/data/minecraft/painting_variant/match.json new file mode 100644 index 00000000..477fd009 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/match.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:match", + "author": { + "color": "gray", + "translate": "painting.minecraft.match.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.match.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/meditative.json b/data/generated/V26_1/data/minecraft/painting_variant/meditative.json new file mode 100644 index 00000000..95b0559d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/meditative.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:meditative", + "author": { + "color": "gray", + "translate": "painting.minecraft.meditative.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.meditative.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/orb.json b/data/generated/V26_1/data/minecraft/painting_variant/orb.json new file mode 100644 index 00000000..0095844d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/orb.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:orb", + "author": { + "color": "gray", + "translate": "painting.minecraft.orb.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.orb.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/owlemons.json b/data/generated/V26_1/data/minecraft/painting_variant/owlemons.json new file mode 100644 index 00000000..2909f999 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/owlemons.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:owlemons", + "author": { + "color": "gray", + "translate": "painting.minecraft.owlemons.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.owlemons.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/passage.json b/data/generated/V26_1/data/minecraft/painting_variant/passage.json new file mode 100644 index 00000000..dc50ade6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/passage.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:passage", + "author": { + "color": "gray", + "translate": "painting.minecraft.passage.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.passage.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/pigscene.json b/data/generated/V26_1/data/minecraft/painting_variant/pigscene.json new file mode 100644 index 00000000..b9701d6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/pigscene.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pigscene", + "author": { + "color": "gray", + "translate": "painting.minecraft.pigscene.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pigscene.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/plant.json b/data/generated/V26_1/data/minecraft/painting_variant/plant.json new file mode 100644 index 00000000..35532b66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/plant.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:plant", + "author": { + "color": "gray", + "translate": "painting.minecraft.plant.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.plant.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/pointer.json b/data/generated/V26_1/data/minecraft/painting_variant/pointer.json new file mode 100644 index 00000000..747ca76d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/pointer.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pointer", + "author": { + "color": "gray", + "translate": "painting.minecraft.pointer.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pointer.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/pond.json b/data/generated/V26_1/data/minecraft/painting_variant/pond.json new file mode 100644 index 00000000..2aeccf97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/pond.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pond", + "author": { + "color": "gray", + "translate": "painting.minecraft.pond.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pond.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/pool.json b/data/generated/V26_1/data/minecraft/painting_variant/pool.json new file mode 100644 index 00000000..9fd50436 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/pool.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pool", + "author": { + "color": "gray", + "translate": "painting.minecraft.pool.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pool.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/prairie_ride.json b/data/generated/V26_1/data/minecraft/painting_variant/prairie_ride.json new file mode 100644 index 00000000..e7b73be3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/prairie_ride.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:prairie_ride", + "author": { + "color": "gray", + "translate": "painting.minecraft.prairie_ride.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.prairie_ride.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/sea.json b/data/generated/V26_1/data/minecraft/painting_variant/sea.json new file mode 100644 index 00000000..43bd6880 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/sea.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sea", + "author": { + "color": "gray", + "translate": "painting.minecraft.sea.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sea.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/skeleton.json b/data/generated/V26_1/data/minecraft/painting_variant/skeleton.json new file mode 100644 index 00000000..cbf93d8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/skeleton.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:skeleton", + "author": { + "color": "gray", + "translate": "painting.minecraft.skeleton.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.skeleton.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/skull_and_roses.json b/data/generated/V26_1/data/minecraft/painting_variant/skull_and_roses.json new file mode 100644 index 00000000..88cfc580 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/skull_and_roses.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:skull_and_roses", + "author": { + "color": "gray", + "translate": "painting.minecraft.skull_and_roses.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.skull_and_roses.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/stage.json b/data/generated/V26_1/data/minecraft/painting_variant/stage.json new file mode 100644 index 00000000..001e7a86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/stage.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:stage", + "author": { + "color": "gray", + "translate": "painting.minecraft.stage.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.stage.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/sunflowers.json b/data/generated/V26_1/data/minecraft/painting_variant/sunflowers.json new file mode 100644 index 00000000..837dd239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/sunflowers.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sunflowers", + "author": { + "color": "gray", + "translate": "painting.minecraft.sunflowers.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sunflowers.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/sunset.json b/data/generated/V26_1/data/minecraft/painting_variant/sunset.json new file mode 100644 index 00000000..a2b4470d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/sunset.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sunset", + "author": { + "color": "gray", + "translate": "painting.minecraft.sunset.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sunset.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/tides.json b/data/generated/V26_1/data/minecraft/painting_variant/tides.json new file mode 100644 index 00000000..c40d3b1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/tides.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:tides", + "author": { + "color": "gray", + "translate": "painting.minecraft.tides.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.tides.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/unpacked.json b/data/generated/V26_1/data/minecraft/painting_variant/unpacked.json new file mode 100644 index 00000000..5a21cc02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/unpacked.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:unpacked", + "author": { + "color": "gray", + "translate": "painting.minecraft.unpacked.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.unpacked.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/void.json b/data/generated/V26_1/data/minecraft/painting_variant/void.json new file mode 100644 index 00000000..0ce54d48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/void.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:void", + "author": { + "color": "gray", + "translate": "painting.minecraft.void.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.void.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/wanderer.json b/data/generated/V26_1/data/minecraft/painting_variant/wanderer.json new file mode 100644 index 00000000..c62b6b64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/wanderer.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:wanderer", + "author": { + "color": "gray", + "translate": "painting.minecraft.wanderer.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wanderer.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/wasteland.json b/data/generated/V26_1/data/minecraft/painting_variant/wasteland.json new file mode 100644 index 00000000..a126eb24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/wasteland.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:wasteland", + "author": { + "color": "gray", + "translate": "painting.minecraft.wasteland.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wasteland.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/water.json b/data/generated/V26_1/data/minecraft/painting_variant/water.json new file mode 100644 index 00000000..f358ae77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/water.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:water", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.water.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/wind.json b/data/generated/V26_1/data/minecraft/painting_variant/wind.json new file mode 100644 index 00000000..6b836028 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/wind.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:wind", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wind.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/painting_variant/wither.json b/data/generated/V26_1/data/minecraft/painting_variant/wither.json new file mode 100644 index 00000000..8ece65fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/painting_variant/wither.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:wither", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wither.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_sound_variant/big.json b/data/generated/V26_1/data/minecraft/pig_sound_variant/big.json new file mode 100644 index 00000000..14f930f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_sound_variant/big.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig_big.ambient", + "death_sound": "minecraft:entity.pig_big.death", + "eat_sound": "minecraft:entity.pig_big.eat", + "hurt_sound": "minecraft:entity.pig_big.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_sound_variant/classic.json b/data/generated/V26_1/data/minecraft/pig_sound_variant/classic.json new file mode 100644 index 00000000..c11dda99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_sound_variant/classic.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig.ambient", + "death_sound": "minecraft:entity.pig.death", + "eat_sound": "minecraft:entity.pig.eat", + "hurt_sound": "minecraft:entity.pig.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_sound_variant/mini.json b/data/generated/V26_1/data/minecraft/pig_sound_variant/mini.json new file mode 100644 index 00000000..e9c414af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_sound_variant/mini.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig_mini.ambient", + "death_sound": "minecraft:entity.pig_mini.death", + "eat_sound": "minecraft:entity.pig_mini.eat", + "hurt_sound": "minecraft:entity.pig_mini.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_variant/cold.json b/data/generated/V26_1/data/minecraft/pig_variant/cold.json new file mode 100644 index 00000000..3d62fdd0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/pig/pig_cold", + "baby_asset_id": "minecraft:entity/pig/pig_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_variant/temperate.json b/data/generated/V26_1/data/minecraft/pig_variant/temperate.json new file mode 100644 index 00000000..0fd985d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/pig/pig_temperate", + "baby_asset_id": "minecraft:entity/pig/pig_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/pig_variant/warm.json b/data/generated/V26_1/data/minecraft/pig_variant/warm.json new file mode 100644 index 00000000..491ec461 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/pig_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/pig/pig_warm", + "baby_asset_id": "minecraft:entity/pig/pig_warm_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_boat.json b/data/generated/V26_1/data/minecraft/recipe/acacia_boat.json new file mode 100644 index 00000000..3a4c483d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:acacia_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_button.json b/data/generated/V26_1/data/minecraft/recipe/acacia_button.json new file mode 100644 index 00000000..08cf20c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:acacia_planks" + ], + "result": { + "id": "minecraft:acacia_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/acacia_chest_boat.json new file mode 100644 index 00000000..46e688cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:acacia_boat" + ], + "result": { + "id": "minecraft:acacia_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_door.json b/data/generated/V26_1/data/minecraft/recipe/acacia_door.json new file mode 100644 index 00000000..77ad9700 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_fence.json b/data/generated/V26_1/data/minecraft/recipe/acacia_fence.json new file mode 100644 index 00000000..9ea5963c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:acacia_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/acacia_fence_gate.json new file mode 100644 index 00000000..361e32c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:acacia_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:acacia_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/acacia_hanging_sign.json new file mode 100644 index 00000000..ec34b9e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_acacia_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_planks.json b/data/generated/V26_1/data/minecraft/recipe/acacia_planks.json new file mode 100644 index 00000000..11e6cdf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:acacia_logs" + ], + "result": { + "count": 4, + "id": "minecraft:acacia_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/acacia_pressure_plate.json new file mode 100644 index 00000000..14b1df97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:acacia_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_shelf.json b/data/generated/V26_1/data/minecraft/recipe/acacia_shelf.json new file mode 100644 index 00000000..efbc5373 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_acacia_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_sign.json b/data/generated/V26_1/data/minecraft/recipe/acacia_sign.json new file mode 100644 index 00000000..4a895db2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:acacia_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:acacia_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_slab.json b/data/generated/V26_1/data/minecraft/recipe/acacia_slab.json new file mode 100644 index 00000000..aab58b72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_stairs.json b/data/generated/V26_1/data/minecraft/recipe/acacia_stairs.json new file mode 100644 index 00000000..dab8cea4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:acacia_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/acacia_trapdoor.json new file mode 100644 index 00000000..afd5eab3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:acacia_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/acacia_wood.json b/data/generated/V26_1/data/minecraft/recipe/acacia_wood.json new file mode 100644 index 00000000..91eba8b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/acacia_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:acacia_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/activator_rail.json b/data/generated/V26_1/data/minecraft/recipe/activator_rail.json new file mode 100644 index 00000000..f876a587 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/activator_rail.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:redstone_torch", + "S": "minecraft:stick", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XSX", + "X#X", + "XSX" + ], + "result": { + "count": 6, + "id": "minecraft:activator_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/amethyst_block.json b/data/generated/V26_1/data/minecraft/recipe/amethyst_block.json new file mode 100644 index 00000000..f15ca439 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/amethyst_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:amethyst_shard" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:amethyst_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite.json b/data/generated/V26_1/data/minecraft/recipe/andesite.json new file mode 100644 index 00000000..175f9782 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "minecraft:cobblestone" + ], + "result": { + "count": 2, + "id": "minecraft:andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_slab.json b/data/generated/V26_1/data/minecraft/recipe/andesite_slab.json new file mode 100644 index 00000000..8bfed611 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..532712b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "count": 2, + "id": "minecraft:andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/andesite_stairs.json new file mode 100644 index 00000000..2d01ba99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..f7d2b742 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_wall.json b/data/generated/V26_1/data/minecraft/recipe/andesite_wall.json new file mode 100644 index 00000000..d42c659a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:andesite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json new file mode 100644 index 00000000..5f40dd37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:andesite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/anvil.json b/data/generated/V26_1/data/minecraft/recipe/anvil.json new file mode 100644 index 00000000..6a3ed84b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/anvil.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": "minecraft:iron_block", + "i": "minecraft:iron_ingot" + }, + "pattern": [ + "III", + " i ", + "iii" + ], + "result": { + "id": "minecraft:anvil" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/armor_stand.json b/data/generated/V26_1/data/minecraft/recipe/armor_stand.json new file mode 100644 index 00000000..7c6a8635 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/armor_stand.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "/": "minecraft:stick", + "_": "minecraft:smooth_stone_slab" + }, + "pattern": [ + "///", + " / ", + "/_/" + ], + "result": { + "id": "minecraft:armor_stand" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/arrow.json b/data/generated/V26_1/data/minecraft/recipe/arrow.json new file mode 100644 index 00000000..9a34cf3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/arrow.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:flint", + "Y": "minecraft:feather" + }, + "pattern": [ + "X", + "#", + "Y" + ], + "result": { + "count": 4, + "id": "minecraft:arrow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/baked_potato.json b/data/generated/V26_1/data/minecraft/recipe/baked_potato.json new file mode 100644 index 00000000..23a0bfb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/baked_potato.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_campfire_cooking.json new file mode 100644 index 00000000..0264ae3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_smoking.json new file mode 100644 index 00000000..8f7c140e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/baked_potato_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_block.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_block.json new file mode 100644 index 00000000..6894a3dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo" + ], + "result": { + "id": "minecraft:bamboo_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_button.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_button.json new file mode 100644 index 00000000..f52ed5b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:bamboo_planks" + ], + "result": { + "id": "minecraft:bamboo_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_chest_raft.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_chest_raft.json new file mode 100644 index 00000000..10012be0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_chest_raft.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:bamboo_raft" + ], + "result": { + "id": "minecraft:bamboo_chest_raft" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_door.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_door.json new file mode 100644 index 00000000..b64b813d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_fence.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_fence.json new file mode 100644 index 00000000..41f01abd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:bamboo_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_fence_gate.json new file mode 100644 index 00000000..bdcd2f4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:bamboo_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_hanging_sign.json new file mode 100644 index 00000000..8238dd3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_bamboo_block", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic.json new file mode 100644 index 00000000..878af742 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:bamboo_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:bamboo_mosaic" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_slab.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_slab.json new file mode 100644 index 00000000..2c38121b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bamboo_mosaic" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_mosaic_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_stairs.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..bb31c264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_mosaic_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bamboo_mosaic" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:bamboo_mosaic_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_planks.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_planks.json new file mode 100644 index 00000000..60bed79a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:bamboo_blocks" + ], + "result": { + "count": 2, + "id": "minecraft:bamboo_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_pressure_plate.json new file mode 100644 index 00000000..34446a54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:bamboo_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_raft.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_raft.json new file mode 100644 index 00000000..29bbddea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_raft.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:bamboo_raft" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_shelf.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_shelf.json new file mode 100644 index 00000000..52aeb24d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_bamboo_block" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_sign.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_sign.json new file mode 100644 index 00000000..3d4ade12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:bamboo_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_slab.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_slab.json new file mode 100644 index 00000000..47fed4ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_stairs.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_stairs.json new file mode 100644 index 00000000..afd3757a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:bamboo_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bamboo_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/bamboo_trapdoor.json new file mode 100644 index 00000000..2e5286cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bamboo_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/barrel.json b/data/generated/V26_1/data/minecraft/recipe/barrel.json new file mode 100644 index 00000000..14bc7daf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/barrel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "P": "#minecraft:planks", + "S": "#minecraft:wooden_slabs" + }, + "pattern": [ + "PSP", + "P P", + "PSP" + ], + "result": { + "id": "minecraft:barrel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/beacon.json b/data/generated/V26_1/data/minecraft/recipe/beacon.json new file mode 100644 index 00000000..3b5df07e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/beacon.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "G": "minecraft:glass", + "O": "minecraft:obsidian", + "S": "minecraft:nether_star" + }, + "pattern": [ + "GGG", + "GSG", + "OOO" + ], + "result": { + "id": "minecraft:beacon" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/beehive.json b/data/generated/V26_1/data/minecraft/recipe/beehive.json new file mode 100644 index 00000000..bd5a2ebe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/beehive.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "H": "minecraft:honeycomb", + "P": "#minecraft:planks" + }, + "pattern": [ + "PPP", + "HHH", + "PPP" + ], + "result": { + "id": "minecraft:beehive" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/beetroot_soup.json b/data/generated/V26_1/data/minecraft/recipe/beetroot_soup.json new file mode 100644 index 00000000..55ec612b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/beetroot_soup.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:bowl", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot" + ], + "result": { + "id": "minecraft:beetroot_soup" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_boat.json b/data/generated/V26_1/data/minecraft/recipe/birch_boat.json new file mode 100644 index 00000000..297900a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:birch_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_button.json b/data/generated/V26_1/data/minecraft/recipe/birch_button.json new file mode 100644 index 00000000..ac77554d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:birch_planks" + ], + "result": { + "id": "minecraft:birch_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/birch_chest_boat.json new file mode 100644 index 00000000..62858318 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:birch_boat" + ], + "result": { + "id": "minecraft:birch_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_door.json b/data/generated/V26_1/data/minecraft/recipe/birch_door.json new file mode 100644 index 00000000..0f0a8f5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:birch_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_fence.json b/data/generated/V26_1/data/minecraft/recipe/birch_fence.json new file mode 100644 index 00000000..6e4d2bc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:birch_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:birch_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/birch_fence_gate.json new file mode 100644 index 00000000..40851602 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:birch_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:birch_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/birch_hanging_sign.json new file mode 100644 index 00000000..b6fda661 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_birch_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_planks.json b/data/generated/V26_1/data/minecraft/recipe/birch_planks.json new file mode 100644 index 00000000..0921e692 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:birch_logs" + ], + "result": { + "count": 4, + "id": "minecraft:birch_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/birch_pressure_plate.json new file mode 100644 index 00000000..11249bd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:birch_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_shelf.json b/data/generated/V26_1/data/minecraft/recipe/birch_shelf.json new file mode 100644 index 00000000..e5a4aac2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_birch_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_sign.json b/data/generated/V26_1/data/minecraft/recipe/birch_sign.json new file mode 100644 index 00000000..524bde5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:birch_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:birch_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_slab.json b/data/generated/V26_1/data/minecraft/recipe/birch_slab.json new file mode 100644 index 00000000..87061e5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_stairs.json b/data/generated/V26_1/data/minecraft/recipe/birch_stairs.json new file mode 100644 index 00000000..c2048596 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:birch_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/birch_trapdoor.json new file mode 100644 index 00000000..128944b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:birch_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/birch_wood.json b/data/generated/V26_1/data/minecraft/recipe/birch_wood.json new file mode 100644 index 00000000..4fddaabb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/birch_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:birch_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:birch_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_banner.json b/data/generated/V26_1/data/minecraft/recipe/black_banner.json new file mode 100644 index 00000000..18ec3ecb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:black_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:black_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/black_banner_duplicate.json new file mode 100644 index 00000000..61b159b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:black_banner", + "result": { + "id": "minecraft:black_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_bed.json b/data/generated/V26_1/data/minecraft/recipe/black_bed.json new file mode 100644 index 00000000..1b97fb33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:black_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:black_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_bundle.json b/data/generated/V26_1/data/minecraft/recipe/black_bundle.json new file mode 100644 index 00000000..fa0cafcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:black_dye", + "result": { + "id": "minecraft:black_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_candle.json b/data/generated/V26_1/data/minecraft/recipe/black_candle.json new file mode 100644 index 00000000..a409949f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:black_dye" + ], + "result": { + "id": "minecraft:black_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_carpet.json b/data/generated/V26_1/data/minecraft/recipe/black_carpet.json new file mode 100644 index 00000000..18a1db63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:black_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:black_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/black_concrete_powder.json new file mode 100644 index 00000000..cbde1f95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:black_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:black_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_dye.json b/data/generated/V26_1/data/minecraft/recipe/black_dye.json new file mode 100644 index 00000000..bb39e66f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "black_dye", + "ingredients": [ + "minecraft:ink_sac" + ], + "result": { + "id": "minecraft:black_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_dye_from_wither_rose.json b/data/generated/V26_1/data/minecraft/recipe/black_dye_from_wither_rose.json new file mode 100644 index 00000000..326dd1a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_dye_from_wither_rose.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "black_dye", + "ingredients": [ + "minecraft:wither_rose" + ], + "result": { + "id": "minecraft:black_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/black_glazed_terracotta.json new file mode 100644 index 00000000..14ef27e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:black_terracotta", + "result": { + "id": "minecraft:black_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_harness.json b/data/generated/V26_1/data/minecraft/recipe/black_harness.json new file mode 100644 index 00000000..c8827a7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:black_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:black_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/black_shulker_box.json new file mode 100644 index 00000000..d093da54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:black_dye", + "result": { + "id": "minecraft:black_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass.json new file mode 100644 index 00000000..f60d0e81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane.json new file mode 100644 index 00000000..df2b3879 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:black_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:black_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..6155b273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/black_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/black_terracotta.json new file mode 100644 index 00000000..ad7b8f0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/black_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_slab.json new file mode 100644 index 00000000..b6addf2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..b2b835cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs.json new file mode 100644 index 00000000..49ea27df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..570474fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_wall.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_wall.json new file mode 100644 index 00000000..a826c184 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..8c9b989f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blast_furnace.json b/data/generated/V26_1/data/minecraft/recipe/blast_furnace.json new file mode 100644 index 00000000..38b1eaa9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blast_furnace.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:smooth_stone", + "I": "minecraft:iron_ingot", + "X": "minecraft:furnace" + }, + "pattern": [ + "III", + "IXI", + "###" + ], + "result": { + "id": "minecraft:blast_furnace" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blaze_powder.json b/data/generated/V26_1/data/minecraft/recipe/blaze_powder.json new file mode 100644 index 00000000..8019a3d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blaze_powder.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:blaze_rod" + ], + "result": { + "count": 2, + "id": "minecraft:blaze_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_banner.json b/data/generated/V26_1/data/minecraft/recipe/blue_banner.json new file mode 100644 index 00000000..c1350a38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:blue_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/blue_banner_duplicate.json new file mode 100644 index 00000000..ef8f2432 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:blue_banner", + "result": { + "id": "minecraft:blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_bed.json b/data/generated/V26_1/data/minecraft/recipe/blue_bed.json new file mode 100644 index 00000000..091180ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:blue_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_bundle.json b/data/generated/V26_1/data/minecraft/recipe/blue_bundle.json new file mode 100644 index 00000000..5f3f5e34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:blue_dye", + "result": { + "id": "minecraft:blue_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_candle.json b/data/generated/V26_1/data/minecraft/recipe/blue_candle.json new file mode 100644 index 00000000..8c2f6fa2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:blue_dye" + ], + "result": { + "id": "minecraft:blue_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_carpet.json b/data/generated/V26_1/data/minecraft/recipe/blue_carpet.json new file mode 100644 index 00000000..72978aae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:blue_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/blue_concrete_powder.json new file mode 100644 index 00000000..14f989ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:blue_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_dye.json b/data/generated/V26_1/data/minecraft/recipe/blue_dye.json new file mode 100644 index 00000000..15fd9764 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "blue_dye", + "ingredients": [ + "minecraft:lapis_lazuli" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_dye_from_cornflower.json b/data/generated/V26_1/data/minecraft/recipe/blue_dye_from_cornflower.json new file mode 100644 index 00000000..659b91f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_dye_from_cornflower.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "blue_dye", + "ingredients": [ + "minecraft:cornflower" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/blue_glazed_terracotta.json new file mode 100644 index 00000000..c4727d0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:blue_terracotta", + "result": { + "id": "minecraft:blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_harness.json b/data/generated/V26_1/data/minecraft/recipe/blue_harness.json new file mode 100644 index 00000000..e52922d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:blue_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_ice.json b/data/generated/V26_1/data/minecraft/recipe/blue_ice.json new file mode 100644 index 00000000..cbd61e2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_ice.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice" + ], + "result": { + "id": "minecraft:blue_ice" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/blue_shulker_box.json new file mode 100644 index 00000000..98749939 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:blue_dye", + "result": { + "id": "minecraft:blue_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass.json new file mode 100644 index 00000000..ec0fce29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane.json new file mode 100644 index 00000000..09f06128 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:blue_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..b80c6325 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/blue_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/blue_terracotta.json new file mode 100644 index 00000000..4acaf66e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..e09b4c59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": [ + "minecraft:copper_block", + "minecraft:waxed_copper_block" + ], + "S": "minecraft:bolt_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:bolt_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..357d46bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:bolt", + "template": "minecraft:bolt_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bone_block.json b/data/generated/V26_1/data/minecraft/recipe/bone_block.json new file mode 100644 index 00000000..1cbe689f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bone_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bone_meal" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:bone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bone_meal.json b/data/generated/V26_1/data/minecraft/recipe/bone_meal.json new file mode 100644 index 00000000..2e4283df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bone_meal.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bonemeal", + "ingredients": [ + "minecraft:bone" + ], + "result": { + "count": 3, + "id": "minecraft:bone_meal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bone_meal_from_bone_block.json b/data/generated/V26_1/data/minecraft/recipe/bone_meal_from_bone_block.json new file mode 100644 index 00000000..cb1b5c11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bone_meal_from_bone_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bonemeal", + "ingredients": [ + "minecraft:bone_block" + ], + "result": { + "count": 9, + "id": "minecraft:bone_meal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/book.json b/data/generated/V26_1/data/minecraft/recipe/book.json new file mode 100644 index 00000000..b316d1a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/book.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:paper", + "minecraft:paper", + "minecraft:leather" + ], + "result": { + "id": "minecraft:book" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/book_cloning.json b/data/generated/V26_1/data/minecraft/recipe/book_cloning.json new file mode 100644 index 00000000..93feb217 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/book_cloning.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_bookcloning", + "material": "#minecraft:book_cloning_target", + "result": { + "id": "minecraft:written_book" + }, + "source": "minecraft:written_book" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bookshelf.json b/data/generated/V26_1/data/minecraft/recipe/bookshelf.json new file mode 100644 index 00000000..5bbb1da0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bookshelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:book" + }, + "pattern": [ + "###", + "XXX", + "###" + ], + "result": { + "id": "minecraft:bookshelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bordure_indented_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..c9974176 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bordure_indented_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:vine" + ], + "result": { + "id": "minecraft:bordure_indented_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bow.json b/data/generated/V26_1/data/minecraft/recipe/bow.json new file mode 100644 index 00000000..c2e37449 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:string" + }, + "pattern": [ + " #X", + "# X", + " #X" + ], + "result": { + "id": "minecraft:bow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bowl.json b/data/generated/V26_1/data/minecraft/recipe/bowl.json new file mode 100644 index 00000000..dfb5f497 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bowl.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "count": 4, + "id": "minecraft:bowl" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bread.json b/data/generated/V26_1/data/minecraft/recipe/bread.json new file mode 100644 index 00000000..cc1baa67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bread.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:wheat" + }, + "pattern": [ + "###" + ], + "result": { + "id": "minecraft:bread" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brewing_stand.json b/data/generated/V26_1/data/minecraft/recipe/brewing_stand.json new file mode 100644 index 00000000..066b42ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brewing_stand.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:stone_crafting_materials", + "B": "minecraft:blaze_rod" + }, + "pattern": [ + " B ", + "###" + ], + "result": { + "id": "minecraft:brewing_stand" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick.json b/data/generated/V26_1/data/minecraft/recipe/brick.json new file mode 100644 index 00000000..c887e50c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.3, + "ingredient": "minecraft:clay_ball", + "result": { + "id": "minecraft:brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/brick_slab.json new file mode 100644 index 00000000..d7d3d61e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json new file mode 100644 index 00000000..fa15f6e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "count": 2, + "id": "minecraft:brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/brick_stairs.json new file mode 100644 index 00000000..22edf6f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json new file mode 100644 index 00000000..7d9af121 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "id": "minecraft:brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/brick_wall.json new file mode 100644 index 00000000..2002e1cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json new file mode 100644 index 00000000..469d9d7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "id": "minecraft:brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bricks.json b/data/generated/V26_1/data/minecraft/recipe/bricks.json new file mode 100644 index 00000000..014e3b5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_banner.json b/data/generated/V26_1/data/minecraft/recipe/brown_banner.json new file mode 100644 index 00000000..c7ecfa67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:brown_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:brown_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/brown_banner_duplicate.json new file mode 100644 index 00000000..e61ec8d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:brown_banner", + "result": { + "id": "minecraft:brown_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_bed.json b/data/generated/V26_1/data/minecraft/recipe/brown_bed.json new file mode 100644 index 00000000..e687bc08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:brown_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:brown_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_bundle.json b/data/generated/V26_1/data/minecraft/recipe/brown_bundle.json new file mode 100644 index 00000000..2a8358aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:brown_dye", + "result": { + "id": "minecraft:brown_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_candle.json b/data/generated/V26_1/data/minecraft/recipe/brown_candle.json new file mode 100644 index 00000000..7b2c7b6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:brown_dye" + ], + "result": { + "id": "minecraft:brown_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_carpet.json b/data/generated/V26_1/data/minecraft/recipe/brown_carpet.json new file mode 100644 index 00000000..6001cac7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:brown_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:brown_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/brown_concrete_powder.json new file mode 100644 index 00000000..d370a314 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:brown_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:brown_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_dye.json b/data/generated/V26_1/data/minecraft/recipe/brown_dye.json new file mode 100644 index 00000000..891e531d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "brown_dye", + "ingredients": [ + "minecraft:cocoa_beans" + ], + "result": { + "id": "minecraft:brown_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/brown_glazed_terracotta.json new file mode 100644 index 00000000..57d7d384 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:brown_terracotta", + "result": { + "id": "minecraft:brown_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_harness.json b/data/generated/V26_1/data/minecraft/recipe/brown_harness.json new file mode 100644 index 00000000..313893aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:brown_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:brown_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/brown_shulker_box.json new file mode 100644 index 00000000..8f147e80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:brown_dye", + "result": { + "id": "minecraft:brown_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass.json new file mode 100644 index 00000000..4902e4a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane.json new file mode 100644 index 00000000..44e96ab6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:brown_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:brown_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..24ccc681 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brown_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/brown_terracotta.json new file mode 100644 index 00000000..f9a89784 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brown_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/brush.json b/data/generated/V26_1/data/minecraft/recipe/brush.json new file mode 100644 index 00000000..b4e742ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/brush.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:copper_ingot", + "I": "minecraft:stick", + "X": "minecraft:feather" + }, + "pattern": [ + "X", + "#", + "I" + ], + "result": { + "id": "minecraft:brush" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bucket.json b/data/generated/V26_1/data/minecraft/recipe/bucket.json new file mode 100644 index 00000000..6946022b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bucket.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "id": "minecraft:bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/bundle.json b/data/generated/V26_1/data/minecraft/recipe/bundle.json new file mode 100644 index 00000000..bf92e93d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/bundle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:leather", + "-": "minecraft:string" + }, + "pattern": [ + "-", + "#" + ], + "result": { + "id": "minecraft:bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cake.json b/data/generated/V26_1/data/minecraft/recipe/cake.json new file mode 100644 index 00000000..29dd3c08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cake.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "A": "minecraft:milk_bucket", + "B": "minecraft:sugar", + "C": "minecraft:wheat", + "E": "#minecraft:eggs" + }, + "pattern": [ + "AAA", + "BEB", + "CCC" + ], + "result": { + "id": "minecraft:cake" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/calibrated_sculk_sensor.json b/data/generated/V26_1/data/minecraft/recipe/calibrated_sculk_sensor.json new file mode 100644 index 00000000..f25fd5c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/calibrated_sculk_sensor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:amethyst_shard", + "X": "minecraft:sculk_sensor" + }, + "pattern": [ + " # ", + "#X#" + ], + "result": { + "id": "minecraft:calibrated_sculk_sensor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/campfire.json b/data/generated/V26_1/data/minecraft/recipe/campfire.json new file mode 100644 index 00000000..c0a35976 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/campfire.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "C": "#minecraft:coals", + "L": "#minecraft:logs", + "S": "minecraft:stick" + }, + "pattern": [ + " S ", + "SCS", + "LLL" + ], + "result": { + "id": "minecraft:campfire" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/candle.json b/data/generated/V26_1/data/minecraft/recipe/candle.json new file mode 100644 index 00000000..e9b986ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/candle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "H": "minecraft:honeycomb", + "S": "minecraft:string" + }, + "pattern": [ + "S", + "H" + ], + "result": { + "id": "minecraft:candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/carrot_on_a_stick.json b/data/generated/V26_1/data/minecraft/recipe/carrot_on_a_stick.json new file mode 100644 index 00000000..f08c1740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/carrot_on_a_stick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:fishing_rod", + "X": "minecraft:carrot" + }, + "pattern": [ + "# ", + " X" + ], + "result": { + "id": "minecraft:carrot_on_a_stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cartography_table.json b/data/generated/V26_1/data/minecraft/recipe/cartography_table.json new file mode 100644 index 00000000..9abc622e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cartography_table.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:paper" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:cartography_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cauldron.json b/data/generated/V26_1/data/minecraft/recipe/cauldron.json new file mode 100644 index 00000000..a180ef2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cauldron.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "id": "minecraft:cauldron" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/charcoal.json b/data/generated/V26_1/data/minecraft/recipe/charcoal.json new file mode 100644 index 00000000..f3ec3023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/charcoal.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.15, + "ingredient": "#minecraft:logs_that_burn", + "result": { + "id": "minecraft:charcoal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_boat.json b/data/generated/V26_1/data/minecraft/recipe/cherry_boat.json new file mode 100644 index 00000000..df83906b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:cherry_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_button.json b/data/generated/V26_1/data/minecraft/recipe/cherry_button.json new file mode 100644 index 00000000..c52632c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:cherry_planks" + ], + "result": { + "id": "minecraft:cherry_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/cherry_chest_boat.json new file mode 100644 index 00000000..fba6aa64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:cherry_boat" + ], + "result": { + "id": "minecraft:cherry_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_door.json b/data/generated/V26_1/data/minecraft/recipe/cherry_door.json new file mode 100644 index 00000000..422fac0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_fence.json b/data/generated/V26_1/data/minecraft/recipe/cherry_fence.json new file mode 100644 index 00000000..b648fef0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:cherry_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/cherry_fence_gate.json new file mode 100644 index 00000000..70828eb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:cherry_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:cherry_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/cherry_hanging_sign.json new file mode 100644 index 00000000..16851d78 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_cherry_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_planks.json b/data/generated/V26_1/data/minecraft/recipe/cherry_planks.json new file mode 100644 index 00000000..c1b8483d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:cherry_logs" + ], + "result": { + "count": 4, + "id": "minecraft:cherry_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/cherry_pressure_plate.json new file mode 100644 index 00000000..d148713d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:cherry_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_shelf.json b/data/generated/V26_1/data/minecraft/recipe/cherry_shelf.json new file mode 100644 index 00000000..950fb329 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_cherry_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_sign.json b/data/generated/V26_1/data/minecraft/recipe/cherry_sign.json new file mode 100644 index 00000000..2aeb8d0c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:cherry_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:cherry_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_slab.json b/data/generated/V26_1/data/minecraft/recipe/cherry_slab.json new file mode 100644 index 00000000..60d8b1a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_stairs.json b/data/generated/V26_1/data/minecraft/recipe/cherry_stairs.json new file mode 100644 index 00000000..de5e48ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cherry_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/cherry_trapdoor.json new file mode 100644 index 00000000..e21ba1d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:cherry_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cherry_wood.json b/data/generated/V26_1/data/minecraft/recipe/cherry_wood.json new file mode 100644 index 00000000..307daa81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cherry_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:cherry_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chest.json b/data/generated/V26_1/data/minecraft/recipe/chest.json new file mode 100644 index 00000000..94e12ec0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chest.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "id": "minecraft:chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chest_minecart.json b/data/generated/V26_1/data/minecraft/recipe/chest_minecart.json new file mode 100644 index 00000000..7e2691eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chest_minecart.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:chest", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:chest_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_bookshelf.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_bookshelf.json new file mode 100644 index 00000000..5e0eaedb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_bookshelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "#minecraft:planks", + "X": "#minecraft:wooden_slabs" + }, + "pattern": [ + "###", + "XXX", + "###" + ], + "result": { + "id": "minecraft:chiseled_bookshelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper.json new file mode 100644 index 00000000..d20dc692 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..d73d3fe8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..d7e94795 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate.json new file mode 100644 index 00000000..356553f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..622db599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..4a886ae5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks.json new file mode 100644 index 00000000..538a03c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..1471575a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone.json new file mode 100644 index 00000000..8f887051 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..a75abde7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..9bddce00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block.json new file mode 100644 index 00000000..45b4d793 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..9539b8c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone.json new file mode 100644 index 00000000..39b7915c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sandstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..056843d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks.json new file mode 100644 index 00000000..f3a796dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..5fa857f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone.json new file mode 100644 index 00000000..eaff2176 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sandstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..f99ab41b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:chiseled_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks.json new file mode 100644 index 00000000..86c89c5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..49d33e2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..289a4c6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff.json new file mode 100644 index 00000000..3f157d76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks.json new file mode 100644 index 00000000..8bceb5db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0ea81dee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..949ad7c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..d05458de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..7bf39e4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:chiseled_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/clay.json b/data/generated/V26_1/data/minecraft/recipe/clay.json new file mode 100644 index 00000000..1435ff7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/clay.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:clay_ball" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:clay" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/clock.json b/data/generated/V26_1/data/minecraft/recipe/clock.json new file mode 100644 index 00000000..4692446e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/clock.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:gold_ingot", + "X": "minecraft:redstone" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:clock" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal.json b/data/generated/V26_1/data/minecraft/recipe/coal.json new file mode 100644 index 00000000..e5d53eef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:coal_block" + ], + "result": { + "count": 9, + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal_block.json b/data/generated/V26_1/data/minecraft/recipe/coal_block.json new file mode 100644 index 00000000..c37017af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:coal" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:coal_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_coal_ore.json b/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_coal_ore.json new file mode 100644 index 00000000..cb5d1560 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_coal_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json b/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json new file mode 100644 index 00000000..53bd19d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:deepslate_coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_coal_ore.json b/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_coal_ore.json new file mode 100644 index 00000000..28988317 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_coal_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json b/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json new file mode 100644 index 00000000..6d2de945 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:deepslate_coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coarse_dirt.json b/data/generated/V26_1/data/minecraft/recipe/coarse_dirt.json new file mode 100644 index 00000000..8e405797 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coarse_dirt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "D": "minecraft:dirt", + "G": "minecraft:gravel" + }, + "pattern": [ + "DG", + "GD" + ], + "result": { + "count": 4, + "id": "minecraft:coarse_dirt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..33050a52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:coast_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:coast_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..8097b2e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:coast", + "template": "minecraft:coast_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..9b3f7d64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab.json new file mode 100644 index 00000000..7a875cf2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..997321b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..bd9abc76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..0bd3c041 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..830f5adf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f24ab9c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall.json new file mode 100644 index 00000000..c91b7e33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..df16d19a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..625901cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json new file mode 100644 index 00000000..7cfdd1a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab.json new file mode 100644 index 00000000..94545475 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..b64c99ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "count": 2, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..048c5002 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs.json new file mode 100644 index 00000000..e2455d0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..d633184c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..8bda15cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall.json new file mode 100644 index 00000000..5268e9f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..6aeab7e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..09495ddd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/comparator.json b/data/generated/V26_1/data/minecraft/recipe/comparator.json new file mode 100644 index 00000000..d600d721 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/comparator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone_torch", + "I": "minecraft:stone", + "X": "minecraft:quartz" + }, + "pattern": [ + " # ", + "#X#", + "III" + ], + "result": { + "id": "minecraft:comparator" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/compass.json b/data/generated/V26_1/data/minecraft/recipe/compass.json new file mode 100644 index 00000000..b8edb85d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/compass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot", + "X": "minecraft:redstone" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:compass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/composter.json b/data/generated/V26_1/data/minecraft/recipe/composter.json new file mode 100644 index 00000000..4847c48e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/composter.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:wooden_slabs" + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "id": "minecraft:composter" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/conduit.json b/data/generated/V26_1/data/minecraft/recipe/conduit.json new file mode 100644 index 00000000..9a7b7cad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/conduit.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:nautilus_shell", + "X": "minecraft:heart_of_the_sea" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:conduit" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_beef.json b/data/generated/V26_1/data/minecraft/recipe/cooked_beef.json new file mode 100644 index 00000000..e465e4b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_beef.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json new file mode 100644 index 00000000..96a25f7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_smoking.json new file mode 100644 index 00000000..b6081fc7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_beef_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_chicken.json b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken.json new file mode 100644 index 00000000..9b2c42be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json new file mode 100644 index 00000000..90481c78 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_smoking.json new file mode 100644 index 00000000..db5d9ff7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_chicken_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_cod.json b/data/generated/V26_1/data/minecraft/recipe/cooked_cod.json new file mode 100644 index 00000000..760d95d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_cod.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json new file mode 100644 index 00000000..174914e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_smoking.json new file mode 100644 index 00000000..e7f39ecd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_cod_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_mutton.json b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton.json new file mode 100644 index 00000000..301dc1c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json new file mode 100644 index 00000000..28cfb4b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_smoking.json new file mode 100644 index 00000000..286340a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_mutton_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop.json b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop.json new file mode 100644 index 00000000..8ff0ffbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json new file mode 100644 index 00000000..ef7c6833 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_smoking.json new file mode 100644 index 00000000..8e9940b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_porkchop_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit.json b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit.json new file mode 100644 index 00000000..e486ece2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json new file mode 100644 index 00000000..38f0ace8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_smoking.json new file mode 100644 index 00000000..a94cec5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_rabbit_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_salmon.json b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon.json new file mode 100644 index 00000000..a254f5aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json new file mode 100644 index 00000000..8bff9565 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_smoking.json new file mode 100644 index 00000000..7b6c00c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cooked_salmon_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cookie.json b/data/generated/V26_1/data/minecraft/recipe/cookie.json new file mode 100644 index 00000000..5d0a2316 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cookie.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:wheat", + "X": "minecraft:cocoa_beans" + }, + "pattern": [ + "#X#" + ], + "result": { + "count": 8, + "id": "minecraft:cookie" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_axe.json b/data/generated/V26_1/data/minecraft/recipe/copper_axe.json new file mode 100644 index 00000000..cc384928 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:copper_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_bars.json b/data/generated/V26_1/data/minecraft/recipe/copper_bars.json new file mode 100644 index 00000000..ed1c01f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_bars.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_block.json b/data/generated/V26_1/data/minecraft/recipe/copper_block.json new file mode 100644 index 00000000..83f687f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_boots.json b/data/generated/V26_1/data/minecraft/recipe/copper_boots.json new file mode 100644 index 00000000..f4847384 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:copper_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/copper_bulb.json new file mode 100644 index 00000000..a7bb0d3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:copper_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_chain.json b/data/generated/V26_1/data/minecraft/recipe/copper_chain.json new file mode 100644 index 00000000..17b5ff17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_chain.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": "minecraft:copper_ingot", + "N": "minecraft:copper_nugget" + }, + "pattern": [ + "N", + "I", + "N" + ], + "result": { + "id": "minecraft:copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_chest.json b/data/generated/V26_1/data/minecraft/recipe/copper_chest.json new file mode 100644 index 00000000..32659552 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_chest.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:copper_ingot", + "X": "minecraft:chest" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_chestplate.json b/data/generated/V26_1/data/minecraft/recipe/copper_chestplate.json new file mode 100644 index 00000000..5ac736d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:copper_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_door.json b/data/generated/V26_1/data/minecraft/recipe/copper_door.json new file mode 100644 index 00000000..4d9770e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_door.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/copper_grate.json new file mode 100644 index 00000000..f3438592 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "copper_grate", + "key": { + "M": "minecraft:copper_block" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json new file mode 100644 index 00000000..fbe3826f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_helmet.json b/data/generated/V26_1/data/minecraft/recipe/copper_helmet.json new file mode 100644 index 00000000..9a5b9f3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:copper_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_hoe.json b/data/generated/V26_1/data/minecraft/recipe/copper_hoe.json new file mode 100644 index 00000000..2cdedced --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:copper_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot.json new file mode 100644 index 00000000..ba846cd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "copper_ingot", + "ingredients": [ + "minecraft:copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json new file mode 100644 index 00000000..104ea714 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json new file mode 100644 index 00000000..d930a559 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:deepslate_copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json new file mode 100644 index 00000000..a3574517 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:raw_copper", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_nuggets.json new file mode 100644 index 00000000..e9d8221b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_nuggets.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "copper_ingot", + "key": { + "#": "minecraft:copper_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json new file mode 100644 index 00000000..87a19c0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json new file mode 100644 index 00000000..e8e0ceb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:deepslate_copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json new file mode 100644 index 00000000..357795c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:raw_copper", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json new file mode 100644 index 00000000..038b3b72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "copper_ingot", + "ingredients": [ + "minecraft:waxed_copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_lantern.json b/data/generated/V26_1/data/minecraft/recipe/copper_lantern.json new file mode 100644 index 00000000..3d0e6b4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:copper_torch", + "X": "minecraft:copper_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_leggings.json b/data/generated/V26_1/data/minecraft/recipe/copper_leggings.json new file mode 100644 index 00000000..ed8216ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:copper_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_nugget.json b/data/generated/V26_1/data/minecraft/recipe/copper_nugget.json new file mode 100644 index 00000000..700b13ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_nugget.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:copper_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_blasting.json new file mode 100644 index 00000000..e2dbe83b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_blasting.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.1, + "ingredient": [ + "minecraft:copper_pickaxe", + "minecraft:copper_shovel", + "minecraft:copper_axe", + "minecraft:copper_hoe", + "minecraft:copper_sword", + "minecraft:copper_spear", + "minecraft:copper_helmet", + "minecraft:copper_chestplate", + "minecraft:copper_leggings", + "minecraft:copper_boots", + "minecraft:copper_horse_armor", + "minecraft:copper_nautilus_armor" + ], + "result": { + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_smelting.json new file mode 100644 index 00000000..4853627e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_nugget_from_smelting.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": [ + "minecraft:copper_pickaxe", + "minecraft:copper_shovel", + "minecraft:copper_axe", + "minecraft:copper_hoe", + "minecraft:copper_sword", + "minecraft:copper_spear", + "minecraft:copper_helmet", + "minecraft:copper_chestplate", + "minecraft:copper_leggings", + "minecraft:copper_boots", + "minecraft:copper_horse_armor", + "minecraft:copper_nautilus_armor" + ], + "result": { + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/copper_pickaxe.json new file mode 100644 index 00000000..b391998c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:copper_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_shovel.json b/data/generated/V26_1/data/minecraft/recipe/copper_shovel.json new file mode 100644 index 00000000..f3b55188 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:copper_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_spear.json b/data/generated/V26_1/data/minecraft/recipe/copper_spear.json new file mode 100644 index 00000000..b89efc00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:copper_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_sword.json b/data/generated/V26_1/data/minecraft/recipe/copper_sword.json new file mode 100644 index 00000000..7dfe229a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:copper_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_torch.json b/data/generated/V26_1/data/minecraft/recipe/copper_torch.json new file mode 100644 index 00000000..4e6c778e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "C": "minecraft:copper_nugget", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "C", + "X", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:copper_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/copper_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/copper_trapdoor.json new file mode 100644 index 00000000..d59589fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/copper_trapdoor.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_bricks.json b/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_bricks.json new file mode 100644 index 00000000..004100f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:cracked_deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_tiles.json b/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_tiles.json new file mode 100644 index 00000000..2aae3f34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cracked_deepslate_tiles.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cracked_nether_bricks.json b/data/generated/V26_1/data/minecraft/recipe/cracked_nether_bricks.json new file mode 100644 index 00000000..cd3903e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cracked_nether_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:cracked_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cracked_polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..b75fb6d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cracked_polished_blackstone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:cracked_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cracked_stone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/cracked_stone_bricks.json new file mode 100644 index 00000000..6e2dddb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cracked_stone_bricks.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crafter.json b/data/generated/V26_1/data/minecraft/recipe/crafter.json new file mode 100644 index 00000000..a92c3b08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crafter.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot", + "C": "minecraft:crafting_table", + "D": "minecraft:dropper", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "#C#", + "RDR" + ], + "result": { + "id": "minecraft:crafter" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crafting_table.json b/data/generated/V26_1/data/minecraft/recipe/crafting_table.json new file mode 100644 index 00000000..540b2d3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crafting_table.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:crafting_table" + }, + "show_notification": false +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/creaking_heart.json b/data/generated/V26_1/data/minecraft/recipe/creaking_heart.json new file mode 100644 index 00000000..071f8321 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/creaking_heart.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "L": "minecraft:pale_oak_log", + "R": "minecraft:resin_block" + }, + "pattern": [ + " L ", + " R ", + " L " + ], + "result": { + "id": "minecraft:creaking_heart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/creeper_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/creeper_banner_pattern.json new file mode 100644 index 00000000..f80aecdc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/creeper_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:creeper_head" + ], + "result": { + "id": "minecraft:creeper_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_button.json b/data/generated/V26_1/data/minecraft/recipe/crimson_button.json new file mode 100644 index 00000000..efddb8f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:crimson_planks" + ], + "result": { + "id": "minecraft:crimson_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_door.json b/data/generated/V26_1/data/minecraft/recipe/crimson_door.json new file mode 100644 index 00000000..475b6926 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_fence.json b/data/generated/V26_1/data/minecraft/recipe/crimson_fence.json new file mode 100644 index 00000000..4b7cd26e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:crimson_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/crimson_fence_gate.json new file mode 100644 index 00000000..8b1c9b37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:crimson_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:crimson_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/crimson_hanging_sign.json new file mode 100644 index 00000000..ead42305 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_crimson_stem", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_hyphae.json b/data/generated/V26_1/data/minecraft/recipe/crimson_hyphae.json new file mode 100644 index 00000000..9091b85f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:crimson_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_planks.json b/data/generated/V26_1/data/minecraft/recipe/crimson_planks.json new file mode 100644 index 00000000..d2a238e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:crimson_stems" + ], + "result": { + "count": 4, + "id": "minecraft:crimson_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/crimson_pressure_plate.json new file mode 100644 index 00000000..d930304a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:crimson_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_shelf.json b/data/generated/V26_1/data/minecraft/recipe/crimson_shelf.json new file mode 100644 index 00000000..23d2079d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_crimson_stem" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_sign.json b/data/generated/V26_1/data/minecraft/recipe/crimson_sign.json new file mode 100644 index 00000000..1afaebe7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:crimson_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:crimson_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_slab.json b/data/generated/V26_1/data/minecraft/recipe/crimson_slab.json new file mode 100644 index 00000000..6bc18ee5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_stairs.json b/data/generated/V26_1/data/minecraft/recipe/crimson_stairs.json new file mode 100644 index 00000000..8ab8c9c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:crimson_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crimson_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/crimson_trapdoor.json new file mode 100644 index 00000000..ab1f1aca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crimson_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:crimson_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/crossbow.json b/data/generated/V26_1/data/minecraft/recipe/crossbow.json new file mode 100644 index 00000000..83b0a1b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/crossbow.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "$": "minecraft:tripwire_hook", + "&": "minecraft:iron_ingot", + "~": "minecraft:string" + }, + "pattern": [ + "#&#", + "~$~", + " # " + ], + "result": { + "id": "minecraft:crossbow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper.json new file mode 100644 index 00000000..5f1f093f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:copper_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..1c1e2d5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab.json new file mode 100644 index 00000000..788fef16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b965be60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 8, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..bc8988a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "count": 2, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs.json new file mode 100644 index 00000000..74f87bdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b6f93791 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..23e6d480 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone.json new file mode 100644 index 00000000..793d99a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sandstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..138126bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:cut_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab.json new file mode 100644 index 00000000..e6e90d5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_red_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json new file mode 100644 index 00000000..c6d5b76f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_red_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ae87c3b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone.json new file mode 100644 index 00000000..3a25c26f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sandstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..95df4348 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:cut_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab.json new file mode 100644 index 00000000..692c74a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json new file mode 100644 index 00000000..5b8fc198 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..b634422d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_banner.json b/data/generated/V26_1/data/minecraft/recipe/cyan_banner.json new file mode 100644 index 00000000..a5e8a6bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:cyan_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:cyan_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/cyan_banner_duplicate.json new file mode 100644 index 00000000..5d964b24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:cyan_banner", + "result": { + "id": "minecraft:cyan_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_bed.json b/data/generated/V26_1/data/minecraft/recipe/cyan_bed.json new file mode 100644 index 00000000..b3706482 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:cyan_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:cyan_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_bundle.json b/data/generated/V26_1/data/minecraft/recipe/cyan_bundle.json new file mode 100644 index 00000000..ed87c31d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:cyan_dye", + "result": { + "id": "minecraft:cyan_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_candle.json b/data/generated/V26_1/data/minecraft/recipe/cyan_candle.json new file mode 100644 index 00000000..17ec5904 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:cyan_dye" + ], + "result": { + "id": "minecraft:cyan_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_carpet.json b/data/generated/V26_1/data/minecraft/recipe/cyan_carpet.json new file mode 100644 index 00000000..7d5ec327 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:cyan_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cyan_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/cyan_concrete_powder.json new file mode 100644 index 00000000..609f185e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:cyan_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_dye.json b/data/generated/V26_1/data/minecraft/recipe/cyan_dye.json new file mode 100644 index 00000000..139176a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "cyan_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:green_dye" + ], + "result": { + "count": 2, + "id": "minecraft:cyan_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json b/data/generated/V26_1/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json new file mode 100644 index 00000000..51445377 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "cyan_dye", + "ingredients": [ + "minecraft:pitcher_plant" + ], + "result": { + "count": 2, + "id": "minecraft:cyan_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/cyan_glazed_terracotta.json new file mode 100644 index 00000000..57961121 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:cyan_terracotta", + "result": { + "id": "minecraft:cyan_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_harness.json b/data/generated/V26_1/data/minecraft/recipe/cyan_harness.json new file mode 100644 index 00000000..763d4561 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:cyan_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:cyan_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/cyan_shulker_box.json new file mode 100644 index 00000000..1a461cd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:cyan_dye", + "result": { + "id": "minecraft:cyan_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass.json new file mode 100644 index 00000000..6274bbfe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane.json new file mode 100644 index 00000000..3e26a6db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:cyan_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:cyan_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..429ddb28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/cyan_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/cyan_terracotta.json new file mode 100644 index 00000000..0bb0ce11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/cyan_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_boat.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_boat.json new file mode 100644 index 00000000..722908af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:dark_oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_button.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_button.json new file mode 100644 index 00000000..339e92f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:dark_oak_planks" + ], + "result": { + "id": "minecraft:dark_oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_chest_boat.json new file mode 100644 index 00000000..52e30f4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:dark_oak_boat" + ], + "result": { + "id": "minecraft:dark_oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_door.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_door.json new file mode 100644 index 00000000..13090a8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence.json new file mode 100644 index 00000000..3f53a601 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:dark_oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence_gate.json new file mode 100644 index 00000000..d7384e93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:dark_oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:dark_oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_hanging_sign.json new file mode 100644 index 00000000..1dfcccd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_dark_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_planks.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_planks.json new file mode 100644 index 00000000..da387f3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:dark_oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:dark_oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_pressure_plate.json new file mode 100644 index 00000000..464383ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:dark_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_shelf.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_shelf.json new file mode 100644 index 00000000..4cd85cb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_dark_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_sign.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_sign.json new file mode 100644 index 00000000..2689bdd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:dark_oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_slab.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_slab.json new file mode 100644 index 00000000..388fde03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_stairs.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_stairs.json new file mode 100644 index 00000000..94049bb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:dark_oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_trapdoor.json new file mode 100644 index 00000000..47358c38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/dark_oak_wood.json new file mode 100644 index 00000000..ba9c3b81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:dark_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_prismarine.json b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine.json new file mode 100644 index 00000000..fb976373 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "I": "minecraft:black_dye", + "S": "minecraft:prismarine_shard" + }, + "pattern": [ + "SSS", + "SIS", + "SSS" + ], + "result": { + "id": "minecraft:dark_prismarine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab.json b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab.json new file mode 100644 index 00000000..bccd936c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dark_prismarine" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..254edd3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:dark_prismarine", + "result": { + "count": 2, + "id": "minecraft:dark_prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs.json b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs.json new file mode 100644 index 00000000..31657810 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dark_prismarine" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:dark_prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..d5f58e69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:dark_prismarine", + "result": { + "id": "minecraft:dark_prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/daylight_detector.json b/data/generated/V26_1/data/minecraft/recipe/daylight_detector.json new file mode 100644 index 00000000..a6443a9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/daylight_detector.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "G": "minecraft:glass", + "Q": "minecraft:quartz", + "W": "#minecraft:wooden_slabs" + }, + "pattern": [ + "GGG", + "QQQ", + "WWW" + ], + "result": { + "id": "minecraft:daylight_detector" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/decorated_pot.json b/data/generated/V26_1/data/minecraft/recipe/decorated_pot.json new file mode 100644 index 00000000..f9d298ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/decorated_pot.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_decorated_pot", + "back": "#minecraft:decorated_pot_ingredients", + "front": "#minecraft:decorated_pot_ingredients", + "left": "#minecraft:decorated_pot_ingredients", + "result": { + "id": "minecraft:decorated_pot" + }, + "right": "#minecraft:decorated_pot_ingredients" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/decorated_pot_simple.json b/data/generated/V26_1/data/minecraft/recipe/decorated_pot_simple.json new file mode 100644 index 00000000..1909f9e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/decorated_pot_simple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + " # ", + "# #", + " # " + ], + "result": { + "id": "minecraft:decorated_pot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate.json b/data/generated/V26_1/data/minecraft/recipe/deepslate.json new file mode 100644 index 00000000..38d18d19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab.json new file mode 100644 index 00000000..ee60ee70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..dd4cc679 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..d7a925c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ce9751ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..96c33381 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs.json new file mode 100644 index 00000000..65ee52e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..82dca2c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..ef082c84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ff1d54e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..23d83e9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall.json new file mode 100644 index 00000000..9c831eb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..c0f3d864 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..69eb341c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..3f4c2f8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..4def96e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks.json new file mode 100644 index 00000000..ad7295f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3b824031 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json new file mode 100644 index 00000000..9bff7da3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..c65fea37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab.json new file mode 100644 index 00000000..a2871d1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..0974f9cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..793e3644 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..5250dc87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..6b8a69c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ba8a074e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs.json new file mode 100644 index 00000000..7a463c80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..57c9b6b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..2872719b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..8838fd19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..26139266 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..9e121608 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall.json new file mode 100644 index 00000000..3e7f0141 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..846231e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..74b3263c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..79a1c664 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..7f9379ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..35ccddb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles.json new file mode 100644 index 00000000..fff402ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..34369f49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..3f580e1e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json new file mode 100644 index 00000000..b6e3cf31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..824a336c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/detector_rail.json b/data/generated/V26_1/data/minecraft/recipe/detector_rail.json new file mode 100644 index 00000000..26939514 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/detector_rail.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stone_pressure_plate", + "R": "minecraft:redstone", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X#X", + "XRX" + ], + "result": { + "count": 6, + "id": "minecraft:detector_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond.json b/data/generated/V26_1/data/minecraft/recipe/diamond.json new file mode 100644 index 00000000..9b201576 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:diamond_block" + ], + "result": { + "count": 9, + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_axe.json b/data/generated/V26_1/data/minecraft/recipe/diamond_axe.json new file mode 100644 index 00000000..231d785e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:diamond_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_block.json b/data/generated/V26_1/data/minecraft/recipe/diamond_block.json new file mode 100644 index 00000000..4f30a601 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diamond" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:diamond_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_boots.json b/data/generated/V26_1/data/minecraft/recipe/diamond_boots.json new file mode 100644 index 00000000..c6a8da40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:diamond_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_chestplate.json b/data/generated/V26_1/data/minecraft/recipe/diamond_chestplate.json new file mode 100644 index 00000000..bb3f673b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:diamond_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json b/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json new file mode 100644 index 00000000..d5a288a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:deepslate_diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json b/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json new file mode 100644 index 00000000..b773b202 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json b/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json new file mode 100644 index 00000000..5ed0fdbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:deepslate_diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json b/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json new file mode 100644 index 00000000..85a13522 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_helmet.json b/data/generated/V26_1/data/minecraft/recipe/diamond_helmet.json new file mode 100644 index 00000000..3d2ed3c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:diamond_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_hoe.json b/data/generated/V26_1/data/minecraft/recipe/diamond_hoe.json new file mode 100644 index 00000000..5af4c677 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:diamond_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_leggings.json b/data/generated/V26_1/data/minecraft/recipe/diamond_leggings.json new file mode 100644 index 00000000..6bccaf97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:diamond_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/diamond_pickaxe.json new file mode 100644 index 00000000..821bb8a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:diamond_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_shovel.json b/data/generated/V26_1/data/minecraft/recipe/diamond_shovel.json new file mode 100644 index 00000000..f9fb4bc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:diamond_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_spear.json b/data/generated/V26_1/data/minecraft/recipe/diamond_spear.json new file mode 100644 index 00000000..7cf21dd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:diamond_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diamond_sword.json b/data/generated/V26_1/data/minecraft/recipe/diamond_sword.json new file mode 100644 index 00000000..046395a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diamond_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:diamond_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite.json b/data/generated/V26_1/data/minecraft/recipe/diorite.json new file mode 100644 index 00000000..104eb5b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "C": "minecraft:cobblestone", + "Q": "minecraft:quartz" + }, + "pattern": [ + "CQ", + "QC" + ], + "result": { + "count": 2, + "id": "minecraft:diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_slab.json b/data/generated/V26_1/data/minecraft/recipe/diorite_slab.json new file mode 100644 index 00000000..b54061da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..f1c9e846 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "count": 2, + "id": "minecraft:diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/diorite_stairs.json new file mode 100644 index 00000000..6c64c2bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..c7c8022a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_wall.json b/data/generated/V26_1/data/minecraft/recipe/diorite_wall.json new file mode 100644 index 00000000..f72e3d0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:diorite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json new file mode 100644 index 00000000..c94affbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:diorite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dispenser.json b/data/generated/V26_1/data/minecraft/recipe/dispenser.json new file mode 100644 index 00000000..8d00020e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dispenser.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone", + "X": "minecraft:bow" + }, + "pattern": [ + "###", + "#X#", + "#R#" + ], + "result": { + "id": "minecraft:dispenser" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_ghast.json b/data/generated/V26_1/data/minecraft/recipe/dried_ghast.json new file mode 100644 index 00000000..28ea9c02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_ghast.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "dry_ghast", + "key": { + "#": "minecraft:ghast_tear", + "X": "minecraft:soul_sand" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:dried_ghast" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_kelp.json b/data/generated/V26_1/data/minecraft/recipe/dried_kelp.json new file mode 100644 index 00000000..a963fbca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_kelp.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:dried_kelp_block" + ], + "result": { + "count": 9, + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_kelp_block.json b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_block.json new file mode 100644 index 00000000..fc8d3236 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dried_kelp" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:dried_kelp_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json new file mode 100644 index 00000000..59eb4cb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smelting.json b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smelting.json new file mode 100644 index 00000000..ad555409 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smelting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smoking.json b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smoking.json new file mode 100644 index 00000000..4b3e1d72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dried_kelp_from_smoking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "cookingtime": 100, + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dripstone_block.json b/data/generated/V26_1/data/minecraft/recipe/dripstone_block.json new file mode 100644 index 00000000..a7a53feb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dripstone_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:pointed_dripstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:dripstone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dropper.json b/data/generated/V26_1/data/minecraft/recipe/dropper.json new file mode 100644 index 00000000..c92b6cd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dropper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "# #", + "#R#" + ], + "result": { + "id": "minecraft:dropper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..85d29c02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:sandstone", + "S": "minecraft:dune_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:dune_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..4abdad1e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:dune", + "template": "minecraft:dune_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_black_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_black_bed.json new file mode 100644 index 00000000..a36ca502 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_black_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:black_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_black_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_black_carpet.json new file mode 100644 index 00000000..8ee12077 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_black_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:black_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_black_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_black_harness.json new file mode 100644 index 00000000..348b4e5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_black_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:black_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_black_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_black_wool.json new file mode 100644 index 00000000..c0a154d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_black_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:black_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_blue_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_blue_bed.json new file mode 100644 index 00000000..49e0ab6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_blue_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:black_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_blue_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_blue_carpet.json new file mode 100644 index 00000000..42038a13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_blue_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:black_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_blue_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_blue_harness.json new file mode 100644 index 00000000..f01b265a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_blue_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:black_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_blue_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_blue_wool.json new file mode 100644 index 00000000..8df4cbcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_blue_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:black_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:blue_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_brown_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_brown_bed.json new file mode 100644 index 00000000..db68c757 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_brown_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:brown_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_brown_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_brown_carpet.json new file mode 100644 index 00000000..c6ee54cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_brown_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:brown_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_brown_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_brown_harness.json new file mode 100644 index 00000000..eb738973 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_brown_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:brown_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_brown_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_brown_wool.json new file mode 100644 index 00000000..91883ece --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_brown_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:brown_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_cyan_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_bed.json new file mode 100644 index 00000000..145e4537 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:cyan_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_cyan_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_carpet.json new file mode 100644 index 00000000..4ad88ff9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:cyan_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_cyan_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_harness.json new file mode 100644 index 00000000..5744c4fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:cyan_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_cyan_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_wool.json new file mode 100644 index 00000000..29a6ea52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_cyan_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:cyan_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_gray_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_gray_bed.json new file mode 100644 index 00000000..0e646426 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_gray_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_gray_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_gray_carpet.json new file mode 100644 index 00000000..eda4a199 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_gray_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_gray_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_gray_harness.json new file mode 100644 index 00000000..60ff68f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_gray_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_gray_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_gray_wool.json new file mode 100644 index 00000000..5923c074 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_gray_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:gray_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_green_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_green_bed.json new file mode 100644 index 00000000..470dc66c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_green_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:green_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_green_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_green_carpet.json new file mode 100644 index 00000000..dd7bdc6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_green_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:green_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_green_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_green_harness.json new file mode 100644 index 00000000..278db863 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_green_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:green_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_green_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_green_wool.json new file mode 100644 index 00000000..0b0fa19d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_green_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:green_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_bed.json new file mode 100644 index 00000000..4f8549a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:light_blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_carpet.json new file mode 100644 index 00000000..fce147dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:light_blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_harness.json new file mode 100644 index 00000000..6364b88f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:light_blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_wool.json new file mode 100644 index 00000000..c217c679 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_blue_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:light_blue_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_bed.json new file mode 100644 index 00000000..988e51dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:light_gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_carpet.json new file mode 100644 index 00000000..1ecc440f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:light_gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_harness.json new file mode 100644 index 00000000..6180fad1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:light_gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_wool.json new file mode 100644 index 00000000..26713c5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_light_gray_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:light_gray_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_lime_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_lime_bed.json new file mode 100644 index 00000000..55f93f94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_lime_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:lime_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_lime_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_lime_carpet.json new file mode 100644 index 00000000..fdbdd6db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_lime_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:lime_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_lime_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_lime_harness.json new file mode 100644 index 00000000..7cca854e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_lime_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:lime_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_lime_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_lime_wool.json new file mode 100644 index 00000000..2789821d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_lime_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:lime_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_magenta_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_bed.json new file mode 100644 index 00000000..ac3ccd92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:magenta_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_magenta_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_carpet.json new file mode 100644 index 00000000..d354fc9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:magenta_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_magenta_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_harness.json new file mode 100644 index 00000000..eacff84f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:magenta_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_magenta_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_wool.json new file mode 100644 index 00000000..4d61f367 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_magenta_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:magenta_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_orange_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_orange_bed.json new file mode 100644 index 00000000..edea67d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_orange_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:orange_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_orange_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_orange_carpet.json new file mode 100644 index 00000000..b17929a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_orange_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:orange_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_orange_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_orange_harness.json new file mode 100644 index 00000000..e09ef98c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_orange_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:orange_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_orange_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_orange_wool.json new file mode 100644 index 00000000..956b70bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_orange_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:orange_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_pink_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_pink_bed.json new file mode 100644 index 00000000..e0dff8fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_pink_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:pink_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_pink_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_pink_carpet.json new file mode 100644 index 00000000..0b26ac22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_pink_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:pink_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_pink_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_pink_harness.json new file mode 100644 index 00000000..d6547608 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_pink_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:pink_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_pink_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_pink_wool.json new file mode 100644 index 00000000..6f62b02e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_pink_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:pink_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_purple_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_purple_bed.json new file mode 100644 index 00000000..5adbbc0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_purple_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:red_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:purple_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_purple_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_purple_carpet.json new file mode 100644 index 00000000..fb87d3ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_purple_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:purple_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_purple_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_purple_harness.json new file mode 100644 index 00000000..68189d63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_purple_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:red_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:purple_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_purple_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_purple_wool.json new file mode 100644 index 00000000..66ffcd9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_purple_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:red_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:purple_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_red_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_red_bed.json new file mode 100644 index 00000000..9c6a6350 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_red_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:yellow_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:red_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_red_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_red_carpet.json new file mode 100644 index 00000000..fd575473 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_red_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:yellow_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:red_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_red_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_red_harness.json new file mode 100644 index 00000000..a944a91f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_red_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:yellow_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:red_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_red_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_red_wool.json new file mode 100644 index 00000000..5692610c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_red_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:yellow_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:red_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_white_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_white_bed.json new file mode 100644 index 00000000..6e53e648 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_white_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:yellow_bed" + ] + ], + "result": { + "id": "minecraft:white_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_white_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_white_carpet.json new file mode 100644 index 00000000..d4420139 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_white_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:yellow_carpet" + ] + ], + "result": { + "id": "minecraft:white_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_white_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_white_harness.json new file mode 100644 index 00000000..73435ce5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_white_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:yellow_harness" + ] + ], + "result": { + "id": "minecraft:white_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_white_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_white_wool.json new file mode 100644 index 00000000..13078b3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_white_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:yellow_wool" + ] + ], + "result": { + "id": "minecraft:white_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_yellow_bed.json b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_bed.json new file mode 100644 index 00000000..c6d930d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_bed.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "bed_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:red_bed", + "minecraft:white_bed" + ] + ], + "result": { + "id": "minecraft:yellow_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_yellow_carpet.json b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_carpet.json new file mode 100644 index 00000000..6ed53d58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_carpet.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "carpet_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:black_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:cyan_carpet", + "minecraft:gray_carpet", + "minecraft:green_carpet", + "minecraft:light_blue_carpet", + "minecraft:light_gray_carpet", + "minecraft:lime_carpet", + "minecraft:magenta_carpet", + "minecraft:orange_carpet", + "minecraft:pink_carpet", + "minecraft:purple_carpet", + "minecraft:red_carpet", + "minecraft:white_carpet" + ] + ], + "result": { + "id": "minecraft:yellow_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_yellow_harness.json b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_harness.json new file mode 100644 index 00000000..faee7ca4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:black_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:cyan_harness", + "minecraft:gray_harness", + "minecraft:green_harness", + "minecraft:light_blue_harness", + "minecraft:light_gray_harness", + "minecraft:lime_harness", + "minecraft:magenta_harness", + "minecraft:orange_harness", + "minecraft:pink_harness", + "minecraft:purple_harness", + "minecraft:red_harness", + "minecraft:white_harness" + ] + ], + "result": { + "id": "minecraft:yellow_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/dye_yellow_wool.json b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_wool.json new file mode 100644 index 00000000..2ef3fc41 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/dye_yellow_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:black_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:cyan_wool", + "minecraft:gray_wool", + "minecraft:green_wool", + "minecraft:light_blue_wool", + "minecraft:light_gray_wool", + "minecraft:lime_wool", + "minecraft:magenta_wool", + "minecraft:orange_wool", + "minecraft:pink_wool", + "minecraft:purple_wool", + "minecraft:red_wool", + "minecraft:white_wool" + ] + ], + "result": { + "id": "minecraft:yellow_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald.json b/data/generated/V26_1/data/minecraft/recipe/emerald.json new file mode 100644 index 00000000..d73d37b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:emerald_block" + ], + "result": { + "count": 9, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald_block.json b/data/generated/V26_1/data/minecraft/recipe/emerald_block.json new file mode 100644 index 00000000..29607646 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:emerald" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:emerald_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json b/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json new file mode 100644 index 00000000..c23b739c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:deepslate_emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json b/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json new file mode 100644 index 00000000..d04d4c14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json b/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json new file mode 100644 index 00000000..4b0405a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:deepslate_emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json b/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json new file mode 100644 index 00000000..83165dcd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/enchanting_table.json b/data/generated/V26_1/data/minecraft/recipe/enchanting_table.json new file mode 100644 index 00000000..131cd486 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/enchanting_table.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:obsidian", + "B": "minecraft:book", + "D": "minecraft:diamond" + }, + "pattern": [ + " B ", + "D#D", + "###" + ], + "result": { + "id": "minecraft:enchanting_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_crystal.json b/data/generated/V26_1/data/minecraft/recipe/end_crystal.json new file mode 100644 index 00000000..35d5fb21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_crystal.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "E": "minecraft:ender_eye", + "G": "minecraft:glass", + "T": "minecraft:ghast_tear" + }, + "pattern": [ + "GGG", + "GEG", + "GTG" + ], + "result": { + "id": "minecraft:end_crystal" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_rod.json b/data/generated/V26_1/data/minecraft/recipe/end_rod.json new file mode 100644 index 00000000..853da087 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_rod.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:popped_chorus_fruit", + "/": "minecraft:blaze_rod" + }, + "pattern": [ + "/", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:end_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab.json new file mode 100644 index 00000000..e34cc9a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..c2b8d7eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json new file mode 100644 index 00000000..ac14a317 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs.json new file mode 100644 index 00000000..ca477374 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..df609144 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json new file mode 100644 index 00000000..83cb309f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall.json new file mode 100644 index 00000000..2ab3a52b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..4516669a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json new file mode 100644 index 00000000..96fc2438 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks.json new file mode 100644 index 00000000..91c83005 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:end_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json new file mode 100644 index 00000000..8cf6557e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/ender_chest.json b/data/generated/V26_1/data/minecraft/recipe/ender_chest.json new file mode 100644 index 00000000..35698de0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/ender_chest.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:obsidian", + "E": "minecraft:ender_eye" + }, + "pattern": [ + "###", + "#E#", + "###" + ], + "result": { + "id": "minecraft:ender_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/ender_eye.json b/data/generated/V26_1/data/minecraft/recipe/ender_eye.json new file mode 100644 index 00000000..33704586 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/ender_eye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:ender_pearl", + "minecraft:blaze_powder" + ], + "result": { + "id": "minecraft:ender_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper.json new file mode 100644 index 00000000..6cede3d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..6c5e9236 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e4cb96a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_bulb.json new file mode 100644 index 00000000..ecd9033c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "exposed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:exposed_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate.json new file mode 100644 index 00000000..089d7a2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "exposed_copper_grate", + "key": { + "M": "minecraft:exposed_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..bb6b55e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper.json new file mode 100644 index 00000000..df84550f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..8f5084fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab.json new file mode 100644 index 00000000..34e6c7fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..640c73f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 8, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..c1980128 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..7e775ef5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..8ca343e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..4696ac0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..778df4fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:end_stone", + "S": "minecraft:eye_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:eye_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..2a770833 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:eye", + "template": "minecraft:eye_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/fermented_spider_eye.json b/data/generated/V26_1/data/minecraft/recipe/fermented_spider_eye.json new file mode 100644 index 00000000..3cbec4f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/fermented_spider_eye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:spider_eye", + "minecraft:brown_mushroom", + "minecraft:sugar" + ], + "result": { + "id": "minecraft:fermented_spider_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/field_masoned_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/field_masoned_banner_pattern.json new file mode 100644 index 00000000..b56fce62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/field_masoned_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:bricks" + ], + "result": { + "id": "minecraft:field_masoned_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/fire_charge.json b/data/generated/V26_1/data/minecraft/recipe/fire_charge.json new file mode 100644 index 00000000..cde6577d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/fire_charge.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:gunpowder", + "minecraft:blaze_powder", + [ + "minecraft:coal", + "minecraft:charcoal" + ] + ], + "result": { + "count": 3, + "id": "minecraft:fire_charge" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/firework_rocket.json b/data/generated/V26_1/data/minecraft/recipe/firework_rocket.json new file mode 100644 index 00000000..c080742d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/firework_rocket.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_special_firework_rocket", + "fuel": "minecraft:gunpowder", + "result": { + "count": 3, + "id": "minecraft:firework_rocket" + }, + "shell": "minecraft:paper", + "star": "minecraft:firework_star" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/firework_rocket_simple.json b/data/generated/V26_1/data/minecraft/recipe/firework_rocket_simple.json new file mode 100644 index 00000000..af8dfcbe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/firework_rocket_simple.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:gunpowder", + "minecraft:paper" + ], + "result": { + "count": 3, + "id": "minecraft:firework_rocket" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/firework_star.json b/data/generated/V26_1/data/minecraft/recipe/firework_star.json new file mode 100644 index 00000000..12950540 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/firework_star.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_special_firework_star", + "dye": "#minecraft:dyes", + "fuel": "minecraft:gunpowder", + "result": { + "id": "minecraft:firework_star" + }, + "shapes": { + "burst": "minecraft:feather", + "creeper": "#minecraft:skulls", + "large_ball": "minecraft:fire_charge", + "star": "minecraft:gold_nugget" + }, + "trail": "minecraft:diamond", + "twinkle": "minecraft:glowstone_dust" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/firework_star_fade.json b/data/generated/V26_1/data/minecraft/recipe/firework_star_fade.json new file mode 100644 index 00000000..ed2be2a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/firework_star_fade.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_firework_star_fade", + "dye": "#minecraft:dyes", + "result": { + "id": "minecraft:firework_star" + }, + "target": "minecraft:firework_star" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/fishing_rod.json b/data/generated/V26_1/data/minecraft/recipe/fishing_rod.json new file mode 100644 index 00000000..58d5d3b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/fishing_rod.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:string" + }, + "pattern": [ + " #", + " #X", + "# X" + ], + "result": { + "id": "minecraft:fishing_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/fletching_table.json b/data/generated/V26_1/data/minecraft/recipe/fletching_table.json new file mode 100644 index 00000000..768fb583 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/fletching_table.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:flint" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:fletching_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/flint_and_steel.json b/data/generated/V26_1/data/minecraft/recipe/flint_and_steel.json new file mode 100644 index 00000000..d16f2e7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/flint_and_steel.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "ingredients": [ + "minecraft:iron_ingot", + "minecraft:flint" + ], + "result": { + "id": "minecraft:flint_and_steel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..e6e33919 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:breeze_rod", + "S": "minecraft:flow_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:flow_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9dffe801 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:flow", + "template": "minecraft:flow_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/flower_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/flower_banner_pattern.json new file mode 100644 index 00000000..cc5473c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/flower_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:oxeye_daisy" + ], + "result": { + "id": "minecraft:flower_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/flower_pot.json b/data/generated/V26_1/data/minecraft/recipe/flower_pot.json new file mode 100644 index 00000000..e8ecd66c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/flower_pot.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "id": "minecraft:flower_pot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/furnace.json b/data/generated/V26_1/data/minecraft/recipe/furnace.json new file mode 100644 index 00000000..7ed8847b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/furnace.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:stone_crafting_materials" + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "id": "minecraft:furnace" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/furnace_minecart.json b/data/generated/V26_1/data/minecraft/recipe/furnace_minecart.json new file mode 100644 index 00000000..3d244359 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/furnace_minecart.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:furnace", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:furnace_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glass.json b/data/generated/V26_1/data/minecraft/recipe/glass.json new file mode 100644 index 00000000..2d4a6dcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glass.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "#minecraft:smelts_to_glass", + "result": { + "id": "minecraft:glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glass_bottle.json b/data/generated/V26_1/data/minecraft/recipe/glass_bottle.json new file mode 100644 index 00000000..a06285ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glass_bottle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:glass" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "count": 3, + "id": "minecraft:glass_bottle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/glass_pane.json new file mode 100644 index 00000000..aa0cbbfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glistering_melon_slice.json b/data/generated/V26_1/data/minecraft/recipe/glistering_melon_slice.json new file mode 100644 index 00000000..668773e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glistering_melon_slice.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:gold_nugget", + "X": "minecraft:melon_slice" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:glistering_melon_slice" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glow_item_frame.json b/data/generated/V26_1/data/minecraft/recipe/glow_item_frame.json new file mode 100644 index 00000000..c3e44609 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glow_item_frame.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:item_frame", + "minecraft:glow_ink_sac" + ], + "result": { + "id": "minecraft:glow_item_frame" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/glowstone.json b/data/generated/V26_1/data/minecraft/recipe/glowstone.json new file mode 100644 index 00000000..b3060250 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/glowstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:glowstone_dust" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:glowstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_block.json b/data/generated/V26_1/data/minecraft/recipe/gold_block.json new file mode 100644 index 00000000..11557403 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:gold_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:gold_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json new file mode 100644 index 00000000..0410017f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:deepslate_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json new file mode 100644 index 00000000..c8b61a23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json new file mode 100644 index 00000000..2959687a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:nether_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json new file mode 100644 index 00000000..29ab0275 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:raw_gold", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_gold_block.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_gold_block.json new file mode 100644 index 00000000..e52ae56d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_gold_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "gold_ingot", + "ingredients": [ + "minecraft:gold_block" + ], + "result": { + "count": 9, + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_nuggets.json new file mode 100644 index 00000000..621aff7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_nuggets.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "gold_ingot", + "key": { + "#": "minecraft:gold_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json new file mode 100644 index 00000000..828e8c7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:deepslate_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json new file mode 100644 index 00000000..500b47ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json new file mode 100644 index 00000000..9fc83af7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:nether_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json new file mode 100644 index 00000000..f603d223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:raw_gold", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_nugget.json b/data/generated/V26_1/data/minecraft/recipe/gold_nugget.json new file mode 100644 index 00000000..1059455e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_nugget.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:gold_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_blasting.json new file mode 100644 index 00000000..f0d1b3a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_blasting.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.1, + "ingredient": [ + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor" + ], + "result": { + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_smelting.json new file mode 100644 index 00000000..90918d59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gold_nugget_from_smelting.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": [ + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor" + ], + "result": { + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_apple.json b/data/generated/V26_1/data/minecraft/recipe/golden_apple.json new file mode 100644 index 00000000..8d3bdf26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_apple.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:gold_ingot", + "X": "minecraft:apple" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:golden_apple" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_axe.json b/data/generated/V26_1/data/minecraft/recipe/golden_axe.json new file mode 100644 index 00000000..f4818221 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:golden_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_boots.json b/data/generated/V26_1/data/minecraft/recipe/golden_boots.json new file mode 100644 index 00000000..6cf74d58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:golden_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_carrot.json b/data/generated/V26_1/data/minecraft/recipe/golden_carrot.json new file mode 100644 index 00000000..c6cc4ec6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_carrot.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:gold_nugget", + "X": "minecraft:carrot" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:golden_carrot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_chestplate.json b/data/generated/V26_1/data/minecraft/recipe/golden_chestplate.json new file mode 100644 index 00000000..1291fe3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:golden_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_dandelion.json b/data/generated/V26_1/data/minecraft/recipe/golden_dandelion.json new file mode 100644 index 00000000..99f0a200 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_dandelion.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:gold_nugget", + "I": "minecraft:dandelion" + }, + "pattern": [ + "###", + "#I#", + "###" + ], + "result": { + "id": "minecraft:golden_dandelion" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_helmet.json b/data/generated/V26_1/data/minecraft/recipe/golden_helmet.json new file mode 100644 index 00000000..0f4a12d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:golden_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_hoe.json b/data/generated/V26_1/data/minecraft/recipe/golden_hoe.json new file mode 100644 index 00000000..df5b5a3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:golden_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_leggings.json b/data/generated/V26_1/data/minecraft/recipe/golden_leggings.json new file mode 100644 index 00000000..3ebe8656 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:golden_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/golden_pickaxe.json new file mode 100644 index 00000000..057695d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:golden_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_shovel.json b/data/generated/V26_1/data/minecraft/recipe/golden_shovel.json new file mode 100644 index 00000000..5c609805 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:golden_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_spear.json b/data/generated/V26_1/data/minecraft/recipe/golden_spear.json new file mode 100644 index 00000000..d8d56ffb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:golden_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/golden_sword.json b/data/generated/V26_1/data/minecraft/recipe/golden_sword.json new file mode 100644 index 00000000..9792d452 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/golden_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:golden_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite.json b/data/generated/V26_1/data/minecraft/recipe/granite.json new file mode 100644 index 00000000..fae38363 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "minecraft:quartz" + ], + "result": { + "id": "minecraft:granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_slab.json b/data/generated/V26_1/data/minecraft/recipe/granite_slab.json new file mode 100644 index 00000000..b37f8d5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..5d67cee5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "count": 2, + "id": "minecraft:granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/granite_stairs.json new file mode 100644 index 00000000..3d29b6f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..3ee2400d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_wall.json b/data/generated/V26_1/data/minecraft/recipe/granite_wall.json new file mode 100644 index 00000000..eadea89c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:granite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json new file mode 100644 index 00000000..bf3cb20c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:granite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_banner.json b/data/generated/V26_1/data/minecraft/recipe/gray_banner.json new file mode 100644 index 00000000..c9818cb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:gray_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/gray_banner_duplicate.json new file mode 100644 index 00000000..6efe4bae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:gray_banner", + "result": { + "id": "minecraft:gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_bed.json b/data/generated/V26_1/data/minecraft/recipe/gray_bed.json new file mode 100644 index 00000000..53567d21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:gray_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_bundle.json b/data/generated/V26_1/data/minecraft/recipe/gray_bundle.json new file mode 100644 index 00000000..f988d547 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:gray_dye", + "result": { + "id": "minecraft:gray_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_candle.json b/data/generated/V26_1/data/minecraft/recipe/gray_candle.json new file mode 100644 index 00000000..511be556 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:gray_dye" + ], + "result": { + "id": "minecraft:gray_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_carpet.json b/data/generated/V26_1/data/minecraft/recipe/gray_carpet.json new file mode 100644 index 00000000..f6c47a30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:gray_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/gray_concrete_powder.json new file mode 100644 index 00000000..ae886e7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:gray_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:gray_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_dye.json b/data/generated/V26_1/data/minecraft/recipe/gray_dye.json new file mode 100644 index 00000000..4f57d7bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "gray_dye", + "ingredients": [ + "minecraft:black_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json new file mode 100644 index 00000000..919e756a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "gray_dye", + "ingredients": [ + "minecraft:closed_eyeblossom" + ], + "result": { + "id": "minecraft:gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/gray_glazed_terracotta.json new file mode 100644 index 00000000..7ea93a93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:gray_terracotta", + "result": { + "id": "minecraft:gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_harness.json b/data/generated/V26_1/data/minecraft/recipe/gray_harness.json new file mode 100644 index 00000000..de848faa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:gray_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/gray_shulker_box.json new file mode 100644 index 00000000..731a0b68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:gray_dye", + "result": { + "id": "minecraft:gray_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass.json new file mode 100644 index 00000000..7246f264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane.json new file mode 100644 index 00000000..0b229b01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:gray_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..ffb8ef49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/gray_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/gray_terracotta.json new file mode 100644 index 00000000..2662e238 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_banner.json b/data/generated/V26_1/data/minecraft/recipe/green_banner.json new file mode 100644 index 00000000..7c1e97a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:green_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:green_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/green_banner_duplicate.json new file mode 100644 index 00000000..7e48a949 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:green_banner", + "result": { + "id": "minecraft:green_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_bed.json b/data/generated/V26_1/data/minecraft/recipe/green_bed.json new file mode 100644 index 00000000..e26aa4e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:green_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:green_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_bundle.json b/data/generated/V26_1/data/minecraft/recipe/green_bundle.json new file mode 100644 index 00000000..0872554a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:green_dye", + "result": { + "id": "minecraft:green_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_candle.json b/data/generated/V26_1/data/minecraft/recipe/green_candle.json new file mode 100644 index 00000000..b94f8ed9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:green_dye" + ], + "result": { + "id": "minecraft:green_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_carpet.json b/data/generated/V26_1/data/minecraft/recipe/green_carpet.json new file mode 100644 index 00000000..a6734f37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:green_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:green_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/green_concrete_powder.json new file mode 100644 index 00000000..ee3d8f2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:green_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:green_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_dye.json b/data/generated/V26_1/data/minecraft/recipe/green_dye.json new file mode 100644 index 00000000..3fa65ba4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 1.0, + "ingredient": "minecraft:cactus", + "result": { + "id": "minecraft:green_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/green_glazed_terracotta.json new file mode 100644 index 00000000..7478830e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:green_terracotta", + "result": { + "id": "minecraft:green_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_harness.json b/data/generated/V26_1/data/minecraft/recipe/green_harness.json new file mode 100644 index 00000000..26480033 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:green_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:green_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/green_shulker_box.json new file mode 100644 index 00000000..f8fca9c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:green_dye", + "result": { + "id": "minecraft:green_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass.json new file mode 100644 index 00000000..ef6b87ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane.json new file mode 100644 index 00000000..e34f8705 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:green_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:green_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..1a7b4bcf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/green_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/green_terracotta.json new file mode 100644 index 00000000..8864bbed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/green_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/grindstone.json b/data/generated/V26_1/data/minecraft/recipe/grindstone.json new file mode 100644 index 00000000..d2bcd285 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/grindstone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "-": "minecraft:stone_slab", + "I": "minecraft:stick" + }, + "pattern": [ + "I-I", + "# #" + ], + "result": { + "id": "minecraft:grindstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/hay_block.json b/data/generated/V26_1/data/minecraft/recipe/hay_block.json new file mode 100644 index 00000000..553fbf8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/hay_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat" + ], + "result": { + "id": "minecraft:hay_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/heavy_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..0d1ba9de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/heavy_weighted_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:heavy_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/honey_block.json b/data/generated/V26_1/data/minecraft/recipe/honey_block.json new file mode 100644 index 00000000..7f148521 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/honey_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:honey_bottle" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:honey_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/honey_bottle.json b/data/generated/V26_1/data/minecraft/recipe/honey_bottle.json new file mode 100644 index 00000000..1700eee6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/honey_bottle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:honey_block", + "minecraft:glass_bottle", + "minecraft:glass_bottle", + "minecraft:glass_bottle", + "minecraft:glass_bottle" + ], + "result": { + "count": 4, + "id": "minecraft:honey_bottle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/honeycomb_block.json b/data/generated/V26_1/data/minecraft/recipe/honeycomb_block.json new file mode 100644 index 00000000..1161c549 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/honeycomb_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:honeycomb" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:honeycomb_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/hopper.json b/data/generated/V26_1/data/minecraft/recipe/hopper.json new file mode 100644 index 00000000..83bea364 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/hopper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "C": "minecraft:chest", + "I": "minecraft:iron_ingot" + }, + "pattern": [ + "I I", + "ICI", + " I " + ], + "result": { + "id": "minecraft:hopper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/hopper_minecart.json b/data/generated/V26_1/data/minecraft/recipe/hopper_minecart.json new file mode 100644 index 00000000..f3aadc7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/hopper_minecart.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:hopper", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:hopper_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..eeb3a026 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:host_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:host_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..b1933cfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:host", + "template": "minecraft:host_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_axe.json b/data/generated/V26_1/data/minecraft/recipe/iron_axe.json new file mode 100644 index 00000000..34270c7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:iron_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_bars.json b/data/generated/V26_1/data/minecraft/recipe/iron_bars.json new file mode 100644 index 00000000..f5b830e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_bars.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:iron_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_block.json b/data/generated/V26_1/data/minecraft/recipe/iron_block.json new file mode 100644 index 00000000..dce7baad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:iron_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_boots.json b/data/generated/V26_1/data/minecraft/recipe/iron_boots.json new file mode 100644 index 00000000..f54c5bd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:iron_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_chain.json b/data/generated/V26_1/data/minecraft/recipe/iron_chain.json new file mode 100644 index 00000000..d4099023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_chain.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": "minecraft:iron_ingot", + "N": "minecraft:iron_nugget" + }, + "pattern": [ + "N", + "I", + "N" + ], + "result": { + "id": "minecraft:iron_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_chestplate.json b/data/generated/V26_1/data/minecraft/recipe/iron_chestplate.json new file mode 100644 index 00000000..eba5a1b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:iron_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_door.json b/data/generated/V26_1/data/minecraft/recipe/iron_door.json new file mode 100644 index 00000000..e7abab48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_door.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:iron_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_helmet.json b/data/generated/V26_1/data/minecraft/recipe/iron_helmet.json new file mode 100644 index 00000000..1a557a24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:iron_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_hoe.json b/data/generated/V26_1/data/minecraft/recipe/iron_hoe.json new file mode 100644 index 00000000..3240ebe4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:iron_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json new file mode 100644 index 00000000..ce5872c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:deepslate_iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json new file mode 100644 index 00000000..e130fd11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json new file mode 100644 index 00000000..922e5715 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:raw_iron", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_iron_block.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_iron_block.json new file mode 100644 index 00000000..d7d84499 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_iron_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "iron_ingot", + "ingredients": [ + "minecraft:iron_block" + ], + "result": { + "count": 9, + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_nuggets.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_nuggets.json new file mode 100644 index 00000000..257a4845 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_nuggets.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "iron_ingot", + "key": { + "#": "minecraft:iron_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json new file mode 100644 index 00000000..c1a8271e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:deepslate_iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json new file mode 100644 index 00000000..8c82f70c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json new file mode 100644 index 00000000..0cd30a54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:raw_iron", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_leggings.json b/data/generated/V26_1/data/minecraft/recipe/iron_leggings.json new file mode 100644 index 00000000..5c701065 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:iron_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_nugget.json b/data/generated/V26_1/data/minecraft/recipe/iron_nugget.json new file mode 100644 index 00000000..a46715b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_nugget.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:iron_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_blasting.json b/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_blasting.json new file mode 100644 index 00000000..231b5019 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_blasting.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.1, + "ingredient": [ + "minecraft:iron_pickaxe", + "minecraft:iron_shovel", + "minecraft:iron_axe", + "minecraft:iron_hoe", + "minecraft:iron_sword", + "minecraft:iron_spear", + "minecraft:iron_helmet", + "minecraft:iron_chestplate", + "minecraft:iron_leggings", + "minecraft:iron_boots", + "minecraft:iron_horse_armor", + "minecraft:iron_nautilus_armor", + "minecraft:chainmail_helmet", + "minecraft:chainmail_chestplate", + "minecraft:chainmail_leggings", + "minecraft:chainmail_boots" + ], + "result": { + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_smelting.json b/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_smelting.json new file mode 100644 index 00000000..b8d5b238 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_nugget_from_smelting.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": [ + "minecraft:iron_pickaxe", + "minecraft:iron_shovel", + "minecraft:iron_axe", + "minecraft:iron_hoe", + "minecraft:iron_sword", + "minecraft:iron_spear", + "minecraft:iron_helmet", + "minecraft:iron_chestplate", + "minecraft:iron_leggings", + "minecraft:iron_boots", + "minecraft:iron_horse_armor", + "minecraft:chainmail_helmet", + "minecraft:chainmail_chestplate", + "minecraft:chainmail_leggings", + "minecraft:chainmail_boots", + "minecraft:iron_nautilus_armor" + ], + "result": { + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/iron_pickaxe.json new file mode 100644 index 00000000..206d8944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:iron_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_shovel.json b/data/generated/V26_1/data/minecraft/recipe/iron_shovel.json new file mode 100644 index 00000000..1a7b708b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:iron_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_spear.json b/data/generated/V26_1/data/minecraft/recipe/iron_spear.json new file mode 100644 index 00000000..75ab4154 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:iron_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_sword.json b/data/generated/V26_1/data/minecraft/recipe/iron_sword.json new file mode 100644 index 00000000..09970dfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:iron_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/iron_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/iron_trapdoor.json new file mode 100644 index 00000000..657df689 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/iron_trapdoor.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:iron_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/item_frame.json b/data/generated/V26_1/data/minecraft/recipe/item_frame.json new file mode 100644 index 00000000..826a9273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/item_frame.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "X": "minecraft:leather" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:item_frame" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jack_o_lantern.json b/data/generated/V26_1/data/minecraft/recipe/jack_o_lantern.json new file mode 100644 index 00000000..c3e165aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jack_o_lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "A": "minecraft:carved_pumpkin", + "B": "minecraft:torch" + }, + "pattern": [ + "A", + "B" + ], + "result": { + "id": "minecraft:jack_o_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jukebox.json b/data/generated/V26_1/data/minecraft/recipe/jukebox.json new file mode 100644 index 00000000..15fdbb31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jukebox.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:diamond" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:jukebox" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_boat.json b/data/generated/V26_1/data/minecraft/recipe/jungle_boat.json new file mode 100644 index 00000000..8d3a2bfd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:jungle_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_button.json b/data/generated/V26_1/data/minecraft/recipe/jungle_button.json new file mode 100644 index 00000000..c7f247dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:jungle_planks" + ], + "result": { + "id": "minecraft:jungle_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/jungle_chest_boat.json new file mode 100644 index 00000000..a1fe36af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:jungle_boat" + ], + "result": { + "id": "minecraft:jungle_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_door.json b/data/generated/V26_1/data/minecraft/recipe/jungle_door.json new file mode 100644 index 00000000..0a989a29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_fence.json b/data/generated/V26_1/data/minecraft/recipe/jungle_fence.json new file mode 100644 index 00000000..1de0f5bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:jungle_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/jungle_fence_gate.json new file mode 100644 index 00000000..b02bed76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:jungle_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:jungle_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/jungle_hanging_sign.json new file mode 100644 index 00000000..05131596 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_jungle_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_planks.json b/data/generated/V26_1/data/minecraft/recipe/jungle_planks.json new file mode 100644 index 00000000..a5ced331 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:jungle_logs" + ], + "result": { + "count": 4, + "id": "minecraft:jungle_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/jungle_pressure_plate.json new file mode 100644 index 00000000..3d1c29a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:jungle_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_shelf.json b/data/generated/V26_1/data/minecraft/recipe/jungle_shelf.json new file mode 100644 index 00000000..f290fa7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_jungle_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_sign.json b/data/generated/V26_1/data/minecraft/recipe/jungle_sign.json new file mode 100644 index 00000000..dd5e3ad2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:jungle_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:jungle_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_slab.json b/data/generated/V26_1/data/minecraft/recipe/jungle_slab.json new file mode 100644 index 00000000..cd6ace80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_stairs.json b/data/generated/V26_1/data/minecraft/recipe/jungle_stairs.json new file mode 100644 index 00000000..194f3e98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:jungle_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/jungle_trapdoor.json new file mode 100644 index 00000000..f63d5277 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:jungle_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/jungle_wood.json b/data/generated/V26_1/data/minecraft/recipe/jungle_wood.json new file mode 100644 index 00000000..699c943f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/jungle_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:jungle_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/ladder.json b/data/generated/V26_1/data/minecraft/recipe/ladder.json new file mode 100644 index 00000000..cbfba8ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/ladder.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick" + }, + "pattern": [ + "# #", + "###", + "# #" + ], + "result": { + "count": 3, + "id": "minecraft:ladder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lantern.json b/data/generated/V26_1/data/minecraft/recipe/lantern.json new file mode 100644 index 00000000..4bc021c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:torch", + "X": "minecraft:iron_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_block.json b/data/generated/V26_1/data/minecraft/recipe/lapis_block.json new file mode 100644 index 00000000..78d1359f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:lapis_lazuli" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:lapis_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli.json b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli.json new file mode 100644 index 00000000..4aece460 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:lapis_block" + ], + "result": { + "count": 9, + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json new file mode 100644 index 00000000..f329523c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:deepslate_lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json new file mode 100644 index 00000000..b88b70f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json new file mode 100644 index 00000000..9493969d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:deepslate_lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json new file mode 100644 index 00000000..2ff1bf54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lead.json b/data/generated/V26_1/data/minecraft/recipe/lead.json new file mode 100644 index 00000000..be3bcf9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lead.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "~": "minecraft:string" + }, + "pattern": [ + "~~ ", + "~~ ", + " ~" + ], + "result": { + "count": 2, + "id": "minecraft:lead" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leaf_litter.json b/data/generated/V26_1/data/minecraft/recipe/leaf_litter.json new file mode 100644 index 00000000..d5263e5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leaf_litter.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "#minecraft:leaves", + "result": { + "id": "minecraft:leaf_litter" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather.json b/data/generated/V26_1/data/minecraft/recipe/leather.json new file mode 100644 index 00000000..d231a4aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:rabbit_hide" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:leather" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_boots.json b/data/generated/V26_1/data/minecraft/recipe/leather_boots.json new file mode 100644 index 00000000..8ac379c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:leather_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_boots_dyed.json b/data/generated/V26_1/data/minecraft/recipe/leather_boots_dyed.json new file mode 100644 index 00000000..ea2df16e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_boots_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_boots" + }, + "target": "minecraft:leather_boots" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_chestplate.json b/data/generated/V26_1/data/minecraft/recipe/leather_chestplate.json new file mode 100644 index 00000000..4ccbabbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:leather_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_chestplate_dyed.json b/data/generated/V26_1/data/minecraft/recipe/leather_chestplate_dyed.json new file mode 100644 index 00000000..53d1bc70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_chestplate_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_chestplate" + }, + "target": "minecraft:leather_chestplate" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_helmet.json b/data/generated/V26_1/data/minecraft/recipe/leather_helmet.json new file mode 100644 index 00000000..7a239f13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:leather_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_helmet_dyed.json b/data/generated/V26_1/data/minecraft/recipe/leather_helmet_dyed.json new file mode 100644 index 00000000..4bc247a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_helmet_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_helmet" + }, + "target": "minecraft:leather_helmet" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor.json b/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor.json new file mode 100644 index 00000000..d8c439d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "id": "minecraft:leather_horse_armor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor_dyed.json b/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor_dyed.json new file mode 100644 index 00000000..8118376d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_horse_armor_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_horse_armor" + }, + "target": "minecraft:leather_horse_armor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_leggings.json b/data/generated/V26_1/data/minecraft/recipe/leather_leggings.json new file mode 100644 index 00000000..cdccaa4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:leather_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/leather_leggings_dyed.json b/data/generated/V26_1/data/minecraft/recipe/leather_leggings_dyed.json new file mode 100644 index 00000000..6efcee41 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/leather_leggings_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_leggings" + }, + "target": "minecraft:leather_leggings" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lectern.json b/data/generated/V26_1/data/minecraft/recipe/lectern.json new file mode 100644 index 00000000..d1630977 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lectern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "B": "minecraft:bookshelf", + "S": "#minecraft:wooden_slabs" + }, + "pattern": [ + "SSS", + " B ", + " S " + ], + "result": { + "id": "minecraft:lectern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lever.json b/data/generated/V26_1/data/minecraft/recipe/lever.json new file mode 100644 index 00000000..e633b640 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lever.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "X": "minecraft:stick" + }, + "pattern": [ + "X", + "#" + ], + "result": { + "id": "minecraft:lever" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_banner.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_banner.json new file mode 100644 index 00000000..a9ef87ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:light_blue_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:light_blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_banner_duplicate.json new file mode 100644 index 00000000..61154210 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:light_blue_banner", + "result": { + "id": "minecraft:light_blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_bed.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_bed.json new file mode 100644 index 00000000..2c427b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:light_blue_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:light_blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_bundle.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_bundle.json new file mode 100644 index 00000000..67e762c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:light_blue_dye", + "result": { + "id": "minecraft:light_blue_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_candle.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_candle.json new file mode 100644 index 00000000..7f8cd903 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:light_blue_dye" + ], + "result": { + "id": "minecraft:light_blue_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_carpet.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_carpet.json new file mode 100644 index 00000000..a313438a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:light_blue_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:light_blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_concrete_powder.json new file mode 100644 index 00000000..f3b8aa64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:light_blue_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json new file mode 100644 index 00000000..68337e7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_blue_dye", + "ingredients": [ + "minecraft:blue_orchid" + ], + "result": { + "id": "minecraft:light_blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json new file mode 100644 index 00000000..8bba37bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_blue_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:light_blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..febbbf52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:light_blue_terracotta", + "result": { + "id": "minecraft:light_blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_harness.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_harness.json new file mode 100644 index 00000000..f33ae01f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:light_blue_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:light_blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_shulker_box.json new file mode 100644 index 00000000..28f79584 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:light_blue_dye", + "result": { + "id": "minecraft:light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass.json new file mode 100644 index 00000000..a657c4e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..3ee4022a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:light_blue_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:light_blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..76306fa9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_blue_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/light_blue_terracotta.json new file mode 100644 index 00000000..2254c062 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_banner.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_banner.json new file mode 100644 index 00000000..e46d47f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:light_gray_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:light_gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_banner_duplicate.json new file mode 100644 index 00000000..be35de37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:light_gray_banner", + "result": { + "id": "minecraft:light_gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_bed.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_bed.json new file mode 100644 index 00000000..86e4a668 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:light_gray_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:light_gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_bundle.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_bundle.json new file mode 100644 index 00000000..7f4f6585 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:light_gray_dye", + "result": { + "id": "minecraft:light_gray_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_candle.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_candle.json new file mode 100644 index 00000000..af7bbda9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:light_gray_dye" + ], + "result": { + "id": "minecraft:light_gray_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_carpet.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_carpet.json new file mode 100644 index 00000000..9f53678e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:light_gray_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:light_gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_concrete_powder.json new file mode 100644 index 00000000..3af569d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:light_gray_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json new file mode 100644 index 00000000..c698db21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:azure_bluet" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json new file mode 100644 index 00000000..2e0e91fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:black_dye", + "minecraft:white_dye", + "minecraft:white_dye" + ], + "result": { + "count": 3, + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json new file mode 100644 index 00000000..3b975a27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:gray_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json new file mode 100644 index 00000000..10ef7922 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:oxeye_daisy" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_white_tulip.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_white_tulip.json new file mode 100644 index 00000000..31fece39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_dye_from_white_tulip.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:white_tulip" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..3b5ce20c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:light_gray_terracotta", + "result": { + "id": "minecraft:light_gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_harness.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_harness.json new file mode 100644 index 00000000..2550a380 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:light_gray_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:light_gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_shulker_box.json new file mode 100644 index 00000000..d82ad3b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:light_gray_dye", + "result": { + "id": "minecraft:light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass.json new file mode 100644 index 00000000..cd8d1a8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..9adb8cdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:light_gray_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:light_gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..697b8309 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_gray_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/light_gray_terracotta.json new file mode 100644 index 00000000..b24d944e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/light_weighted_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/light_weighted_pressure_plate.json new file mode 100644 index 00000000..305f3ac7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/light_weighted_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:gold_ingot" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:light_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lightning_rod.json b/data/generated/V26_1/data/minecraft/recipe/lightning_rod.json new file mode 100644 index 00000000..106d7f34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lightning_rod.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "#", + "#", + "#" + ], + "result": { + "id": "minecraft:lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_banner.json b/data/generated/V26_1/data/minecraft/recipe/lime_banner.json new file mode 100644 index 00000000..f275c460 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:lime_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:lime_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/lime_banner_duplicate.json new file mode 100644 index 00000000..e6c50455 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:lime_banner", + "result": { + "id": "minecraft:lime_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_bed.json b/data/generated/V26_1/data/minecraft/recipe/lime_bed.json new file mode 100644 index 00000000..97782f77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:lime_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:lime_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_bundle.json b/data/generated/V26_1/data/minecraft/recipe/lime_bundle.json new file mode 100644 index 00000000..8252846b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:lime_dye", + "result": { + "id": "minecraft:lime_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_candle.json b/data/generated/V26_1/data/minecraft/recipe/lime_candle.json new file mode 100644 index 00000000..5b3ad178 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:lime_dye" + ], + "result": { + "id": "minecraft:lime_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_carpet.json b/data/generated/V26_1/data/minecraft/recipe/lime_carpet.json new file mode 100644 index 00000000..5f1d63c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:lime_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:lime_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/lime_concrete_powder.json new file mode 100644 index 00000000..ac507482 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:lime_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:lime_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_dye.json b/data/generated/V26_1/data/minecraft/recipe/lime_dye.json new file mode 100644 index 00000000..2024624b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:green_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:lime_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_dye_from_smelting.json b/data/generated/V26_1/data/minecraft/recipe/lime_dye_from_smelting.json new file mode 100644 index 00000000..65a548ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_dye_from_smelting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:sea_pickle", + "result": { + "id": "minecraft:lime_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/lime_glazed_terracotta.json new file mode 100644 index 00000000..4996e3f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:lime_terracotta", + "result": { + "id": "minecraft:lime_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_harness.json b/data/generated/V26_1/data/minecraft/recipe/lime_harness.json new file mode 100644 index 00000000..5f84469f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:lime_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:lime_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/lime_shulker_box.json new file mode 100644 index 00000000..eff96ea7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:lime_dye", + "result": { + "id": "minecraft:lime_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass.json new file mode 100644 index 00000000..4f5cee1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane.json new file mode 100644 index 00000000..d81b5f71 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:lime_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:lime_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..69999a75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lime_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/lime_terracotta.json new file mode 100644 index 00000000..996cff11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lime_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/lodestone.json b/data/generated/V26_1/data/minecraft/recipe/lodestone.json new file mode 100644 index 00000000..8f7e0574 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/lodestone.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:iron_ingot", + "S": "minecraft:chiseled_stone_bricks" + }, + "pattern": [ + "SSS", + "S#S", + "SSS" + ], + "result": { + "id": "minecraft:lodestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/loom.json b/data/generated/V26_1/data/minecraft/recipe/loom.json new file mode 100644 index 00000000..fb69639b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/loom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:string" + }, + "pattern": [ + "@@", + "##" + ], + "result": { + "id": "minecraft:loom" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mace.json b/data/generated/V26_1/data/minecraft/recipe/mace.json new file mode 100644 index 00000000..0f09d30b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mace.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:heavy_core", + "I": "minecraft:breeze_rod" + }, + "pattern": [ + " # ", + " I " + ], + "result": { + "id": "minecraft:mace" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_banner.json b/data/generated/V26_1/data/minecraft/recipe/magenta_banner.json new file mode 100644 index 00000000..a67285a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:magenta_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:magenta_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/magenta_banner_duplicate.json new file mode 100644 index 00000000..8c0be383 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:magenta_banner", + "result": { + "id": "minecraft:magenta_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_bed.json b/data/generated/V26_1/data/minecraft/recipe/magenta_bed.json new file mode 100644 index 00000000..1ca7439a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:magenta_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:magenta_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_bundle.json b/data/generated/V26_1/data/minecraft/recipe/magenta_bundle.json new file mode 100644 index 00000000..f63d30a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:magenta_dye", + "result": { + "id": "minecraft:magenta_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_candle.json b/data/generated/V26_1/data/minecraft/recipe/magenta_candle.json new file mode 100644 index 00000000..395ccf9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:magenta_dye" + ], + "result": { + "id": "minecraft:magenta_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_carpet.json b/data/generated/V26_1/data/minecraft/recipe/magenta_carpet.json new file mode 100644 index 00000000..197c1ec5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:magenta_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:magenta_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/magenta_concrete_powder.json new file mode 100644 index 00000000..275bc0b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:magenta_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_allium.json b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_allium.json new file mode 100644 index 00000000..e4eb36d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_allium.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "magenta_dye", + "ingredients": [ + "minecraft:allium" + ], + "result": { + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json new file mode 100644 index 00000000..cee64c26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "magenta_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye", + "minecraft:pink_dye" + ], + "result": { + "count": 3, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json new file mode 100644 index 00000000..dd591a84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "magenta_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye", + "minecraft:red_dye", + "minecraft:white_dye" + ], + "result": { + "count": 4, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_lilac.json b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_lilac.json new file mode 100644 index 00000000..2a19765e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_lilac.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "magenta_dye", + "ingredients": [ + "minecraft:lilac" + ], + "result": { + "count": 2, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json new file mode 100644 index 00000000..851b9081 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "magenta_dye", + "ingredients": [ + "minecraft:purple_dye", + "minecraft:pink_dye" + ], + "result": { + "count": 2, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/magenta_glazed_terracotta.json new file mode 100644 index 00000000..3b098c29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:magenta_terracotta", + "result": { + "id": "minecraft:magenta_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_harness.json b/data/generated/V26_1/data/minecraft/recipe/magenta_harness.json new file mode 100644 index 00000000..12a943df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:magenta_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:magenta_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/magenta_shulker_box.json new file mode 100644 index 00000000..ae4337cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:magenta_dye", + "result": { + "id": "minecraft:magenta_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass.json new file mode 100644 index 00000000..6b70363e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane.json new file mode 100644 index 00000000..9bb1fbdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:magenta_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:magenta_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8f8f8254 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magenta_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/magenta_terracotta.json new file mode 100644 index 00000000..64a94c61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magenta_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magma_block.json b/data/generated/V26_1/data/minecraft/recipe/magma_block.json new file mode 100644 index 00000000..b75f6f7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magma_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:magma_cream" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:magma_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/magma_cream.json b/data/generated/V26_1/data/minecraft/recipe/magma_cream.json new file mode 100644 index 00000000..67f41606 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/magma_cream.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:blaze_powder", + "minecraft:slime_ball" + ], + "result": { + "id": "minecraft:magma_cream" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_boat.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_boat.json new file mode 100644 index 00000000..5e43f6a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:mangrove_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_button.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_button.json new file mode 100644 index 00000000..87b3e06e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:mangrove_planks" + ], + "result": { + "id": "minecraft:mangrove_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_chest_boat.json new file mode 100644 index 00000000..9bdfc4a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:mangrove_boat" + ], + "result": { + "id": "minecraft:mangrove_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_door.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_door.json new file mode 100644 index 00000000..cbcbe305 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_fence.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_fence.json new file mode 100644 index 00000000..14279f99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:mangrove_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_fence_gate.json new file mode 100644 index 00000000..5629c7de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:mangrove_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:mangrove_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_hanging_sign.json new file mode 100644 index 00000000..dcc84d4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_mangrove_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_planks.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_planks.json new file mode 100644 index 00000000..70ed9700 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:mangrove_logs" + ], + "result": { + "count": 4, + "id": "minecraft:mangrove_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_pressure_plate.json new file mode 100644 index 00000000..1d2829fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:mangrove_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_shelf.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_shelf.json new file mode 100644 index 00000000..bf3d40cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_mangrove_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_sign.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_sign.json new file mode 100644 index 00000000..548f282d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:mangrove_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_slab.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_slab.json new file mode 100644 index 00000000..4dd22f2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_stairs.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_stairs.json new file mode 100644 index 00000000..14e80386 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mangrove_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_trapdoor.json new file mode 100644 index 00000000..d7dacadf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mangrove_wood.json b/data/generated/V26_1/data/minecraft/recipe/mangrove_wood.json new file mode 100644 index 00000000..15628e8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:mangrove_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/map.json b/data/generated/V26_1/data/minecraft/recipe/map.json new file mode 100644 index 00000000..6d98b7dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/map.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:paper", + "X": "minecraft:compass" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:map" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/map_cloning.json b/data/generated/V26_1/data/minecraft/recipe/map_cloning.json new file mode 100644 index 00000000..254d29ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/map_cloning.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_transmute", + "add_material_count_to_result": true, + "category": "misc", + "group": "map_cloning", + "input": "minecraft:filled_map", + "material": "minecraft:map", + "material_count": { + "max": 8, + "min": 1 + }, + "result": { + "id": "minecraft:filled_map" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/map_extending.json b/data/generated/V26_1/data/minecraft/recipe/map_extending.json new file mode 100644 index 00000000..179121cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/map_extending.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_mapextending", + "map": "minecraft:filled_map", + "material": "minecraft:paper", + "result": { + "id": "minecraft:filled_map" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/melon.json b/data/generated/V26_1/data/minecraft/recipe/melon.json new file mode 100644 index 00000000..04d3fdc0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/melon.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice" + ], + "result": { + "id": "minecraft:melon" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/melon_seeds.json b/data/generated/V26_1/data/minecraft/recipe/melon_seeds.json new file mode 100644 index 00000000..ad752d48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/melon_seeds.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:melon_slice" + ], + "result": { + "id": "minecraft:melon_seeds" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/minecart.json b/data/generated/V26_1/data/minecraft/recipe/minecart.json new file mode 100644 index 00000000..766f5de6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/minecart.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mojang_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/mojang_banner_pattern.json new file mode 100644 index 00000000..ded7ed24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mojang_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:enchanted_golden_apple" + ], + "result": { + "id": "minecraft:mojang_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/moss_carpet.json b/data/generated/V26_1/data/minecraft/recipe/moss_carpet.json new file mode 100644 index 00000000..0bfff4c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/moss_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:moss_block" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:moss_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json new file mode 100644 index 00000000..70a3f63c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_cobblestone", + "ingredients": [ + "minecraft:cobblestone", + "minecraft:moss_block" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_vine.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_vine.json new file mode 100644 index 00000000..e01acfe1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_from_vine.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_cobblestone", + "ingredients": [ + "minecraft:cobblestone", + "minecraft:vine" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab.json new file mode 100644 index 00000000..f7a925dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..6f95da18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "count": 2, + "id": "minecraft:mossy_cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..a895c592 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mossy_cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..c3345d11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "id": "minecraft:mossy_cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall.json new file mode 100644 index 00000000..5b06dd65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..4febc998 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "id": "minecraft:mossy_cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab.json new file mode 100644 index 00000000..5d404242 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..ac79fae5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "count": 2, + "id": "minecraft:mossy_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..c4c90779 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mossy_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..58042e70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "id": "minecraft:mossy_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall.json new file mode 100644 index 00000000..c72649b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..8e7be1ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "id": "minecraft:mossy_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json new file mode 100644 index 00000000..d7eb8f74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_stone_bricks", + "ingredients": [ + "minecraft:stone_bricks", + "minecraft:moss_block" + ], + "result": { + "id": "minecraft:mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_vine.json b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_vine.json new file mode 100644 index 00000000..8e4f9291 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mossy_stone_bricks_from_vine.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_stone_bricks", + "ingredients": [ + "minecraft:stone_bricks", + "minecraft:vine" + ], + "result": { + "id": "minecraft:mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab.json new file mode 100644 index 00000000..d05d34ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mud_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..91844f76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "count": 2, + "id": "minecraft:mud_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs.json new file mode 100644 index 00000000..bf88a09d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mud_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..6f6ffa20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "id": "minecraft:mud_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall.json new file mode 100644 index 00000000..3cbb232c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mud_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..a144e09e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "id": "minecraft:mud_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mud_bricks.json b/data/generated/V26_1/data/minecraft/recipe/mud_bricks.json new file mode 100644 index 00000000..2432d904 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mud_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:packed_mud" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:mud_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/muddy_mangrove_roots.json b/data/generated/V26_1/data/minecraft/recipe/muddy_mangrove_roots.json new file mode 100644 index 00000000..a5697151 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/muddy_mangrove_roots.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:mud", + "minecraft:mangrove_roots" + ], + "result": { + "id": "minecraft:muddy_mangrove_roots" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/mushroom_stew.json b/data/generated/V26_1/data/minecraft/recipe/mushroom_stew.json new file mode 100644 index 00000000..c6442e05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/mushroom_stew.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:bowl" + ], + "result": { + "id": "minecraft:mushroom_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/music_disc_5.json b/data/generated/V26_1/data/minecraft/recipe/music_disc_5.json new file mode 100644 index 00000000..c4b886b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/music_disc_5.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5" + ], + "result": { + "id": "minecraft:music_disc_5" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/name_tag.json b/data/generated/V26_1/data/minecraft/recipe/name_tag.json new file mode 100644 index 00000000..2db2aa27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/name_tag.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:paper", + "X": "#minecraft:metal_nuggets" + }, + "pattern": [ + " X", + "# " + ], + "result": { + "id": "minecraft:name_tag" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick.json new file mode 100644 index 00000000..5361e868 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:netherrack", + "result": { + "id": "minecraft:nether_brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_fence.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_fence.json new file mode 100644 index 00000000..e3ffb98e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:nether_brick", + "W": "minecraft:nether_bricks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab.json new file mode 100644 index 00000000..bb01455f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3a20a6b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "count": 2, + "id": "minecraft:nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs.json new file mode 100644 index 00000000..92ddfef2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..1f936fbe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall.json new file mode 100644 index 00000000..7612e590 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..c2d89c0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_bricks.json b/data/generated/V26_1/data/minecraft/recipe/nether_bricks.json new file mode 100644 index 00000000..bbc4ce29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/nether_wart_block.json b/data/generated/V26_1/data/minecraft/recipe/nether_wart_block.json new file mode 100644 index 00000000..3e04dcc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/nether_wart_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart" + ], + "result": { + "id": "minecraft:nether_wart_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_axe_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_axe_smithing.json new file mode 100644 index 00000000..99903fa9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_axe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_axe", + "result": { + "id": "minecraft:netherite_axe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_block.json b/data/generated/V26_1/data/minecraft/recipe/netherite_block.json new file mode 100644 index 00000000..d8ccafc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:netherite_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:netherite_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_boots_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_boots_smithing.json new file mode 100644 index 00000000..9c13806b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_boots_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_boots", + "result": { + "id": "minecraft:netherite_boots" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_chestplate_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_chestplate_smithing.json new file mode 100644 index 00000000..5de05c02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_chestplate_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_chestplate", + "result": { + "id": "minecraft:netherite_chestplate" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_helmet_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_helmet_smithing.json new file mode 100644 index 00000000..50e7927c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_helmet_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_helmet", + "result": { + "id": "minecraft:netherite_helmet" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_hoe_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_hoe_smithing.json new file mode 100644 index 00000000..2fdc9a18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_hoe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_hoe", + "result": { + "id": "minecraft:netherite_hoe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_horse_armor_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_horse_armor_smithing.json new file mode 100644 index 00000000..72eb4f9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_horse_armor_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_horse_armor", + "result": { + "id": "minecraft:netherite_horse_armor" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_ingot.json b/data/generated/V26_1/data/minecraft/recipe/netherite_ingot.json new file mode 100644 index 00000000..4235cca6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_ingot.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "netherite_ingot", + "ingredients": [ + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + "minecraft:gold_ingot" + ], + "result": { + "id": "minecraft:netherite_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_ingot_from_netherite_block.json b/data/generated/V26_1/data/minecraft/recipe/netherite_ingot_from_netherite_block.json new file mode 100644 index 00000000..67fa9e62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_ingot_from_netherite_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "netherite_ingot", + "ingredients": [ + "minecraft:netherite_block" + ], + "result": { + "count": 9, + "id": "minecraft:netherite_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_leggings_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_leggings_smithing.json new file mode 100644 index 00000000..e315e1a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_leggings_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_leggings", + "result": { + "id": "minecraft:netherite_leggings" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_nautilus_armor_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_nautilus_armor_smithing.json new file mode 100644 index 00000000..6adb9015 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_nautilus_armor_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_nautilus_armor", + "result": { + "id": "minecraft:netherite_nautilus_armor" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_pickaxe_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_pickaxe_smithing.json new file mode 100644 index 00000000..3193a208 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_pickaxe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_pickaxe", + "result": { + "id": "minecraft:netherite_pickaxe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_scrap.json b/data/generated/V26_1/data/minecraft/recipe/netherite_scrap.json new file mode 100644 index 00000000..5eb36904 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_scrap.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 2.0, + "ingredient": "minecraft:ancient_debris", + "result": { + "id": "minecraft:netherite_scrap" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_scrap_from_blasting.json b/data/generated/V26_1/data/minecraft/recipe/netherite_scrap_from_blasting.json new file mode 100644 index 00000000..86e9958e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_scrap_from_blasting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 2.0, + "ingredient": "minecraft:ancient_debris", + "result": { + "id": "minecraft:netherite_scrap" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_shovel_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_shovel_smithing.json new file mode 100644 index 00000000..59ad7518 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_shovel_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_shovel", + "result": { + "id": "minecraft:netherite_shovel" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_spear_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_spear_smithing.json new file mode 100644 index 00000000..a0ea1782 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_spear_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_spear", + "result": { + "id": "minecraft:netherite_spear" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_sword_smithing.json b/data/generated/V26_1/data/minecraft/recipe/netherite_sword_smithing.json new file mode 100644 index 00000000..45ce0fb1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_sword_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_sword", + "result": { + "id": "minecraft:netherite_sword" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/netherite_upgrade_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..25e4311f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/netherite_upgrade_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:netherrack", + "S": "minecraft:netherite_upgrade_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:netherite_upgrade_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/note_block.json b/data/generated/V26_1/data/minecraft/recipe/note_block.json new file mode 100644 index 00000000..a5c710b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/note_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:redstone" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:note_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_boat.json b/data/generated/V26_1/data/minecraft/recipe/oak_boat.json new file mode 100644 index 00000000..c829916b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_button.json b/data/generated/V26_1/data/minecraft/recipe/oak_button.json new file mode 100644 index 00000000..f54c2134 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:oak_planks" + ], + "result": { + "id": "minecraft:oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/oak_chest_boat.json new file mode 100644 index 00000000..64317f6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:oak_boat" + ], + "result": { + "id": "minecraft:oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_door.json b/data/generated/V26_1/data/minecraft/recipe/oak_door.json new file mode 100644 index 00000000..d93c7d98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_fence.json b/data/generated/V26_1/data/minecraft/recipe/oak_fence.json new file mode 100644 index 00000000..c5793495 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/oak_fence_gate.json new file mode 100644 index 00000000..37e5786d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/oak_hanging_sign.json new file mode 100644 index 00000000..a7d60824 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_planks.json b/data/generated/V26_1/data/minecraft/recipe/oak_planks.json new file mode 100644 index 00000000..113883bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/oak_pressure_plate.json new file mode 100644 index 00000000..f72d6b4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_shelf.json b/data/generated/V26_1/data/minecraft/recipe/oak_shelf.json new file mode 100644 index 00000000..e50b13f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_sign.json b/data/generated/V26_1/data/minecraft/recipe/oak_sign.json new file mode 100644 index 00000000..820f3d90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_slab.json b/data/generated/V26_1/data/minecraft/recipe/oak_slab.json new file mode 100644 index 00000000..5cb7f02d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_stairs.json b/data/generated/V26_1/data/minecraft/recipe/oak_stairs.json new file mode 100644 index 00000000..b24521c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/oak_trapdoor.json new file mode 100644 index 00000000..be5450d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/oak_wood.json new file mode 100644 index 00000000..d902ffcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/observer.json b/data/generated/V26_1/data/minecraft/recipe/observer.json new file mode 100644 index 00000000..f3a72fbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/observer.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "Q": "minecraft:quartz", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "RRQ", + "###" + ], + "result": { + "id": "minecraft:observer" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_banner.json b/data/generated/V26_1/data/minecraft/recipe/orange_banner.json new file mode 100644 index 00000000..679f8ea5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:orange_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:orange_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/orange_banner_duplicate.json new file mode 100644 index 00000000..9a2fdbfd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:orange_banner", + "result": { + "id": "minecraft:orange_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_bed.json b/data/generated/V26_1/data/minecraft/recipe/orange_bed.json new file mode 100644 index 00000000..b80874cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:orange_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:orange_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_bundle.json b/data/generated/V26_1/data/minecraft/recipe/orange_bundle.json new file mode 100644 index 00000000..4c70b6c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:orange_dye", + "result": { + "id": "minecraft:orange_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_candle.json b/data/generated/V26_1/data/minecraft/recipe/orange_candle.json new file mode 100644 index 00000000..df255562 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:orange_dye" + ], + "result": { + "id": "minecraft:orange_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_carpet.json b/data/generated/V26_1/data/minecraft/recipe/orange_carpet.json new file mode 100644 index 00000000..8a71c405 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:orange_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:orange_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/orange_concrete_powder.json new file mode 100644 index 00000000..4ca5831d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:orange_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:orange_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json new file mode 100644 index 00000000..95eafb36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "orange_dye", + "ingredients": [ + "minecraft:open_eyeblossom" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_orange_tulip.json b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_orange_tulip.json new file mode 100644 index 00000000..8a413bfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_orange_tulip.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "orange_dye", + "ingredients": [ + "minecraft:orange_tulip" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_red_yellow.json b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_red_yellow.json new file mode 100644 index 00000000..32a5a5de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_red_yellow.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "orange_dye", + "ingredients": [ + "minecraft:red_dye", + "minecraft:yellow_dye" + ], + "result": { + "count": 2, + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_torchflower.json b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_torchflower.json new file mode 100644 index 00000000..f1b90904 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_dye_from_torchflower.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "orange_dye", + "ingredients": [ + "minecraft:torchflower" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/orange_glazed_terracotta.json new file mode 100644 index 00000000..e3a0dacf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:orange_terracotta", + "result": { + "id": "minecraft:orange_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_harness.json b/data/generated/V26_1/data/minecraft/recipe/orange_harness.json new file mode 100644 index 00000000..67e596d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:orange_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:orange_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/orange_shulker_box.json new file mode 100644 index 00000000..64a1aabf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:orange_dye", + "result": { + "id": "minecraft:orange_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass.json new file mode 100644 index 00000000..f096ea55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane.json new file mode 100644 index 00000000..a3d8d192 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:orange_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:orange_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..87f3d7db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/orange_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/orange_terracotta.json new file mode 100644 index 00000000..ed1a411d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/orange_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper.json new file mode 100644 index 00000000..190263b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..a31541c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..0df67902 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_bulb.json new file mode 100644 index 00000000..5df360ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "oxidized_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:oxidized_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate.json new file mode 100644 index 00000000..4ca56fb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "oxidized_copper_grate", + "key": { + "M": "minecraft:oxidized_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..4503dff8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper.json new file mode 100644 index 00000000..256da0d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..2dc6f40e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..cbe8cf54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..4a7bce20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 8, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..29a84bb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "count": 2, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..e7728465 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..6b6596b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..981c27e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/packed_ice.json b/data/generated/V26_1/data/minecraft/recipe/packed_ice.json new file mode 100644 index 00000000..e120257f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/packed_ice.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice" + ], + "result": { + "id": "minecraft:packed_ice" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/packed_mud.json b/data/generated/V26_1/data/minecraft/recipe/packed_mud.json new file mode 100644 index 00000000..0a33bf4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/packed_mud.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:mud", + "minecraft:wheat" + ], + "result": { + "id": "minecraft:packed_mud" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/painting.json b/data/generated/V26_1/data/minecraft/recipe/painting.json new file mode 100644 index 00000000..b945461d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/painting.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wool" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:painting" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_moss_carpet.json b/data/generated/V26_1/data/minecraft/recipe/pale_moss_carpet.json new file mode 100644 index 00000000..faa8d615 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_moss_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:pale_moss_block" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_moss_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_boat.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_boat.json new file mode 100644 index 00000000..1900435a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:pale_oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_button.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_button.json new file mode 100644 index 00000000..be08e189 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:pale_oak_planks" + ], + "result": { + "id": "minecraft:pale_oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_chest_boat.json new file mode 100644 index 00000000..923553c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:pale_oak_boat" + ], + "result": { + "id": "minecraft:pale_oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_door.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_door.json new file mode 100644 index 00000000..667a0fbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence.json new file mode 100644 index 00000000..d7c1563d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:pale_oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence_gate.json new file mode 100644 index 00000000..00d67271 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:pale_oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:pale_oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_hanging_sign.json new file mode 100644 index 00000000..3c2072c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_pale_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_planks.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_planks.json new file mode 100644 index 00000000..f7829e5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:pale_oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:pale_oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_pressure_plate.json new file mode 100644 index 00000000..25bd3bc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:pale_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_shelf.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_shelf.json new file mode 100644 index 00000000..4f6eb7dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_pale_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_sign.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_sign.json new file mode 100644 index 00000000..e6166e9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:pale_oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_slab.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_slab.json new file mode 100644 index 00000000..db6de77f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_stairs.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_stairs.json new file mode 100644 index 00000000..7c5baf2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:pale_oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_trapdoor.json new file mode 100644 index 00000000..5f17d759 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pale_oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/pale_oak_wood.json new file mode 100644 index 00000000..e2acd099 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:pale_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/paper.json b/data/generated/V26_1/data/minecraft/recipe/paper.json new file mode 100644 index 00000000..9aaf61bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/paper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:sugar_cane" + }, + "pattern": [ + "###" + ], + "result": { + "count": 3, + "id": "minecraft:paper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_banner.json b/data/generated/V26_1/data/minecraft/recipe/pink_banner.json new file mode 100644 index 00000000..9ede66f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:pink_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:pink_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/pink_banner_duplicate.json new file mode 100644 index 00000000..4c3f9c7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:pink_banner", + "result": { + "id": "minecraft:pink_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_bed.json b/data/generated/V26_1/data/minecraft/recipe/pink_bed.json new file mode 100644 index 00000000..a374af46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:pink_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:pink_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_bundle.json b/data/generated/V26_1/data/minecraft/recipe/pink_bundle.json new file mode 100644 index 00000000..4a815ba7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:pink_dye", + "result": { + "id": "minecraft:pink_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_candle.json b/data/generated/V26_1/data/minecraft/recipe/pink_candle.json new file mode 100644 index 00000000..90d94be1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:pink_dye" + ], + "result": { + "id": "minecraft:pink_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_carpet.json b/data/generated/V26_1/data/minecraft/recipe/pink_carpet.json new file mode 100644 index 00000000..590da03a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:pink_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pink_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/pink_concrete_powder.json new file mode 100644 index 00000000..744debd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:pink_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:pink_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_cactus_flower.json b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_cactus_flower.json new file mode 100644 index 00000000..447ccc29 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_cactus_flower.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "pink_dye", + "ingredients": [ + "minecraft:cactus_flower" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_peony.json b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_peony.json new file mode 100644 index 00000000..cdec7649 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_peony.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "pink_dye", + "ingredients": [ + "minecraft:peony" + ], + "result": { + "count": 2, + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_petals.json b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_petals.json new file mode 100644 index 00000000..a79c51fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_petals.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "pink_dye", + "ingredients": [ + "minecraft:pink_petals" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_tulip.json b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_tulip.json new file mode 100644 index 00000000..5dcc0231 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_pink_tulip.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "pink_dye", + "ingredients": [ + "minecraft:pink_tulip" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_red_white_dye.json b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_red_white_dye.json new file mode 100644 index 00000000..e281d060 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_dye_from_red_white_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "pink_dye", + "ingredients": [ + "minecraft:red_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/pink_glazed_terracotta.json new file mode 100644 index 00000000..71d642f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:pink_terracotta", + "result": { + "id": "minecraft:pink_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_harness.json b/data/generated/V26_1/data/minecraft/recipe/pink_harness.json new file mode 100644 index 00000000..d1fd9d19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:pink_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:pink_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/pink_shulker_box.json new file mode 100644 index 00000000..87eb1b7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:pink_dye", + "result": { + "id": "minecraft:pink_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass.json new file mode 100644 index 00000000..f5c03d00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane.json new file mode 100644 index 00000000..235bda58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:pink_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:pink_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..14927823 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pink_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/pink_terracotta.json new file mode 100644 index 00000000..c72f6240 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pink_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/piston.json b/data/generated/V26_1/data/minecraft/recipe/piston.json new file mode 100644 index 00000000..4ff87925 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/piston.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone", + "T": "#minecraft:planks", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "TTT", + "#X#", + "#R#" + ], + "result": { + "id": "minecraft:piston" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite.json new file mode 100644 index 00000000..38a6b28d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:andesite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json new file mode 100644 index 00000000..4beb18fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:polished_andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab.json new file mode 100644 index 00000000..fbd7ebe6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_andesite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..a843726d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..9331172e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_andesite", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs.json new file mode 100644 index 00000000..101def14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_andesite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..56a57fc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..93124228 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_andesite", + "result": { + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_basalt.json b/data/generated/V26_1/data/minecraft/recipe/polished_basalt.json new file mode 100644 index 00000000..97db5f25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_basalt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:basalt" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json new file mode 100644 index 00000000..571f0023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:basalt", + "result": { + "id": "minecraft:polished_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone.json new file mode 100644 index 00000000..a55e7f08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:blackstone" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..e4007231 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..a92231f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..96ef7798 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0dc33f1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..8d523c58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..4b2fa19b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..a79f1036 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..55c985ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..41ff85de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3c9e1285 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..3f28ac02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..f7030a37 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks.json new file mode 100644 index 00000000..34a0bf49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json new file mode 100644 index 00000000..23ef2ab8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0bcf82c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_button.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_button.json new file mode 100644 index 00000000..621f6424 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_button.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:polished_blackstone" + ], + "result": { + "id": "minecraft:polished_blackstone_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..c0d00323 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..33d90054 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:polished_blackstone_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab.json new file mode 100644 index 00000000..b491d691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..8668e2d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0ba84ac1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs.json new file mode 100644 index 00000000..ecb24692 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3d24124f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..4f031e74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall.json new file mode 100644 index 00000000..91b0684b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3bf82c13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..cb9dbb08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate.json new file mode 100644 index 00000000..bc6a2367 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..4ebff2ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ac2a22c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab.json new file mode 100644 index 00000000..cea0c023 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..10344a9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..1f44c9b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..61a5826b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs.json new file mode 100644 index 00000000..c2d15f0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..4fa2a6d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..8a7f649a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..688db545 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall.json new file mode 100644 index 00000000..0f7f394a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..8a61d772 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ab5038b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ee6f5603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite.json new file mode 100644 index 00000000..c9322e9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:diorite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json new file mode 100644 index 00000000..8bf62c52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:polished_diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab.json new file mode 100644 index 00000000..bdf849d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_diorite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..c8fe760c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..b9564eb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_diorite", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs.json new file mode 100644 index 00000000..1a5a0748 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_diorite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..eca80b4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..dfd26b47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_diorite", + "result": { + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite.json new file mode 100644 index 00000000..01148e11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:granite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json new file mode 100644 index 00000000..6320fcbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:polished_granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab.json new file mode 100644 index 00000000..5ca500f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_granite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..05aab260 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..81a606d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_granite", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs.json new file mode 100644 index 00000000..0fe57435 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_granite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..063d2b59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..59dde9b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_granite", + "result": { + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff.json new file mode 100644 index 00000000..1c54af6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:tuff" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..e52d9374 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab.json new file mode 100644 index 00000000..ba95b194 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..b8ae0df2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "count": 2, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..b9c0f38c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs.json new file mode 100644 index 00000000..214b0fb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..51b0987a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..497fe5d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall.json new file mode 100644 index 00000000..be4b9bff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..b50549bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..69631b4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/popped_chorus_fruit.json b/data/generated/V26_1/data/minecraft/recipe/popped_chorus_fruit.json new file mode 100644 index 00000000..01524b06 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/popped_chorus_fruit.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:chorus_fruit", + "result": { + "id": "minecraft:popped_chorus_fruit" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/powered_rail.json b/data/generated/V26_1/data/minecraft/recipe/powered_rail.json new file mode 100644 index 00000000..91330259 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/powered_rail.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "R": "minecraft:redstone", + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "X#X", + "XRX" + ], + "result": { + "count": 6, + "id": "minecraft:powered_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine.json b/data/generated/V26_1/data/minecraft/recipe/prismarine.json new file mode 100644 index 00000000..24f06637 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_shard" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:prismarine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab.json new file mode 100644 index 00000000..2073653b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..01912408 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine_bricks", + "result": { + "count": 2, + "id": "minecraft:prismarine_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs.json new file mode 100644 index 00000000..4ad3edb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:prismarine_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..7b3b03fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine_bricks", + "result": { + "id": "minecraft:prismarine_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_bricks.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_bricks.json new file mode 100644 index 00000000..b0fc9f4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_bricks.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard" + ], + "result": { + "id": "minecraft:prismarine_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_slab.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_slab.json new file mode 100644 index 00000000..67584b85 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json new file mode 100644 index 00000000..0087e234 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "count": 2, + "id": "minecraft:prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs.json new file mode 100644 index 00000000..653edc4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json new file mode 100644 index 00000000..30f1e0af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "id": "minecraft:prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_wall.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_wall.json new file mode 100644 index 00000000..7bf904e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json new file mode 100644 index 00000000..c36b51cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "id": "minecraft:prismarine_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pumpkin_pie.json b/data/generated/V26_1/data/minecraft/recipe/pumpkin_pie.json new file mode 100644 index 00000000..fc100dec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pumpkin_pie.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:pumpkin", + "minecraft:sugar", + "#minecraft:eggs" + ], + "result": { + "id": "minecraft:pumpkin_pie" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/pumpkin_seeds.json b/data/generated/V26_1/data/minecraft/recipe/pumpkin_seeds.json new file mode 100644 index 00000000..236a4c63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/pumpkin_seeds.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:pumpkin" + ], + "result": { + "count": 4, + "id": "minecraft:pumpkin_seeds" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_banner.json b/data/generated/V26_1/data/minecraft/recipe/purple_banner.json new file mode 100644 index 00000000..8690eaba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:purple_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:purple_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/purple_banner_duplicate.json new file mode 100644 index 00000000..ebdc5075 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:purple_banner", + "result": { + "id": "minecraft:purple_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_bed.json b/data/generated/V26_1/data/minecraft/recipe/purple_bed.json new file mode 100644 index 00000000..6760303d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:purple_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:purple_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_bundle.json b/data/generated/V26_1/data/minecraft/recipe/purple_bundle.json new file mode 100644 index 00000000..15358b5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:purple_dye", + "result": { + "id": "minecraft:purple_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_candle.json b/data/generated/V26_1/data/minecraft/recipe/purple_candle.json new file mode 100644 index 00000000..57da7f6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:purple_dye" + ], + "result": { + "id": "minecraft:purple_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_carpet.json b/data/generated/V26_1/data/minecraft/recipe/purple_carpet.json new file mode 100644 index 00000000..7dc7735c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:purple_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:purple_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/purple_concrete_powder.json new file mode 100644 index 00000000..29bfc094 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:purple_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:purple_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_dye.json b/data/generated/V26_1/data/minecraft/recipe/purple_dye.json new file mode 100644 index 00000000..555b7d1e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye" + ], + "result": { + "count": 2, + "id": "minecraft:purple_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/purple_glazed_terracotta.json new file mode 100644 index 00000000..68893d49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:purple_terracotta", + "result": { + "id": "minecraft:purple_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_harness.json b/data/generated/V26_1/data/minecraft/recipe/purple_harness.json new file mode 100644 index 00000000..329b6fcd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:purple_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:purple_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/purple_shulker_box.json new file mode 100644 index 00000000..ac38ec61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:purple_dye", + "result": { + "id": "minecraft:purple_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass.json new file mode 100644 index 00000000..d50dde72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane.json new file mode 100644 index 00000000..094cd037 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:purple_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:purple_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..9381864b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purple_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/purple_terracotta.json new file mode 100644 index 00000000..1690e20e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purple_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_block.json b/data/generated/V26_1/data/minecraft/recipe/purpur_block.json new file mode 100644 index 00000000..830aca69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "F": "minecraft:popped_chorus_fruit" + }, + "pattern": [ + "FF", + "FF" + ], + "result": { + "count": 4, + "id": "minecraft:purpur_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_pillar.json b/data/generated/V26_1/data/minecraft/recipe/purpur_pillar.json new file mode 100644 index 00000000..208bdc8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_pillar.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:purpur_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:purpur_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..68dd97b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "id": "minecraft:purpur_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_slab.json b/data/generated/V26_1/data/minecraft/recipe/purpur_slab.json new file mode 100644 index 00000000..f7e1952e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:purpur_block", + "minecraft:purpur_pillar" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:purpur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..0512b5ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "count": 2, + "id": "minecraft:purpur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_stairs.json b/data/generated/V26_1/data/minecraft/recipe/purpur_stairs.json new file mode 100644 index 00000000..8a3452d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:purpur_block", + "minecraft:purpur_pillar" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:purpur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..d03cfc59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "id": "minecraft:purpur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz.json b/data/generated/V26_1/data/minecraft/recipe/quartz.json new file mode 100644 index 00000000..35e2438a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.2, + "ingredient": "minecraft:nether_quartz_ore", + "result": { + "id": "minecraft:quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_block.json b/data/generated/V26_1/data/minecraft/recipe/quartz_block.json new file mode 100644 index 00000000..fe5430c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_bricks.json b/data/generated/V26_1/data/minecraft/recipe/quartz_bricks.json new file mode 100644 index 00000000..cabc969d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:quartz_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..bde222a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_from_blasting.json b/data/generated/V26_1/data/minecraft/recipe/quartz_from_blasting.json new file mode 100644 index 00000000..7bbee6ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_from_blasting.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "misc", + "cookingtime": 100, + "experience": 0.2, + "ingredient": "minecraft:nether_quartz_ore", + "result": { + "id": "minecraft:quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_pillar.json b/data/generated/V26_1/data/minecraft/recipe/quartz_pillar.json new file mode 100644 index 00000000..fec403cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_pillar.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_block" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 2, + "id": "minecraft:quartz_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..16820cc6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_slab.json b/data/generated/V26_1/data/minecraft/recipe/quartz_slab.json new file mode 100644 index 00000000..ddea46a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_slab.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:chiseled_quartz_block", + "minecraft:quartz_block", + "minecraft:quartz_pillar" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..e1646a9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "count": 2, + "id": "minecraft:quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_stairs.json b/data/generated/V26_1/data/minecraft/recipe/quartz_stairs.json new file mode 100644 index 00000000..2b3fdbbe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:chiseled_quartz_block", + "minecraft:quartz_block", + "minecraft:quartz_pillar" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..893e7472 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json b/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json new file mode 100644 index 00000000..3beb8fb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "rabbit_stew", + "ingredients": [ + "minecraft:baked_potato", + "minecraft:cooked_rabbit", + "minecraft:bowl", + "minecraft:carrot", + "minecraft:brown_mushroom" + ], + "result": { + "id": "minecraft:rabbit_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json b/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json new file mode 100644 index 00000000..3b0ea804 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "rabbit_stew", + "ingredients": [ + "minecraft:baked_potato", + "minecraft:cooked_rabbit", + "minecraft:bowl", + "minecraft:carrot", + "minecraft:red_mushroom" + ], + "result": { + "id": "minecraft:rabbit_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/rail.json b/data/generated/V26_1/data/minecraft/recipe/rail.json new file mode 100644 index 00000000..806e4bef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/rail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X#X", + "X X" + ], + "result": { + "count": 16, + "id": "minecraft:rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..ae32315a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:raiser_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:raiser_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..7b931038 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:raiser", + "template": "minecraft:raiser_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_copper.json b/data/generated/V26_1/data/minecraft/recipe/raw_copper.json new file mode 100644 index 00000000..74057fe3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_copper.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:raw_copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_copper_block.json b/data/generated/V26_1/data/minecraft/recipe/raw_copper_block.json new file mode 100644 index 00000000..99a9abf8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_copper_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_copper" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_gold.json b/data/generated/V26_1/data/minecraft/recipe/raw_gold.json new file mode 100644 index 00000000..d899f262 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_gold.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:raw_gold_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_gold" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_gold_block.json b/data/generated/V26_1/data/minecraft/recipe/raw_gold_block.json new file mode 100644 index 00000000..817d07a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_gold_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_gold" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_gold_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_iron.json b/data/generated/V26_1/data/minecraft/recipe/raw_iron.json new file mode 100644 index 00000000..abd7e72d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_iron.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:raw_iron_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_iron" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/raw_iron_block.json b/data/generated/V26_1/data/minecraft/recipe/raw_iron_block.json new file mode 100644 index 00000000..edaed045 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/raw_iron_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_iron" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_iron_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/recovery_compass.json b/data/generated/V26_1/data/minecraft/recipe/recovery_compass.json new file mode 100644 index 00000000..b2004c0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/recovery_compass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "C": "minecraft:compass", + "S": "minecraft:echo_shard" + }, + "pattern": [ + "SSS", + "SCS", + "SSS" + ], + "result": { + "id": "minecraft:recovery_compass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_banner.json b/data/generated/V26_1/data/minecraft/recipe/red_banner.json new file mode 100644 index 00000000..1e5d3794 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:red_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:red_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/red_banner_duplicate.json new file mode 100644 index 00000000..f38235d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:red_banner", + "result": { + "id": "minecraft:red_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_bed.json b/data/generated/V26_1/data/minecraft/recipe/red_bed.json new file mode 100644 index 00000000..487e0845 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:red_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:red_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_bundle.json b/data/generated/V26_1/data/minecraft/recipe/red_bundle.json new file mode 100644 index 00000000..24c2f1b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:red_dye", + "result": { + "id": "minecraft:red_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_candle.json b/data/generated/V26_1/data/minecraft/recipe/red_candle.json new file mode 100644 index 00000000..39639950 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:red_dye" + ], + "result": { + "id": "minecraft:red_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_carpet.json b/data/generated/V26_1/data/minecraft/recipe/red_carpet.json new file mode 100644 index 00000000..2e64ba01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:red_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:red_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/red_concrete_powder.json new file mode 100644 index 00000000..d5e88d6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:red_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:red_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_dye_from_beetroot.json b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_beetroot.json new file mode 100644 index 00000000..035e5aeb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_beetroot.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "red_dye", + "ingredients": [ + "minecraft:beetroot" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_dye_from_poppy.json b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_poppy.json new file mode 100644 index 00000000..a672f282 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_poppy.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "red_dye", + "ingredients": [ + "minecraft:poppy" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_dye_from_rose_bush.json b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_rose_bush.json new file mode 100644 index 00000000..cfa85a05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_rose_bush.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "red_dye", + "ingredients": [ + "minecraft:rose_bush" + ], + "result": { + "count": 2, + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_dye_from_tulip.json b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_tulip.json new file mode 100644 index 00000000..a0e0dea5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_dye_from_tulip.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "red_dye", + "ingredients": [ + "minecraft:red_tulip" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/red_glazed_terracotta.json new file mode 100644 index 00000000..622c1560 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:red_terracotta", + "result": { + "id": "minecraft:red_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_harness.json b/data/generated/V26_1/data/minecraft/recipe/red_harness.json new file mode 100644 index 00000000..06e30fb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:red_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:red_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab.json new file mode 100644 index 00000000..84665125 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..edbdbf76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "count": 2, + "id": "minecraft:red_nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs.json new file mode 100644 index 00000000..4999a589 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:red_nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..92510b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "id": "minecraft:red_nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall.json new file mode 100644 index 00000000..671393f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..8ddb9755 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "id": "minecraft:red_nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_nether_bricks.json b/data/generated/V26_1/data/minecraft/recipe/red_nether_bricks.json new file mode 100644 index 00000000..604f1a05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_nether_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "N": "minecraft:nether_brick", + "W": "minecraft:nether_wart" + }, + "pattern": [ + "NW", + "WN" + ], + "result": { + "id": "minecraft:red_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone.json new file mode 100644 index 00000000..b008283c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sand" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab.json new file mode 100644 index 00000000..34d6a4a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..41fd49ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "count": 2, + "id": "minecraft:red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs.json new file mode 100644 index 00000000..e36fa307 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone", + "minecraft:cut_red_sandstone" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..4c1dfeea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall.json new file mode 100644 index 00000000..e8050338 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:red_sandstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..57781b50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:red_sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/red_shulker_box.json new file mode 100644 index 00000000..35d35f1e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:red_dye", + "result": { + "id": "minecraft:red_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass.json new file mode 100644 index 00000000..d9e4e67e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane.json new file mode 100644 index 00000000..5f8d94a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:red_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:red_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..778f01da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/red_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/red_terracotta.json new file mode 100644 index 00000000..2065d366 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/red_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone.json b/data/generated/V26_1/data/minecraft/recipe/redstone.json new file mode 100644 index 00000000..6125720a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:redstone_block" + ], + "result": { + "count": 9, + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_block.json b/data/generated/V26_1/data/minecraft/recipe/redstone_block.json new file mode 100644 index 00000000..f33df0e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:redstone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json b/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json new file mode 100644 index 00000000..c5c3299b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "blocks", + "cookingtime": 100, + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:deepslate_redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json b/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json new file mode 100644 index 00000000..11056b65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:blasting", + "category": "blocks", + "cookingtime": 100, + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json b/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json new file mode 100644 index 00000000..421aa153 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:deepslate_redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json b/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json new file mode 100644 index 00000000..d72d81e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_lamp.json b/data/generated/V26_1/data/minecraft/recipe/redstone_lamp.json new file mode 100644 index 00000000..a6fcd73b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_lamp.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "G": "minecraft:glowstone", + "R": "minecraft:redstone" + }, + "pattern": [ + " R ", + "RGR", + " R " + ], + "result": { + "id": "minecraft:redstone_lamp" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/redstone_torch.json b/data/generated/V26_1/data/minecraft/recipe/redstone_torch.json new file mode 100644 index 00000000..a8f1adcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/redstone_torch.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:stick", + "X": "minecraft:redstone" + }, + "pattern": [ + "X", + "#" + ], + "result": { + "id": "minecraft:redstone_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/repair_item.json b/data/generated/V26_1/data/minecraft/recipe/repair_item.json new file mode 100644 index 00000000..d3fbc161 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/repair_item.json @@ -0,0 +1,3 @@ +{ + "type": "minecraft:crafting_special_repairitem" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/repeater.json b/data/generated/V26_1/data/minecraft/recipe/repeater.json new file mode 100644 index 00000000..60124f26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/repeater.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone_torch", + "I": "minecraft:stone", + "X": "minecraft:redstone" + }, + "pattern": [ + "#X#", + "III" + ], + "result": { + "id": "minecraft:repeater" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_block.json b/data/generated/V26_1/data/minecraft/recipe/resin_block.json new file mode 100644 index 00000000..b9d570bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_clump" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:resin_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick.json new file mode 100644 index 00000000..a686fe97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "misc", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:resin_clump", + "result": { + "id": "minecraft:resin_brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab.json new file mode 100644 index 00000000..6ae5a421 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:resin_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..f235fbf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "count": 2, + "id": "minecraft:resin_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs.json new file mode 100644 index 00000000..29f45369 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:resin_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..fc181c86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:resin_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall.json new file mode 100644 index 00000000..d78e468a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:resin_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..55229fdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:resin_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_bricks.json b/data/generated/V26_1/data/minecraft/recipe/resin_bricks.json new file mode 100644 index 00000000..2d890960 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/resin_clump.json b/data/generated/V26_1/data/minecraft/recipe/resin_clump.json new file mode 100644 index 00000000..e11603f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/resin_clump.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:resin_block" + ], + "result": { + "count": 9, + "id": "minecraft:resin_clump" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/respawn_anchor.json b/data/generated/V26_1/data/minecraft/recipe/respawn_anchor.json new file mode 100644 index 00000000..36ff1da4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/respawn_anchor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "G": "minecraft:glowstone", + "O": "minecraft:crying_obsidian" + }, + "pattern": [ + "OOO", + "GGG", + "OOO" + ], + "result": { + "id": "minecraft:respawn_anchor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..ab053904 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:netherrack", + "S": "minecraft:rib_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:rib_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6ca6e350 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:rib", + "template": "minecraft:rib_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/saddle.json b/data/generated/V26_1/data/minecraft/recipe/saddle.json new file mode 100644 index 00000000..c232dce9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/saddle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot", + "X": "minecraft:leather" + }, + "pattern": [ + " X ", + "X#X" + ], + "result": { + "id": "minecraft:saddle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone.json b/data/generated/V26_1/data/minecraft/recipe/sandstone.json new file mode 100644 index 00000000..2012997e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sand" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_slab.json new file mode 100644 index 00000000..2e841bf8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:sandstone", + "minecraft:chiseled_sandstone" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..3a336412 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "count": 2, + "id": "minecraft:sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs.json new file mode 100644 index 00000000..d04adb8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:sandstone", + "minecraft:chiseled_sandstone", + "minecraft:cut_sandstone" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json new file mode 100644 index 00000000..a7e6ab77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_wall.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_wall.json new file mode 100644 index 00000000..2944dd02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:sandstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json new file mode 100644 index 00000000..149fd469 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/scaffolding.json b/data/generated/V26_1/data/minecraft/recipe/scaffolding.json new file mode 100644 index 00000000..27126292 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/scaffolding.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "I": "minecraft:bamboo", + "~": "minecraft:string" + }, + "pattern": [ + "I~I", + "I I", + "I I" + ], + "result": { + "count": 6, + "id": "minecraft:scaffolding" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sea_lantern.json b/data/generated/V26_1/data/minecraft/recipe/sea_lantern.json new file mode 100644 index 00000000..724ad67a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sea_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "C": "minecraft:prismarine_crystals", + "S": "minecraft:prismarine_shard" + }, + "pattern": [ + "SCS", + "CCC", + "SCS" + ], + "result": { + "id": "minecraft:sea_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..b2793bec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:sentry_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:sentry_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9a5a14a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:sentry", + "template": "minecraft:sentry_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..b1ae3a52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:shaper_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:shaper_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9941c188 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:shaper", + "template": "minecraft:shaper_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shears.json b/data/generated/V26_1/data/minecraft/recipe/shears.json new file mode 100644 index 00000000..83abe837 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shears.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + " #", + "# " + ], + "result": { + "id": "minecraft:shears" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shield.json b/data/generated/V26_1/data/minecraft/recipe/shield.json new file mode 100644 index 00000000..87e424e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shield.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "W": "#minecraft:wooden_tool_materials", + "o": "minecraft:iron_ingot" + }, + "pattern": [ + "WoW", + "WWW", + " W " + ], + "result": { + "id": "minecraft:shield" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shield_decoration.json b/data/generated/V26_1/data/minecraft/recipe/shield_decoration.json new file mode 100644 index 00000000..036c7a5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shield_decoration.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_shielddecoration", + "banner": "#minecraft:banners", + "result": { + "id": "minecraft:shield" + }, + "target": "minecraft:shield" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/shulker_box.json new file mode 100644 index 00000000..de5020ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/shulker_box.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:chest", + "-": "minecraft:shulker_shell" + }, + "pattern": [ + "-", + "#", + "-" + ], + "result": { + "id": "minecraft:shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..3b0d9079 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobbled_deepslate", + "S": "minecraft:silence_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:silence_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..33711f0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:silence", + "template": "minecraft:silence_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/skull_banner_pattern.json b/data/generated/V26_1/data/minecraft/recipe/skull_banner_pattern.json new file mode 100644 index 00000000..c5a47d44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/skull_banner_pattern.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:paper", + "minecraft:wither_skeleton_skull" + ], + "result": { + "id": "minecraft:skull_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/slime_ball.json b/data/generated/V26_1/data/minecraft/recipe/slime_ball.json new file mode 100644 index 00000000..56993784 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/slime_ball.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:slime_block" + ], + "result": { + "count": 9, + "id": "minecraft:slime_ball" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/slime_block.json b/data/generated/V26_1/data/minecraft/recipe/slime_block.json new file mode 100644 index 00000000..fe93e9cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/slime_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:slime_ball" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:slime_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smithing_table.json b/data/generated/V26_1/data/minecraft/recipe/smithing_table.json new file mode 100644 index 00000000..2e006b1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smithing_table.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:iron_ingot" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:smithing_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smoker.json b/data/generated/V26_1/data/minecraft/recipe/smoker.json new file mode 100644 index 00000000..2d2afe4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smoker.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:logs", + "X": "minecraft:furnace" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:smoker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_basalt.json b/data/generated/V26_1/data/minecraft/recipe/smooth_basalt.json new file mode 100644 index 00000000..614a592d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_basalt.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:basalt", + "result": { + "id": "minecraft:smooth_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_quartz.json b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz.json new file mode 100644 index 00000000..3acfacc4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:smooth_quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab.json b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab.json new file mode 100644 index 00000000..afa8ab60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_quartz" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..9bbbee7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_quartz", + "result": { + "count": 2, + "id": "minecraft:smooth_quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs.json b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs.json new file mode 100644 index 00000000..6c654436 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_quartz" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..2ee658f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_quartz", + "result": { + "id": "minecraft:smooth_quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone.json new file mode 100644 index 00000000..bce6c3e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:smooth_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..5cfb7c92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_red_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..3393a8b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_red_sandstone", + "result": { + "count": 2, + "id": "minecraft:smooth_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..d8c67687 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_red_sandstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..a602eef9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_red_sandstone", + "result": { + "id": "minecraft:smooth_red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone.json b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone.json new file mode 100644 index 00000000..59690697 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:smooth_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab.json b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab.json new file mode 100644 index 00000000..0ea7133e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..7caa3aec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_sandstone", + "result": { + "count": 2, + "id": "minecraft:smooth_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs.json new file mode 100644 index 00000000..0d45df20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_sandstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..ac2be615 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_sandstone", + "result": { + "id": "minecraft:smooth_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_stone.json b/data/generated/V26_1/data/minecraft/recipe/smooth_stone.json new file mode 100644 index 00000000..50bccf73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:smooth_stone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab.json b/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab.json new file mode 100644 index 00000000..d1ea0a20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_stone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json new file mode 100644 index 00000000..e375f2b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_stone", + "result": { + "count": 2, + "id": "minecraft:smooth_stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..2a7d4c6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:blackstone", + "S": "minecraft:snout_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:snout_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..fef00c3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:snout", + "template": "minecraft:snout_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/snow.json b/data/generated/V26_1/data/minecraft/recipe/snow.json new file mode 100644 index 00000000..81172bb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/snow.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:snow_block" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:snow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/snow_block.json b/data/generated/V26_1/data/minecraft/recipe/snow_block.json new file mode 100644 index 00000000..b44406dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/snow_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:snowball" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:snow_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/soul_campfire.json b/data/generated/V26_1/data/minecraft/recipe/soul_campfire.json new file mode 100644 index 00000000..49d710b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/soul_campfire.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "#minecraft:soul_fire_base_blocks", + "L": "#minecraft:logs", + "S": "minecraft:stick" + }, + "pattern": [ + " S ", + "S#S", + "LLL" + ], + "result": { + "id": "minecraft:soul_campfire" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/soul_lantern.json b/data/generated/V26_1/data/minecraft/recipe/soul_lantern.json new file mode 100644 index 00000000..ec5b7d0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/soul_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:soul_torch", + "X": "minecraft:iron_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:soul_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/soul_torch.json b/data/generated/V26_1/data/minecraft/recipe/soul_torch.json new file mode 100644 index 00000000..4dace025 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/soul_torch.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "S": "#minecraft:soul_fire_base_blocks", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "X", + "#", + "S" + ], + "result": { + "count": 4, + "id": "minecraft:soul_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spectral_arrow.json b/data/generated/V26_1/data/minecraft/recipe/spectral_arrow.json new file mode 100644 index 00000000..99d9dfb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spectral_arrow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:glowstone_dust", + "X": "minecraft:arrow" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "count": 2, + "id": "minecraft:spectral_arrow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..e31c2323 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:purpur_block", + "S": "minecraft:spire_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:spire_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..2fd3e875 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:spire", + "template": "minecraft:spire_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sponge.json b/data/generated/V26_1/data/minecraft/recipe/sponge.json new file mode 100644 index 00000000..3f555745 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sponge.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.15, + "ingredient": "minecraft:wet_sponge", + "result": { + "id": "minecraft:sponge" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_boat.json b/data/generated/V26_1/data/minecraft/recipe/spruce_boat.json new file mode 100644 index 00000000..a7100252 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_boat.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "boat", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:spruce_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_button.json b/data/generated/V26_1/data/minecraft/recipe/spruce_button.json new file mode 100644 index 00000000..5422823b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:spruce_planks" + ], + "result": { + "id": "minecraft:spruce_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_chest_boat.json b/data/generated/V26_1/data/minecraft/recipe/spruce_chest_boat.json new file mode 100644 index 00000000..84ade726 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_chest_boat.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:spruce_boat" + ], + "result": { + "id": "minecraft:spruce_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_door.json b/data/generated/V26_1/data/minecraft/recipe/spruce_door.json new file mode 100644 index 00000000..0022b71e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_fence.json b/data/generated/V26_1/data/minecraft/recipe/spruce_fence.json new file mode 100644 index 00000000..b6707eb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:spruce_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/spruce_fence_gate.json new file mode 100644 index 00000000..d4c730ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:spruce_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:spruce_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/spruce_hanging_sign.json new file mode 100644 index 00000000..342a01c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_spruce_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_planks.json b/data/generated/V26_1/data/minecraft/recipe/spruce_planks.json new file mode 100644 index 00000000..3609f5fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:spruce_logs" + ], + "result": { + "count": 4, + "id": "minecraft:spruce_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/spruce_pressure_plate.json new file mode 100644 index 00000000..0f5f8630 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:spruce_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_shelf.json b/data/generated/V26_1/data/minecraft/recipe/spruce_shelf.json new file mode 100644 index 00000000..b5b20862 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_spruce_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_sign.json b/data/generated/V26_1/data/minecraft/recipe/spruce_sign.json new file mode 100644 index 00000000..b12bc5ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:spruce_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:spruce_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_slab.json b/data/generated/V26_1/data/minecraft/recipe/spruce_slab.json new file mode 100644 index 00000000..abe2810c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_stairs.json b/data/generated/V26_1/data/minecraft/recipe/spruce_stairs.json new file mode 100644 index 00000000..b8e08cee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:spruce_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/spruce_trapdoor.json new file mode 100644 index 00000000..ec878a63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:spruce_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spruce_wood.json b/data/generated/V26_1/data/minecraft/recipe/spruce_wood.json new file mode 100644 index 00000000..406d0f36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spruce_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:spruce_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/spyglass.json b/data/generated/V26_1/data/minecraft/recipe/spyglass.json new file mode 100644 index 00000000..07da51ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/spyglass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:amethyst_shard", + "X": "minecraft:copper_ingot" + }, + "pattern": [ + " # ", + " X ", + " X " + ], + "result": { + "id": "minecraft:spyglass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stick.json b/data/generated/V26_1/data/minecraft/recipe/stick.json new file mode 100644 index 00000000..601a1fb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stick.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "sticks", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stick_from_bamboo_item.json b/data/generated/V26_1/data/minecraft/recipe/stick_from_bamboo_item.json new file mode 100644 index 00000000..a17c830b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stick_from_bamboo_item.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "sticks", + "key": { + "#": "minecraft:bamboo" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sticky_piston.json b/data/generated/V26_1/data/minecraft/recipe/sticky_piston.json new file mode 100644 index 00000000..53c80a2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sticky_piston.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "P": "minecraft:piston", + "S": "minecraft:slime_ball" + }, + "pattern": [ + "S", + "P" + ], + "result": { + "id": "minecraft:sticky_piston" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone.json b/data/generated/V26_1/data/minecraft/recipe/stone.json new file mode 100644 index 00000000..39e4d276 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:stone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_axe.json b/data/generated/V26_1/data/minecraft/recipe/stone_axe.json new file mode 100644 index 00000000..9dca9730 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:stone_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab.json new file mode 100644 index 00000000..e5d8e454 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..705c851b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..50a0a49a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs.json new file mode 100644 index 00000000..f903839c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..546ca6dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..ce6417c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall.json new file mode 100644 index 00000000..c24f8ee5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..6bb0404d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..647cd14a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_bricks.json b/data/generated/V26_1/data/minecraft/recipe/stone_bricks.json new file mode 100644 index 00000000..d665b2b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..211dd0b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_button.json b/data/generated/V26_1/data/minecraft/recipe/stone_button.json new file mode 100644 index 00000000..9df67099 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_button.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:stone" + ], + "result": { + "id": "minecraft:stone_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_hoe.json b/data/generated/V26_1/data/minecraft/recipe/stone_hoe.json new file mode 100644 index 00000000..264c28d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:stone_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/stone_pickaxe.json new file mode 100644 index 00000000..2dc01cd0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:stone_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/stone_pressure_plate.json new file mode 100644 index 00000000..2945dfdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:stone_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_shovel.json b/data/generated/V26_1/data/minecraft/recipe/stone_shovel.json new file mode 100644 index 00000000..01a40ede --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:stone_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_slab.json b/data/generated/V26_1/data/minecraft/recipe/stone_slab.json new file mode 100644 index 00000000..a806dd95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..930b82dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_spear.json b/data/generated/V26_1/data/minecraft/recipe/stone_spear.json new file mode 100644 index 00000000..32cb407d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:stone_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_stairs.json b/data/generated/V26_1/data/minecraft/recipe/stone_stairs.json new file mode 100644 index 00000000..9303ad94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:stone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..138ada25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stone_sword.json b/data/generated/V26_1/data/minecraft/recipe/stone_sword.json new file mode 100644 index 00000000..5413d5d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stone_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:stone_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stonecutter.json b/data/generated/V26_1/data/minecraft/recipe/stonecutter.json new file mode 100644 index 00000000..a3f6cda6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stonecutter.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stone", + "I": "minecraft:iron_ingot" + }, + "pattern": [ + " I ", + "###" + ], + "result": { + "id": "minecraft:stonecutter" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_acacia_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_acacia_wood.json new file mode 100644 index 00000000..5c2d6c30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_acacia_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_acacia_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_acacia_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_birch_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_birch_wood.json new file mode 100644 index 00000000..c8e20c51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_birch_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_birch_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_birch_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_cherry_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_cherry_wood.json new file mode 100644 index 00000000..bd09789f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_cherry_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_cherry_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_cherry_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_crimson_hyphae.json b/data/generated/V26_1/data/minecraft/recipe/stripped_crimson_hyphae.json new file mode 100644 index 00000000..4fd4c73b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_crimson_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_crimson_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_dark_oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_dark_oak_wood.json new file mode 100644 index 00000000..57bd48d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_dark_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_dark_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_jungle_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_jungle_wood.json new file mode 100644 index 00000000..f555d670 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_jungle_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_jungle_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_jungle_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_mangrove_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_mangrove_wood.json new file mode 100644 index 00000000..ffae85f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_mangrove_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_mangrove_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_oak_wood.json new file mode 100644 index 00000000..04844761 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_pale_oak_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_pale_oak_wood.json new file mode 100644 index 00000000..b6169e2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_pale_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_pale_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_spruce_wood.json b/data/generated/V26_1/data/minecraft/recipe/stripped_spruce_wood.json new file mode 100644 index 00000000..6829fc6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_spruce_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_spruce_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_spruce_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/stripped_warped_hyphae.json b/data/generated/V26_1/data/minecraft/recipe/stripped_warped_hyphae.json new file mode 100644 index 00000000..0efb427b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/stripped_warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_warped_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_warped_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sugar_from_honey_bottle.json b/data/generated/V26_1/data/minecraft/recipe/sugar_from_honey_bottle.json new file mode 100644 index 00000000..5f80f223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sugar_from_honey_bottle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "sugar", + "ingredients": [ + "minecraft:honey_bottle" + ], + "result": { + "count": 3, + "id": "minecraft:sugar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/sugar_from_sugar_cane.json b/data/generated/V26_1/data/minecraft/recipe/sugar_from_sugar_cane.json new file mode 100644 index 00000000..4a619b69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/sugar_from_sugar_cane.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "sugar", + "ingredients": [ + "minecraft:sugar_cane" + ], + "result": { + "id": "minecraft:sugar" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_allium.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_allium.json new file mode 100644 index 00000000..3f76efae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_allium.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:allium" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 60, + "id": "minecraft:fire_resistance" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json new file mode 100644 index 00000000..a5dcb465 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:azure_bluet" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json new file mode 100644 index 00000000..a8adc177 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:blue_orchid" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json new file mode 100644 index 00000000..d029c1eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:closed_eyeblossom" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:nausea" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_cornflower.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_cornflower.json new file mode 100644 index 00000000..b5a9e35a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_cornflower.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:cornflower" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:jump_boost" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_dandelion.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_dandelion.json new file mode 100644 index 00000000..d452cab4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_dandelion.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:dandelion" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json new file mode 100644 index 00000000..0c72177a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:golden_dandelion" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json new file mode 100644 index 00000000..41758237 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:lily_of_the_valley" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:poison" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json new file mode 100644 index 00000000..4acee772 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:open_eyeblossom" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json new file mode 100644 index 00000000..dd8125fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:orange_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json new file mode 100644 index 00000000..1626974f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:oxeye_daisy" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:regeneration" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json new file mode 100644 index 00000000..b153a808 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:pink_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_poppy.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_poppy.json new file mode 100644 index 00000000..39b95f86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_poppy.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:poppy" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_red_tulip.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_red_tulip.json new file mode 100644 index 00000000..ef12b764 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_red_tulip.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:red_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_torchflower.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_torchflower.json new file mode 100644 index 00000000..0986185d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_torchflower.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:torchflower" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_white_tulip.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_white_tulip.json new file mode 100644 index 00000000..7a95d358 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_white_tulip.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:white_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_wither_rose.json b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_wither_rose.json new file mode 100644 index 00000000..1636b3c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/suspicious_stew_from_wither_rose.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wither_rose" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:wither" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/target.json b/data/generated/V26_1/data/minecraft/recipe/target.json new file mode 100644 index 00000000..5183b09c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/target.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "H": "minecraft:hay_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " R ", + "RHR", + " R " + ], + "result": { + "id": "minecraft:target" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/terracotta.json b/data/generated/V26_1/data/minecraft/recipe/terracotta.json new file mode 100644 index 00000000..540beb57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.35, + "ingredient": "minecraft:clay", + "result": { + "id": "minecraft:terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..1a0ae384 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:prismarine", + "S": "minecraft:tide_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:tide_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6eca0d9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:tide", + "template": "minecraft:tide_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tinted_glass.json b/data/generated/V26_1/data/minecraft/recipe/tinted_glass.json new file mode 100644 index 00000000..22d60265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tinted_glass.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "G": "minecraft:glass", + "S": "minecraft:amethyst_shard" + }, + "pattern": [ + " S ", + "SGS", + " S " + ], + "result": { + "count": 2, + "id": "minecraft:tinted_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tipped_arrow.json b/data/generated/V26_1/data/minecraft/recipe/tipped_arrow.json new file mode 100644 index 00000000..3759cb6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tipped_arrow.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_imbue", + "category": "misc", + "material": "minecraft:arrow", + "result": { + "count": 8, + "id": "minecraft:tipped_arrow" + }, + "source": "minecraft:lingering_potion" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tnt.json b/data/generated/V26_1/data/minecraft/recipe/tnt.json new file mode 100644 index 00000000..127d3e32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tnt.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": [ + "minecraft:sand", + "minecraft:red_sand" + ], + "X": "minecraft:gunpowder" + }, + "pattern": [ + "X#X", + "#X#", + "X#X" + ], + "result": { + "id": "minecraft:tnt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tnt_minecart.json b/data/generated/V26_1/data/minecraft/recipe/tnt_minecart.json new file mode 100644 index 00000000..78467cbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tnt_minecart.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:tnt", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:tnt_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/torch.json b/data/generated/V26_1/data/minecraft/recipe/torch.json new file mode 100644 index 00000000..dfb19cb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/torch.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:stick", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "X", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/trapped_chest.json b/data/generated/V26_1/data/minecraft/recipe/trapped_chest.json new file mode 100644 index 00000000..b88a443c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/trapped_chest.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:chest", + "minecraft:tripwire_hook" + ], + "result": { + "id": "minecraft:trapped_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tripwire_hook.json b/data/generated/V26_1/data/minecraft/recipe/tripwire_hook.json new file mode 100644 index 00000000..517cb480 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tripwire_hook.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "#minecraft:planks", + "I": "minecraft:iron_ingot", + "S": "minecraft:stick" + }, + "pattern": [ + "I", + "S", + "#" + ], + "result": { + "count": 2, + "id": "minecraft:tripwire_hook" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab.json new file mode 100644 index 00000000..1594434c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..03be0abc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..89a7e7dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..fb0aef07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs.json new file mode 100644 index 00000000..cb9371b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..10bad357 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..a401f3a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..75d95078 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall.json new file mode 100644 index 00000000..a7d06ef1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0d0e6401 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..8514262c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..916051f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_bricks.json b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks.json new file mode 100644 index 00000000..e8324847 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..89db1f74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..9ca28ec0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_slab.json b/data/generated/V26_1/data/minecraft/recipe/tuff_slab.json new file mode 100644 index 00000000..23b2d28b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..8f5f7264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_stairs.json b/data/generated/V26_1/data/minecraft/recipe/tuff_stairs.json new file mode 100644 index 00000000..bb88093d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..fc4ee764 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_wall.json b/data/generated/V26_1/data/minecraft/recipe/tuff_wall.json new file mode 100644 index 00000000..851357e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_wall.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..e93b3946 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/turtle_helmet.json b/data/generated/V26_1/data/minecraft/recipe/turtle_helmet.json new file mode 100644 index 00000000..8c34aa81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/turtle_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:turtle_scute" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:turtle_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..ca64664d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:vex_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:vex_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..fc4bb7c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:vex", + "template": "minecraft:vex_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..d417cd22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobbled_deepslate", + "S": "minecraft:ward_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:ward_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..4dae63a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:ward", + "template": "minecraft:ward_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_button.json b/data/generated/V26_1/data/minecraft/recipe/warped_button.json new file mode 100644 index 00000000..ffe04541 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:warped_planks" + ], + "result": { + "id": "minecraft:warped_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_door.json b/data/generated/V26_1/data/minecraft/recipe/warped_door.json new file mode 100644 index 00000000..f2af5905 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:warped_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_fence.json b/data/generated/V26_1/data/minecraft/recipe/warped_fence.json new file mode 100644 index 00000000..e7349bdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_fence.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:warped_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:warped_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_fence_gate.json b/data/generated/V26_1/data/minecraft/recipe/warped_fence_gate.json new file mode 100644 index 00000000..6c9d0f09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:warped_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:warped_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_fungus_on_a_stick.json b/data/generated/V26_1/data/minecraft/recipe/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..d86ea597 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_fungus_on_a_stick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:fishing_rod", + "X": "minecraft:warped_fungus" + }, + "pattern": [ + "# ", + " X" + ], + "result": { + "id": "minecraft:warped_fungus_on_a_stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_hanging_sign.json b/data/generated/V26_1/data/minecraft/recipe/warped_hanging_sign.json new file mode 100644 index 00000000..a584f75d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "hanging_sign", + "key": { + "#": "minecraft:stripped_warped_stem", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_hyphae.json b/data/generated/V26_1/data/minecraft/recipe/warped_hyphae.json new file mode 100644 index 00000000..753a67e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:warped_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:warped_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_planks.json b/data/generated/V26_1/data/minecraft/recipe/warped_planks.json new file mode 100644 index 00000000..95c3c1af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:warped_stems" + ], + "result": { + "count": 4, + "id": "minecraft:warped_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_pressure_plate.json b/data/generated/V26_1/data/minecraft/recipe/warped_pressure_plate.json new file mode 100644 index 00000000..0fcd1d6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:warped_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_shelf.json b/data/generated/V26_1/data/minecraft/recipe/warped_shelf.json new file mode 100644 index 00000000..eacca726 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_shelf.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "shelf", + "key": { + "#": "minecraft:stripped_warped_stem" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_sign.json b/data/generated/V26_1/data/minecraft/recipe/warped_sign.json new file mode 100644 index 00000000..a1e2e44a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_sign.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "wooden_sign", + "key": { + "#": "minecraft:warped_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:warped_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_slab.json b/data/generated/V26_1/data/minecraft/recipe/warped_slab.json new file mode 100644 index 00000000..0c3566d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_stairs.json b/data/generated/V26_1/data/minecraft/recipe/warped_stairs.json new file mode 100644 index 00000000..29328430 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:warped_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/warped_trapdoor.json b/data/generated/V26_1/data/minecraft/recipe/warped_trapdoor.json new file mode 100644 index 00000000..05bff88b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/warped_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:warped_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper.json new file mode 100644 index 00000000..5049590e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_chiseled_copper", + "key": { + "M": "minecraft:waxed_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..fa866066 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_chiseled_copper", + "ingredients": [ + "minecraft:chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a9fe4a86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..9c8a3a3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..6e7ce031 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json new file mode 100644 index 00000000..c435f7ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:copper_block", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb.json new file mode 100644 index 00000000..2de5e63f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_copper_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..82a4e2a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_bulb", + "ingredients": [ + "minecraft:copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..f33e8648 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..a750b15e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..fdaf4d0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..73ab4854 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate.json new file mode 100644 index 00000000..ee1d645f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_copper_grate", + "key": { + "M": "minecraft:waxed_copper_block" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..eba6a5e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_grate", + "ingredients": [ + "minecraft:copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a2a1232a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3dab3525 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..63917684 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper.json new file mode 100644 index 00000000..9d050bd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper", + "key": { + "#": "minecraft:waxed_copper_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..0a9bc3d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper", + "ingredients": [ + "minecraft:cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..7b4d8421 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab.json new file mode 100644 index 00000000..a5c962d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper_slab", + "key": { + "#": "minecraft:waxed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..6ccfa871 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper_slab", + "ingredients": [ + "minecraft:cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..e98500cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 8, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e38ac369 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..3af584eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..a55f1134 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper_stairs", + "ingredients": [ + "minecraft:cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..af106046 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..114047bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..5884e813 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_chiseled_copper", + "key": { + "M": "minecraft:waxed_exposed_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..c9bd66e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_chiseled_copper", + "ingredients": [ + "minecraft:exposed_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..535527dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..b0ca06da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..4d7819ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:exposed_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..4194a498 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_exposed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_exposed_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..59b7bf15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_exposed_copper_bulb", + "ingredients": [ + "minecraft:exposed_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..9ff465b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:exposed_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..9cf1edab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:exposed_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..2c23a058 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:exposed_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json new file mode 100644 index 00000000..f28dcca1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:exposed_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..bbf61d93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:exposed_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..5f52f7d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_copper_grate", + "key": { + "M": "minecraft:waxed_exposed_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..2e34b346 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_copper_grate", + "ingredients": [ + "minecraft:exposed_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ecc67bde --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..faf5303c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:exposed_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..81e53fba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:exposed_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..1c59d4ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper", + "key": { + "#": "minecraft:waxed_exposed_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..c87eb166 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper", + "ingredients": [ + "minecraft:exposed_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..e4b608aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..177a4b6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper_slab", + "key": { + "#": "minecraft:waxed_exposed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..0c922bcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper_slab", + "ingredients": [ + "minecraft:exposed_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..f5e37d2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..cc39ee9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..1fe5d859 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_exposed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..8fb5619e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper_stairs", + "ingredients": [ + "minecraft:exposed_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..d2ab1991 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..f3f61643 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..a9621058 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:exposed_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..37493823 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..21c06e8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_chiseled_copper", + "key": { + "M": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..ec04a414 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_chiseled_copper", + "ingredients": [ + "minecraft:oxidized_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..7f5720ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..5a998127 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..3bec8d67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:oxidized_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..63117f87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_oxidized_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_oxidized_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..2a4d0ff8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_oxidized_copper_bulb", + "ingredients": [ + "minecraft:oxidized_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..041263d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:oxidized_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..d1604432 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:oxidized_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json new file mode 100644 index 00000000..47981ca7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:oxidized_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json new file mode 100644 index 00000000..0cd907a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:oxidized_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..818c6ef1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:oxidized_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..aa5ce62f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_copper_grate", + "key": { + "M": "minecraft:waxed_oxidized_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..1342a05e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_copper_grate", + "ingredients": [ + "minecraft:oxidized_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..3c40d15b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3287167f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:oxidized_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..5f4475c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:oxidized_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..2493f0c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper", + "key": { + "#": "minecraft:waxed_oxidized_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..e4cc2f83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper", + "ingredients": [ + "minecraft:oxidized_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..73581a1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..9f39f48b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper_slab", + "key": { + "#": "minecraft:waxed_oxidized_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..6c162c98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper_slab", + "ingredients": [ + "minecraft:oxidized_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..d6e7f51e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..cbde8f7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..729c4f25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_oxidized_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..7926c264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper_stairs", + "ingredients": [ + "minecraft:oxidized_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..45625cd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..c2712adf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..52e98a89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:oxidized_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..fa062c02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_chiseled_copper", + "key": { + "M": "minecraft:waxed_weathered_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..e0ad5c13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_chiseled_copper", + "ingredients": [ + "minecraft:weathered_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c3a57f8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5dcacacb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..0f63f7b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:weathered_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..86de8395 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_weathered_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_weathered_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..f099acd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_weathered_copper_bulb", + "ingredients": [ + "minecraft:weathered_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..3bf97f21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:weathered_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..3346dd77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:weathered_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json new file mode 100644 index 00000000..7876566e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:weathered_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json new file mode 100644 index 00000000..d0d7d94e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:weathered_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..949c776a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:weathered_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..b270263c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_copper_grate", + "key": { + "M": "minecraft:waxed_weathered_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..7efc6e33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_copper_grate", + "ingredients": [ + "minecraft:weathered_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..58c276dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3daa395d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:weathered_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..820edea0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:weathered_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..3974f10a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper", + "key": { + "#": "minecraft:waxed_weathered_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..6f46b1d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper", + "ingredients": [ + "minecraft:weathered_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..41b85441 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..0657aee7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper_slab", + "key": { + "#": "minecraft:waxed_weathered_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..ac736532 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper_slab", + "ingredients": [ + "minecraft:weathered_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..daf8caf9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..6b4e5915 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..6b5b79f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_weathered_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..46aafe59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper_stairs", + "ingredients": [ + "minecraft:weathered_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..95d35a7a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5e8679df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..880e903c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:weathered_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..e3d61c49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:wayfinder_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:wayfinder_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..465d06f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:wayfinder", + "template": "minecraft:wayfinder_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper.json b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper.json new file mode 100644 index 00000000..c8b33c4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..3b68dd6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5f2cc08e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_copper_bulb.json b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_bulb.json new file mode 100644 index 00000000..e9bd7853 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "weathered_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:weathered_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate.json b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate.json new file mode 100644 index 00000000..7c2c633f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "weathered_copper_grate", + "key": { + "M": "minecraft:weathered_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..3c9d3c1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper.json new file mode 100644 index 00000000..d913d794 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..ef41a497 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab.json new file mode 100644 index 00000000..f6ff1164 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..083c1792 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 8, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..ce786304 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "count": 2, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..2cae1b28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..8bb49f88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..3714faa8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wheat.json b/data/generated/V26_1/data/minecraft/recipe/wheat.json new file mode 100644 index 00000000..eb28811d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wheat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:hay_block" + ], + "result": { + "count": 9, + "id": "minecraft:wheat" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_banner.json b/data/generated/V26_1/data/minecraft/recipe/white_banner.json new file mode 100644 index 00000000..06737c2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:white_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:white_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/white_banner_duplicate.json new file mode 100644 index 00000000..9df0752c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:white_banner", + "result": { + "id": "minecraft:white_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_bed.json b/data/generated/V26_1/data/minecraft/recipe/white_bed.json new file mode 100644 index 00000000..19f7b613 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:white_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:white_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_bundle.json b/data/generated/V26_1/data/minecraft/recipe/white_bundle.json new file mode 100644 index 00000000..69880b90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:white_dye", + "result": { + "id": "minecraft:white_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_candle.json b/data/generated/V26_1/data/minecraft/recipe/white_candle.json new file mode 100644 index 00000000..68edf81f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:white_dye" + ], + "result": { + "id": "minecraft:white_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_carpet.json b/data/generated/V26_1/data/minecraft/recipe/white_carpet.json new file mode 100644 index 00000000..edd930e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:white_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:white_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/white_concrete_powder.json new file mode 100644 index 00000000..83ca1693 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:white_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:white_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_dye.json b/data/generated/V26_1/data/minecraft/recipe/white_dye.json new file mode 100644 index 00000000..f016614e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "white_dye", + "ingredients": [ + "minecraft:bone_meal" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json new file mode 100644 index 00000000..1021d03b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "white_dye", + "ingredients": [ + "minecraft:lily_of_the_valley" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/white_glazed_terracotta.json new file mode 100644 index 00000000..2c660119 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:white_terracotta", + "result": { + "id": "minecraft:white_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_harness.json b/data/generated/V26_1/data/minecraft/recipe/white_harness.json new file mode 100644 index 00000000..eae43bd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:white_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:white_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/white_shulker_box.json new file mode 100644 index 00000000..210af526 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:white_dye", + "result": { + "id": "minecraft:white_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass.json new file mode 100644 index 00000000..269dc640 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane.json new file mode 100644 index 00000000..40313a09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:white_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:white_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..680b4231 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/white_terracotta.json new file mode 100644 index 00000000..e131d52f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/white_wool_from_string.json b/data/generated/V26_1/data/minecraft/recipe/white_wool_from_string.json new file mode 100644 index 00000000..ba62b223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/white_wool_from_string.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:string" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:white_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template.json b/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..b3c23142 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:mossy_cobblestone", + "S": "minecraft:wild_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:wild_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..ad95528d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:wild", + "template": "minecraft:wild_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wind_charge.json b/data/generated/V26_1/data/minecraft/recipe/wind_charge.json new file mode 100644 index 00000000..ac342dc5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wind_charge.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:breeze_rod" + ], + "result": { + "count": 4, + "id": "minecraft:wind_charge" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wolf_armor.json b/data/generated/V26_1/data/minecraft/recipe/wolf_armor.json new file mode 100644 index 00000000..9d424c22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wolf_armor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:armadillo_scute" + }, + "pattern": [ + "X ", + "XXX", + "X X" + ], + "result": { + "id": "minecraft:wolf_armor" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wolf_armor_dyed.json b/data/generated/V26_1/data/minecraft/recipe/wolf_armor_dyed.json new file mode 100644 index 00000000..1a0af476 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wolf_armor_dyed.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_dye", + "category": "misc", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:wolf_armor" + }, + "target": "minecraft:wolf_armor" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_axe.json b/data/generated/V26_1/data/minecraft/recipe/wooden_axe.json new file mode 100644 index 00000000..cf8ee5f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:wooden_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_hoe.json b/data/generated/V26_1/data/minecraft/recipe/wooden_hoe.json new file mode 100644 index 00000000..0e033b53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:wooden_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_pickaxe.json b/data/generated/V26_1/data/minecraft/recipe/wooden_pickaxe.json new file mode 100644 index 00000000..703145ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:wooden_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_shovel.json b/data/generated/V26_1/data/minecraft/recipe/wooden_shovel.json new file mode 100644 index 00000000..f4a5246b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:wooden_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_spear.json b/data/generated/V26_1/data/minecraft/recipe/wooden_spear.json new file mode 100644 index 00000000..9f1251e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:wooden_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/wooden_sword.json b/data/generated/V26_1/data/minecraft/recipe/wooden_sword.json new file mode 100644 index 00000000..651a14e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/wooden_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:wooden_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/writable_book.json b/data/generated/V26_1/data/minecraft/recipe/writable_book.json new file mode 100644 index 00000000..f23c029f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/writable_book.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "ingredients": [ + "minecraft:book", + "minecraft:ink_sac", + "minecraft:feather" + ], + "result": { + "id": "minecraft:writable_book" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_banner.json b/data/generated/V26_1/data/minecraft/recipe/yellow_banner.json new file mode 100644 index 00000000..9bcddda3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_banner.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "banner", + "key": { + "#": "minecraft:yellow_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:yellow_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_banner_duplicate.json b/data/generated/V26_1/data/minecraft/recipe/yellow_banner_duplicate.json new file mode 100644 index 00000000..c2b2694b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:yellow_banner", + "result": { + "id": "minecraft:yellow_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_bed.json b/data/generated/V26_1/data/minecraft/recipe/yellow_bed.json new file mode 100644 index 00000000..aaa9dca3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_bed.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "bed", + "key": { + "#": "minecraft:yellow_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:yellow_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_bundle.json b/data/generated/V26_1/data/minecraft/recipe/yellow_bundle.json new file mode 100644 index 00000000..9519bb8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:yellow_dye", + "result": { + "id": "minecraft:yellow_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_candle.json b/data/generated/V26_1/data/minecraft/recipe/yellow_candle.json new file mode 100644 index 00000000..26586cec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_candle.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:yellow_dye" + ], + "result": { + "id": "minecraft:yellow_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_carpet.json b/data/generated/V26_1/data/minecraft/recipe/yellow_carpet.json new file mode 100644 index 00000000..04a9fc6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_carpet.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "carpet", + "key": { + "#": "minecraft:yellow_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:yellow_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_concrete_powder.json b/data/generated/V26_1/data/minecraft/recipe/yellow_concrete_powder.json new file mode 100644 index 00000000..fb5b5357 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:yellow_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_dandelion.json b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_dandelion.json new file mode 100644 index 00000000..e829c3ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_dandelion.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "yellow_dye", + "ingredients": [ + "minecraft:dandelion" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json new file mode 100644 index 00000000..73b81f33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "yellow_dye", + "ingredients": [ + "minecraft:golden_dandelion" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_sunflower.json b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_sunflower.json new file mode 100644 index 00000000..8ab1263d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_sunflower.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "yellow_dye", + "ingredients": [ + "minecraft:sunflower" + ], + "result": { + "count": 2, + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_wildflowers.json b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_wildflowers.json new file mode 100644 index 00000000..d4dd6f0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_dye_from_wildflowers.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "misc", + "group": "yellow_dye", + "ingredients": [ + "minecraft:wildflowers" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/yellow_glazed_terracotta.json new file mode 100644 index 00000000..3313497b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_glazed_terracotta.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "cookingtime": 200, + "experience": 0.1, + "ingredient": "minecraft:yellow_terracotta", + "result": { + "id": "minecraft:yellow_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_harness.json b/data/generated/V26_1/data/minecraft/recipe/yellow_harness.json new file mode 100644 index 00000000..5b0fc09c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:yellow_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:yellow_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_shulker_box.json b/data/generated/V26_1/data/minecraft/recipe/yellow_shulker_box.json new file mode 100644 index 00000000..2f07a34f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_shulker_box.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "misc", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:yellow_dye", + "result": { + "id": "minecraft:yellow_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass.json b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass.json new file mode 100644 index 00000000..14284408 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane.json new file mode 100644 index 00000000..6cd256d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:yellow_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:yellow_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..e832f35b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "misc", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/recipe/yellow_terracotta.json b/data/generated/V26_1/data/minecraft/recipe/yellow_terracotta.json new file mode 100644 index 00000000..1f48893a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/recipe/yellow_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/no_item_required.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/no_item_required.json new file mode 100644 index 00000000..301d4e8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/no_item_required.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:square_bottom_left", + "minecraft:square_bottom_right", + "minecraft:square_top_left", + "minecraft:square_top_right", + "minecraft:stripe_bottom", + "minecraft:stripe_top", + "minecraft:stripe_left", + "minecraft:stripe_right", + "minecraft:stripe_center", + "minecraft:stripe_middle", + "minecraft:stripe_downright", + "minecraft:stripe_downleft", + "minecraft:small_stripes", + "minecraft:cross", + "minecraft:straight_cross", + "minecraft:triangle_bottom", + "minecraft:triangle_top", + "minecraft:triangles_bottom", + "minecraft:triangles_top", + "minecraft:diagonal_left", + "minecraft:diagonal_up_right", + "minecraft:diagonal_up_left", + "minecraft:diagonal_right", + "minecraft:circle", + "minecraft:rhombus", + "minecraft:half_vertical", + "minecraft:half_horizontal", + "minecraft:half_vertical_right", + "minecraft:half_horizontal_bottom", + "minecraft:border", + "minecraft:gradient", + "minecraft:gradient_up" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json new file mode 100644 index 00000000..f0386070 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:curly_border" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/creeper.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/creeper.json new file mode 100644 index 00000000..8304eb7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/creeper.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:creeper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json new file mode 100644 index 00000000..e7d8939e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flow.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flow.json new file mode 100644 index 00000000..7cd2d38f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:flow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flower.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flower.json new file mode 100644 index 00000000..ed022242 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/flower.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/globe.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/globe.json new file mode 100644 index 00000000..1bb567b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/globe.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:globe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/guster.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/guster.json new file mode 100644 index 00000000..1935cc99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/guster.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:guster" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/mojang.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/mojang.json new file mode 100644 index 00000000..ffb0bb60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/mojang.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mojang" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/piglin.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/piglin.json new file mode 100644 index 00000000..d4d1b921 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/piglin.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:piglin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/skull.json b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/skull.json new file mode 100644 index 00000000..9a3125fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/banner_pattern/pattern_item/skull.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:skull" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/acacia_logs.json b/data/generated/V26_1/data/minecraft/tags/block/acacia_logs.json new file mode 100644 index 00000000..84a0bc4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/acacia_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:acacia_wood", + "minecraft:stripped_acacia_log", + "minecraft:stripped_acacia_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/air.json b/data/generated/V26_1/data/minecraft/tags/block/air.json new file mode 100644 index 00000000..fb634b59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/air.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/all_hanging_signs.json b/data/generated/V26_1/data/minecraft/tags/block/all_hanging_signs.json new file mode 100644 index 00000000..c77b75c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/all_hanging_signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:ceiling_hanging_signs", + "#minecraft:wall_hanging_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/all_signs.json b/data/generated/V26_1/data/minecraft/tags/block/all_signs.json new file mode 100644 index 00000000..d7987ebb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/all_signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:signs", + "#minecraft:all_hanging_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/ancient_city_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/ancient_city_replaceable.json new file mode 100644 index 00000000..23e7a6e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/ancient_city_replaceable.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:deepslate", + "minecraft:deepslate_bricks", + "minecraft:deepslate_tiles", + "minecraft:deepslate_brick_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_stairs", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:cobbled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:gray_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/animals_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/animals_spawnable_on.json new file mode 100644 index 00000000..ce2108c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/animals_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:grass_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/anvil.json b/data/generated/V26_1/data/minecraft/tags/block/anvil.json new file mode 100644 index 00000000..84ef65a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/anvil.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:anvil", + "minecraft:chipped_anvil", + "minecraft:damaged_anvil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/armadillo_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/armadillo_spawnable_on.json new file mode 100644 index 00000000..10d73ff7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/armadillo_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:animals_spawnable_on", + "#minecraft:badlands_terracotta", + "minecraft:red_sand", + "minecraft:coarse_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/axolotls_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/axolotls_spawnable_on.json new file mode 100644 index 00000000..957a556d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/axolotls_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/azalea_grows_on.json b/data/generated/V26_1/data/minecraft/tags/block/azalea_grows_on.json new file mode 100644 index 00000000..d8920940 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/azalea_grows_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:sand", + "#minecraft:terracotta", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/azalea_root_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/azalea_root_replaceable.json new file mode 100644 index 00000000..bfea95ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/azalea_root_replaceable.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:terracotta", + "minecraft:red_sand", + "minecraft:clay", + "minecraft:gravel", + "minecraft:sand", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/badlands_terracotta.json b/data/generated/V26_1/data/minecraft/tags/block/badlands_terracotta.json new file mode 100644 index 00000000..095749c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/badlands_terracotta.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:yellow_terracotta", + "minecraft:orange_terracotta", + "minecraft:red_terracotta", + "minecraft:brown_terracotta", + "minecraft:light_gray_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/bamboo_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/bamboo_blocks.json new file mode 100644 index 00000000..347c0af8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/bamboo_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_block", + "minecraft:stripped_bamboo_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/banners.json b/data/generated/V26_1/data/minecraft/tags/block/banners.json new file mode 100644 index 00000000..6cab5e09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/banners.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:white_banner", + "minecraft:orange_banner", + "minecraft:magenta_banner", + "minecraft:light_blue_banner", + "minecraft:yellow_banner", + "minecraft:lime_banner", + "minecraft:pink_banner", + "minecraft:gray_banner", + "minecraft:light_gray_banner", + "minecraft:cyan_banner", + "minecraft:purple_banner", + "minecraft:blue_banner", + "minecraft:brown_banner", + "minecraft:green_banner", + "minecraft:red_banner", + "minecraft:black_banner", + "minecraft:white_wall_banner", + "minecraft:orange_wall_banner", + "minecraft:magenta_wall_banner", + "minecraft:light_blue_wall_banner", + "minecraft:yellow_wall_banner", + "minecraft:lime_wall_banner", + "minecraft:pink_wall_banner", + "minecraft:gray_wall_banner", + "minecraft:light_gray_wall_banner", + "minecraft:cyan_wall_banner", + "minecraft:purple_wall_banner", + "minecraft:blue_wall_banner", + "minecraft:brown_wall_banner", + "minecraft:green_wall_banner", + "minecraft:red_wall_banner", + "minecraft:black_wall_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/bars.json b/data/generated/V26_1/data/minecraft/tags/block/bars.json new file mode 100644 index 00000000..72d1f406 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/bars.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_bars", + "minecraft:copper_bars", + "minecraft:waxed_copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:waxed_oxidized_copper_bars" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/base_stone_nether.json b/data/generated/V26_1/data/minecraft/tags/block/base_stone_nether.json new file mode 100644 index 00000000..082e785c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/base_stone_nether.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:netherrack", + "minecraft:basalt", + "minecraft:blackstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/base_stone_overworld.json b/data/generated/V26_1/data/minecraft/tags/block/base_stone_overworld.json new file mode 100644 index 00000000..dfa496a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/base_stone_overworld.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/bats_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/bats_spawnable_on.json new file mode 100644 index 00000000..511ad97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/bats_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/beacon_base_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/beacon_base_blocks.json new file mode 100644 index 00000000..a44cd4a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/beacon_base_blocks.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:netherite_block", + "minecraft:emerald_block", + "minecraft:diamond_block", + "minecraft:gold_block", + "minecraft:iron_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/beds.json b/data/generated/V26_1/data/minecraft/tags/block/beds.json new file mode 100644 index 00000000..77c22422 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/beds.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:red_bed", + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:white_bed", + "minecraft:yellow_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/bee_attractive.json b/data/generated/V26_1/data/minecraft/tags/block/bee_attractive.json new file mode 100644 index 00000000..f2851d5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/bee_attractive.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/bee_growables.json b/data/generated/V26_1/data/minecraft/tags/block/bee_growables.json new file mode 100644 index 00000000..50f6d615 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/bee_growables.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:crops", + "minecraft:sweet_berry_bush", + "minecraft:cave_vines", + "minecraft:cave_vines_plant" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/beehives.json b/data/generated/V26_1/data/minecraft/tags/block/beehives.json new file mode 100644 index 00000000..434e455b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/beehives.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bee_nest", + "minecraft:beehive" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json new file mode 100644 index 00000000..bcb6a3de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:substrate_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json new file mode 100644 index 00000000..bcb6a3de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:substrate_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/birch_logs.json b/data/generated/V26_1/data/minecraft/tags/block/birch_logs.json new file mode 100644 index 00000000..9203a57b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/birch_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:birch_log", + "minecraft:birch_wood", + "minecraft:stripped_birch_log", + "minecraft:stripped_birch_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/blocks_wind_charge_explosions.json b/data/generated/V26_1/data/minecraft/tags/block/blocks_wind_charge_explosions.json new file mode 100644 index 00000000..934e8279 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/blocks_wind_charge_explosions.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/buttons.json b/data/generated/V26_1/data/minecraft/tags/block/buttons.json new file mode 100644 index 00000000..3400bf38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_buttons", + "#minecraft:stone_buttons" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/camel_sand_step_sound_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/camel_sand_step_sound_blocks.json new file mode 100644 index 00000000..8e2b714d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/camel_sand_step_sound_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:concrete_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/camels_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/camels_spawnable_on.json new file mode 100644 index 00000000..3dd992bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/camels_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/campfires.json b/data/generated/V26_1/data/minecraft/tags/block/campfires.json new file mode 100644 index 00000000..30f946d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/campfires.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:campfire", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/can_glide_through.json b/data/generated/V26_1/data/minecraft/tags/block/can_glide_through.json new file mode 100644 index 00000000..0946f19c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/can_glide_through.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:vine", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "#minecraft:cave_vines" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/candle_cakes.json b/data/generated/V26_1/data/minecraft/tags/block/candle_cakes.json new file mode 100644 index 00000000..f7d0a93f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/candle_cakes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle_cake", + "minecraft:white_candle_cake", + "minecraft:orange_candle_cake", + "minecraft:magenta_candle_cake", + "minecraft:light_blue_candle_cake", + "minecraft:yellow_candle_cake", + "minecraft:lime_candle_cake", + "minecraft:pink_candle_cake", + "minecraft:gray_candle_cake", + "minecraft:light_gray_candle_cake", + "minecraft:cyan_candle_cake", + "minecraft:purple_candle_cake", + "minecraft:blue_candle_cake", + "minecraft:brown_candle_cake", + "minecraft:green_candle_cake", + "minecraft:red_candle_cake", + "minecraft:black_candle_cake" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/candles.json b/data/generated/V26_1/data/minecraft/tags/block/candles.json new file mode 100644 index 00000000..a7b2b62f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/candles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle", + "minecraft:white_candle", + "minecraft:orange_candle", + "minecraft:magenta_candle", + "minecraft:light_blue_candle", + "minecraft:yellow_candle", + "minecraft:lime_candle", + "minecraft:pink_candle", + "minecraft:gray_candle", + "minecraft:light_gray_candle", + "minecraft:cyan_candle", + "minecraft:purple_candle", + "minecraft:blue_candle", + "minecraft:brown_candle", + "minecraft:green_candle", + "minecraft:red_candle", + "minecraft:black_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json b/data/generated/V26_1/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json new file mode 100644 index 00000000..7f8e050b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cannot_support_kelp.json b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_kelp.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_kelp.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cannot_support_seagrass.json b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_seagrass.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_seagrass.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cannot_support_snow_layer.json b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_snow_layer.json new file mode 100644 index 00000000..3c125afc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cannot_support_snow_layer.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cauldrons.json b/data/generated/V26_1/data/minecraft/tags/block/cauldrons.json new file mode 100644 index 00000000..d527a7b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cauldrons.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cauldron", + "minecraft:water_cauldron", + "minecraft:lava_cauldron", + "minecraft:powder_snow_cauldron" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cave_vines.json b/data/generated/V26_1/data/minecraft/tags/block/cave_vines.json new file mode 100644 index 00000000..806b27cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cave_vines.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cave_vines_plant", + "minecraft:cave_vines" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/ceiling_hanging_signs.json b/data/generated/V26_1/data/minecraft/tags/block/ceiling_hanging_signs.json new file mode 100644 index 00000000..b55f67ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/ceiling_hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_hanging_sign", + "minecraft:spruce_hanging_sign", + "minecraft:birch_hanging_sign", + "minecraft:acacia_hanging_sign", + "minecraft:cherry_hanging_sign", + "minecraft:jungle_hanging_sign", + "minecraft:dark_oak_hanging_sign", + "minecraft:pale_oak_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_hanging_sign", + "minecraft:mangrove_hanging_sign", + "minecraft:bamboo_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/chains.json b/data/generated/V26_1/data/minecraft/tags/block/chains.json new file mode 100644 index 00000000..58c2b30a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/chains.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_chain", + "minecraft:copper_chain", + "minecraft:waxed_copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:oxidized_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/cherry_logs.json b/data/generated/V26_1/data/minecraft/tags/block/cherry_logs.json new file mode 100644 index 00000000..4295e055 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/cherry_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cherry_log", + "minecraft:cherry_wood", + "minecraft:stripped_cherry_log", + "minecraft:stripped_cherry_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/climbable.json b/data/generated/V26_1/data/minecraft/tags/block/climbable.json new file mode 100644 index 00000000..de2e0a70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/climbable.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:ladder", + "minecraft:vine", + "minecraft:scaffolding", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/coal_ores.json b/data/generated/V26_1/data/minecraft/tags/block/coal_ores.json new file mode 100644 index 00000000..aaa76288 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/coal_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/combination_step_sound_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/combination_step_sound_blocks.json new file mode 100644 index 00000000..71da8418 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/combination_step_sound_blocks.json @@ -0,0 +1,12 @@ +{ + "values": [ + "#minecraft:wool_carpets", + "minecraft:moss_carpet", + "minecraft:pale_moss_carpet", + "minecraft:snow", + "minecraft:nether_sprouts", + "minecraft:warped_roots", + "minecraft:crimson_roots", + "minecraft:resin_clump" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/completes_find_tree_tutorial.json b/data/generated/V26_1/data/minecraft/tags/block/completes_find_tree_tutorial.json new file mode 100644 index 00000000..74701c2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/completes_find_tree_tutorial.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs", + "#minecraft:leaves", + "#minecraft:wart_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/concrete_powder.json b/data/generated/V26_1/data/minecraft/tags/block/concrete_powder.json new file mode 100644 index 00000000..57a09c9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/concrete_powder.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_concrete_powder", + "minecraft:orange_concrete_powder", + "minecraft:magenta_concrete_powder", + "minecraft:light_blue_concrete_powder", + "minecraft:yellow_concrete_powder", + "minecraft:lime_concrete_powder", + "minecraft:pink_concrete_powder", + "minecraft:gray_concrete_powder", + "minecraft:light_gray_concrete_powder", + "minecraft:cyan_concrete_powder", + "minecraft:purple_concrete_powder", + "minecraft:blue_concrete_powder", + "minecraft:brown_concrete_powder", + "minecraft:green_concrete_powder", + "minecraft:red_concrete_powder", + "minecraft:black_concrete_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/convertable_to_mud.json b/data/generated/V26_1/data/minecraft/tags/block/convertable_to_mud.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/convertable_to_mud.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/copper.json b/data/generated/V26_1/data/minecraft/tags/block/copper.json new file mode 100644 index 00000000..53848650 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/copper.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/copper_chests.json b/data/generated/V26_1/data/minecraft/tags/block/copper_chests.json new file mode 100644 index 00000000..90d0a9ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/copper_chests.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/copper_golem_statues.json b/data/generated/V26_1/data/minecraft/tags/block/copper_golem_statues.json new file mode 100644 index 00000000..531fc959 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/copper_golem_statues.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/copper_ores.json b/data/generated/V26_1/data/minecraft/tags/block/copper_ores.json new file mode 100644 index 00000000..5d76012e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/copper_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/coral_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/coral_blocks.json new file mode 100644 index 00000000..70f4b9e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/coral_blocks.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral_block", + "minecraft:brain_coral_block", + "minecraft:bubble_coral_block", + "minecraft:fire_coral_block", + "minecraft:horn_coral_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/coral_plants.json b/data/generated/V26_1/data/minecraft/tags/block/coral_plants.json new file mode 100644 index 00000000..78700681 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/coral_plants.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral", + "minecraft:brain_coral", + "minecraft:bubble_coral", + "minecraft:fire_coral", + "minecraft:horn_coral" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/corals.json b/data/generated/V26_1/data/minecraft/tags/block/corals.json new file mode 100644 index 00000000..c38a95a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/corals.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:coral_plants", + "minecraft:tube_coral_fan", + "minecraft:brain_coral_fan", + "minecraft:bubble_coral_fan", + "minecraft:fire_coral_fan", + "minecraft:horn_coral_fan" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/crimson_stems.json b/data/generated/V26_1/data/minecraft/tags/block/crimson_stems.json new file mode 100644 index 00000000..f78c7a3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/crimson_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/crops.json b/data/generated/V26_1/data/minecraft/tags/block/crops.json new file mode 100644 index 00000000..b808e769 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/crops.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:beetroots", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:wheat", + "minecraft:melon_stem", + "minecraft:pumpkin_stem", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/crystal_sound_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/crystal_sound_blocks.json new file mode 100644 index 00000000..cb3685b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/crystal_sound_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:amethyst_block", + "minecraft:budding_amethyst" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dampens_vibrations.json b/data/generated/V26_1/data/minecraft/tags/block/dampens_vibrations.json new file mode 100644 index 00000000..89eab86d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dampens_vibrations.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wool", + "#minecraft:wool_carpets" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dark_oak_logs.json b/data/generated/V26_1/data/minecraft/tags/block/dark_oak_logs.json new file mode 100644 index 00000000..f7f5a28e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dark_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:dark_oak_log", + "minecraft:dark_oak_wood", + "minecraft:stripped_dark_oak_log", + "minecraft:stripped_dark_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/deepslate_ore_replaceables.json b/data/generated/V26_1/data/minecraft/tags/block/deepslate_ore_replaceables.json new file mode 100644 index 00000000..4c51c376 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/deepslate_ore_replaceables.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:deepslate", + "minecraft:tuff" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/diamond_ores.json b/data/generated/V26_1/data/minecraft/tags/block/diamond_ores.json new file mode 100644 index 00000000..cfa6e09c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/diamond_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dirt.json b/data/generated/V26_1/data/minecraft/tags/block/dirt.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dirt.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/does_not_block_hoppers.json b/data/generated/V26_1/data/minecraft/tags/block/does_not_block_hoppers.json new file mode 100644 index 00000000..919ecdad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/does_not_block_hoppers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:beehives" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/doors.json b/data/generated/V26_1/data/minecraft/tags/block/doors.json new file mode 100644 index 00000000..9ca24fcf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/doors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:iron_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dragon_immune.json b/data/generated/V26_1/data/minecraft/tags/block/dragon_immune.json new file mode 100644 index 00000000..a04c3db3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dragon_immune.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock", + "minecraft:end_portal", + "minecraft:end_portal_frame", + "minecraft:end_gateway", + "minecraft:command_block", + "minecraft:repeating_command_block", + "minecraft:chain_command_block", + "minecraft:structure_block", + "minecraft:jigsaw", + "minecraft:moving_piston", + "minecraft:obsidian", + "minecraft:crying_obsidian", + "minecraft:end_stone", + "minecraft:iron_bars", + "minecraft:respawn_anchor", + "minecraft:reinforced_deepslate", + "minecraft:test_block", + "minecraft:test_instance_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dragon_transparent.json b/data/generated/V26_1/data/minecraft/tags/block/dragon_transparent.json new file mode 100644 index 00000000..394ae3ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dragon_transparent.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:light", + "#minecraft:fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/dripstone_replaceable_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/dripstone_replaceable_blocks.json new file mode 100644 index 00000000..511ad97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/dripstone_replaceable_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/edible_for_sheep.json b/data/generated/V26_1/data/minecraft/tags/block/edible_for_sheep.json new file mode 100644 index 00000000..91cc71b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/edible_for_sheep.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:short_grass", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:fern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/emerald_ores.json b/data/generated/V26_1/data/minecraft/tags/block/emerald_ores.json new file mode 100644 index 00000000..063d8e62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/emerald_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_drag_down.json b/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_drag_down.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_drag_down.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_push_up.json b/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_push_up.json new file mode 100644 index 00000000..355a91fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/enables_bubble_column_push_up.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_provider.json b/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_provider.json new file mode 100644 index 00000000..c09b2185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_provider.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bookshelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_transmitter.json b/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_transmitter.json new file mode 100644 index 00000000..f64881ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/enchantment_power_transmitter.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:replaceable" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/enderman_holdable.json b/data/generated/V26_1/data/minecraft/tags/block/enderman_holdable.json new file mode 100644 index 00000000..cbbf1d3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/enderman_holdable.json @@ -0,0 +1,27 @@ +{ + "values": [ + "#minecraft:small_flowers", + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:gravel", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:tnt", + "minecraft:cactus", + "minecraft:clay", + "minecraft:pumpkin", + "minecraft:carved_pumpkin", + "minecraft:melon", + "minecraft:crimson_fungus", + "minecraft:crimson_nylium", + "minecraft:crimson_roots", + "minecraft:warped_fungus", + "minecraft:warped_nylium", + "minecraft:warped_roots", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/fall_damage_resetting.json b/data/generated/V26_1/data/minecraft/tags/block/fall_damage_resetting.json new file mode 100644 index 00000000..21b20b23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/fall_damage_resetting.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:climbable", + "minecraft:sweet_berry_bush", + "minecraft:cobweb" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/features_cannot_replace.json b/data/generated/V26_1/data/minecraft/tags/block/features_cannot_replace.json new file mode 100644 index 00000000..e4378752 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/features_cannot_replace.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:bedrock", + "minecraft:spawner", + "minecraft:chest", + "minecraft:end_portal_frame", + "minecraft:reinforced_deepslate", + "minecraft:trial_spawner", + "minecraft:vault" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/fence_gates.json b/data/generated/V26_1/data/minecraft/tags/block/fence_gates.json new file mode 100644 index 00000000..9904fc97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/fence_gates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_fence_gate", + "minecraft:birch_fence_gate", + "minecraft:dark_oak_fence_gate", + "minecraft:pale_oak_fence_gate", + "minecraft:jungle_fence_gate", + "minecraft:oak_fence_gate", + "minecraft:spruce_fence_gate", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:mangrove_fence_gate", + "minecraft:bamboo_fence_gate", + "minecraft:cherry_fence_gate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/fences.json b/data/generated/V26_1/data/minecraft/tags/block/fences.json new file mode 100644 index 00000000..045fa7d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/fences.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_fences", + "minecraft:nether_brick_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/fire.json b/data/generated/V26_1/data/minecraft/tags/block/fire.json new file mode 100644 index 00000000..fb8f0fb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/fire.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fire", + "minecraft:soul_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/flower_pots.json b/data/generated/V26_1/data/minecraft/tags/block/flower_pots.json new file mode 100644 index 00000000..7e57b9d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/flower_pots.json @@ -0,0 +1,43 @@ +{ + "values": [ + "minecraft:flower_pot", + "minecraft:potted_open_eyeblossom", + "minecraft:potted_closed_eyeblossom", + "minecraft:potted_poppy", + "minecraft:potted_blue_orchid", + "minecraft:potted_allium", + "minecraft:potted_azure_bluet", + "minecraft:potted_red_tulip", + "minecraft:potted_orange_tulip", + "minecraft:potted_white_tulip", + "minecraft:potted_pink_tulip", + "minecraft:potted_oxeye_daisy", + "minecraft:potted_dandelion", + "minecraft:potted_oak_sapling", + "minecraft:potted_spruce_sapling", + "minecraft:potted_birch_sapling", + "minecraft:potted_jungle_sapling", + "minecraft:potted_acacia_sapling", + "minecraft:potted_dark_oak_sapling", + "minecraft:potted_pale_oak_sapling", + "minecraft:potted_red_mushroom", + "minecraft:potted_brown_mushroom", + "minecraft:potted_dead_bush", + "minecraft:potted_fern", + "minecraft:potted_cactus", + "minecraft:potted_cornflower", + "minecraft:potted_lily_of_the_valley", + "minecraft:potted_wither_rose", + "minecraft:potted_bamboo", + "minecraft:potted_crimson_fungus", + "minecraft:potted_warped_fungus", + "minecraft:potted_crimson_roots", + "minecraft:potted_warped_roots", + "minecraft:potted_azalea_bush", + "minecraft:potted_flowering_azalea_bush", + "minecraft:potted_mangrove_propagule", + "minecraft:potted_cherry_sapling", + "minecraft:potted_torchflower", + "minecraft:potted_golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/flowers.json b/data/generated/V26_1/data/minecraft/tags/block/flowers.json new file mode 100644 index 00000000..e0095f65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/flowers.json @@ -0,0 +1,19 @@ +{ + "values": [ + "#minecraft:small_flowers", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/forest_rock_can_place_on.json b/data/generated/V26_1/data/minecraft/tags/block/forest_rock_can_place_on.json new file mode 100644 index 00000000..8ac22b11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/forest_rock_can_place_on.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/foxes_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/foxes_spawnable_on.json new file mode 100644 index 00000000..cffc85c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/foxes_spawnable_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:podzol", + "minecraft:coarse_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/frog_prefer_jump_to.json b/data/generated/V26_1/data/minecraft/tags/block/frog_prefer_jump_to.json new file mode 100644 index 00000000..213cbab2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/frog_prefer_jump_to.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lily_pad", + "minecraft:big_dripleaf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/frogs_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/frogs_spawnable_on.json new file mode 100644 index 00000000..2499843d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/frogs_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:mud", + "minecraft:mangrove_roots", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/geode_invalid_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/geode_invalid_blocks.json new file mode 100644 index 00000000..3ffe7ace --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/geode_invalid_blocks.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:bedrock", + "minecraft:water", + "minecraft:lava", + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/goats_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/goats_spawnable_on.json new file mode 100644 index 00000000..8376d7ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/goats_spawnable_on.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:animals_spawnable_on", + "minecraft:stone", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:packed_ice", + "minecraft:gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/gold_ores.json b/data/generated/V26_1/data/minecraft/tags/block/gold_ores.json new file mode 100644 index 00000000..279f354d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/gold_ores.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:gold_ore", + "minecraft:nether_gold_ore", + "minecraft:deepslate_gold_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/grass_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/grass_blocks.json new file mode 100644 index 00000000..e7e86f75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/grass_blocks.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/grows_crops.json b/data/generated/V26_1/data/minecraft/tags/block/grows_crops.json new file mode 100644 index 00000000..ea3a8d61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/grows_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/guarded_by_piglins.json b/data/generated/V26_1/data/minecraft/tags/block/guarded_by_piglins.json new file mode 100644 index 00000000..42e54c28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/guarded_by_piglins.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:copper_chests", + "minecraft:gold_block", + "minecraft:barrel", + "minecraft:chest", + "minecraft:ender_chest", + "minecraft:gilded_blackstone", + "minecraft:trapped_chest", + "minecraft:raw_gold_block", + "#minecraft:shulker_boxes", + "#minecraft:gold_ores" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/happy_ghast_avoids.json b/data/generated/V26_1/data/minecraft/tags/block/happy_ghast_avoids.json new file mode 100644 index 00000000..7051ac91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/happy_ghast_avoids.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:sweet_berry_bush", + "minecraft:cactus", + "minecraft:wither_rose", + "minecraft:magma_block", + "minecraft:fire", + "minecraft:pointed_dripstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/hoglin_repellents.json b/data/generated/V26_1/data/minecraft/tags/block/hoglin_repellents.json new file mode 100644 index 00000000..25bbcb54 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/hoglin_repellents.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_fungus", + "minecraft:potted_warped_fungus", + "minecraft:nether_portal", + "minecraft:respawn_anchor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json b/data/generated/V26_1/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json new file mode 100644 index 00000000..a2e728c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json b/data/generated/V26_1/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json new file mode 100644 index 00000000..a2e728c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/ice.json b/data/generated/V26_1/data/minecraft/tags/block/ice.json new file mode 100644 index 00000000..71c9326f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/ice.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice", + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/ice_spike_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/ice_spike_replaceable.json new file mode 100644 index 00000000..4ce8ee99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/ice_spike_replaceable.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:snow_block", + "minecraft:ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/impermeable.json b/data/generated/V26_1/data/minecraft/tags/block/impermeable.json new file mode 100644 index 00000000..bd1eaabf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/impermeable.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:glass", + "minecraft:white_stained_glass", + "minecraft:orange_stained_glass", + "minecraft:magenta_stained_glass", + "minecraft:light_blue_stained_glass", + "minecraft:yellow_stained_glass", + "minecraft:lime_stained_glass", + "minecraft:pink_stained_glass", + "minecraft:gray_stained_glass", + "minecraft:light_gray_stained_glass", + "minecraft:cyan_stained_glass", + "minecraft:purple_stained_glass", + "minecraft:blue_stained_glass", + "minecraft:brown_stained_glass", + "minecraft:green_stained_glass", + "minecraft:red_stained_glass", + "minecraft:black_stained_glass", + "minecraft:tinted_glass", + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_copper_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_copper_tool.json new file mode 100644 index 00000000..1f5e3de8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_copper_tool.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_diamond_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_diamond_tool.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_diamond_tool.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_gold_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_gold_tool.json new file mode 100644 index 00000000..3cecdc74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_gold_tool.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_iron_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_iron_tool.json new file mode 100644 index 00000000..094771ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_iron_tool.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_netherite_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_netherite_tool.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_netherite_tool.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_stone_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_stone_tool.json new file mode 100644 index 00000000..1f5e3de8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_stone_tool.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_wooden_tool.json b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_wooden_tool.json new file mode 100644 index 00000000..3cecdc74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/incorrect_for_wooden_tool.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/infiniburn_end.json b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_end.json new file mode 100644 index 00000000..10ebb05e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_end.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:infiniburn_overworld", + "minecraft:bedrock" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/infiniburn_nether.json b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_nether.json new file mode 100644 index 00000000..ba389733 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:infiniburn_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/infiniburn_overworld.json b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_overworld.json new file mode 100644 index 00000000..d6c76a1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/infiniburn_overworld.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:netherrack", + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/inside_step_sound_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/inside_step_sound_blocks.json new file mode 100644 index 00000000..c376c71d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/inside_step_sound_blocks.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:powder_snow", + "minecraft:sculk_vein", + "minecraft:glow_lichen", + "minecraft:lily_pad", + "minecraft:small_amethyst_bud", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:leaf_litter" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/invalid_spawn_inside.json b/data/generated/V26_1/data/minecraft/tags/block/invalid_spawn_inside.json new file mode 100644 index 00000000..82f8056b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/invalid_spawn_inside.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:end_portal", + "minecraft:end_gateway" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/iron_ores.json b/data/generated/V26_1/data/minecraft/tags/block/iron_ores.json new file mode 100644 index 00000000..0566d8ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/iron_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/jungle_logs.json b/data/generated/V26_1/data/minecraft/tags/block/jungle_logs.json new file mode 100644 index 00000000..437efbff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/jungle_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:jungle_log", + "minecraft:jungle_wood", + "minecraft:stripped_jungle_log", + "minecraft:stripped_jungle_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/lanterns.json b/data/generated/V26_1/data/minecraft/tags/block/lanterns.json new file mode 100644 index 00000000..fa358d40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/lanterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:lantern", + "minecraft:soul_lantern", + "minecraft:copper_lantern", + "minecraft:waxed_copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/lapis_ores.json b/data/generated/V26_1/data/minecraft/tags/block/lapis_ores.json new file mode 100644 index 00000000..a041526e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/lapis_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json b/data/generated/V26_1/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json new file mode 100644 index 00000000..e2526493 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:features_cannot_replace", + "#minecraft:leaves", + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/leaves.json b/data/generated/V26_1/data/minecraft/tags/block/leaves.json new file mode 100644 index 00000000..523787f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/leaves.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:jungle_leaves", + "minecraft:oak_leaves", + "minecraft:spruce_leaves", + "minecraft:pale_oak_leaves", + "minecraft:dark_oak_leaves", + "minecraft:acacia_leaves", + "minecraft:birch_leaves", + "minecraft:azalea_leaves", + "minecraft:flowering_azalea_leaves", + "minecraft:mangrove_leaves", + "minecraft:cherry_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/lightning_rods.json b/data/generated/V26_1/data/minecraft/tags/block/lightning_rods.json new file mode 100644 index 00000000..73469e26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/lightning_rods.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/logs.json b/data/generated/V26_1/data/minecraft/tags/block/logs.json new file mode 100644 index 00000000..234e4fee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/logs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs_that_burn", + "#minecraft:crimson_stems", + "#minecraft:warped_stems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/logs_that_burn.json b/data/generated/V26_1/data/minecraft/tags/block/logs_that_burn.json new file mode 100644 index 00000000..00f0e7fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/logs_that_burn.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:dark_oak_logs", + "#minecraft:pale_oak_logs", + "#minecraft:oak_logs", + "#minecraft:acacia_logs", + "#minecraft:birch_logs", + "#minecraft:jungle_logs", + "#minecraft:spruce_logs", + "#minecraft:mangrove_logs", + "#minecraft:cherry_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/lush_ground_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/lush_ground_replaceable.json new file mode 100644 index 00000000..8230f62b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/lush_ground_replaceable.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:moss_replaceable", + "minecraft:clay", + "minecraft:gravel", + "minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/maintains_farmland.json b/data/generated/V26_1/data/minecraft/tags/block/maintains_farmland.json new file mode 100644 index 00000000..c908578c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/maintains_farmland.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:pumpkin_stem", + "minecraft:attached_pumpkin_stem", + "minecraft:melon_stem", + "minecraft:attached_melon_stem", + "minecraft:beetroots", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:torchflower_crop", + "minecraft:torchflower", + "minecraft:pitcher_crop", + "minecraft:wheat", + "minecraft:moving_piston", + "#minecraft:fence_gates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs.json b/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs.json new file mode 100644 index 00000000..d69fadff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mangrove_log", + "minecraft:mangrove_wood", + "minecraft:stripped_mangrove_log", + "minecraft:stripped_mangrove_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs_can_grow_through.json b/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs_can_grow_through.json new file mode 100644 index 00000000..ab323766 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mangrove_logs_can_grow_through.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:mangrove_roots", + "minecraft:mangrove_leaves", + "minecraft:mangrove_log", + "minecraft:mangrove_propagule", + "minecraft:moss_carpet", + "minecraft:vine" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mangrove_roots_can_grow_through.json b/data/generated/V26_1/data/minecraft/tags/block/mangrove_roots_can_grow_through.json new file mode 100644 index 00000000..07eb0f3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mangrove_roots_can_grow_through.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:mangrove_roots", + "minecraft:moss_carpet", + "minecraft:vine", + "minecraft:mangrove_propagule", + "minecraft:snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mineable/axe.json b/data/generated/V26_1/data/minecraft/tags/block/mineable/axe.json new file mode 100644 index 00000000..414687af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mineable/axe.json @@ -0,0 +1,59 @@ +{ + "values": [ + "minecraft:note_block", + "minecraft:bamboo", + "minecraft:barrel", + "minecraft:bee_nest", + "minecraft:beehive", + "minecraft:big_dripleaf_stem", + "minecraft:big_dripleaf", + "minecraft:bookshelf", + "minecraft:brown_mushroom_block", + "minecraft:campfire", + "minecraft:cartography_table", + "minecraft:carved_pumpkin", + "minecraft:chest", + "minecraft:chorus_flower", + "minecraft:chorus_plant", + "minecraft:cocoa", + "minecraft:composter", + "minecraft:crafting_table", + "minecraft:daylight_detector", + "minecraft:fletching_table", + "minecraft:glow_lichen", + "minecraft:jack_o_lantern", + "minecraft:jukebox", + "minecraft:ladder", + "minecraft:lectern", + "minecraft:loom", + "minecraft:melon", + "minecraft:mushroom_stem", + "minecraft:pumpkin", + "minecraft:red_mushroom_block", + "minecraft:smithing_table", + "minecraft:soul_campfire", + "minecraft:trapped_chest", + "minecraft:vine", + "#minecraft:banners", + "#minecraft:fence_gates", + "#minecraft:logs", + "#minecraft:planks", + "#minecraft:signs", + "#minecraft:wooden_buttons", + "#minecraft:wooden_doors", + "#minecraft:wooden_fences", + "#minecraft:wooden_pressure_plates", + "#minecraft:wooden_slabs", + "#minecraft:wooden_stairs", + "#minecraft:wooden_trapdoors", + "minecraft:mangrove_roots", + "#minecraft:all_hanging_signs", + "minecraft:bamboo_mosaic", + "minecraft:bamboo_mosaic_slab", + "minecraft:bamboo_mosaic_stairs", + "#minecraft:bamboo_blocks", + "minecraft:chiseled_bookshelf", + "#minecraft:wooden_shelves", + "minecraft:creaking_heart" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mineable/hoe.json b/data/generated/V26_1/data/minecraft/tags/block/mineable/hoe.json new file mode 100644 index 00000000..ed7b791a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mineable/hoe.json @@ -0,0 +1,23 @@ +{ + "values": [ + "#minecraft:leaves", + "minecraft:nether_wart_block", + "minecraft:warped_wart_block", + "minecraft:hay_block", + "minecraft:dried_kelp_block", + "minecraft:target", + "minecraft:shroomlight", + "minecraft:sponge", + "minecraft:wet_sponge", + "minecraft:sculk_sensor", + "minecraft:calibrated_sculk_sensor", + "minecraft:moss_block", + "minecraft:moss_carpet", + "minecraft:pale_moss_block", + "minecraft:pale_moss_carpet", + "minecraft:sculk", + "minecraft:sculk_catalyst", + "minecraft:sculk_vein", + "minecraft:sculk_shrieker" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mineable/pickaxe.json b/data/generated/V26_1/data/minecraft/tags/block/mineable/pickaxe.json new file mode 100644 index 00000000..45148f28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mineable/pickaxe.json @@ -0,0 +1,394 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:polished_granite", + "minecraft:diorite", + "minecraft:polished_diorite", + "minecraft:andesite", + "minecraft:polished_andesite", + "minecraft:cobblestone", + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore", + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore", + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore", + "minecraft:nether_gold_ore", + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore", + "minecraft:lapis_block", + "minecraft:dispenser", + "minecraft:sandstone", + "minecraft:chiseled_sandstone", + "minecraft:cut_sandstone", + "minecraft:gold_block", + "minecraft:iron_block", + "minecraft:bricks", + "minecraft:mossy_cobblestone", + "minecraft:obsidian", + "minecraft:spawner", + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore", + "minecraft:diamond_block", + "minecraft:furnace", + "minecraft:cobblestone_stairs", + "minecraft:stone_pressure_plate", + "minecraft:iron_door", + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore", + "minecraft:netherrack", + "minecraft:basalt", + "minecraft:polished_basalt", + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks", + "minecraft:brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:nether_bricks", + "minecraft:nether_brick_fence", + "minecraft:nether_brick_stairs", + "minecraft:enchanting_table", + "minecraft:brewing_stand", + "minecraft:end_stone", + "minecraft:sandstone_stairs", + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore", + "minecraft:ender_chest", + "minecraft:emerald_block", + "minecraft:light_weighted_pressure_plate", + "minecraft:heavy_weighted_pressure_plate", + "minecraft:redstone_block", + "minecraft:nether_quartz_ore", + "minecraft:hopper", + "minecraft:quartz_block", + "minecraft:chiseled_quartz_block", + "minecraft:quartz_pillar", + "minecraft:quartz_stairs", + "minecraft:dropper", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta", + "minecraft:iron_trapdoor", + "minecraft:prismarine", + "minecraft:prismarine_bricks", + "minecraft:dark_prismarine", + "minecraft:prismarine_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:terracotta", + "minecraft:coal_block", + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone", + "minecraft:cut_red_sandstone", + "minecraft:red_sandstone_stairs", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:sandstone_slab", + "minecraft:cut_sandstone_slab", + "minecraft:petrified_oak_slab", + "minecraft:cobblestone_slab", + "minecraft:brick_slab", + "minecraft:stone_brick_slab", + "minecraft:nether_brick_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:purpur_slab", + "minecraft:smooth_stone", + "minecraft:smooth_sandstone", + "minecraft:smooth_quartz", + "minecraft:smooth_red_sandstone", + "minecraft:purpur_block", + "minecraft:purpur_pillar", + "minecraft:purpur_stairs", + "minecraft:end_stone_bricks", + "minecraft:magma_block", + "minecraft:red_nether_bricks", + "minecraft:bone_block", + "minecraft:observer", + "minecraft:white_glazed_terracotta", + "minecraft:orange_glazed_terracotta", + "minecraft:magenta_glazed_terracotta", + "minecraft:light_blue_glazed_terracotta", + "minecraft:yellow_glazed_terracotta", + "minecraft:lime_glazed_terracotta", + "minecraft:pink_glazed_terracotta", + "minecraft:gray_glazed_terracotta", + "minecraft:light_gray_glazed_terracotta", + "minecraft:cyan_glazed_terracotta", + "minecraft:purple_glazed_terracotta", + "minecraft:blue_glazed_terracotta", + "minecraft:brown_glazed_terracotta", + "minecraft:green_glazed_terracotta", + "minecraft:red_glazed_terracotta", + "minecraft:black_glazed_terracotta", + "minecraft:white_concrete", + "minecraft:orange_concrete", + "minecraft:magenta_concrete", + "minecraft:light_blue_concrete", + "minecraft:yellow_concrete", + "minecraft:lime_concrete", + "minecraft:pink_concrete", + "minecraft:gray_concrete", + "minecraft:light_gray_concrete", + "minecraft:cyan_concrete", + "minecraft:purple_concrete", + "minecraft:blue_concrete", + "minecraft:brown_concrete", + "minecraft:green_concrete", + "minecraft:red_concrete", + "minecraft:black_concrete", + "minecraft:dead_tube_coral_block", + "minecraft:dead_brain_coral_block", + "minecraft:dead_bubble_coral_block", + "minecraft:dead_fire_coral_block", + "minecraft:dead_horn_coral_block", + "minecraft:tube_coral_block", + "minecraft:brain_coral_block", + "minecraft:bubble_coral_block", + "minecraft:fire_coral_block", + "minecraft:horn_coral_block", + "minecraft:dead_tube_coral", + "minecraft:dead_brain_coral", + "minecraft:dead_bubble_coral", + "minecraft:dead_fire_coral", + "minecraft:dead_horn_coral", + "minecraft:dead_tube_coral_fan", + "minecraft:dead_brain_coral_fan", + "minecraft:dead_bubble_coral_fan", + "minecraft:dead_fire_coral_fan", + "minecraft:dead_horn_coral_fan", + "minecraft:dead_tube_coral_wall_fan", + "minecraft:dead_brain_coral_wall_fan", + "minecraft:dead_bubble_coral_wall_fan", + "minecraft:dead_fire_coral_wall_fan", + "minecraft:dead_horn_coral_wall_fan", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:smoker", + "minecraft:blast_furnace", + "minecraft:grindstone", + "minecraft:stonecutter", + "minecraft:bell", + "minecraft:warped_nylium", + "minecraft:crimson_nylium", + "minecraft:netherite_block", + "minecraft:ancient_debris", + "minecraft:crying_obsidian", + "minecraft:respawn_anchor", + "minecraft:lodestone", + "minecraft:blackstone", + "minecraft:blackstone_stairs", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone", + "minecraft:polished_blackstone_bricks", + "minecraft:cracked_polished_blackstone_bricks", + "minecraft:chiseled_polished_blackstone", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:gilded_blackstone", + "minecraft:polished_blackstone_stairs", + "minecraft:polished_blackstone_slab", + "minecraft:polished_blackstone_pressure_plate", + "minecraft:chiseled_nether_bricks", + "minecraft:cracked_nether_bricks", + "minecraft:quartz_bricks", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:oxidized_copper", + "minecraft:weathered_copper", + "minecraft:exposed_copper", + "minecraft:copper_block", + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore", + "minecraft:oxidized_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:cut_copper", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:cut_copper_stairs", + "minecraft:oxidized_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:cut_copper_slab", + "minecraft:waxed_copper_block", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:pointed_dripstone", + "minecraft:dripstone_block", + "minecraft:deepslate", + "minecraft:cobbled_deepslate", + "minecraft:cobbled_deepslate_stairs", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate", + "minecraft:polished_deepslate_stairs", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tiles", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_bricks", + "minecraft:deepslate_brick_stairs", + "minecraft:deepslate_brick_slab", + "minecraft:chiseled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:smooth_basalt", + "minecraft:raw_iron_block", + "minecraft:raw_copper_block", + "minecraft:raw_gold_block", + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice", + "minecraft:piston", + "minecraft:sticky_piston", + "minecraft:piston_head", + "minecraft:amethyst_cluster", + "minecraft:small_amethyst_bud", + "minecraft:medium_amethyst_bud", + "minecraft:large_amethyst_bud", + "minecraft:amethyst_block", + "minecraft:budding_amethyst", + "minecraft:infested_cobblestone", + "minecraft:infested_chiseled_stone_bricks", + "minecraft:infested_cracked_stone_bricks", + "minecraft:infested_deepslate", + "minecraft:infested_stone", + "minecraft:infested_mossy_stone_bricks", + "minecraft:infested_stone_bricks", + "#minecraft:stone_buttons", + "#minecraft:walls", + "#minecraft:shulker_boxes", + "#minecraft:anvil", + "#minecraft:cauldrons", + "#minecraft:rails", + "minecraft:conduit", + "minecraft:mud_bricks", + "minecraft:mud_brick_stairs", + "minecraft:mud_brick_slab", + "minecraft:packed_mud", + "minecraft:crafter", + "minecraft:tuff_slab", + "minecraft:tuff_stairs", + "minecraft:tuff_wall", + "minecraft:chiseled_tuff", + "minecraft:polished_tuff", + "minecraft:polished_tuff_slab", + "minecraft:polished_tuff_stairs", + "minecraft:polished_tuff_wall", + "minecraft:tuff_bricks", + "minecraft:tuff_brick_slab", + "minecraft:tuff_brick_stairs", + "minecraft:tuff_brick_wall", + "minecraft:chiseled_tuff_bricks", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:heavy_core", + "minecraft:resin_bricks", + "minecraft:resin_brick_slab", + "minecraft:resin_brick_wall", + "minecraft:resin_brick_stairs", + "minecraft:chiseled_resin_bricks", + "#minecraft:copper_chests", + "#minecraft:copper_golem_statues", + "#minecraft:lightning_rods", + "#minecraft:lanterns", + "#minecraft:chains", + "#minecraft:bars" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mineable/shovel.json b/data/generated/V26_1/data/minecraft/tags/block/mineable/shovel.json new file mode 100644 index 00000000..2660e223 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mineable/shovel.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:clay", + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:podzol", + "minecraft:farmland", + "minecraft:grass_block", + "minecraft:gravel", + "minecraft:mycelium", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:snow_block", + "minecraft:snow", + "minecraft:soul_sand", + "minecraft:dirt_path", + "minecraft:soul_soil", + "minecraft:rooted_dirt", + "minecraft:muddy_mangrove_roots", + "minecraft:mud", + "minecraft:suspicious_sand", + "minecraft:suspicious_gravel", + "#minecraft:concrete_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mob_interactable_doors.json b/data/generated/V26_1/data/minecraft/tags/block/mob_interactable_doors.json new file mode 100644 index 00000000..fe5c57d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mob_interactable_doors.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mooshrooms_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/mooshrooms_spawnable_on.json new file mode 100644 index 00000000..a5e4042d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mooshrooms_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/moss_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/moss_blocks.json new file mode 100644 index 00000000..2774bdfa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/moss_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:moss_block", + "minecraft:pale_moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/moss_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/moss_replaceable.json new file mode 100644 index 00000000..aded58c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/moss_replaceable.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:cave_vines", + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/mud.json b/data/generated/V26_1/data/minecraft/tags/block/mud.json new file mode 100644 index 00000000..0ac1535b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/mud.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/needs_diamond_tool.json b/data/generated/V26_1/data/minecraft/tags/block/needs_diamond_tool.json new file mode 100644 index 00000000..f3c60ba6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/needs_diamond_tool.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:obsidian", + "minecraft:crying_obsidian", + "minecraft:netherite_block", + "minecraft:respawn_anchor", + "minecraft:ancient_debris" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/needs_iron_tool.json b/data/generated/V26_1/data/minecraft/tags/block/needs_iron_tool.json new file mode 100644 index 00000000..7a21ba46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/needs_iron_tool.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:diamond_block", + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore", + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore", + "minecraft:emerald_block", + "minecraft:gold_block", + "minecraft:raw_gold_block", + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore", + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/needs_stone_tool.json b/data/generated/V26_1/data/minecraft/tags/block/needs_stone_tool.json new file mode 100644 index 00000000..5390074b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/needs_stone_tool.json @@ -0,0 +1,81 @@ +{ + "values": [ + "minecraft:iron_block", + "minecraft:raw_iron_block", + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore", + "minecraft:lapis_block", + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore", + "minecraft:copper_block", + "minecraft:raw_copper_block", + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore", + "minecraft:cut_copper_slab", + "minecraft:cut_copper_stairs", + "minecraft:cut_copper", + "minecraft:weathered_copper", + "minecraft:weathered_cut_copper_slab", + "minecraft:weathered_cut_copper_stairs", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_copper", + "minecraft:oxidized_cut_copper_slab", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:oxidized_cut_copper", + "minecraft:exposed_copper", + "minecraft:exposed_cut_copper_slab", + "minecraft:exposed_cut_copper_stairs", + "minecraft:exposed_cut_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_cut_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:crafter", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "#minecraft:copper_chests", + "#minecraft:lightning_rods" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/nether_carver_replaceables.json b/data/generated/V26_1/data/minecraft/tags/block/nether_carver_replaceables.json new file mode 100644 index 00000000..6d2f67a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/nether_carver_replaceables.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:base_stone_nether", + "#minecraft:substrate_overworld", + "#minecraft:nylium", + "#minecraft:wart_blocks", + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/nylium.json b/data/generated/V26_1/data/minecraft/tags/block/nylium.json new file mode 100644 index 00000000..7fbae3ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/nylium.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/oak_logs.json b/data/generated/V26_1/data/minecraft/tags/block/oak_logs.json new file mode 100644 index 00000000..d4bae2a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:oak_log", + "minecraft:oak_wood", + "minecraft:stripped_oak_log", + "minecraft:stripped_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/occludes_vibration_signals.json b/data/generated/V26_1/data/minecraft/tags/block/occludes_vibration_signals.json new file mode 100644 index 00000000..495a1df4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/occludes_vibration_signals.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/overrides_mushroom_light_requirement.json b/data/generated/V26_1/data/minecraft/tags/block/overrides_mushroom_light_requirement.json new file mode 100644 index 00000000..a65b470b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/overrides_mushroom_light_requirement.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/overworld_carver_replaceables.json b/data/generated/V26_1/data/minecraft/tags/block/overworld_carver_replaceables.json new file mode 100644 index 00000000..b6234679 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/overworld_carver_replaceables.json @@ -0,0 +1,20 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:sand", + "#minecraft:terracotta", + "#minecraft:iron_ores", + "#minecraft:copper_ores", + "#minecraft:snow", + "minecraft:water", + "minecraft:gravel", + "minecraft:suspicious_gravel", + "minecraft:sandstone", + "minecraft:red_sandstone", + "minecraft:calcite", + "minecraft:packed_ice", + "minecraft:raw_iron_block", + "minecraft:raw_copper_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/overworld_natural_logs.json b/data/generated/V26_1/data/minecraft/tags/block/overworld_natural_logs.json new file mode 100644 index 00000000..940bdb74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/overworld_natural_logs.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:birch_log", + "minecraft:oak_log", + "minecraft:jungle_log", + "minecraft:spruce_log", + "minecraft:dark_oak_log", + "minecraft:pale_oak_log", + "minecraft:mangrove_log", + "minecraft:cherry_log" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/pale_oak_logs.json b/data/generated/V26_1/data/minecraft/tags/block/pale_oak_logs.json new file mode 100644 index 00000000..928a458b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/pale_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pale_oak_log", + "minecraft:pale_oak_wood", + "minecraft:stripped_pale_oak_log", + "minecraft:stripped_pale_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/parrots_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/parrots_spawnable_on.json new file mode 100644 index 00000000..aaa88e4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/parrots_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:air", + "#minecraft:leaves", + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/piglin_repellents.json b/data/generated/V26_1/data/minecraft/tags/block/piglin_repellents.json new file mode 100644 index 00000000..73820539 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/piglin_repellents.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:soul_fire", + "minecraft:soul_torch", + "minecraft:soul_lantern", + "minecraft:soul_wall_torch", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/planks.json b/data/generated/V26_1/data/minecraft/tags/block/planks.json new file mode 100644 index 00000000..55fa6f30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/planks.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:dark_oak_planks", + "minecraft:pale_oak_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:cherry_planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json b/data/generated/V26_1/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json new file mode 100644 index 00000000..d08f7cca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/portals.json b/data/generated/V26_1/data/minecraft/tags/block/portals.json new file mode 100644 index 00000000..bb47430c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/portals.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:nether_portal", + "minecraft:end_portal", + "minecraft:end_gateway" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/pressure_plates.json b/data/generated/V26_1/data/minecraft/tags/block/pressure_plates.json new file mode 100644 index 00000000..dbcd3df0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/pressure_plates.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:light_weighted_pressure_plate", + "minecraft:heavy_weighted_pressure_plate", + "#minecraft:wooden_pressure_plates", + "#minecraft:stone_pressure_plates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/prevent_mob_spawning_inside.json b/data/generated/V26_1/data/minecraft/tags/block/prevent_mob_spawning_inside.json new file mode 100644 index 00000000..69f0511d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/prevent_mob_spawning_inside.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:rails" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/prevents_nearby_leaf_decay.json b/data/generated/V26_1/data/minecraft/tags/block/prevents_nearby_leaf_decay.json new file mode 100644 index 00000000..ff878bdb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/prevents_nearby_leaf_decay.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/rabbits_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/rabbits_spawnable_on.json new file mode 100644 index 00000000..4618ed4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/rabbits_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/rails.json b/data/generated/V26_1/data/minecraft/tags/block/rails.json new file mode 100644 index 00000000..ba7e2c11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/rails.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rail", + "minecraft:powered_rail", + "minecraft:detector_rail", + "minecraft:activator_rail" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/redstone_ores.json b/data/generated/V26_1/data/minecraft/tags/block/redstone_ores.json new file mode 100644 index 00000000..2fd184de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/redstone_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/replaceable.json new file mode 100644 index 00000000..da052432 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/replaceable.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:air", + "minecraft:water", + "minecraft:lava", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:bush", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:fire", + "minecraft:soul_fire", + "minecraft:snow", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:resin_clump", + "minecraft:light", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:structure_void", + "minecraft:void_air", + "minecraft:cave_air", + "minecraft:bubble_column", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:hanging_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_mushrooms.json b/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_mushrooms.json new file mode 100644 index 00000000..d2894adf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_mushrooms.json @@ -0,0 +1,35 @@ +{ + "values": [ + "#minecraft:leaves", + "#minecraft:small_flowers", + "minecraft:pale_moss_carpet", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:hanging_roots", + "minecraft:pitcher_plant", + "minecraft:water", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:brown_mushroom_block", + "minecraft:red_mushroom_block", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:bush", + "minecraft:firefly_bush" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_trees.json b/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_trees.json new file mode 100644 index 00000000..c04ade87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/replaceable_by_trees.json @@ -0,0 +1,31 @@ +{ + "values": [ + "#minecraft:leaves", + "#minecraft:small_flowers", + "minecraft:pale_moss_carpet", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:hanging_roots", + "minecraft:pitcher_plant", + "minecraft:water", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:bush", + "minecraft:firefly_bush", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sand.json b/data/generated/V26_1/data/minecraft/tags/block/sand.json new file mode 100644 index 00000000..43f90f3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sand.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand", + "minecraft:suspicious_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/saplings.json b/data/generated/V26_1/data/minecraft/tags/block/saplings.json new file mode 100644 index 00000000..286497bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/saplings.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable.json new file mode 100644 index 00000000..82ff6320 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable.json @@ -0,0 +1,21 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:terracotta", + "#minecraft:nylium", + "#minecraft:base_stone_nether", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:gravel", + "minecraft:soul_sand", + "minecraft:soul_soil", + "minecraft:calcite", + "minecraft:smooth_basalt", + "minecraft:clay", + "minecraft:dripstone_block", + "minecraft:end_stone", + "minecraft:red_sandstone", + "minecraft:sandstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable_world_gen.json b/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable_world_gen.json new file mode 100644 index 00000000..d1ee2653 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sculk_replaceable_world_gen.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:sculk_replaceable", + "minecraft:deepslate_bricks", + "minecraft:deepslate_tiles", + "minecraft:cobbled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:polished_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/shulker_boxes.json b/data/generated/V26_1/data/minecraft/tags/block/shulker_boxes.json new file mode 100644 index 00000000..525e33e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/shulker_boxes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:shulker_box", + "minecraft:black_shulker_box", + "minecraft:blue_shulker_box", + "minecraft:brown_shulker_box", + "minecraft:cyan_shulker_box", + "minecraft:gray_shulker_box", + "minecraft:green_shulker_box", + "minecraft:light_blue_shulker_box", + "minecraft:light_gray_shulker_box", + "minecraft:lime_shulker_box", + "minecraft:magenta_shulker_box", + "minecraft:orange_shulker_box", + "minecraft:pink_shulker_box", + "minecraft:purple_shulker_box", + "minecraft:red_shulker_box", + "minecraft:white_shulker_box", + "minecraft:yellow_shulker_box" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/signs.json b/data/generated/V26_1/data/minecraft/tags/block/signs.json new file mode 100644 index 00000000..78c89c18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:standing_signs", + "#minecraft:wall_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/slabs.json b/data/generated/V26_1/data/minecraft/tags/block/slabs.json new file mode 100644 index 00000000..ebc3f8e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/slabs.json @@ -0,0 +1,55 @@ +{ + "values": [ + "#minecraft:wooden_slabs", + "minecraft:bamboo_mosaic_slab", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:stone_brick_slab", + "minecraft:sandstone_slab", + "minecraft:purpur_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:brick_slab", + "minecraft:cobblestone_slab", + "minecraft:nether_brick_slab", + "minecraft:petrified_oak_slab", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:cut_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_slab", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:mud_brick_slab", + "minecraft:tuff_slab", + "minecraft:polished_tuff_slab", + "minecraft:tuff_brick_slab", + "minecraft:resin_brick_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/small_flowers.json b/data/generated/V26_1/data/minecraft/tags/block/small_flowers.json new file mode 100644 index 00000000..14472b0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/small_flowers.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:closed_eyeblossom", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/smelts_to_glass.json b/data/generated/V26_1/data/minecraft/tags/block/smelts_to_glass.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/smelts_to_glass.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/snaps_goat_horn.json b/data/generated/V26_1/data/minecraft/tags/block/snaps_goat_horn.json new file mode 100644 index 00000000..910be36c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/snaps_goat_horn.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:overworld_natural_logs", + "minecraft:stone", + "minecraft:packed_ice", + "minecraft:iron_ore", + "minecraft:coal_ore", + "minecraft:copper_ore", + "minecraft:emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sniffer_diggable_block.json b/data/generated/V26_1/data/minecraft/tags/block/sniffer_diggable_block.json new file mode 100644 index 00000000..c6868b45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sniffer_diggable_block.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "minecraft:grass_block", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sniffer_egg_hatch_boost.json b/data/generated/V26_1/data/minecraft/tags/block/sniffer_egg_hatch_boost.json new file mode 100644 index 00000000..a7ff8e19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sniffer_egg_hatch_boost.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/snow.json b/data/generated/V26_1/data/minecraft/tags/block/snow.json new file mode 100644 index 00000000..498129db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/snow.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:snow", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/soul_fire_base_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/soul_fire_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/soul_fire_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/soul_speed_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/soul_speed_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/soul_speed_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/spruce_logs.json b/data/generated/V26_1/data/minecraft/tags/block/spruce_logs.json new file mode 100644 index 00000000..a8008420 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/spruce_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:spruce_log", + "minecraft:spruce_wood", + "minecraft:stripped_spruce_log", + "minecraft:stripped_spruce_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/stairs.json b/data/generated/V26_1/data/minecraft/tags/block/stairs.json new file mode 100644 index 00000000..fd135fc2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/stairs.json @@ -0,0 +1,51 @@ +{ + "values": [ + "#minecraft:wooden_stairs", + "minecraft:bamboo_mosaic_stairs", + "minecraft:cobblestone_stairs", + "minecraft:sandstone_stairs", + "minecraft:nether_brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:brick_stairs", + "minecraft:purpur_stairs", + "minecraft:quartz_stairs", + "minecraft:red_sandstone_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:prismarine_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:blackstone_stairs", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:polished_blackstone_stairs", + "minecraft:cobbled_deepslate_stairs", + "minecraft:polished_deepslate_stairs", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_brick_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:mud_brick_stairs", + "minecraft:tuff_stairs", + "minecraft:polished_tuff_stairs", + "minecraft:tuff_brick_stairs", + "minecraft:resin_brick_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/standing_signs.json b/data/generated/V26_1/data/minecraft/tags/block/standing_signs.json new file mode 100644 index 00000000..84fda375 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/standing_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_sign", + "minecraft:spruce_sign", + "minecraft:birch_sign", + "minecraft:acacia_sign", + "minecraft:jungle_sign", + "minecraft:dark_oak_sign", + "minecraft:pale_oak_sign", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:mangrove_sign", + "minecraft:bamboo_sign", + "minecraft:cherry_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/stone_bricks.json b/data/generated/V26_1/data/minecraft/tags/block/stone_bricks.json new file mode 100644 index 00000000..973064b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/stone_bricks.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/stone_buttons.json b/data/generated/V26_1/data/minecraft/tags/block/stone_buttons.json new file mode 100644 index 00000000..decb592a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/stone_buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_button", + "minecraft:polished_blackstone_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/stone_ore_replaceables.json b/data/generated/V26_1/data/minecraft/tags/block/stone_ore_replaceables.json new file mode 100644 index 00000000..0269200f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/stone_ore_replaceables.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/stone_pressure_plates.json b/data/generated/V26_1/data/minecraft/tags/block/stone_pressure_plates.json new file mode 100644 index 00000000..ca6a4e95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/stone_pressure_plates.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_pressure_plate", + "minecraft:polished_blackstone_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/strider_warm_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/strider_warm_blocks.json new file mode 100644 index 00000000..27562834 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/strider_warm_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lava" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/substrate_overworld.json b/data/generated/V26_1/data/minecraft/tags/block/substrate_overworld.json new file mode 100644 index 00000000..275f8ba3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/substrate_overworld.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/support_override_cactus_flower.json b/data/generated/V26_1/data/minecraft/tags/block/support_override_cactus_flower.json new file mode 100644 index 00000000..7c4a3ebf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/support_override_cactus_flower.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cactus", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/support_override_snow_layer.json b/data/generated/V26_1/data/minecraft/tags/block/support_override_snow_layer.json new file mode 100644 index 00000000..a06843ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/support_override_snow_layer.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:honey_block", + "minecraft:soul_sand", + "minecraft:mud" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_azalea.json b/data/generated/V26_1/data/minecraft/tags/block/supports_azalea.json new file mode 100644 index 00000000..a5465996 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_azalea.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_bamboo.json b/data/generated/V26_1/data/minecraft/tags/block/supports_bamboo.json new file mode 100644 index 00000000..50f3cb58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_bamboo.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:substrate_overworld", + "minecraft:bamboo", + "minecraft:bamboo_sapling", + "minecraft:gravel", + "minecraft:suspicious_gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_big_dripleaf.json b/data/generated/V26_1/data/minecraft/tags/block/supports_big_dripleaf.json new file mode 100644 index 00000000..5993a4a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_big_dripleaf.json @@ -0,0 +1,15 @@ +{ + "values": [ + "#minecraft:supports_small_dripleaf", + "minecraft:dirt", + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:coarse_dirt", + "minecraft:mycelium", + "minecraft:rooted_dirt", + "minecraft:moss_block", + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_cactus.json b/data/generated/V26_1/data/minecraft/tags/block/supports_cactus.json new file mode 100644 index 00000000..3dd992bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_cactus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_flower.json b/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_flower.json new file mode 100644 index 00000000..f2d11375 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_flower.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:end_stone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_plant.json b/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_plant.json new file mode 100644 index 00000000..f2d11375 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_chorus_plant.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:end_stone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_cocoa.json b/data/generated/V26_1/data/minecraft/tags/block/supports_cocoa.json new file mode 100644 index 00000000..ea0a45ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_cocoa.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:jungle_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_fungus.json b/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_fungus.json new file mode 100644 index 00000000..4cd14f30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_fungus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_warped_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_roots.json b/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_roots.json new file mode 100644 index 00000000..a9107143 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_crimson_roots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_warped_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_crops.json b/data/generated/V26_1/data/minecraft/tags/block/supports_crops.json new file mode 100644 index 00000000..ea3a8d61 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_dry_vegetation.json b/data/generated/V26_1/data/minecraft/tags/block/supports_dry_vegetation.json new file mode 100644 index 00000000..d554c509 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_dry_vegetation.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:terracotta", + "#minecraft:supports_vegetation" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_frogspawn.json b/data/generated/V26_1/data/minecraft/tags/block/supports_frogspawn.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_frogspawn.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json b/data/generated/V26_1/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json new file mode 100644 index 00000000..badb3d3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mangrove_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_lily_pad.json b/data/generated/V26_1/data/minecraft/tags/block/supports_lily_pad.json new file mode 100644 index 00000000..234e5336 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_lily_pad.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_mangrove_propagule.json b/data/generated/V26_1/data/minecraft/tags/block/supports_mangrove_propagule.json new file mode 100644 index 00000000..a5465996 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_mangrove_propagule.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem.json b/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem.json new file mode 100644 index 00000000..93e75638 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem_fruit.json b/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem_fruit.json new file mode 100644 index 00000000..204ae8fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_melon_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_fruit" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_nether_sprouts.json b/data/generated/V26_1/data/minecraft/tags/block/supports_nether_sprouts.json new file mode 100644 index 00000000..09c95c6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_nether_sprouts.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_nether_wart.json b/data/generated/V26_1/data/minecraft/tags/block/supports_nether_wart.json new file mode 100644 index 00000000..355a91fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_nether_wart.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem.json b/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem.json new file mode 100644 index 00000000..93e75638 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json b/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json new file mode 100644 index 00000000..204ae8fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_fruit" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_small_dripleaf.json b/data/generated/V26_1/data/minecraft/tags/block/supports_small_dripleaf.json new file mode 100644 index 00000000..57fb0315 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_small_dripleaf.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:clay", + "minecraft:moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_stem_crops.json b/data/generated/V26_1/data/minecraft/tags/block/supports_stem_crops.json new file mode 100644 index 00000000..16c9e509 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_stem_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_stem_fruit.json b/data/generated/V26_1/data/minecraft/tags/block/supports_stem_fruit.json new file mode 100644 index 00000000..f3fadb44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_vegetation" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane.json b/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane.json new file mode 100644 index 00000000..07e6f7eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane_adjacently.json b/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane_adjacently.json new file mode 100644 index 00000000..3434ccfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_sugar_cane_adjacently.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_vegetation.json b/data/generated/V26_1/data/minecraft/tags/block/supports_vegetation.json new file mode 100644 index 00000000..8d67645a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_vegetation.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_warped_fungus.json b/data/generated/V26_1/data/minecraft/tags/block/supports_warped_fungus.json new file mode 100644 index 00000000..0f115fa6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_warped_fungus.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:mycelium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_warped_roots.json b/data/generated/V26_1/data/minecraft/tags/block/supports_warped_roots.json new file mode 100644 index 00000000..09c95c6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_warped_roots.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/supports_wither_rose.json b/data/generated/V26_1/data/minecraft/tags/block/supports_wither_rose.json new file mode 100644 index 00000000..f028c897 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/supports_wither_rose.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:netherrack", + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sword_efficient.json b/data/generated/V26_1/data/minecraft/tags/block/sword_efficient.json new file mode 100644 index 00000000..bdfcc89d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sword_efficient.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:leaves", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:pumpkin", + "minecraft:carved_pumpkin", + "minecraft:jack_o_lantern", + "minecraft:melon", + "minecraft:cocoa", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:chorus_plant", + "minecraft:chorus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/sword_instantly_mines.json b/data/generated/V26_1/data/minecraft/tags/block/sword_instantly_mines.json new file mode 100644 index 00000000..5059bebb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/sword_instantly_mines.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo", + "minecraft:bamboo_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/terracotta.json b/data/generated/V26_1/data/minecraft/tags/block/terracotta.json new file mode 100644 index 00000000..27aac67a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/terracotta.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/trail_ruins_replaceable.json b/data/generated/V26_1/data/minecraft/tags/block/trail_ruins_replaceable.json new file mode 100644 index 00000000..f6968bff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/trail_ruins_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/trapdoors.json b/data/generated/V26_1/data/minecraft/tags/block/trapdoors.json new file mode 100644 index 00000000..269e4b8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/trapdoors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_trapdoors", + "minecraft:iron_trapdoor", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json new file mode 100644 index 00000000..abb97570 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:terracotta", + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/underwater_bonemeals.json b/data/generated/V26_1/data/minecraft/tags/block/underwater_bonemeals.json new file mode 100644 index 00000000..9115b1b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/underwater_bonemeals.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:seagrass", + "#minecraft:corals", + "#minecraft:wall_corals" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/unstable_bottom_center.json b/data/generated/V26_1/data/minecraft/tags/block/unstable_bottom_center.json new file mode 100644 index 00000000..4a5113ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/unstable_bottom_center.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:fence_gates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/valid_spawn.json b/data/generated/V26_1/data/minecraft/tags/block/valid_spawn.json new file mode 100644 index 00000000..00f8571e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/valid_spawn.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/vibration_resonators.json b/data/generated/V26_1/data/minecraft/tags/block/vibration_resonators.json new file mode 100644 index 00000000..7f66725a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/vibration_resonators.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:amethyst_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wall_corals.json b/data/generated/V26_1/data/minecraft/tags/block/wall_corals.json new file mode 100644 index 00000000..632d46ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wall_corals.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral_wall_fan", + "minecraft:brain_coral_wall_fan", + "minecraft:bubble_coral_wall_fan", + "minecraft:fire_coral_wall_fan", + "minecraft:horn_coral_wall_fan" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wall_hanging_signs.json b/data/generated/V26_1/data/minecraft/tags/block/wall_hanging_signs.json new file mode 100644 index 00000000..4afc13d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wall_hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_wall_hanging_sign", + "minecraft:spruce_wall_hanging_sign", + "minecraft:birch_wall_hanging_sign", + "minecraft:acacia_wall_hanging_sign", + "minecraft:cherry_wall_hanging_sign", + "minecraft:jungle_wall_hanging_sign", + "minecraft:dark_oak_wall_hanging_sign", + "minecraft:pale_oak_wall_hanging_sign", + "minecraft:crimson_wall_hanging_sign", + "minecraft:warped_wall_hanging_sign", + "minecraft:mangrove_wall_hanging_sign", + "minecraft:bamboo_wall_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wall_post_override.json b/data/generated/V26_1/data/minecraft/tags/block/wall_post_override.json new file mode 100644 index 00000000..f0b8ac09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wall_post_override.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:torch", + "minecraft:soul_torch", + "minecraft:redstone_torch", + "minecraft:copper_torch", + "minecraft:tripwire", + "#minecraft:signs", + "#minecraft:banners", + "#minecraft:pressure_plates", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wall_signs.json b/data/generated/V26_1/data/minecraft/tags/block/wall_signs.json new file mode 100644 index 00000000..6f430df4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wall_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_wall_sign", + "minecraft:spruce_wall_sign", + "minecraft:birch_wall_sign", + "minecraft:acacia_wall_sign", + "minecraft:jungle_wall_sign", + "minecraft:dark_oak_wall_sign", + "minecraft:pale_oak_wall_sign", + "minecraft:crimson_wall_sign", + "minecraft:warped_wall_sign", + "minecraft:mangrove_wall_sign", + "minecraft:bamboo_wall_sign", + "minecraft:cherry_wall_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/walls.json b/data/generated/V26_1/data/minecraft/tags/block/walls.json new file mode 100644 index 00000000..aa80022b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/walls.json @@ -0,0 +1,30 @@ +{ + "values": [ + "minecraft:cobblestone_wall", + "minecraft:mossy_cobblestone_wall", + "minecraft:brick_wall", + "minecraft:prismarine_wall", + "minecraft:red_sandstone_wall", + "minecraft:mossy_stone_brick_wall", + "minecraft:granite_wall", + "minecraft:stone_brick_wall", + "minecraft:nether_brick_wall", + "minecraft:andesite_wall", + "minecraft:red_nether_brick_wall", + "minecraft:sandstone_wall", + "minecraft:end_stone_brick_wall", + "minecraft:diorite_wall", + "minecraft:blackstone_wall", + "minecraft:polished_blackstone_brick_wall", + "minecraft:polished_blackstone_wall", + "minecraft:cobbled_deepslate_wall", + "minecraft:polished_deepslate_wall", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:mud_brick_wall", + "minecraft:tuff_wall", + "minecraft:polished_tuff_wall", + "minecraft:tuff_brick_wall", + "minecraft:resin_brick_wall" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/warped_stems.json b/data/generated/V26_1/data/minecraft/tags/block/warped_stems.json new file mode 100644 index 00000000..4da63869 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/warped_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wart_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/wart_blocks.json new file mode 100644 index 00000000..bab2679f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wart_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nether_wart_block", + "minecraft:warped_wart_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wither_immune.json b/data/generated/V26_1/data/minecraft/tags/block/wither_immune.json new file mode 100644 index 00000000..5c14361a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wither_immune.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock", + "minecraft:end_portal", + "minecraft:end_portal_frame", + "minecraft:end_gateway", + "minecraft:command_block", + "minecraft:repeating_command_block", + "minecraft:chain_command_block", + "minecraft:structure_block", + "minecraft:jigsaw", + "minecraft:moving_piston", + "minecraft:light", + "minecraft:reinforced_deepslate", + "minecraft:test_block", + "minecraft:test_instance_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wither_summon_base_blocks.json b/data/generated/V26_1/data/minecraft/tags/block/wither_summon_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wither_summon_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wolves_spawnable_on.json b/data/generated/V26_1/data/minecraft/tags/block/wolves_spawnable_on.json new file mode 100644 index 00000000..8a9f41e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wolves_spawnable_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:coarse_dirt", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_buttons.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_buttons.json new file mode 100644 index 00000000..f6646d7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_buttons.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_button", + "minecraft:spruce_button", + "minecraft:birch_button", + "minecraft:jungle_button", + "minecraft:acacia_button", + "minecraft:dark_oak_button", + "minecraft:pale_oak_button", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:mangrove_button", + "minecraft:bamboo_button", + "minecraft:cherry_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_doors.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_doors.json new file mode 100644 index 00000000..be8b7def --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_doors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_door", + "minecraft:spruce_door", + "minecraft:birch_door", + "minecraft:jungle_door", + "minecraft:acacia_door", + "minecraft:dark_oak_door", + "minecraft:pale_oak_door", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:mangrove_door", + "minecraft:bamboo_door", + "minecraft:cherry_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_fences.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_fences.json new file mode 100644 index 00000000..dc051583 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_fences.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_fence", + "minecraft:acacia_fence", + "minecraft:dark_oak_fence", + "minecraft:pale_oak_fence", + "minecraft:spruce_fence", + "minecraft:birch_fence", + "minecraft:jungle_fence", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:mangrove_fence", + "minecraft:bamboo_fence", + "minecraft:cherry_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_pressure_plates.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_pressure_plates.json new file mode 100644 index 00000000..008f0063 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_pressure_plates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_pressure_plate", + "minecraft:spruce_pressure_plate", + "minecraft:birch_pressure_plate", + "minecraft:jungle_pressure_plate", + "minecraft:acacia_pressure_plate", + "minecraft:dark_oak_pressure_plate", + "minecraft:pale_oak_pressure_plate", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:mangrove_pressure_plate", + "minecraft:bamboo_pressure_plate", + "minecraft:cherry_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_shelves.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_shelves.json new file mode 100644 index 00000000..eb265470 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_shelves.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_shelf", + "minecraft:bamboo_shelf", + "minecraft:birch_shelf", + "minecraft:cherry_shelf", + "minecraft:crimson_shelf", + "minecraft:dark_oak_shelf", + "minecraft:jungle_shelf", + "minecraft:mangrove_shelf", + "minecraft:oak_shelf", + "minecraft:pale_oak_shelf", + "minecraft:spruce_shelf", + "minecraft:warped_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_slabs.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_slabs.json new file mode 100644 index 00000000..795bd3b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_slabs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_slab", + "minecraft:spruce_slab", + "minecraft:birch_slab", + "minecraft:jungle_slab", + "minecraft:acacia_slab", + "minecraft:dark_oak_slab", + "minecraft:pale_oak_slab", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:mangrove_slab", + "minecraft:bamboo_slab", + "minecraft:cherry_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_stairs.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_stairs.json new file mode 100644 index 00000000..86239e4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_stairs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_stairs", + "minecraft:spruce_stairs", + "minecraft:birch_stairs", + "minecraft:jungle_stairs", + "minecraft:acacia_stairs", + "minecraft:dark_oak_stairs", + "minecraft:pale_oak_stairs", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:mangrove_stairs", + "minecraft:bamboo_stairs", + "minecraft:cherry_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wooden_trapdoors.json b/data/generated/V26_1/data/minecraft/tags/block/wooden_trapdoors.json new file mode 100644 index 00000000..050e05f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wooden_trapdoors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_trapdoor", + "minecraft:birch_trapdoor", + "minecraft:dark_oak_trapdoor", + "minecraft:pale_oak_trapdoor", + "minecraft:jungle_trapdoor", + "minecraft:oak_trapdoor", + "minecraft:spruce_trapdoor", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:mangrove_trapdoor", + "minecraft:bamboo_trapdoor", + "minecraft:cherry_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wool.json b/data/generated/V26_1/data/minecraft/tags/block/wool.json new file mode 100644 index 00000000..bb52fac8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wool.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/block/wool_carpets.json b/data/generated/V26_1/data/minecraft/tags/block/wool_carpets.json new file mode 100644 index 00000000..4dec4650 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/block/wool_carpets.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json b/data/generated/V26_1/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json new file mode 100644 index 00000000..7f5fbcd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/always_kills_armor_stands.json b/data/generated/V26_1/data/minecraft/tags/damage_type/always_kills_armor_stands.json new file mode 100644 index 00000000..0e167fe2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/always_kills_armor_stands.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:trident", + "minecraft:fireball", + "minecraft:wither_skull", + "minecraft:wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/always_most_significant_fall.json b/data/generated/V26_1/data/minecraft/tags/damage_type/always_most_significant_fall.json new file mode 100644 index 00000000..ae490d1c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/always_most_significant_fall.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:out_of_world" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/always_triggers_silverfish.json b/data/generated/V26_1/data/minecraft/tags/damage_type/always_triggers_silverfish.json new file mode 100644 index 00000000..9a9e29eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/always_triggers_silverfish.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magic" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/avoids_guardian_thorns.json b/data/generated/V26_1/data/minecraft/tags/damage_type/avoids_guardian_thorns.json new file mode 100644 index 00000000..bc4634b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/avoids_guardian_thorns.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:magic", + "minecraft:thorns", + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/burn_from_stepping.json b/data/generated/V26_1/data/minecraft/tags/damage_type/burn_from_stepping.json new file mode 100644 index 00000000..3cebb3f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/burn_from_stepping.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:campfire", + "minecraft:hot_floor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/burns_armor_stands.json b/data/generated/V26_1/data/minecraft/tags/damage_type/burns_armor_stands.json new file mode 100644 index 00000000..ce817e3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/burns_armor_stands.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:on_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_armor.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_armor.json new file mode 100644 index 00000000..03637734 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_armor.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:on_fire", + "minecraft:in_wall", + "minecraft:cramming", + "minecraft:drown", + "minecraft:fly_into_wall", + "minecraft:generic", + "minecraft:wither", + "minecraft:dragon_breath", + "minecraft:starve", + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:freeze", + "minecraft:stalagmite", + "minecraft:magic", + "minecraft:indirect_magic", + "minecraft:out_of_world", + "minecraft:generic_kill", + "minecraft:sonic_boom", + "minecraft:outside_border" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_effects.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_effects.json new file mode 100644 index 00000000..01571fc6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_effects.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:starve" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_enchantments.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_enchantments.json new file mode 100644 index 00000000..65ae4189 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_enchantments.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:sonic_boom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_invulnerability.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_invulnerability.json new file mode 100644 index 00000000..f1930d3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_invulnerability.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:out_of_world", + "minecraft:generic_kill" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_resistance.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_resistance.json new file mode 100644 index 00000000..f1930d3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_resistance.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:out_of_world", + "minecraft:generic_kill" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_shield.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_shield.json new file mode 100644 index 00000000..e5c6ff1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_shield.json @@ -0,0 +1,15 @@ +{ + "values": [ + "#minecraft:bypasses_armor", + "minecraft:cactus", + "minecraft:campfire", + "minecraft:dry_out", + "minecraft:falling_anvil", + "minecraft:falling_stalactite", + "minecraft:hot_floor", + "minecraft:in_fire", + "minecraft:lava", + "minecraft:lightning_bolt", + "minecraft:sweet_berry_bush" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_wolf_armor.json b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_wolf_armor.json new file mode 100644 index 00000000..7c434bd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/bypasses_wolf_armor.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:bypasses_invulnerability", + "minecraft:cramming", + "minecraft:drown", + "minecraft:dry_out", + "minecraft:freeze", + "minecraft:in_wall", + "minecraft:indirect_magic", + "minecraft:magic", + "minecraft:outside_border", + "minecraft:starve", + "minecraft:thorns", + "minecraft:wither" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/can_break_armor_stand.json b/data/generated/V26_1/data/minecraft/tags/damage_type/can_break_armor_stand.json new file mode 100644 index 00000000..edabbaaf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/can_break_armor_stand.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:player_explosion", + "#minecraft:is_player_attack" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/damages_helmet.json b/data/generated/V26_1/data/minecraft/tags/damage_type/damages_helmet.json new file mode 100644 index 00000000..a0eaa65a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/damages_helmet.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:falling_anvil", + "minecraft:falling_block", + "minecraft:falling_stalactite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/ignites_armor_stands.json b/data/generated/V26_1/data/minecraft/tags/damage_type/ignites_armor_stands.json new file mode 100644 index 00000000..4e026f96 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/ignites_armor_stands.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:in_fire", + "minecraft:campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_drowning.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_drowning.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_drowning.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_explosion.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_explosion.json new file mode 100644 index 00000000..c9f43370 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_explosion.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:fireworks", + "minecraft:explosion", + "minecraft:player_explosion", + "minecraft:bad_respawn_point" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_fall.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_fall.json new file mode 100644 index 00000000..fbbb7938 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_fall.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:stalagmite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_fire.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_fire.json new file mode 100644 index 00000000..3333f2d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_fire.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:in_fire", + "minecraft:campfire", + "minecraft:on_fire", + "minecraft:lava", + "minecraft:hot_floor", + "minecraft:unattributed_fireball", + "minecraft:fireball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_freezing.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_freezing.json new file mode 100644 index 00000000..98b43893 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_freezing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:freeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_lightning.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_lightning.json new file mode 100644 index 00000000..e6164d1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_lightning.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lightning_bolt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_player_attack.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_player_attack.json new file mode 100644 index 00000000..12234e8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_player_attack.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:player_attack", + "minecraft:spear", + "minecraft:mace_smash" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/is_projectile.json b/data/generated/V26_1/data/minecraft/tags/damage_type/is_projectile.json new file mode 100644 index 00000000..632a4277 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/is_projectile.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:trident", + "minecraft:mob_projectile", + "minecraft:unattributed_fireball", + "minecraft:fireball", + "minecraft:wither_skull", + "minecraft:thrown", + "minecraft:wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/mace_smash.json b/data/generated/V26_1/data/minecraft/tags/damage_type/mace_smash.json new file mode 100644 index 00000000..66e2ac15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/mace_smash.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mace_smash" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/no_anger.json b/data/generated/V26_1/data/minecraft/tags/damage_type/no_anger.json new file mode 100644 index 00000000..d1ccae62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/no_anger.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mob_attack_no_aggro" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/no_impact.json b/data/generated/V26_1/data/minecraft/tags/damage_type/no_impact.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/no_impact.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/no_knockback.json b/data/generated/V26_1/data/minecraft/tags/damage_type/no_knockback.json new file mode 100644 index 00000000..e78fba7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/no_knockback.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:explosion", + "minecraft:player_explosion", + "minecraft:bad_respawn_point", + "minecraft:in_fire", + "minecraft:lightning_bolt", + "minecraft:on_fire", + "minecraft:lava", + "minecraft:hot_floor", + "minecraft:in_wall", + "minecraft:cramming", + "minecraft:drown", + "minecraft:starve", + "minecraft:cactus", + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:fly_into_wall", + "minecraft:out_of_world", + "minecraft:generic", + "minecraft:magic", + "minecraft:wither", + "minecraft:dragon_breath", + "minecraft:dry_out", + "minecraft:sweet_berry_bush", + "minecraft:freeze", + "minecraft:stalagmite", + "minecraft:outside_border", + "minecraft:generic_kill", + "minecraft:campfire", + "minecraft:spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/panic_causes.json b/data/generated/V26_1/data/minecraft/tags/damage_type/panic_causes.json new file mode 100644 index 00000000..8114375d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/panic_causes.json @@ -0,0 +1,24 @@ +{ + "values": [ + "#minecraft:panic_environmental_causes", + "minecraft:arrow", + "minecraft:dragon_breath", + "minecraft:explosion", + "minecraft:fireball", + "minecraft:fireworks", + "minecraft:indirect_magic", + "minecraft:magic", + "minecraft:mob_attack", + "minecraft:mob_projectile", + "minecraft:player_explosion", + "minecraft:sonic_boom", + "minecraft:sting", + "minecraft:thrown", + "minecraft:trident", + "minecraft:unattributed_fireball", + "minecraft:wind_charge", + "minecraft:wither", + "minecraft:wither_skull", + "#minecraft:is_player_attack" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/panic_environmental_causes.json b/data/generated/V26_1/data/minecraft/tags/damage_type/panic_environmental_causes.json new file mode 100644 index 00000000..fb872111 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/panic_environmental_causes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:cactus", + "minecraft:freeze", + "minecraft:hot_floor", + "minecraft:in_fire", + "minecraft:lava", + "minecraft:lightning_bolt", + "minecraft:on_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/witch_resistant_to.json b/data/generated/V26_1/data/minecraft/tags/damage_type/witch_resistant_to.json new file mode 100644 index 00000000..726ffa30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/witch_resistant_to.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:magic", + "minecraft:indirect_magic", + "minecraft:sonic_boom", + "minecraft:thorns" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/damage_type/wither_immune_to.json b/data/generated/V26_1/data/minecraft/tags/damage_type/wither_immune_to.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/damage_type/wither_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/dialog/pause_screen_additions.json b/data/generated/V26_1/data/minecraft/tags/dialog/pause_screen_additions.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/dialog/pause_screen_additions.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/dialog/quick_actions.json b/data/generated/V26_1/data/minecraft/tags/dialog/quick_actions.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/dialog/quick_actions.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/curse.json b/data/generated/V26_1/data/minecraft/tags/enchantment/curse.json new file mode 100644 index 00000000..0c7d6110 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/curse.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/double_trade_price.json b/data/generated/V26_1/data/minecraft/tags/enchantment/double_trade_price.json new file mode 100644 index 00000000..0e924c6f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/double_trade_price.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/armor.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/armor.json new file mode 100644 index 00000000..965552f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:protection", + "minecraft:blast_protection", + "minecraft:fire_protection", + "minecraft:projectile_protection" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/boots.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/boots.json new file mode 100644 index 00000000..837664e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/boots.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:frost_walker", + "minecraft:depth_strider" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/bow.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/bow.json new file mode 100644 index 00000000..ad527369 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/bow.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:infinity", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/crossbow.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/crossbow.json new file mode 100644 index 00000000..d7437404 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/crossbow.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:multishot", + "minecraft:piercing" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/damage.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/damage.json new file mode 100644 index 00000000..e95a3193 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/damage.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:impaling", + "minecraft:density", + "minecraft:breach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/mining.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/mining.json new file mode 100644 index 00000000..8413d0bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/mining.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fortune", + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/riptide.json b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/riptide.json new file mode 100644 index 00000000..c11a2f9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/exclusive_set/riptide.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:loyalty", + "minecraft:channeling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/in_enchanting_table.json b/data/generated/V26_1/data/minecraft/tags/enchantment/in_enchanting_table.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/in_enchanting_table.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/non_treasure.json b/data/generated/V26_1/data/minecraft/tags/enchantment/non_treasure.json new file mode 100644 index 00000000..677c5943 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/non_treasure.json @@ -0,0 +1,40 @@ +{ + "values": [ + "minecraft:protection", + "minecraft:fire_protection", + "minecraft:feather_falling", + "minecraft:blast_protection", + "minecraft:projectile_protection", + "minecraft:respiration", + "minecraft:aqua_affinity", + "minecraft:thorns", + "minecraft:depth_strider", + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:knockback", + "minecraft:fire_aspect", + "minecraft:looting", + "minecraft:sweeping_edge", + "minecraft:efficiency", + "minecraft:silk_touch", + "minecraft:unbreaking", + "minecraft:fortune", + "minecraft:power", + "minecraft:punch", + "minecraft:flame", + "minecraft:infinity", + "minecraft:luck_of_the_sea", + "minecraft:lure", + "minecraft:loyalty", + "minecraft:impaling", + "minecraft:riptide", + "minecraft:channeling", + "minecraft:multishot", + "minecraft:quick_charge", + "minecraft:piercing", + "minecraft:density", + "minecraft:breach", + "minecraft:lunge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json b/data/generated/V26_1/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/on_random_loot.json b/data/generated/V26_1/data/minecraft/tags/enchantment/on_random_loot.json new file mode 100644 index 00000000..e20b0084 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/on_random_loot.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:non_treasure", + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:frost_walker", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/on_traded_equipment.json b/data/generated/V26_1/data/minecraft/tags/enchantment/on_traded_equipment.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/on_traded_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_ice_melting.json b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_ice_melting.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_ice_melting.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_infested_spawns.json b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_infested_spawns.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/prevents_infested_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/smelts_loot.json b/data/generated/V26_1/data/minecraft/tags/enchantment/smelts_loot.json new file mode 100644 index 00000000..bc4d7821 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/smelts_loot.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fire_aspect" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/tooltip_order.json b/data/generated/V26_1/data/minecraft/tags/enchantment/tooltip_order.json new file mode 100644 index 00000000..129e9f9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/tooltip_order.json @@ -0,0 +1,47 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:riptide", + "minecraft:channeling", + "minecraft:wind_burst", + "minecraft:frost_walker", + "minecraft:lunge", + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:impaling", + "minecraft:power", + "minecraft:density", + "minecraft:breach", + "minecraft:piercing", + "minecraft:sweeping_edge", + "minecraft:multishot", + "minecraft:fire_aspect", + "minecraft:flame", + "minecraft:knockback", + "minecraft:punch", + "minecraft:protection", + "minecraft:blast_protection", + "minecraft:fire_protection", + "minecraft:projectile_protection", + "minecraft:feather_falling", + "minecraft:fortune", + "minecraft:looting", + "minecraft:silk_touch", + "minecraft:luck_of_the_sea", + "minecraft:efficiency", + "minecraft:quick_charge", + "minecraft:lure", + "minecraft:respiration", + "minecraft:aqua_affinity", + "minecraft:soul_speed", + "minecraft:swift_sneak", + "minecraft:depth_strider", + "minecraft:thorns", + "minecraft:loyalty", + "minecraft:unbreaking", + "minecraft:infinity", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/tradeable.json b/data/generated/V26_1/data/minecraft/tags/enchantment/tradeable.json new file mode 100644 index 00000000..e20b0084 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/tradeable.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:non_treasure", + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:frost_walker", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/enchantment/treasure.json b/data/generated/V26_1/data/minecraft/tags/enchantment/treasure.json new file mode 100644 index 00000000..a2712dd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/enchantment/treasure.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:swift_sneak", + "minecraft:soul_speed", + "minecraft:frost_walker", + "minecraft:mending", + "minecraft:wind_burst" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json b/data/generated/V26_1/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json new file mode 100644 index 00000000..eb3b6b36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_golem" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/aquatic.json b/data/generated/V26_1/data/minecraft/tags/entity_type/aquatic.json new file mode 100644 index 00000000..caa1040b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/aquatic.json @@ -0,0 +1,18 @@ +{ + "values": [ + "minecraft:turtle", + "minecraft:axolotl", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/arrows.json b/data/generated/V26_1/data/minecraft/tags/entity_type/arrows.json new file mode 100644 index 00000000..8421d31d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/arrows.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:spectral_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/arthropod.json b/data/generated/V26_1/data/minecraft/tags/entity_type/arthropod.json new file mode 100644 index 00000000..4d51ee2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/arthropod.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:bee", + "minecraft:endermite", + "minecraft:silverfish", + "minecraft:spider", + "minecraft:cave_spider" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_always_hostiles.json b/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_always_hostiles.json new file mode 100644 index 00000000..811f076e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_always_hostiles.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:drowned", + "minecraft:guardian", + "minecraft:elder_guardian" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_hunt_targets.json b/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_hunt_targets.json new file mode 100644 index 00000000..531dcb81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/axolotl_hunt_targets.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:tropical_fish", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:cod", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/beehive_inhabitors.json b/data/generated/V26_1/data/minecraft/tags/entity_type/beehive_inhabitors.json new file mode 100644 index 00000000..a5a951b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/beehive_inhabitors.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bee" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/boat.json b/data/generated/V26_1/data/minecraft/tags/entity_type/boat.json new file mode 100644 index 00000000..252370c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/boat.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:oak_boat", + "minecraft:spruce_boat", + "minecraft:birch_boat", + "minecraft:jungle_boat", + "minecraft:acacia_boat", + "minecraft:cherry_boat", + "minecraft:dark_oak_boat", + "minecraft:pale_oak_boat", + "minecraft:mangrove_boat", + "minecraft:bamboo_raft" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/burn_in_daylight.json b/data/generated/V26_1/data/minecraft/tags/entity_type/burn_in_daylight.json new file mode 100644 index 00000000..8f54dc8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/burn_in_daylight.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:stray", + "minecraft:wither_skeleton", + "minecraft:bogged", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombie_villager", + "minecraft:drowned", + "minecraft:zombie_nautilus", + "minecraft:phantom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_breathe_under_water.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_breathe_under_water.json new file mode 100644 index 00000000..35476b09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_breathe_under_water.json @@ -0,0 +1,20 @@ +{ + "values": [ + "#minecraft:undead", + "minecraft:axolotl", + "minecraft:frog", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:turtle", + "minecraft:glow_squid", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:squid", + "minecraft:tropical_fish", + "minecraft:tadpole", + "minecraft:armor_stand", + "minecraft:copper_golem", + "minecraft:nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_harness.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_harness.json new file mode 100644 index 00000000..bf784bb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_harness.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:happy_ghast" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_saddle.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_saddle.json new file mode 100644 index 00000000..eb053a30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_equip_saddle.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:skeleton_horse", + "minecraft:zombie_horse", + "minecraft:donkey", + "minecraft:mule", + "minecraft:pig", + "minecraft:strider", + "minecraft:camel", + "minecraft:camel_husk", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_float_while_ridden.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_float_while_ridden.json new file mode 100644 index 00000000..2c6da42c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_float_while_ridden.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:zombie_horse", + "minecraft:mule", + "minecraft:donkey", + "minecraft:camel", + "minecraft:camel_husk" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_turn_in_boats.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_turn_in_boats.json new file mode 100644 index 00000000..21945c27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_turn_in_boats.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_horse_armor.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_horse_armor.json new file mode 100644 index 00000000..c1546f02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_horse_armor.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:zombie_horse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json b/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json new file mode 100644 index 00000000..4ec1ffa2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json b/data/generated/V26_1/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json new file mode 100644 index 00000000..4903d377 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:villager", + "#minecraft:accepts_iron_golem_gift" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_age_locked.json b/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_age_locked.json new file mode 100644 index 00000000..92c9655e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_age_locked.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:zombie_horse", + "minecraft:skeleton_horse", + "minecraft:villager" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json b/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json new file mode 100644 index 00000000..0fde680a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:player", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:creaking", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/deflects_projectiles.json b/data/generated/V26_1/data/minecraft/tags/entity_type/deflects_projectiles.json new file mode 100644 index 00000000..21945c27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/deflects_projectiles.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/dismounts_underwater.json b/data/generated/V26_1/data/minecraft/tags/entity_type/dismounts_underwater.json new file mode 100644 index 00000000..9c53e262 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/dismounts_underwater.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:camel", + "minecraft:chicken", + "minecraft:donkey", + "minecraft:happy_ghast", + "minecraft:horse", + "minecraft:llama", + "minecraft:mule", + "minecraft:pig", + "minecraft:ravager", + "minecraft:spider", + "minecraft:strider", + "minecraft:trader_llama", + "minecraft:zombie_horse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/fall_damage_immune.json b/data/generated/V26_1/data/minecraft/tags/entity_type/fall_damage_immune.json new file mode 100644 index 00000000..3d1830c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/fall_damage_immune.json @@ -0,0 +1,22 @@ +{ + "values": [ + "minecraft:copper_golem", + "minecraft:iron_golem", + "minecraft:snow_golem", + "minecraft:shulker", + "minecraft:allay", + "minecraft:bat", + "minecraft:bee", + "minecraft:blaze", + "minecraft:cat", + "minecraft:chicken", + "minecraft:ghast", + "minecraft:happy_ghast", + "minecraft:phantom", + "minecraft:magma_cube", + "minecraft:ocelot", + "minecraft:parrot", + "minecraft:wither", + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/followable_friendly_mobs.json b/data/generated/V26_1/data/minecraft/tags/entity_type/followable_friendly_mobs.json new file mode 100644 index 00000000..26848cc3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/followable_friendly_mobs.json @@ -0,0 +1,29 @@ +{ + "values": [ + "minecraft:armadillo", + "minecraft:bee", + "minecraft:camel", + "minecraft:cat", + "minecraft:chicken", + "minecraft:cow", + "minecraft:donkey", + "minecraft:fox", + "minecraft:goat", + "minecraft:happy_ghast", + "minecraft:horse", + "minecraft:skeleton_horse", + "minecraft:llama", + "minecraft:mule", + "minecraft:ocelot", + "minecraft:panda", + "minecraft:parrot", + "minecraft:pig", + "minecraft:polar_bear", + "minecraft:rabbit", + "minecraft:sheep", + "minecraft:sniffer", + "minecraft:strider", + "minecraft:villager", + "minecraft:wolf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json b/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json new file mode 100644 index 00000000..e4cdb51e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:strider", + "minecraft:blaze", + "minecraft:magma_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_immune_entity_types.json b/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_immune_entity_types.json new file mode 100644 index 00000000..e1063a63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/freeze_immune_entity_types.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stray", + "minecraft:polar_bear", + "minecraft:snow_golem", + "minecraft:wither" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/frog_food.json b/data/generated/V26_1/data/minecraft/tags/entity_type/frog_food.json new file mode 100644 index 00000000..858f48c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/frog_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:slime", + "minecraft:magma_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/ignores_poison_and_regen.json b/data/generated/V26_1/data/minecraft/tags/entity_type/ignores_poison_and_regen.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/ignores_poison_and_regen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/illager.json b/data/generated/V26_1/data/minecraft/tags/entity_type/illager.json new file mode 100644 index 00000000..437d9528 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/illager.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:evoker", + "minecraft:illusioner", + "minecraft:pillager", + "minecraft:vindicator" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/illager_friends.json b/data/generated/V26_1/data/minecraft/tags/entity_type/illager_friends.json new file mode 100644 index 00000000..0f27c0ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/illager_friends.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:illager" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_infested.json b/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_infested.json new file mode 100644 index 00000000..06dc7c0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_infested.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silverfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_oozing.json b/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_oozing.json new file mode 100644 index 00000000..90c32b4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/immune_to_oozing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:slime" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/impact_projectiles.json b/data/generated/V26_1/data/minecraft/tags/entity_type/impact_projectiles.json new file mode 100644 index 00000000..2d4eb4e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/impact_projectiles.json @@ -0,0 +1,15 @@ +{ + "values": [ + "#minecraft:arrows", + "minecraft:firework_rocket", + "minecraft:snowball", + "minecraft:fireball", + "minecraft:small_fireball", + "minecraft:egg", + "minecraft:trident", + "minecraft:dragon_fireball", + "minecraft:wither_skull", + "minecraft:wind_charge", + "minecraft:breeze_wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/inverted_healing_and_harm.json b/data/generated/V26_1/data/minecraft/tags/entity_type/inverted_healing_and_harm.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/inverted_healing_and_harm.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/nautilus_hostiles.json b/data/generated/V26_1/data/minecraft/tags/entity_type/nautilus_hostiles.json new file mode 100644 index 00000000..6a4ad949 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/nautilus_hostiles.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:pufferfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json b/data/generated/V26_1/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json new file mode 100644 index 00000000..7cc30fb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:breeze", + "minecraft:skeleton", + "minecraft:bogged", + "minecraft:stray", + "minecraft:zombie", + "minecraft:husk", + "minecraft:spider", + "minecraft:cave_spider", + "minecraft:slime" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/non_controlling_rider.json b/data/generated/V26_1/data/minecraft/tags/entity_type/non_controlling_rider.json new file mode 100644 index 00000000..858f48c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/non_controlling_rider.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:slime", + "minecraft:magma_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json b/data/generated/V26_1/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json new file mode 100644 index 00000000..a554229c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:turtle", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json b/data/generated/V26_1/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json new file mode 100644 index 00000000..e8db267a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rabbit", + "minecraft:endermite", + "minecraft:silverfish", + "minecraft:fox" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/raiders.json b/data/generated/V26_1/data/minecraft/tags/entity_type/raiders.json new file mode 100644 index 00000000..9548830a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/raiders.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:evoker", + "minecraft:pillager", + "minecraft:ravager", + "minecraft:vindicator", + "minecraft:illusioner", + "minecraft:witch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/redirectable_projectile.json b/data/generated/V26_1/data/minecraft/tags/entity_type/redirectable_projectile.json new file mode 100644 index 00000000..5fb9fd44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/redirectable_projectile.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fireball", + "minecraft:wind_charge", + "minecraft:breeze_wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json new file mode 100644 index 00000000..e3570962 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:arthropod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_impaling.json b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_impaling.json new file mode 100644 index 00000000..203a8af2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_impaling.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:aquatic" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_smite.json b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_smite.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/sensitive_to_smite.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/skeletons.json b/data/generated/V26_1/data/minecraft/tags/entity_type/skeletons.json new file mode 100644 index 00000000..d722688a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/skeletons.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:stray", + "minecraft:wither_skeleton", + "minecraft:skeleton_horse", + "minecraft:bogged", + "minecraft:parched" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/undead.json b/data/generated/V26_1/data/minecraft/tags/entity_type/undead.json new file mode 100644 index 00000000..f00edb98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/undead.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:skeletons", + "#minecraft:zombies", + "minecraft:wither", + "minecraft:phantom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/wither_friends.json b/data/generated/V26_1/data/minecraft/tags/entity_type/wither_friends.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/wither_friends.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/entity_type/zombies.json b/data/generated/V26_1/data/minecraft/tags/entity_type/zombies.json new file mode 100644 index 00000000..ca3355d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/entity_type/zombies.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:zombie_horse", + "minecraft:camel_husk", + "minecraft:zombie", + "minecraft:zombie_villager", + "minecraft:zombified_piglin", + "minecraft:zoglin", + "minecraft:drowned", + "minecraft:husk", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/bubble_column_can_occupy.json b/data/generated/V26_1/data/minecraft/tags/fluid/bubble_column_can_occupy.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/bubble_column_can_occupy.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/lava.json b/data/generated/V26_1/data/minecraft/tags/fluid/lava.json new file mode 100644 index 00000000..c4953e87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/lava.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lava", + "minecraft:flowing_lava" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/supports_frogspawn.json b/data/generated/V26_1/data/minecraft/tags/fluid/supports_frogspawn.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/supports_frogspawn.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/supports_lily_pad.json b/data/generated/V26_1/data/minecraft/tags/fluid/supports_lily_pad.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/supports_lily_pad.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json b/data/generated/V26_1/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json new file mode 100644 index 00000000..387e410f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/fluid/water.json b/data/generated/V26_1/data/minecraft/tags/fluid/water.json new file mode 100644 index 00000000..dbfbaa80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/fluid/water.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:water", + "minecraft:flowing_water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/game_event/allay_can_listen.json b/data/generated/V26_1/data/minecraft/tags/game_event/allay_can_listen.json new file mode 100644 index 00000000..916088c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/game_event/allay_can_listen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:note_block_play" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json b/data/generated/V26_1/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json new file mode 100644 index 00000000..6bf4071d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:hit_ground", + "minecraft:projectile_shoot", + "minecraft:step", + "minecraft:swim", + "minecraft:item_interact_start", + "minecraft:item_interact_finish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/game_event/shrieker_can_listen.json b/data/generated/V26_1/data/minecraft/tags/game_event/shrieker_can_listen.json new file mode 100644 index 00000000..a5cddd84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/game_event/shrieker_can_listen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:sculk_sensor_tendrils_clicking" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/game_event/vibrations.json b/data/generated/V26_1/data/minecraft/tags/game_event/vibrations.json new file mode 100644 index 00000000..da6da8aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/game_event/vibrations.json @@ -0,0 +1,59 @@ +{ + "values": [ + "minecraft:block_attach", + "minecraft:block_change", + "minecraft:block_close", + "minecraft:block_destroy", + "minecraft:block_detach", + "minecraft:block_open", + "minecraft:block_place", + "minecraft:block_activate", + "minecraft:block_deactivate", + "minecraft:container_close", + "minecraft:container_open", + "minecraft:drink", + "minecraft:eat", + "minecraft:elytra_glide", + "minecraft:entity_damage", + "minecraft:entity_die", + "minecraft:entity_dismount", + "minecraft:entity_interact", + "minecraft:entity_mount", + "minecraft:entity_place", + "minecraft:entity_action", + "minecraft:equip", + "minecraft:explode", + "minecraft:fluid_pickup", + "minecraft:fluid_place", + "minecraft:hit_ground", + "minecraft:instrument_play", + "minecraft:item_interact_finish", + "minecraft:lightning_strike", + "minecraft:note_block_play", + "minecraft:prime_fuse", + "minecraft:projectile_land", + "minecraft:projectile_shoot", + "minecraft:shear", + "minecraft:splash", + "minecraft:step", + "minecraft:swim", + "minecraft:teleport", + "minecraft:unequip", + "minecraft:resonate_1", + "minecraft:resonate_2", + "minecraft:resonate_3", + "minecraft:resonate_4", + "minecraft:resonate_5", + "minecraft:resonate_6", + "minecraft:resonate_7", + "minecraft:resonate_8", + "minecraft:resonate_9", + "minecraft:resonate_10", + "minecraft:resonate_11", + "minecraft:resonate_12", + "minecraft:resonate_13", + "minecraft:resonate_14", + "minecraft:resonate_15", + "minecraft:flap" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/game_event/warden_can_listen.json b/data/generated/V26_1/data/minecraft/tags/game_event/warden_can_listen.json new file mode 100644 index 00000000..42e59573 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/game_event/warden_can_listen.json @@ -0,0 +1,60 @@ +{ + "values": [ + "minecraft:block_attach", + "minecraft:block_change", + "minecraft:block_close", + "minecraft:block_destroy", + "minecraft:block_detach", + "minecraft:block_open", + "minecraft:block_place", + "minecraft:block_activate", + "minecraft:block_deactivate", + "minecraft:container_close", + "minecraft:container_open", + "minecraft:drink", + "minecraft:eat", + "minecraft:elytra_glide", + "minecraft:entity_damage", + "minecraft:entity_die", + "minecraft:entity_dismount", + "minecraft:entity_interact", + "minecraft:entity_mount", + "minecraft:entity_place", + "minecraft:entity_action", + "minecraft:equip", + "minecraft:explode", + "minecraft:fluid_pickup", + "minecraft:fluid_place", + "minecraft:hit_ground", + "minecraft:instrument_play", + "minecraft:item_interact_finish", + "minecraft:lightning_strike", + "minecraft:note_block_play", + "minecraft:prime_fuse", + "minecraft:projectile_land", + "minecraft:projectile_shoot", + "minecraft:shear", + "minecraft:splash", + "minecraft:step", + "minecraft:swim", + "minecraft:teleport", + "minecraft:unequip", + "minecraft:resonate_1", + "minecraft:resonate_2", + "minecraft:resonate_3", + "minecraft:resonate_4", + "minecraft:resonate_5", + "minecraft:resonate_6", + "minecraft:resonate_7", + "minecraft:resonate_8", + "minecraft:resonate_9", + "minecraft:resonate_10", + "minecraft:resonate_11", + "minecraft:resonate_12", + "minecraft:resonate_13", + "minecraft:resonate_14", + "minecraft:resonate_15", + "minecraft:shriek", + "#minecraft:shrieker_can_listen" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/instrument/goat_horns.json b/data/generated/V26_1/data/minecraft/tags/instrument/goat_horns.json new file mode 100644 index 00000000..c0f7ced1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/instrument/goat_horns.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:regular_goat_horns", + "#minecraft:screaming_goat_horns" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/instrument/regular_goat_horns.json b/data/generated/V26_1/data/minecraft/tags/instrument/regular_goat_horns.json new file mode 100644 index 00000000..0386d95e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/instrument/regular_goat_horns.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:ponder_goat_horn", + "minecraft:sing_goat_horn", + "minecraft:seek_goat_horn", + "minecraft:feel_goat_horn" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/instrument/screaming_goat_horns.json b/data/generated/V26_1/data/minecraft/tags/instrument/screaming_goat_horns.json new file mode 100644 index 00000000..e7befb9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/instrument/screaming_goat_horns.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:admire_goat_horn", + "minecraft:call_goat_horn", + "minecraft:yearn_goat_horn", + "minecraft:dream_goat_horn" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/acacia_logs.json b/data/generated/V26_1/data/minecraft/tags/item/acacia_logs.json new file mode 100644 index 00000000..84a0bc4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/acacia_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:acacia_wood", + "minecraft:stripped_acacia_log", + "minecraft:stripped_acacia_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/anvil.json b/data/generated/V26_1/data/minecraft/tags/item/anvil.json new file mode 100644 index 00000000..84ef65a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/anvil.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:anvil", + "minecraft:chipped_anvil", + "minecraft:damaged_anvil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/armadillo_food.json b/data/generated/V26_1/data/minecraft/tags/item/armadillo_food.json new file mode 100644 index 00000000..fb33a5ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/armadillo_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:spider_eye" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/arrows.json b/data/generated/V26_1/data/minecraft/tags/item/arrows.json new file mode 100644 index 00000000..4ebac713 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/arrows.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:tipped_arrow", + "minecraft:spectral_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/axes.json b/data/generated/V26_1/data/minecraft/tags/item/axes.json new file mode 100644 index 00000000..55b3892b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/axes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_axe", + "minecraft:stone_axe", + "minecraft:golden_axe", + "minecraft:netherite_axe", + "minecraft:wooden_axe", + "minecraft:iron_axe", + "minecraft:copper_axe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/axolotl_food.json b/data/generated/V26_1/data/minecraft/tags/item/axolotl_food.json new file mode 100644 index 00000000..62859aa6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/axolotl_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:tropical_fish_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/bamboo_blocks.json b/data/generated/V26_1/data/minecraft/tags/item/bamboo_blocks.json new file mode 100644 index 00000000..347c0af8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/bamboo_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_block", + "minecraft:stripped_bamboo_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/banners.json b/data/generated/V26_1/data/minecraft/tags/item/banners.json new file mode 100644 index 00000000..e2efe3d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/banners.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_banner", + "minecraft:orange_banner", + "minecraft:magenta_banner", + "minecraft:light_blue_banner", + "minecraft:yellow_banner", + "minecraft:lime_banner", + "minecraft:pink_banner", + "minecraft:gray_banner", + "minecraft:light_gray_banner", + "minecraft:cyan_banner", + "minecraft:purple_banner", + "minecraft:blue_banner", + "minecraft:brown_banner", + "minecraft:green_banner", + "minecraft:red_banner", + "minecraft:black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/bars.json b/data/generated/V26_1/data/minecraft/tags/item/bars.json new file mode 100644 index 00000000..72d1f406 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/bars.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_bars", + "minecraft:copper_bars", + "minecraft:waxed_copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:waxed_oxidized_copper_bars" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/beacon_payment_items.json b/data/generated/V26_1/data/minecraft/tags/item/beacon_payment_items.json new file mode 100644 index 00000000..802967c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/beacon_payment_items.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:netherite_ingot", + "minecraft:emerald", + "minecraft:diamond", + "minecraft:gold_ingot", + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/beds.json b/data/generated/V26_1/data/minecraft/tags/item/beds.json new file mode 100644 index 00000000..77c22422 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/beds.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:red_bed", + "minecraft:black_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:cyan_bed", + "minecraft:gray_bed", + "minecraft:green_bed", + "minecraft:light_blue_bed", + "minecraft:light_gray_bed", + "minecraft:lime_bed", + "minecraft:magenta_bed", + "minecraft:orange_bed", + "minecraft:pink_bed", + "minecraft:purple_bed", + "minecraft:white_bed", + "minecraft:yellow_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/bee_food.json b/data/generated/V26_1/data/minecraft/tags/item/bee_food.json new file mode 100644 index 00000000..f2851d5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/bee_food.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/birch_logs.json b/data/generated/V26_1/data/minecraft/tags/item/birch_logs.json new file mode 100644 index 00000000..9203a57b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/birch_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:birch_log", + "minecraft:birch_wood", + "minecraft:stripped_birch_log", + "minecraft:stripped_birch_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/boats.json b/data/generated/V26_1/data/minecraft/tags/item/boats.json new file mode 100644 index 00000000..c04cb9ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/boats.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_boat", + "minecraft:spruce_boat", + "minecraft:birch_boat", + "minecraft:jungle_boat", + "minecraft:acacia_boat", + "minecraft:dark_oak_boat", + "minecraft:pale_oak_boat", + "minecraft:mangrove_boat", + "minecraft:bamboo_raft", + "minecraft:cherry_boat", + "#minecraft:chest_boats" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/book_cloning_target.json b/data/generated/V26_1/data/minecraft/tags/item/book_cloning_target.json new file mode 100644 index 00000000..0fdf7a21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/book_cloning_target.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:writable_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/bookshelf_books.json b/data/generated/V26_1/data/minecraft/tags/item/bookshelf_books.json new file mode 100644 index 00000000..66dc5510 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/bookshelf_books.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:book", + "minecraft:written_book", + "minecraft:enchanted_book", + "minecraft:writable_book", + "minecraft:knowledge_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/breaks_decorated_pots.json b/data/generated/V26_1/data/minecraft/tags/item/breaks_decorated_pots.json new file mode 100644 index 00000000..9b99abb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/breaks_decorated_pots.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:trident", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/brewing_fuel.json b/data/generated/V26_1/data/minecraft/tags/item/brewing_fuel.json new file mode 100644 index 00000000..10d5c868 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/brewing_fuel.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:blaze_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/bundles.json b/data/generated/V26_1/data/minecraft/tags/item/bundles.json new file mode 100644 index 00000000..b59d1468 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/bundles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:bundle", + "minecraft:black_bundle", + "minecraft:blue_bundle", + "minecraft:brown_bundle", + "minecraft:cyan_bundle", + "minecraft:gray_bundle", + "minecraft:green_bundle", + "minecraft:light_blue_bundle", + "minecraft:light_gray_bundle", + "minecraft:lime_bundle", + "minecraft:magenta_bundle", + "minecraft:orange_bundle", + "minecraft:pink_bundle", + "minecraft:purple_bundle", + "minecraft:red_bundle", + "minecraft:yellow_bundle", + "minecraft:white_bundle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/buttons.json b/data/generated/V26_1/data/minecraft/tags/item/buttons.json new file mode 100644 index 00000000..3400bf38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_buttons", + "#minecraft:stone_buttons" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/camel_food.json b/data/generated/V26_1/data/minecraft/tags/item/camel_food.json new file mode 100644 index 00000000..2624ccf2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/camel_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:cactus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/camel_husk_food.json b/data/generated/V26_1/data/minecraft/tags/item/camel_husk_food.json new file mode 100644 index 00000000..8c072820 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/camel_husk_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:rabbit_foot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/candles.json b/data/generated/V26_1/data/minecraft/tags/item/candles.json new file mode 100644 index 00000000..a7b2b62f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/candles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle", + "minecraft:white_candle", + "minecraft:orange_candle", + "minecraft:magenta_candle", + "minecraft:light_blue_candle", + "minecraft:yellow_candle", + "minecraft:lime_candle", + "minecraft:pink_candle", + "minecraft:gray_candle", + "minecraft:light_gray_candle", + "minecraft:cyan_candle", + "minecraft:purple_candle", + "minecraft:blue_candle", + "minecraft:brown_candle", + "minecraft:green_candle", + "minecraft:red_candle", + "minecraft:black_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cat_collar_dyes.json b/data/generated/V26_1/data/minecraft/tags/item/cat_collar_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cat_collar_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cat_food.json b/data/generated/V26_1/data/minecraft/tags/item/cat_food.json new file mode 100644 index 00000000..7869b407 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cat_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cauldron_can_remove_dye.json b/data/generated/V26_1/data/minecraft/tags/item/cauldron_can_remove_dye.json new file mode 100644 index 00000000..e70da38d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cauldron_can_remove_dye.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:leather_helmet", + "minecraft:leather_chestplate", + "minecraft:leather_leggings", + "minecraft:leather_boots", + "minecraft:leather_horse_armor", + "minecraft:wolf_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/chains.json b/data/generated/V26_1/data/minecraft/tags/item/chains.json new file mode 100644 index 00000000..58c2b30a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/chains.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_chain", + "minecraft:copper_chain", + "minecraft:waxed_copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:oxidized_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cherry_logs.json b/data/generated/V26_1/data/minecraft/tags/item/cherry_logs.json new file mode 100644 index 00000000..4295e055 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cherry_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cherry_log", + "minecraft:cherry_wood", + "minecraft:stripped_cherry_log", + "minecraft:stripped_cherry_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/chest_armor.json b/data/generated/V26_1/data/minecraft/tags/item/chest_armor.json new file mode 100644 index 00000000..f46b289b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/chest_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_chestplate", + "minecraft:copper_chestplate", + "minecraft:chainmail_chestplate", + "minecraft:golden_chestplate", + "minecraft:iron_chestplate", + "minecraft:diamond_chestplate", + "minecraft:netherite_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/chest_boats.json b/data/generated/V26_1/data/minecraft/tags/item/chest_boats.json new file mode 100644 index 00000000..ab1b5c07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/chest_boats.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:oak_chest_boat", + "minecraft:spruce_chest_boat", + "minecraft:birch_chest_boat", + "minecraft:jungle_chest_boat", + "minecraft:acacia_chest_boat", + "minecraft:dark_oak_chest_boat", + "minecraft:pale_oak_chest_boat", + "minecraft:mangrove_chest_boat", + "minecraft:bamboo_chest_raft", + "minecraft:cherry_chest_boat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/chicken_food.json b/data/generated/V26_1/data/minecraft/tags/item/chicken_food.json new file mode 100644 index 00000000..295a67c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/chicken_food.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cluster_max_harvestables.json b/data/generated/V26_1/data/minecraft/tags/item/cluster_max_harvestables.json new file mode 100644 index 00000000..5e6fc1be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cluster_max_harvestables.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_pickaxe", + "minecraft:golden_pickaxe", + "minecraft:iron_pickaxe", + "minecraft:netherite_pickaxe", + "minecraft:stone_pickaxe", + "minecraft:wooden_pickaxe", + "minecraft:copper_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/coal_ores.json b/data/generated/V26_1/data/minecraft/tags/item/coal_ores.json new file mode 100644 index 00000000..aaa76288 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/coal_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/coals.json b/data/generated/V26_1/data/minecraft/tags/item/coals.json new file mode 100644 index 00000000..43868c8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/coals.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal", + "minecraft:charcoal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/compasses.json b/data/generated/V26_1/data/minecraft/tags/item/compasses.json new file mode 100644 index 00000000..e0f422fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/compasses.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:compass", + "minecraft:recovery_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/completes_find_tree_tutorial.json b/data/generated/V26_1/data/minecraft/tags/item/completes_find_tree_tutorial.json new file mode 100644 index 00000000..74701c2e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/completes_find_tree_tutorial.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs", + "#minecraft:leaves", + "#minecraft:wart_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/copper.json b/data/generated/V26_1/data/minecraft/tags/item/copper.json new file mode 100644 index 00000000..53848650 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/copper.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/copper_chests.json b/data/generated/V26_1/data/minecraft/tags/item/copper_chests.json new file mode 100644 index 00000000..90d0a9ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/copper_chests.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/copper_golem_statues.json b/data/generated/V26_1/data/minecraft/tags/item/copper_golem_statues.json new file mode 100644 index 00000000..531fc959 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/copper_golem_statues.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/copper_ores.json b/data/generated/V26_1/data/minecraft/tags/item/copper_ores.json new file mode 100644 index 00000000..5d76012e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/copper_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/copper_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/copper_tool_materials.json new file mode 100644 index 00000000..1cc1f065 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/copper_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/cow_food.json b/data/generated/V26_1/data/minecraft/tags/item/cow_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/cow_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/creeper_drop_music_discs.json b/data/generated/V26_1/data/minecraft/tags/item/creeper_drop_music_discs.json new file mode 100644 index 00000000..d79c2be5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/creeper_drop_music_discs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:music_disc_13", + "minecraft:music_disc_cat", + "minecraft:music_disc_blocks", + "minecraft:music_disc_chirp", + "minecraft:music_disc_far", + "minecraft:music_disc_mall", + "minecraft:music_disc_mellohi", + "minecraft:music_disc_stal", + "minecraft:music_disc_strad", + "minecraft:music_disc_ward", + "minecraft:music_disc_11", + "minecraft:music_disc_wait" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/creeper_igniters.json b/data/generated/V26_1/data/minecraft/tags/item/creeper_igniters.json new file mode 100644 index 00000000..d30efcd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/creeper_igniters.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:flint_and_steel", + "minecraft:fire_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/crimson_stems.json b/data/generated/V26_1/data/minecraft/tags/item/crimson_stems.json new file mode 100644 index 00000000..f78c7a3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/crimson_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/dampens_vibrations.json b/data/generated/V26_1/data/minecraft/tags/item/dampens_vibrations.json new file mode 100644 index 00000000..89eab86d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/dampens_vibrations.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wool", + "#minecraft:wool_carpets" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/dark_oak_logs.json b/data/generated/V26_1/data/minecraft/tags/item/dark_oak_logs.json new file mode 100644 index 00000000..f7f5a28e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/dark_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:dark_oak_log", + "minecraft:dark_oak_wood", + "minecraft:stripped_dark_oak_log", + "minecraft:stripped_dark_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_ingredients.json b/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_ingredients.json new file mode 100644 index 00000000..98e5e880 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_ingredients.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:brick", + "#minecraft:decorated_pot_sherds" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_sherds.json b/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_sherds.json new file mode 100644 index 00000000..0ef9aa8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/decorated_pot_sherds.json @@ -0,0 +1,27 @@ +{ + "values": [ + "minecraft:angler_pottery_sherd", + "minecraft:archer_pottery_sherd", + "minecraft:arms_up_pottery_sherd", + "minecraft:blade_pottery_sherd", + "minecraft:brewer_pottery_sherd", + "minecraft:burn_pottery_sherd", + "minecraft:danger_pottery_sherd", + "minecraft:explorer_pottery_sherd", + "minecraft:friend_pottery_sherd", + "minecraft:heart_pottery_sherd", + "minecraft:heartbreak_pottery_sherd", + "minecraft:howl_pottery_sherd", + "minecraft:miner_pottery_sherd", + "minecraft:mourner_pottery_sherd", + "minecraft:plenty_pottery_sherd", + "minecraft:prize_pottery_sherd", + "minecraft:sheaf_pottery_sherd", + "minecraft:shelter_pottery_sherd", + "minecraft:skull_pottery_sherd", + "minecraft:snort_pottery_sherd", + "minecraft:flow_pottery_sherd", + "minecraft:guster_pottery_sherd", + "minecraft:scrape_pottery_sherd" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/diamond_ores.json b/data/generated/V26_1/data/minecraft/tags/item/diamond_ores.json new file mode 100644 index 00000000..cfa6e09c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/diamond_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/diamond_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/diamond_tool_materials.json new file mode 100644 index 00000000..f44f30dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/diamond_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:diamond" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/dirt.json b/data/generated/V26_1/data/minecraft/tags/item/dirt.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/dirt.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/doors.json b/data/generated/V26_1/data/minecraft/tags/item/doors.json new file mode 100644 index 00000000..9ca24fcf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/doors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:iron_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/drowned_preferred_weapons.json b/data/generated/V26_1/data/minecraft/tags/item/drowned_preferred_weapons.json new file mode 100644 index 00000000..7a2c450b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/drowned_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/duplicates_allays.json b/data/generated/V26_1/data/minecraft/tags/item/duplicates_allays.json new file mode 100644 index 00000000..742ef896 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/duplicates_allays.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:amethyst_shard" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/dyes.json b/data/generated/V26_1/data/minecraft/tags/item/dyes.json new file mode 100644 index 00000000..f6474def --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/dyes.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_dye", + "minecraft:orange_dye", + "minecraft:magenta_dye", + "minecraft:light_blue_dye", + "minecraft:yellow_dye", + "minecraft:lime_dye", + "minecraft:pink_dye", + "minecraft:gray_dye", + "minecraft:light_gray_dye", + "minecraft:cyan_dye", + "minecraft:purple_dye", + "minecraft:blue_dye", + "minecraft:brown_dye", + "minecraft:green_dye", + "minecraft:red_dye", + "minecraft:black_dye" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/eggs.json b/data/generated/V26_1/data/minecraft/tags/item/eggs.json new file mode 100644 index 00000000..828fbcc1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/eggs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:egg", + "minecraft:blue_egg", + "minecraft:brown_egg" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/emerald_ores.json b/data/generated/V26_1/data/minecraft/tags/item/emerald_ores.json new file mode 100644 index 00000000..063d8e62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/emerald_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/armor.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/armor.json new file mode 100644 index 00000000..00405056 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:enchantable/foot_armor", + "#minecraft:enchantable/leg_armor", + "#minecraft:enchantable/chest_armor", + "#minecraft:enchantable/head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/bow.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/bow.json new file mode 100644 index 00000000..a1c8a443 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/bow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/chest_armor.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/chest_armor.json new file mode 100644 index 00000000..913ce1bd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/chest_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:chest_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/crossbow.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/crossbow.json new file mode 100644 index 00000000..848f97bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/crossbow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/durability.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/durability.json new file mode 100644 index 00000000..2304e0f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/durability.json @@ -0,0 +1,26 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "minecraft:shield", + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:flint_and_steel", + "minecraft:shears", + "minecraft:brush", + "minecraft:fishing_rod", + "minecraft:carrot_on_a_stick", + "minecraft:warped_fungus_on_a_stick", + "minecraft:mace", + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/equippable.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/equippable.json new file mode 100644 index 00000000..653c557b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/equippable.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "#minecraft:skulls", + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/fire_aspect.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/fire_aspect.json new file mode 100644 index 00000000..a93e5ff2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/fire_aspect.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/melee_weapon", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/fishing.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/fishing.json new file mode 100644 index 00000000..e97941e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/fishing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fishing_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/foot_armor.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/foot_armor.json new file mode 100644 index 00000000..9dc9d4ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/foot_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:foot_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/head_armor.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/head_armor.json new file mode 100644 index 00000000..027283b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/head_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/leg_armor.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/leg_armor.json new file mode 100644 index 00000000..af44f45c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/leg_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:leg_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/lunge.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/lunge.json new file mode 100644 index 00000000..1f3b3aa0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/lunge.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/mace.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mace.json new file mode 100644 index 00000000..c149f0e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mace.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/melee_weapon.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/melee_weapon.json new file mode 100644 index 00000000..21b32efb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/melee_weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining.json new file mode 100644 index 00000000..a2cc0e4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:shears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining_loot.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining_loot.json new file mode 100644 index 00000000..753a5b3d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/mining_loot.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/sharp_weapon.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/sharp_weapon.json new file mode 100644 index 00000000..5838ae45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/sharp_weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/melee_weapon", + "#minecraft:axes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/sweeping.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/sweeping.json new file mode 100644 index 00000000..66370891 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/sweeping.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:swords" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/trident.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/trident.json new file mode 100644 index 00000000..7a2c450b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/trident.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/vanishing.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/vanishing.json new file mode 100644 index 00000000..dae3ff80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/vanishing.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:enchantable/durability", + "minecraft:compass", + "minecraft:carved_pumpkin", + "#minecraft:skulls" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/enchantable/weapon.json b/data/generated/V26_1/data/minecraft/tags/item/enchantable/weapon.json new file mode 100644 index 00000000..4cda09f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/enchantable/weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/sharp_weapon", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/fence_gates.json b/data/generated/V26_1/data/minecraft/tags/item/fence_gates.json new file mode 100644 index 00000000..9904fc97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/fence_gates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_fence_gate", + "minecraft:birch_fence_gate", + "minecraft:dark_oak_fence_gate", + "minecraft:pale_oak_fence_gate", + "minecraft:jungle_fence_gate", + "minecraft:oak_fence_gate", + "minecraft:spruce_fence_gate", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:mangrove_fence_gate", + "minecraft:bamboo_fence_gate", + "minecraft:cherry_fence_gate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/fences.json b/data/generated/V26_1/data/minecraft/tags/item/fences.json new file mode 100644 index 00000000..045fa7d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/fences.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_fences", + "minecraft:nether_brick_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/fishes.json b/data/generated/V26_1/data/minecraft/tags/item/fishes.json new file mode 100644 index 00000000..434e9372 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/fishes.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:cooked_cod", + "minecraft:salmon", + "minecraft:cooked_salmon", + "minecraft:pufferfish", + "minecraft:tropical_fish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/flowers.json b/data/generated/V26_1/data/minecraft/tags/item/flowers.json new file mode 100644 index 00000000..e0095f65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/flowers.json @@ -0,0 +1,19 @@ +{ + "values": [ + "#minecraft:small_flowers", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/foot_armor.json b/data/generated/V26_1/data/minecraft/tags/item/foot_armor.json new file mode 100644 index 00000000..47593a57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/foot_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_boots", + "minecraft:copper_boots", + "minecraft:chainmail_boots", + "minecraft:golden_boots", + "minecraft:iron_boots", + "minecraft:diamond_boots", + "minecraft:netherite_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/fox_food.json b/data/generated/V26_1/data/minecraft/tags/item/fox_food.json new file mode 100644 index 00000000..500bd943 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/fox_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sweet_berries", + "minecraft:glow_berries" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/freeze_immune_wearables.json b/data/generated/V26_1/data/minecraft/tags/item/freeze_immune_wearables.json new file mode 100644 index 00000000..1e8a642d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/freeze_immune_wearables.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:leather_boots", + "minecraft:leather_leggings", + "minecraft:leather_chestplate", + "minecraft:leather_helmet", + "minecraft:leather_horse_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/frog_food.json b/data/generated/V26_1/data/minecraft/tags/item/frog_food.json new file mode 100644 index 00000000..533c25d9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/frog_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:slime_ball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/furnace_minecart_fuel.json b/data/generated/V26_1/data/minecraft/tags/item/furnace_minecart_fuel.json new file mode 100644 index 00000000..43868c8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/furnace_minecart_fuel.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal", + "minecraft:charcoal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/gaze_disguise_equipment.json b/data/generated/V26_1/data/minecraft/tags/item/gaze_disguise_equipment.json new file mode 100644 index 00000000..1a0f6d39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/gaze_disguise_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/goat_food.json b/data/generated/V26_1/data/minecraft/tags/item/goat_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/goat_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/gold_ores.json b/data/generated/V26_1/data/minecraft/tags/item/gold_ores.json new file mode 100644 index 00000000..279f354d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/gold_ores.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:gold_ore", + "minecraft:nether_gold_ore", + "minecraft:deepslate_gold_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/gold_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/gold_tool_materials.json new file mode 100644 index 00000000..07e9f66a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/gold_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gold_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/grass_blocks.json b/data/generated/V26_1/data/minecraft/tags/item/grass_blocks.json new file mode 100644 index 00000000..e7e86f75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/grass_blocks.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/hanging_signs.json b/data/generated/V26_1/data/minecraft/tags/item/hanging_signs.json new file mode 100644 index 00000000..b55f67ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_hanging_sign", + "minecraft:spruce_hanging_sign", + "minecraft:birch_hanging_sign", + "minecraft:acacia_hanging_sign", + "minecraft:cherry_hanging_sign", + "minecraft:jungle_hanging_sign", + "minecraft:dark_oak_hanging_sign", + "minecraft:pale_oak_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_hanging_sign", + "minecraft:mangrove_hanging_sign", + "minecraft:bamboo_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_food.json b/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_food.json new file mode 100644 index 00000000..952b6ca8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:snowball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_tempt_items.json b/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_tempt_items.json new file mode 100644 index 00000000..141ba108 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/happy_ghast_tempt_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:happy_ghast_food", + "#minecraft:harnesses" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/harnesses.json b/data/generated/V26_1/data/minecraft/tags/item/harnesses.json new file mode 100644 index 00000000..2592da68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/harnesses.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/head_armor.json b/data/generated/V26_1/data/minecraft/tags/item/head_armor.json new file mode 100644 index 00000000..a0074afc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/head_armor.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:leather_helmet", + "minecraft:copper_helmet", + "minecraft:chainmail_helmet", + "minecraft:golden_helmet", + "minecraft:iron_helmet", + "minecraft:diamond_helmet", + "minecraft:netherite_helmet", + "minecraft:turtle_helmet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/hoes.json b/data/generated/V26_1/data/minecraft/tags/item/hoes.json new file mode 100644 index 00000000..b0da60a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/hoes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_hoe", + "minecraft:stone_hoe", + "minecraft:golden_hoe", + "minecraft:netherite_hoe", + "minecraft:wooden_hoe", + "minecraft:iron_hoe", + "minecraft:copper_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/hoglin_food.json b/data/generated/V26_1/data/minecraft/tags/item/hoglin_food.json new file mode 100644 index 00000000..cca7408f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/hoglin_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crimson_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/horse_food.json b/data/generated/V26_1/data/minecraft/tags/item/horse_food.json new file mode 100644 index 00000000..a7adf36b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/horse_food.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:wheat", + "minecraft:sugar", + "minecraft:hay_block", + "minecraft:apple", + "minecraft:carrot", + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/horse_tempt_items.json b/data/generated/V26_1/data/minecraft/tags/item/horse_tempt_items.json new file mode 100644 index 00000000..9e7e81d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/horse_tempt_items.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/ignored_by_piglin_babies.json b/data/generated/V26_1/data/minecraft/tags/item/ignored_by_piglin_babies.json new file mode 100644 index 00000000..71b797d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/ignored_by_piglin_babies.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:leather" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/iron_ores.json b/data/generated/V26_1/data/minecraft/tags/item/iron_ores.json new file mode 100644 index 00000000..0566d8ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/iron_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/iron_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/iron_tool_materials.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/iron_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/jungle_logs.json b/data/generated/V26_1/data/minecraft/tags/item/jungle_logs.json new file mode 100644 index 00000000..437efbff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/jungle_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:jungle_log", + "minecraft:jungle_wood", + "minecraft:stripped_jungle_log", + "minecraft:stripped_jungle_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/lanterns.json b/data/generated/V26_1/data/minecraft/tags/item/lanterns.json new file mode 100644 index 00000000..fa358d40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/lanterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:lantern", + "minecraft:soul_lantern", + "minecraft:copper_lantern", + "minecraft:waxed_copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/lapis_ores.json b/data/generated/V26_1/data/minecraft/tags/item/lapis_ores.json new file mode 100644 index 00000000..a041526e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/lapis_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/leaves.json b/data/generated/V26_1/data/minecraft/tags/item/leaves.json new file mode 100644 index 00000000..523787f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/leaves.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:jungle_leaves", + "minecraft:oak_leaves", + "minecraft:spruce_leaves", + "minecraft:pale_oak_leaves", + "minecraft:dark_oak_leaves", + "minecraft:acacia_leaves", + "minecraft:birch_leaves", + "minecraft:azalea_leaves", + "minecraft:flowering_azalea_leaves", + "minecraft:mangrove_leaves", + "minecraft:cherry_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/lectern_books.json b/data/generated/V26_1/data/minecraft/tags/item/lectern_books.json new file mode 100644 index 00000000..d34a332a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/lectern_books.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:written_book", + "minecraft:writable_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/leg_armor.json b/data/generated/V26_1/data/minecraft/tags/item/leg_armor.json new file mode 100644 index 00000000..0aed8815 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/leg_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_leggings", + "minecraft:copper_leggings", + "minecraft:chainmail_leggings", + "minecraft:golden_leggings", + "minecraft:iron_leggings", + "minecraft:diamond_leggings", + "minecraft:netherite_leggings" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/lightning_rods.json b/data/generated/V26_1/data/minecraft/tags/item/lightning_rods.json new file mode 100644 index 00000000..73469e26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/lightning_rods.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/llama_food.json b/data/generated/V26_1/data/minecraft/tags/item/llama_food.json new file mode 100644 index 00000000..a80c6075 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/llama_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:wheat", + "minecraft:hay_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/llama_tempt_items.json b/data/generated/V26_1/data/minecraft/tags/item/llama_tempt_items.json new file mode 100644 index 00000000..ea92d03c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/llama_tempt_items.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:hay_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/logs.json b/data/generated/V26_1/data/minecraft/tags/item/logs.json new file mode 100644 index 00000000..234e4fee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/logs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs_that_burn", + "#minecraft:crimson_stems", + "#minecraft:warped_stems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/logs_that_burn.json b/data/generated/V26_1/data/minecraft/tags/item/logs_that_burn.json new file mode 100644 index 00000000..00f0e7fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/logs_that_burn.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:dark_oak_logs", + "#minecraft:pale_oak_logs", + "#minecraft:oak_logs", + "#minecraft:acacia_logs", + "#minecraft:birch_logs", + "#minecraft:jungle_logs", + "#minecraft:spruce_logs", + "#minecraft:mangrove_logs", + "#minecraft:cherry_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/loom_dyes.json b/data/generated/V26_1/data/minecraft/tags/item/loom_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/loom_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/loom_patterns.json b/data/generated/V26_1/data/minecraft/tags/item/loom_patterns.json new file mode 100644 index 00000000..9c3adc4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/loom_patterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:flower_banner_pattern", + "minecraft:creeper_banner_pattern", + "minecraft:skull_banner_pattern", + "minecraft:mojang_banner_pattern", + "minecraft:globe_banner_pattern", + "minecraft:piglin_banner_pattern", + "minecraft:flow_banner_pattern", + "minecraft:guster_banner_pattern", + "minecraft:field_masoned_banner_pattern", + "minecraft:bordure_indented_banner_pattern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/mangrove_logs.json b/data/generated/V26_1/data/minecraft/tags/item/mangrove_logs.json new file mode 100644 index 00000000..d69fadff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/mangrove_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mangrove_log", + "minecraft:mangrove_wood", + "minecraft:stripped_mangrove_log", + "minecraft:stripped_mangrove_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/map_invisibility_equipment.json b/data/generated/V26_1/data/minecraft/tags/item/map_invisibility_equipment.json new file mode 100644 index 00000000..1a0f6d39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/map_invisibility_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/meat.json b/data/generated/V26_1/data/minecraft/tags/item/meat.json new file mode 100644 index 00000000..df339943 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/meat.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:beef", + "minecraft:chicken", + "minecraft:cooked_beef", + "minecraft:cooked_chicken", + "minecraft:cooked_mutton", + "minecraft:cooked_porkchop", + "minecraft:cooked_rabbit", + "minecraft:mutton", + "minecraft:porkchop", + "minecraft:rabbit", + "minecraft:rotten_flesh" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/metal_nuggets.json b/data/generated/V26_1/data/minecraft/tags/item/metal_nuggets.json new file mode 100644 index 00000000..f8807c64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/metal_nuggets.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:copper_nugget", + "minecraft:iron_nugget", + "minecraft:gold_nugget" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/moss_blocks.json b/data/generated/V26_1/data/minecraft/tags/item/moss_blocks.json new file mode 100644 index 00000000..2774bdfa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/moss_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:moss_block", + "minecraft:pale_moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/mud.json b/data/generated/V26_1/data/minecraft/tags/item/mud.json new file mode 100644 index 00000000..0ac1535b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/mud.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/nautilus_bucket_food.json b/data/generated/V26_1/data/minecraft/tags/item/nautilus_bucket_food.json new file mode 100644 index 00000000..d3900544 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/nautilus_bucket_food.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pufferfish_bucket", + "minecraft:cod_bucket", + "minecraft:salmon_bucket", + "minecraft:tropical_fish_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/nautilus_food.json b/data/generated/V26_1/data/minecraft/tags/item/nautilus_food.json new file mode 100644 index 00000000..a6fe3fe3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/nautilus_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:fishes", + "#minecraft:nautilus_bucket_food" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/nautilus_taming_items.json b/data/generated/V26_1/data/minecraft/tags/item/nautilus_taming_items.json new file mode 100644 index 00000000..4192297b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/nautilus_taming_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:pufferfish_bucket", + "minecraft:pufferfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/netherite_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/netherite_tool_materials.json new file mode 100644 index 00000000..bd6929df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/netherite_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:netherite_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/non_flammable_wood.json b/data/generated/V26_1/data/minecraft/tags/item/non_flammable_wood.json new file mode 100644 index 00000000..41c8d15e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/non_flammable_wood.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae", + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:warped_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_shelf", + "minecraft:crimson_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/noteblock_top_instruments.json b/data/generated/V26_1/data/minecraft/tags/item/noteblock_top_instruments.json new file mode 100644 index 00000000..b32f59c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/noteblock_top_instruments.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:creeper_head", + "minecraft:dragon_head", + "minecraft:wither_skeleton_skull", + "minecraft:piglin_head", + "minecraft:player_head" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/oak_logs.json b/data/generated/V26_1/data/minecraft/tags/item/oak_logs.json new file mode 100644 index 00000000..d4bae2a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:oak_log", + "minecraft:oak_wood", + "minecraft:stripped_oak_log", + "minecraft:stripped_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/ocelot_food.json b/data/generated/V26_1/data/minecraft/tags/item/ocelot_food.json new file mode 100644 index 00000000..7869b407 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/ocelot_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/pale_oak_logs.json b/data/generated/V26_1/data/minecraft/tags/item/pale_oak_logs.json new file mode 100644 index 00000000..928a458b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/pale_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pale_oak_log", + "minecraft:pale_oak_wood", + "minecraft:stripped_pale_oak_log", + "minecraft:stripped_pale_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/panda_eats_from_ground.json b/data/generated/V26_1/data/minecraft/tags/item/panda_eats_from_ground.json new file mode 100644 index 00000000..421a2fc2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/panda_eats_from_ground.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:panda_food", + "minecraft:cake" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/panda_food.json b/data/generated/V26_1/data/minecraft/tags/item/panda_food.json new file mode 100644 index 00000000..acf1b10b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/panda_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bamboo" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/parrot_food.json b/data/generated/V26_1/data/minecraft/tags/item/parrot_food.json new file mode 100644 index 00000000..295a67c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/parrot_food.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/parrot_poisonous_food.json b/data/generated/V26_1/data/minecraft/tags/item/parrot_poisonous_food.json new file mode 100644 index 00000000..a7c0dc91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/parrot_poisonous_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:cookie" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/pickaxes.json b/data/generated/V26_1/data/minecraft/tags/item/pickaxes.json new file mode 100644 index 00000000..3902c558 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/pickaxes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_pickaxe", + "minecraft:stone_pickaxe", + "minecraft:golden_pickaxe", + "minecraft:netherite_pickaxe", + "minecraft:wooden_pickaxe", + "minecraft:iron_pickaxe", + "minecraft:copper_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/pig_food.json b/data/generated/V26_1/data/minecraft/tags/item/pig_food.json new file mode 100644 index 00000000..204b4abb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/pig_food.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:carrot", + "minecraft:potato", + "minecraft:beetroot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/piglin_food.json b/data/generated/V26_1/data/minecraft/tags/item/piglin_food.json new file mode 100644 index 00000000..0dde9b43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/piglin_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:porkchop", + "minecraft:cooked_porkchop" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/piglin_loved.json b/data/generated/V26_1/data/minecraft/tags/item/piglin_loved.json new file mode 100644 index 00000000..1d06ec69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/piglin_loved.json @@ -0,0 +1,30 @@ +{ + "values": [ + "#minecraft:gold_ores", + "minecraft:gold_block", + "minecraft:gilded_blackstone", + "minecraft:light_weighted_pressure_plate", + "minecraft:gold_ingot", + "minecraft:bell", + "minecraft:clock", + "minecraft:golden_carrot", + "minecraft:glistering_melon_slice", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:raw_gold", + "minecraft:raw_gold_block", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/piglin_preferred_weapons.json b/data/generated/V26_1/data/minecraft/tags/item/piglin_preferred_weapons.json new file mode 100644 index 00000000..4623c70e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/piglin_preferred_weapons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:crossbow", + "minecraft:golden_spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/piglin_repellents.json b/data/generated/V26_1/data/minecraft/tags/item/piglin_repellents.json new file mode 100644 index 00000000..1538a80c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/piglin_repellents.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:soul_torch", + "minecraft:soul_lantern", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/piglin_safe_armor.json b/data/generated/V26_1/data/minecraft/tags/item/piglin_safe_armor.json new file mode 100644 index 00000000..656c3b2b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/piglin_safe_armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/pillager_preferred_weapons.json b/data/generated/V26_1/data/minecraft/tags/item/pillager_preferred_weapons.json new file mode 100644 index 00000000..848f97bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/pillager_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/planks.json b/data/generated/V26_1/data/minecraft/tags/item/planks.json new file mode 100644 index 00000000..55fa6f30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/planks.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:dark_oak_planks", + "minecraft:pale_oak_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:cherry_planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/rabbit_food.json b/data/generated/V26_1/data/minecraft/tags/item/rabbit_food.json new file mode 100644 index 00000000..a67d5321 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/rabbit_food.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:carrot", + "minecraft:golden_carrot", + "minecraft:dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/rails.json b/data/generated/V26_1/data/minecraft/tags/item/rails.json new file mode 100644 index 00000000..ba7e2c11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/rails.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rail", + "minecraft:powered_rail", + "minecraft:detector_rail", + "minecraft:activator_rail" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/redstone_ores.json b/data/generated/V26_1/data/minecraft/tags/item/redstone_ores.json new file mode 100644 index 00000000..2fd184de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/redstone_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_chain_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_chain_armor.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_chain_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_copper_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_copper_armor.json new file mode 100644 index 00000000..1cc1f065 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_copper_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_diamond_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_diamond_armor.json new file mode 100644 index 00000000..f44f30dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_diamond_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:diamond" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_gold_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_gold_armor.json new file mode 100644 index 00000000..07e9f66a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_gold_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gold_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_iron_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_iron_armor.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_iron_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_leather_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_leather_armor.json new file mode 100644 index 00000000..71b797d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_leather_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:leather" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_netherite_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_netherite_armor.json new file mode 100644 index 00000000..bd6929df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_netherite_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:netherite_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_turtle_helmet.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_turtle_helmet.json new file mode 100644 index 00000000..d1d4c27f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_turtle_helmet.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:turtle_scute" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/repairs_wolf_armor.json b/data/generated/V26_1/data/minecraft/tags/item/repairs_wolf_armor.json new file mode 100644 index 00000000..ad5988f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/repairs_wolf_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:armadillo_scute" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/sand.json b/data/generated/V26_1/data/minecraft/tags/item/sand.json new file mode 100644 index 00000000..43f90f3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/sand.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand", + "minecraft:suspicious_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/saplings.json b/data/generated/V26_1/data/minecraft/tags/item/saplings.json new file mode 100644 index 00000000..286497bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/saplings.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/shearable_from_copper_golem.json b/data/generated/V26_1/data/minecraft/tags/item/shearable_from_copper_golem.json new file mode 100644 index 00000000..fcef1afb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/shearable_from_copper_golem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:poppy" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/sheep_food.json b/data/generated/V26_1/data/minecraft/tags/item/sheep_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/sheep_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/shovels.json b/data/generated/V26_1/data/minecraft/tags/item/shovels.json new file mode 100644 index 00000000..3c03a437 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/shovels.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_shovel", + "minecraft:stone_shovel", + "minecraft:golden_shovel", + "minecraft:netherite_shovel", + "minecraft:wooden_shovel", + "minecraft:iron_shovel", + "minecraft:copper_shovel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/shulker_boxes.json b/data/generated/V26_1/data/minecraft/tags/item/shulker_boxes.json new file mode 100644 index 00000000..525e33e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/shulker_boxes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:shulker_box", + "minecraft:black_shulker_box", + "minecraft:blue_shulker_box", + "minecraft:brown_shulker_box", + "minecraft:cyan_shulker_box", + "minecraft:gray_shulker_box", + "minecraft:green_shulker_box", + "minecraft:light_blue_shulker_box", + "minecraft:light_gray_shulker_box", + "minecraft:lime_shulker_box", + "minecraft:magenta_shulker_box", + "minecraft:orange_shulker_box", + "minecraft:pink_shulker_box", + "minecraft:purple_shulker_box", + "minecraft:red_shulker_box", + "minecraft:white_shulker_box", + "minecraft:yellow_shulker_box" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/signs.json b/data/generated/V26_1/data/minecraft/tags/item/signs.json new file mode 100644 index 00000000..84fda375 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_sign", + "minecraft:spruce_sign", + "minecraft:birch_sign", + "minecraft:acacia_sign", + "minecraft:jungle_sign", + "minecraft:dark_oak_sign", + "minecraft:pale_oak_sign", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:mangrove_sign", + "minecraft:bamboo_sign", + "minecraft:cherry_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/skeleton_preferred_weapons.json b/data/generated/V26_1/data/minecraft/tags/item/skeleton_preferred_weapons.json new file mode 100644 index 00000000..a1c8a443 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/skeleton_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/skulls.json b/data/generated/V26_1/data/minecraft/tags/item/skulls.json new file mode 100644 index 00000000..1e76c2e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/skulls.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:player_head", + "minecraft:creeper_head", + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:wither_skeleton_skull", + "minecraft:dragon_head", + "minecraft:piglin_head" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/slabs.json b/data/generated/V26_1/data/minecraft/tags/item/slabs.json new file mode 100644 index 00000000..ebc3f8e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/slabs.json @@ -0,0 +1,55 @@ +{ + "values": [ + "#minecraft:wooden_slabs", + "minecraft:bamboo_mosaic_slab", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:stone_brick_slab", + "minecraft:sandstone_slab", + "minecraft:purpur_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:brick_slab", + "minecraft:cobblestone_slab", + "minecraft:nether_brick_slab", + "minecraft:petrified_oak_slab", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:cut_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_slab", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:mud_brick_slab", + "minecraft:tuff_slab", + "minecraft:polished_tuff_slab", + "minecraft:tuff_brick_slab", + "minecraft:resin_brick_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/small_flowers.json b/data/generated/V26_1/data/minecraft/tags/item/small_flowers.json new file mode 100644 index 00000000..14472b0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/small_flowers.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:closed_eyeblossom", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/smelts_to_glass.json b/data/generated/V26_1/data/minecraft/tags/item/smelts_to_glass.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/smelts_to_glass.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/sniffer_food.json b/data/generated/V26_1/data/minecraft/tags/item/sniffer_food.json new file mode 100644 index 00000000..e02282a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/sniffer_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:torchflower_seeds" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/soul_fire_base_blocks.json b/data/generated/V26_1/data/minecraft/tags/item/soul_fire_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/soul_fire_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/spears.json b/data/generated/V26_1/data/minecraft/tags/item/spears.json new file mode 100644 index 00000000..61999a53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/spears.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_spear", + "minecraft:stone_spear", + "minecraft:golden_spear", + "minecraft:netherite_spear", + "minecraft:wooden_spear", + "minecraft:iron_spear", + "minecraft:copper_spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/spruce_logs.json b/data/generated/V26_1/data/minecraft/tags/item/spruce_logs.json new file mode 100644 index 00000000..a8008420 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/spruce_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:spruce_log", + "minecraft:spruce_wood", + "minecraft:stripped_spruce_log", + "minecraft:stripped_spruce_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/stairs.json b/data/generated/V26_1/data/minecraft/tags/item/stairs.json new file mode 100644 index 00000000..fd135fc2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/stairs.json @@ -0,0 +1,51 @@ +{ + "values": [ + "#minecraft:wooden_stairs", + "minecraft:bamboo_mosaic_stairs", + "minecraft:cobblestone_stairs", + "minecraft:sandstone_stairs", + "minecraft:nether_brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:brick_stairs", + "minecraft:purpur_stairs", + "minecraft:quartz_stairs", + "minecraft:red_sandstone_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:prismarine_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:blackstone_stairs", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:polished_blackstone_stairs", + "minecraft:cobbled_deepslate_stairs", + "minecraft:polished_deepslate_stairs", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_brick_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:mud_brick_stairs", + "minecraft:tuff_stairs", + "minecraft:polished_tuff_stairs", + "minecraft:tuff_brick_stairs", + "minecraft:resin_brick_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/stone_bricks.json b/data/generated/V26_1/data/minecraft/tags/item/stone_bricks.json new file mode 100644 index 00000000..973064b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/stone_bricks.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/stone_buttons.json b/data/generated/V26_1/data/minecraft/tags/item/stone_buttons.json new file mode 100644 index 00000000..decb592a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/stone_buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_button", + "minecraft:polished_blackstone_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/stone_crafting_materials.json b/data/generated/V26_1/data/minecraft/tags/item/stone_crafting_materials.json new file mode 100644 index 00000000..e579c141 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/stone_crafting_materials.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cobblestone", + "minecraft:blackstone", + "minecraft:cobbled_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/stone_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/stone_tool_materials.json new file mode 100644 index 00000000..e579c141 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/stone_tool_materials.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cobblestone", + "minecraft:blackstone", + "minecraft:cobbled_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/strider_food.json b/data/generated/V26_1/data/minecraft/tags/item/strider_food.json new file mode 100644 index 00000000..af616fbe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/strider_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warped_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/strider_tempt_items.json b/data/generated/V26_1/data/minecraft/tags/item/strider_tempt_items.json new file mode 100644 index 00000000..f9c93495 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/strider_tempt_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:strider_food", + "minecraft:warped_fungus_on_a_stick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/swords.json b/data/generated/V26_1/data/minecraft/tags/item/swords.json new file mode 100644 index 00000000..1483ad5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/swords.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_sword", + "minecraft:stone_sword", + "minecraft:golden_sword", + "minecraft:netherite_sword", + "minecraft:wooden_sword", + "minecraft:iron_sword", + "minecraft:copper_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/terracotta.json b/data/generated/V26_1/data/minecraft/tags/item/terracotta.json new file mode 100644 index 00000000..27aac67a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/terracotta.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/trapdoors.json b/data/generated/V26_1/data/minecraft/tags/item/trapdoors.json new file mode 100644 index 00000000..269e4b8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/trapdoors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_trapdoors", + "minecraft:iron_trapdoor", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/trim_materials.json b/data/generated/V26_1/data/minecraft/tags/item/trim_materials.json new file mode 100644 index 00000000..c2fc877c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/trim_materials.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:amethyst_shard", + "minecraft:copper_ingot", + "minecraft:diamond", + "minecraft:emerald", + "minecraft:gold_ingot", + "minecraft:iron_ingot", + "minecraft:lapis_lazuli", + "minecraft:netherite_ingot", + "minecraft:quartz", + "minecraft:redstone", + "minecraft:resin_brick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/trimmable_armor.json b/data/generated/V26_1/data/minecraft/tags/item/trimmable_armor.json new file mode 100644 index 00000000..00a23523 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/trimmable_armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/turtle_food.json b/data/generated/V26_1/data/minecraft/tags/item/turtle_food.json new file mode 100644 index 00000000..92433f72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/turtle_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:seagrass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/villager_picks_up.json b/data/generated/V26_1/data/minecraft/tags/item/villager_picks_up.json new file mode 100644 index 00000000..24e9da32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/villager_picks_up.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:villager_plantable_seeds", + "minecraft:bread", + "minecraft:wheat", + "minecraft:beetroot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/villager_plantable_seeds.json b/data/generated/V26_1/data/minecraft/tags/item/villager_plantable_seeds.json new file mode 100644 index 00000000..00a0c227 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/villager_plantable_seeds.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:potato", + "minecraft:carrot", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/walls.json b/data/generated/V26_1/data/minecraft/tags/item/walls.json new file mode 100644 index 00000000..aa80022b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/walls.json @@ -0,0 +1,30 @@ +{ + "values": [ + "minecraft:cobblestone_wall", + "minecraft:mossy_cobblestone_wall", + "minecraft:brick_wall", + "minecraft:prismarine_wall", + "minecraft:red_sandstone_wall", + "minecraft:mossy_stone_brick_wall", + "minecraft:granite_wall", + "minecraft:stone_brick_wall", + "minecraft:nether_brick_wall", + "minecraft:andesite_wall", + "minecraft:red_nether_brick_wall", + "minecraft:sandstone_wall", + "minecraft:end_stone_brick_wall", + "minecraft:diorite_wall", + "minecraft:blackstone_wall", + "minecraft:polished_blackstone_brick_wall", + "minecraft:polished_blackstone_wall", + "minecraft:cobbled_deepslate_wall", + "minecraft:polished_deepslate_wall", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:mud_brick_wall", + "minecraft:tuff_wall", + "minecraft:polished_tuff_wall", + "minecraft:tuff_brick_wall", + "minecraft:resin_brick_wall" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/warped_stems.json b/data/generated/V26_1/data/minecraft/tags/item/warped_stems.json new file mode 100644 index 00000000..4da63869 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/warped_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wart_blocks.json b/data/generated/V26_1/data/minecraft/tags/item/wart_blocks.json new file mode 100644 index 00000000..bab2679f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wart_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nether_wart_block", + "minecraft:warped_wart_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json b/data/generated/V26_1/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json new file mode 100644 index 00000000..0783487a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bow", + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wolf_collar_dyes.json b/data/generated/V26_1/data/minecraft/tags/item/wolf_collar_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wolf_collar_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wolf_food.json b/data/generated/V26_1/data/minecraft/tags/item/wolf_food.json new file mode 100644 index 00000000..2dfd95a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wolf_food.json @@ -0,0 +1,12 @@ +{ + "values": [ + "#minecraft:meat", + "minecraft:cod", + "minecraft:cooked_cod", + "minecraft:salmon", + "minecraft:cooked_salmon", + "minecraft:tropical_fish", + "minecraft:pufferfish", + "minecraft:rabbit_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_buttons.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_buttons.json new file mode 100644 index 00000000..f6646d7d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_buttons.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_button", + "minecraft:spruce_button", + "minecraft:birch_button", + "minecraft:jungle_button", + "minecraft:acacia_button", + "minecraft:dark_oak_button", + "minecraft:pale_oak_button", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:mangrove_button", + "minecraft:bamboo_button", + "minecraft:cherry_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_doors.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_doors.json new file mode 100644 index 00000000..be8b7def --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_doors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_door", + "minecraft:spruce_door", + "minecraft:birch_door", + "minecraft:jungle_door", + "minecraft:acacia_door", + "minecraft:dark_oak_door", + "minecraft:pale_oak_door", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:mangrove_door", + "minecraft:bamboo_door", + "minecraft:cherry_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_fences.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_fences.json new file mode 100644 index 00000000..dc051583 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_fences.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_fence", + "minecraft:acacia_fence", + "minecraft:dark_oak_fence", + "minecraft:pale_oak_fence", + "minecraft:spruce_fence", + "minecraft:birch_fence", + "minecraft:jungle_fence", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:mangrove_fence", + "minecraft:bamboo_fence", + "minecraft:cherry_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_pressure_plates.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_pressure_plates.json new file mode 100644 index 00000000..008f0063 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_pressure_plates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_pressure_plate", + "minecraft:spruce_pressure_plate", + "minecraft:birch_pressure_plate", + "minecraft:jungle_pressure_plate", + "minecraft:acacia_pressure_plate", + "minecraft:dark_oak_pressure_plate", + "minecraft:pale_oak_pressure_plate", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:mangrove_pressure_plate", + "minecraft:bamboo_pressure_plate", + "minecraft:cherry_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_shelves.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_shelves.json new file mode 100644 index 00000000..eb265470 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_shelves.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_shelf", + "minecraft:bamboo_shelf", + "minecraft:birch_shelf", + "minecraft:cherry_shelf", + "minecraft:crimson_shelf", + "minecraft:dark_oak_shelf", + "minecraft:jungle_shelf", + "minecraft:mangrove_shelf", + "minecraft:oak_shelf", + "minecraft:pale_oak_shelf", + "minecraft:spruce_shelf", + "minecraft:warped_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_slabs.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_slabs.json new file mode 100644 index 00000000..795bd3b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_slabs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_slab", + "minecraft:spruce_slab", + "minecraft:birch_slab", + "minecraft:jungle_slab", + "minecraft:acacia_slab", + "minecraft:dark_oak_slab", + "minecraft:pale_oak_slab", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:mangrove_slab", + "minecraft:bamboo_slab", + "minecraft:cherry_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_stairs.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_stairs.json new file mode 100644 index 00000000..86239e4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_stairs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_stairs", + "minecraft:spruce_stairs", + "minecraft:birch_stairs", + "minecraft:jungle_stairs", + "minecraft:acacia_stairs", + "minecraft:dark_oak_stairs", + "minecraft:pale_oak_stairs", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:mangrove_stairs", + "minecraft:bamboo_stairs", + "minecraft:cherry_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_tool_materials.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_tool_materials.json new file mode 100644 index 00000000..97fee2c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wooden_trapdoors.json b/data/generated/V26_1/data/minecraft/tags/item/wooden_trapdoors.json new file mode 100644 index 00000000..050e05f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wooden_trapdoors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_trapdoor", + "minecraft:birch_trapdoor", + "minecraft:dark_oak_trapdoor", + "minecraft:pale_oak_trapdoor", + "minecraft:jungle_trapdoor", + "minecraft:oak_trapdoor", + "minecraft:spruce_trapdoor", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:mangrove_trapdoor", + "minecraft:bamboo_trapdoor", + "minecraft:cherry_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wool.json b/data/generated/V26_1/data/minecraft/tags/item/wool.json new file mode 100644 index 00000000..bb52fac8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wool.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/wool_carpets.json b/data/generated/V26_1/data/minecraft/tags/item/wool_carpets.json new file mode 100644 index 00000000..4dec4650 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/wool_carpets.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/item/zombie_horse_food.json b/data/generated/V26_1/data/minecraft/tags/item/zombie_horse_food.json new file mode 100644 index 00000000..02bd559b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/item/zombie_horse_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:red_mushroom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/painting_variant/placeable.json b/data/generated/V26_1/data/minecraft/tags/painting_variant/placeable.json new file mode 100644 index 00000000..fa9feb5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/painting_variant/placeable.json @@ -0,0 +1,51 @@ +{ + "values": [ + "minecraft:kebab", + "minecraft:aztec", + "minecraft:alban", + "minecraft:aztec2", + "minecraft:bomb", + "minecraft:plant", + "minecraft:wasteland", + "minecraft:pool", + "minecraft:courbet", + "minecraft:sea", + "minecraft:sunset", + "minecraft:creebet", + "minecraft:wanderer", + "minecraft:graham", + "minecraft:match", + "minecraft:bust", + "minecraft:stage", + "minecraft:void", + "minecraft:skull_and_roses", + "minecraft:wither", + "minecraft:fighters", + "minecraft:pointer", + "minecraft:pigscene", + "minecraft:burning_skull", + "minecraft:skeleton", + "minecraft:donkey_kong", + "minecraft:baroque", + "minecraft:humble", + "minecraft:meditative", + "minecraft:prairie_ride", + "minecraft:unpacked", + "minecraft:backyard", + "minecraft:bouquet", + "minecraft:cavebird", + "minecraft:changing", + "minecraft:cotan", + "minecraft:endboss", + "minecraft:fern", + "minecraft:finding", + "minecraft:lowmist", + "minecraft:orb", + "minecraft:owlemons", + "minecraft:passage", + "minecraft:pond", + "minecraft:sunflowers", + "minecraft:tides", + "minecraft:dennis" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json new file mode 100644 index 00000000..3f0ecb64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:armorer", + "minecraft:butcher", + "minecraft:cartographer", + "minecraft:cleric", + "minecraft:farmer", + "minecraft:fisherman", + "minecraft:fletcher", + "minecraft:leatherworker", + "minecraft:librarian", + "minecraft:mason", + "minecraft:shepherd", + "minecraft:toolsmith", + "minecraft:weaponsmith" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/bee_home.json b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/bee_home.json new file mode 100644 index 00000000..4c023d0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/bee_home.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:beehive", + "minecraft:bee_nest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/village.json b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/village.json new file mode 100644 index 00000000..92e93e8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/point_of_interest_type/village.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:acquirable_job_site", + "minecraft:home", + "minecraft:meeting" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/potion/tradeable.json b/data/generated/V26_1/data/minecraft/tags/potion/tradeable.json new file mode 100644 index 00000000..760b7b0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/potion/tradeable.json @@ -0,0 +1,45 @@ +{ + "values": [ + "minecraft:wind_charged", + "minecraft:oozing", + "minecraft:infested", + "minecraft:weaving", + "minecraft:night_vision", + "minecraft:long_night_vision", + "minecraft:invisibility", + "minecraft:long_invisibility", + "minecraft:fire_resistance", + "minecraft:long_fire_resistance", + "minecraft:leaping", + "minecraft:long_leaping", + "minecraft:strong_leaping", + "minecraft:slowness", + "minecraft:long_slowness", + "minecraft:strong_slowness", + "minecraft:turtle_master", + "minecraft:long_turtle_master", + "minecraft:strong_turtle_master", + "minecraft:swiftness", + "minecraft:long_swiftness", + "minecraft:strong_swiftness", + "minecraft:water_breathing", + "minecraft:long_water_breathing", + "minecraft:healing", + "minecraft:strong_healing", + "minecraft:harming", + "minecraft:strong_harming", + "minecraft:poison", + "minecraft:long_poison", + "minecraft:strong_poison", + "minecraft:regeneration", + "minecraft:long_regeneration", + "minecraft:strong_regeneration", + "minecraft:strength", + "minecraft:long_strength", + "minecraft:strong_strength", + "minecraft:weakness", + "minecraft:long_weakness", + "minecraft:slow_falling", + "minecraft:long_slow_falling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/timeline/in_end.json b/data/generated/V26_1/data/minecraft/tags/timeline/in_end.json new file mode 100644 index 00000000..2a0e147f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/timeline/in_end.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:universal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/timeline/in_nether.json b/data/generated/V26_1/data/minecraft/tags/timeline/in_nether.json new file mode 100644 index 00000000..2a0e147f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/timeline/in_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:universal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/timeline/in_overworld.json b/data/generated/V26_1/data/minecraft/tags/timeline/in_overworld.json new file mode 100644 index 00000000..94f2424f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/timeline/in_overworld.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:universal", + "minecraft:day", + "minecraft:moon", + "minecraft:early_game" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/timeline/universal.json b/data/generated/V26_1/data/minecraft/tags/timeline/universal.json new file mode 100644 index 00000000..a37beba9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/timeline/universal.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:villager_schedule" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_1.json new file mode 100644 index 00000000..d6016c67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:armorer/1/emerald_iron_leggings", + "minecraft:armorer/1/emerald_iron_boots", + "minecraft:armorer/1/emerald_iron_helmet", + "minecraft:armorer/1/emerald_iron_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_2.json new file mode 100644 index 00000000..c0d20141 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_2", + "minecraft:armorer/2/emerald_chainmail_boots", + "minecraft:armorer/2/emerald_chainmail_leggings" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_3.json new file mode 100644 index 00000000..33ac9777 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_3.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:armorer/3/lava_bucket_emerald", + "minecraft:armorer/3/emerald_chainmail_helmet", + "minecraft:armorer/3/emerald_chainmail_chestplate", + "minecraft:armorer/3/emerald_shield", + "minecraft:armorer/3/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_4.json new file mode 100644 index 00000000..bd112ecb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:armorer/4/emerald_enchanted_diamond_leggings", + "minecraft:armorer/4/emerald_enchanted_diamond_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_5.json new file mode 100644 index 00000000..3648799e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/armorer/level_5.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:armorer/5/emerald_enchanted_diamond_helmet", + "minecraft:armorer/5/emerald_enchanted_diamond_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_1.json new file mode 100644 index 00000000..58207736 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_1.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:butcher/1/chicken_emerald", + "minecraft:butcher/1/porkchop_emerald", + "minecraft:butcher/1/rabbit_emerald", + "minecraft:butcher/1/emerald_rabbit_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_2.json new file mode 100644 index 00000000..ab129713 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:butcher/2/coal_emerald", + "minecraft:butcher/2/emerald_cooked_porkchop", + "minecraft:butcher/2/emerald_cooked_chicken" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_3.json new file mode 100644 index 00000000..918f3d11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:butcher/3/mutton_emerald", + "minecraft:butcher/3/beef_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_4.json new file mode 100644 index 00000000..79f50798 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_4.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:butcher/4/dried_kelp_block_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_5.json new file mode 100644 index 00000000..b62f74ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/butcher/level_5.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:butcher/5/sweet_berries_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_1.json new file mode 100644 index 00000000..bd3de907 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cartographer/1/paper_emerald", + "minecraft:cartographer/1/emerald_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_2.json new file mode 100644 index 00000000..1d54d8ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_2.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:cartographer/2/glass_pane_emerald", + "minecraft:cartographer/2/emerald_and_compass_village_taiga_map", + "minecraft:cartographer/2/emerald_and_compass_explorer_swamp_map", + "minecraft:cartographer/2/emerald_and_compass_village_snowy_map", + "minecraft:cartographer/2/emerald_and_compass_village_savanna_map", + "minecraft:cartographer/2/emerald_and_compass_village_plains_map", + "minecraft:cartographer/2/emerald_and_compass_explorer_jungle_map", + "minecraft:cartographer/2/emerald_and_compass_village_desert_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_3.json new file mode 100644 index 00000000..bc1a1f92 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_3.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cartographer/3/compass_emerald", + "minecraft:cartographer/3/emerald_and_compass_ocean_explorer_map", + "minecraft:cartographer/3/emerald_and_compass_trial_chamber_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_4.json new file mode 100644 index 00000000..803b4dad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_4.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:cartographer/4/emerald_item_frame", + "minecraft:cartographer/4/emerald_white_banner", + "minecraft:cartographer/4/emerald_orange_banner", + "minecraft:cartographer/4/emerald_magenta_banner", + "minecraft:cartographer/4/emerald_blue_banner", + "minecraft:cartographer/4/emerald_light_blue_banner", + "minecraft:cartographer/4/emerald_yellow_banner", + "minecraft:cartographer/4/emerald_lime_banner", + "minecraft:cartographer/4/emerald_pink_banner", + "minecraft:cartographer/4/emerald_gray_banner", + "minecraft:cartographer/4/emerald_cyan_banner", + "minecraft:cartographer/4/emerald_purple_banner", + "minecraft:cartographer/4/emerald_brown_banner", + "minecraft:cartographer/4/emerald_green_banner", + "minecraft:cartographer/4/emerald_red_banner", + "minecraft:cartographer/4/emerald_black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_5.json new file mode 100644 index 00000000..e74159a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cartographer/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cartographer/5/emerald_globe_banner_pattern", + "minecraft:cartographer/5/emerald_and_compass_woodland_mansion_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_1.json new file mode 100644 index 00000000..88884f56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/1/rotten_flesh_emerald", + "minecraft:cleric/1/emerald_redstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_2.json new file mode 100644 index 00000000..7c5463bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/2/gold_ingot_emerald", + "minecraft:cleric/2/emerald_lapis_lazuli" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_3.json new file mode 100644 index 00000000..0dee4336 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/3/rabbit_foot_emerald", + "minecraft:cleric/3/emerald_glowstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_4.json new file mode 100644 index 00000000..8a83287a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cleric/4/turtle_scute_emerald", + "minecraft:cleric/4/glass_bottle_emerald", + "minecraft:cleric/4/emerald_ender_pearl" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_5.json new file mode 100644 index 00000000..4cfec0bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/cleric/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/5/nether_wart_emerald", + "minecraft:cleric/5/emerald_experience_bottle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_1.json new file mode 100644 index 00000000..75410cab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_1.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:smith/1/coal_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_2.json new file mode 100644 index 00000000..1b461892 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:smith/2/iron_ingot_emerald", + "minecraft:smith/2/emerald_bell" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_3.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_3.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_4.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_4.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_5.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/common_smith/level_5.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_1.json new file mode 100644 index 00000000..78fee47f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:farmer/1/wheat_emerald", + "minecraft:farmer/1/potato_emerald", + "minecraft:farmer/1/carrot_emerald", + "minecraft:farmer/1/beetroot_emerald", + "minecraft:farmer/1/emerald_bread" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_2.json new file mode 100644 index 00000000..cd3c3d27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:farmer/2/pumpkin_emerald", + "minecraft:farmer/2/emerald_pumpkin_pie", + "minecraft:farmer/2/emerald_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_3.json new file mode 100644 index 00000000..0613a9e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/3/emerald_cookie", + "minecraft:farmer/3/melon_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_4.json new file mode 100644 index 00000000..5b2314a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/4/emerald_cake", + "minecraft:farmer/4/emerald_suspicious_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_5.json new file mode 100644 index 00000000..f0781264 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/farmer/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/5/emerald_golden_carrot", + "minecraft:farmer/5/emerald_glistening_melon_slice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_1.json new file mode 100644 index 00000000..bbf452f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_1.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:fisherman/1/string_emerald", + "minecraft:fisherman/1/coal_emerald", + "minecraft:fisherman/1/raw_cod_and_emerald_cooked_cod", + "minecraft:fisherman/1/emerald_cod_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_2.json new file mode 100644 index 00000000..1099b16e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fisherman/2/cod_emerald", + "minecraft:fisherman/2/salmon_and_emerald_cooked_salmon", + "minecraft:fisherman/2/emerald_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_3.json new file mode 100644 index 00000000..80f48f79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fisherman/3/salmon_emerald", + "minecraft:fisherman/3/emerald_enchanted_fishing_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_4.json new file mode 100644 index 00000000..fda11c0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_4.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fisherman/4/tropical_fish_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_5.json new file mode 100644 index 00000000..de1addad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fisherman/level_5.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:fisherman/5/pufferfish_emerald", + "minecraft:fisherman/5/oak_boat_emerald", + "minecraft:fisherman/5/spruce_boat_emerald", + "minecraft:fisherman/5/jungle_boat_emerald", + "minecraft:fisherman/5/acacia_boat_emerald", + "minecraft:fisherman/5/dark_oak_boat_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_1.json new file mode 100644 index 00000000..7664d060 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fletcher/1/stick_emerald", + "minecraft:fletcher/1/emerald_arrow", + "minecraft:fletcher/1/gravel_and_emerald_flint" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_2.json new file mode 100644 index 00000000..ceb85494 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/2/flint_emerald", + "minecraft:fletcher/2/emerald_bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_3.json new file mode 100644 index 00000000..d39af008 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/3/string_emerald", + "minecraft:fletcher/3/emerald_crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_4.json new file mode 100644 index 00000000..3ecc80db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/4/feather_emerald", + "minecraft:fletcher/4/emerald_enchanted_bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_5.json new file mode 100644 index 00000000..e9a77439 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/fletcher/level_5.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fletcher/5/tripwire_hook_emerald", + "minecraft:fletcher/5/emerald_enchanted_crossbow", + "minecraft:fletcher/5/arrow_and_emerald_tipped_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_1.json new file mode 100644 index 00000000..baff227a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:leatherworker/1/leather_emerald", + "minecraft:leatherworker/1/emerald_dyed_leather_leggings", + "minecraft:leatherworker/1/emerald_dyed_leather_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_2.json new file mode 100644 index 00000000..70676502 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:leatherworker/2/flint_emerald", + "minecraft:leatherworker/2/emerald_dyed_leather_helmet", + "minecraft:leatherworker/2/emerald_dyed_leather_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_3.json new file mode 100644 index 00000000..cd9f6b8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/3/rabbit_hide_emerald", + "minecraft:leatherworker/3/emerald_dyed_leather_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_4.json new file mode 100644 index 00000000..3fe6fc94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/4/turtle_scute_emerald", + "minecraft:leatherworker/4/emerald_dyed_leather_horse_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_5.json new file mode 100644 index 00000000..0460865b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/leatherworker/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/5/emerald_saddle", + "minecraft:leatherworker/5/emerald_dyed_leather_helmet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_1.json new file mode 100644 index 00000000..e90ecc12 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/1/paper_emerald", + "minecraft:librarian/1/emerald_and_book_enchanted_book", + "minecraft:librarian/1/emerald_bookshelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_2.json new file mode 100644 index 00000000..5301491e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/2/book_emerald", + "minecraft:librarian/2/emerald_and_book_enchanted_book", + "minecraft:librarian/2/emerald_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_3.json new file mode 100644 index 00000000..8160ab00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_3.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/3/ink_sac_emerald", + "minecraft:librarian/3/emerald_and_book_enchanted_book", + "minecraft:librarian/3/emerald_glass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_4.json new file mode 100644 index 00000000..c5b5d4f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_4.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:librarian/4/writable_book_emerald", + "minecraft:librarian/4/emerald_book_and_enchanted_book", + "minecraft:librarian/4/emerald_clock", + "minecraft:librarian/4/emerald_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_5.json new file mode 100644 index 00000000..6679cf57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/librarian/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:librarian/5/emerald_yellow_candle", + "minecraft:librarian/5/emerald_red_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_1.json new file mode 100644 index 00000000..5fe4be9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/1/clay_ball_emerald", + "minecraft:mason/1/emerald_brick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_2.json new file mode 100644 index 00000000..4a5399b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/2/stone_emerald", + "minecraft:mason/2/emerald_chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_3.json new file mode 100644 index 00000000..f4885916 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_3.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:mason/3/granite_emerald", + "minecraft:mason/3/andesite_emerald", + "minecraft:mason/3/diorite_emerald", + "minecraft:mason/3/emerald_dripstone_block", + "minecraft:mason/3/emerald_polished_andesite", + "minecraft:mason/3/emerald_polished_diorite", + "minecraft:mason/3/emerald_polished_granite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_4.json new file mode 100644 index 00000000..b460c176 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_4.json @@ -0,0 +1,37 @@ +{ + "values": [ + "minecraft:mason/4/quartz_emerald", + "minecraft:mason/4/emerald_orange_terracotta", + "minecraft:mason/4/emerald_white_terracotta", + "minecraft:mason/4/emerald_blue_terracotta", + "minecraft:mason/4/emerald_light_blue_terracotta", + "minecraft:mason/4/emerald_gray_terracotta", + "minecraft:mason/4/emerald_light_gray_terracotta", + "minecraft:mason/4/emerald_black_terracotta", + "minecraft:mason/4/emerald_red_terracotta", + "minecraft:mason/4/emerald_pink_terracotta", + "minecraft:mason/4/emerald_magenta_terracotta", + "minecraft:mason/4/emerald_lime_terracotta", + "minecraft:mason/4/emerald_green_terracotta", + "minecraft:mason/4/emerald_cyan_terracotta", + "minecraft:mason/4/emerald_purple_terracotta", + "minecraft:mason/4/emerald_yellow_terracotta", + "minecraft:mason/4/emerald_brown_terracotta", + "minecraft:mason/4/emerald_orange_glazed_terracotta", + "minecraft:mason/4/emerald_white_glazed_terracotta", + "minecraft:mason/4/emerald_blue_glazed_terracotta", + "minecraft:mason/4/emerald_light_blue_glazed_terracotta", + "minecraft:mason/4/emerald_gray_glazed_terracotta", + "minecraft:mason/4/emerald_light_gray_glazed_terracotta", + "minecraft:mason/4/emerald_black_glazed_terracotta", + "minecraft:mason/4/emerald_red_glazed_terracotta", + "minecraft:mason/4/emerald_pink_glazed_terracotta", + "minecraft:mason/4/emerald_magenta_glazed_terracotta", + "minecraft:mason/4/emerald_lime_glazed_terracotta", + "minecraft:mason/4/emerald_green_glazed_terracotta", + "minecraft:mason/4/emerald_cyan_glazed_terracotta", + "minecraft:mason/4/emerald_purple_glazed_terracotta", + "minecraft:mason/4/emerald_yellow_glazed_terracotta", + "minecraft:mason/4/emerald_brown_glazed_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_5.json new file mode 100644 index 00000000..8ced55d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/mason/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/5/emerald_quartz_pillar", + "minecraft:mason/5/emerald_quartz_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_1.json new file mode 100644 index 00000000..03aecec6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:shepherd/1/white_wool_emerald", + "minecraft:shepherd/1/brown_wool_emerald", + "minecraft:shepherd/1/gray_wool_emerald", + "minecraft:shepherd/1/black_wool_emerald", + "minecraft:shepherd/1/emerald_shears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_2.json new file mode 100644 index 00000000..434d722e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_2.json @@ -0,0 +1,41 @@ +{ + "values": [ + "minecraft:shepherd/2/white_dye_emerald", + "minecraft:shepherd/2/gray_dye_emerald", + "minecraft:shepherd/2/black_dye_emerald", + "minecraft:shepherd/2/light_blue_dye_emerald", + "minecraft:shepherd/2/lime_dye_emerald", + "minecraft:shepherd/2/emerald_white_wool", + "minecraft:shepherd/2/emerald_orange_wool", + "minecraft:shepherd/2/emerald_magenta_wool", + "minecraft:shepherd/2/emerald_blue_wool", + "minecraft:shepherd/2/emerald_light_blue_wool", + "minecraft:shepherd/2/emerald_yellow_wool", + "minecraft:shepherd/2/emerald_lime_wool", + "minecraft:shepherd/2/emerald_pink_wool", + "minecraft:shepherd/2/emerald_gray_wool", + "minecraft:shepherd/2/emerald_light_gray_wool", + "minecraft:shepherd/2/emerald_cyan_wool", + "minecraft:shepherd/2/emerald_purple_wool", + "minecraft:shepherd/2/emerald_brown_wool", + "minecraft:shepherd/2/emerald_green_wool", + "minecraft:shepherd/2/emerald_red_wool", + "minecraft:shepherd/2/emerald_black_wool", + "minecraft:shepherd/2/emerald_white_carpet", + "minecraft:shepherd/2/emerald_orange_carpet", + "minecraft:shepherd/2/emerald_magenta_carpet", + "minecraft:shepherd/2/emerald_blue_carpet", + "minecraft:shepherd/2/emerald_light_blue_carpet", + "minecraft:shepherd/2/emerald_yellow_carpet", + "minecraft:shepherd/2/emerald_lime_carpet", + "minecraft:shepherd/2/emerald_pink_carpet", + "minecraft:shepherd/2/emerald_gray_carpet", + "minecraft:shepherd/2/emerald_light_gray_carpet", + "minecraft:shepherd/2/emerald_cyan_carpet", + "minecraft:shepherd/2/emerald_purple_carpet", + "minecraft:shepherd/2/emerald_brown_carpet", + "minecraft:shepherd/2/emerald_green_carpet", + "minecraft:shepherd/2/emerald_red_carpet", + "minecraft:shepherd/2/emerald_black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_3.json new file mode 100644 index 00000000..b4e28037 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_3.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:shepherd/3/yellow_dye_emerald", + "minecraft:shepherd/3/light_gray_dye_emerald", + "minecraft:shepherd/3/orange_dye_emerald", + "minecraft:shepherd/3/red_dye_emerald", + "minecraft:shepherd/3/pink_dye_emerald", + "minecraft:shepherd/3/emerald_white_bed", + "minecraft:shepherd/3/emerald_orange_bed", + "minecraft:shepherd/3/emerald_magenta_bed", + "minecraft:shepherd/3/emerald_blue_bed", + "minecraft:shepherd/3/emerald_light_blue_bed", + "minecraft:shepherd/3/emerald_yellow_bed", + "minecraft:shepherd/3/emerald_lime_bed", + "minecraft:shepherd/3/emerald_pink_bed", + "minecraft:shepherd/3/emerald_gray_bed", + "minecraft:shepherd/3/emerald_light_gray_bed", + "minecraft:shepherd/3/emerald_cyan_bed", + "minecraft:shepherd/3/emerald_purple_bed", + "minecraft:shepherd/3/emerald_brown_bed", + "minecraft:shepherd/3/emerald_green_bed", + "minecraft:shepherd/3/emerald_red_bed", + "minecraft:shepherd/3/emerald_black_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_4.json new file mode 100644 index 00000000..585ec9de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_4.json @@ -0,0 +1,26 @@ +{ + "values": [ + "minecraft:shepherd/4/brown_dye_emerald", + "minecraft:shepherd/4/purple_dye_emerald", + "minecraft:shepherd/4/blue_dye_emerald", + "minecraft:shepherd/4/green_dye_emerald", + "minecraft:shepherd/4/magenta_dye_emerald", + "minecraft:shepherd/4/cyan_dye_emerald", + "minecraft:shepherd/4/emerald_white_banner", + "minecraft:shepherd/4/emerald_orange_banner", + "minecraft:shepherd/4/emerald_magenta_banner", + "minecraft:shepherd/4/emerald_blue_banner", + "minecraft:shepherd/4/emerald_light_blue_banner", + "minecraft:shepherd/4/emerald_yellow_banner", + "minecraft:shepherd/4/emerald_lime_banner", + "minecraft:shepherd/4/emerald_pink_banner", + "minecraft:shepherd/4/emerald_gray_banner", + "minecraft:shepherd/4/emerald_light_gray_banner", + "minecraft:shepherd/4/emerald_cyan_banner", + "minecraft:shepherd/4/emerald_purple_banner", + "minecraft:shepherd/4/emerald_brown_banner", + "minecraft:shepherd/4/emerald_green_banner", + "minecraft:shepherd/4/emerald_red_banner", + "minecraft:shepherd/4/emerald_black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_5.json new file mode 100644 index 00000000..7bc1a5f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/shepherd/level_5.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:shepherd/5/emerald_painting" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_1.json new file mode 100644 index 00000000..4893c1d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:toolsmith/1/emerald_stone_axe", + "minecraft:toolsmith/1/emerald_stone_shovel", + "minecraft:toolsmith/1/emerald_stone_pickaxe", + "minecraft:toolsmith/1/emerald_stone_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_2.json new file mode 100644 index 00000000..bd2b80bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:common_smith/level_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_3.json new file mode 100644 index 00000000..9dc15e11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_3.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:toolsmith/3/flint_emerald", + "minecraft:toolsmith/3/emerald_enchanted_iron_axe", + "minecraft:toolsmith/3/emerald_enchanted_iron_shovel", + "minecraft:toolsmith/3/emerald_enchanted_iron_pickaxe", + "minecraft:toolsmith/3/emerald_diamond_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_4.json new file mode 100644 index 00000000..28bdd8e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_4.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:toolsmith/4/emerald_enchanted_diamond_axe", + "minecraft:toolsmith/4/emerald_enchanted_diamond_shovel", + "minecraft:toolsmith/4/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_5.json new file mode 100644 index 00000000..439d29d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/toolsmith/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:toolsmith/5/emerald_enchanted_diamond_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/buying.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/buying.json new file mode 100644 index 00000000..d7b71c44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/buying.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wandering_trader/water_bottle_emerald", + "minecraft:wandering_trader/water_bucket_emerald", + "minecraft:wandering_trader/milk_bucket_emerald", + "minecraft:wandering_trader/fermented_spider_eye_emerald", + "minecraft:wandering_trader/baked_potato_emerald", + "minecraft:wandering_trader/hay_block_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/common.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/common.json new file mode 100644 index 00000000..835482d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/common.json @@ -0,0 +1,79 @@ +{ + "values": [ + "minecraft:wandering_trader/emerald_fish_bucket", + "minecraft:wandering_trader/emerald_pufferfish_bucket", + "minecraft:wandering_trader/emerald_sea_pickle", + "minecraft:wandering_trader/emerald_slime_ball", + "minecraft:wandering_trader/emerald_glowstone", + "minecraft:wandering_trader/emerald_nautilus_shell", + "minecraft:wandering_trader/emerald_fern", + "minecraft:wandering_trader/emerald_sugar_cane", + "minecraft:wandering_trader/emerald_pumpkin", + "minecraft:wandering_trader/emerald_kelp", + "minecraft:wandering_trader/emerald_cactus", + "minecraft:wandering_trader/emerald_dandelion", + "minecraft:wandering_trader/emerald_poppy", + "minecraft:wandering_trader/emerald_blue_orchid", + "minecraft:wandering_trader/emerald_allium", + "minecraft:wandering_trader/emerald_azure_bluet", + "minecraft:wandering_trader/emerald_red_tulip", + "minecraft:wandering_trader/emerald_orange_tulip", + "minecraft:wandering_trader/emerald_white_tulip", + "minecraft:wandering_trader/emerald_pink_tulip", + "minecraft:wandering_trader/emerald_oxeye_daisy", + "minecraft:wandering_trader/emerald_cornflower", + "minecraft:wandering_trader/emerald_lily_of_the_valley", + "minecraft:wandering_trader/emerald_open_eyeblossom", + "minecraft:wandering_trader/emerald_wheat_seeds", + "minecraft:wandering_trader/emerald_beetroot_seeds", + "minecraft:wandering_trader/emerald_pumpkin_seeds", + "minecraft:wandering_trader/emerald_melon_seeds", + "minecraft:wandering_trader/emerald_acacia_sapling", + "minecraft:wandering_trader/emerald_birch_sapling", + "minecraft:wandering_trader/emerald_dark_oak_sapling", + "minecraft:wandering_trader/emerald_jungle_sapling", + "minecraft:wandering_trader/emerald_oak_sapling", + "minecraft:wandering_trader/emerald_spruce_sapling", + "minecraft:wandering_trader/emerald_cherry_sapling", + "minecraft:wandering_trader/emerald_pale_oak_sapling", + "minecraft:wandering_trader/emerald_mangrove_propagule", + "minecraft:wandering_trader/emerald_red_dye", + "minecraft:wandering_trader/emerald_white_dye", + "minecraft:wandering_trader/emerald_blue_dye", + "minecraft:wandering_trader/emerald_pink_dye", + "minecraft:wandering_trader/emerald_black_dye", + "minecraft:wandering_trader/emerald_green_dye", + "minecraft:wandering_trader/emerald_light_gray_dye", + "minecraft:wandering_trader/emerald_magenta_dye", + "minecraft:wandering_trader/emerald_yellow_dye", + "minecraft:wandering_trader/emerald_gray_dye", + "minecraft:wandering_trader/emerald_purple_dye", + "minecraft:wandering_trader/emerald_light_blue_dye", + "minecraft:wandering_trader/emerald_lime_dye", + "minecraft:wandering_trader/emerald_orange_dye", + "minecraft:wandering_trader/emerald_brown_dye", + "minecraft:wandering_trader/emerald_cyan_dye", + "minecraft:wandering_trader/emerald_brain_coral_block", + "minecraft:wandering_trader/emerald_bubble_coral_block", + "minecraft:wandering_trader/emerald_fire_coral_block", + "minecraft:wandering_trader/emerald_horn_coral_block", + "minecraft:wandering_trader/emerald_tube_coral_block", + "minecraft:wandering_trader/emerald_vine", + "minecraft:wandering_trader/emerald_pale_hanging_moss", + "minecraft:wandering_trader/emerald_brown_mushroom", + "minecraft:wandering_trader/emerald_red_mushroom", + "minecraft:wandering_trader/emerald_lily_pad", + "minecraft:wandering_trader/emerald_small_dripleaf", + "minecraft:wandering_trader/emerald_sand", + "minecraft:wandering_trader/emerald_red_sand", + "minecraft:wandering_trader/emerald_pointed_dripstone", + "minecraft:wandering_trader/emerald_rooted_dirt", + "minecraft:wandering_trader/emerald_moss_block", + "minecraft:wandering_trader/emerald_pale_moss_block", + "minecraft:wandering_trader/emerald_wildflowers", + "minecraft:wandering_trader/emerald_dry_tall_grass", + "minecraft:wandering_trader/emerald_firefly_bush", + "minecraft:wandering_trader/emerald_golden_dandelion", + "minecraft:wandering_trader/emerald_name_tag" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json new file mode 100644 index 00000000..8f108f4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:wandering_trader/emerald_packed_ice", + "minecraft:wandering_trader/emerald_blue_ice", + "minecraft:wandering_trader/emerald_gunpowder", + "minecraft:wandering_trader/emerald_podzol", + "minecraft:wandering_trader/emerald_acacia_log", + "minecraft:wandering_trader/emerald_birch_log", + "minecraft:wandering_trader/emerald_dark_oak_log", + "minecraft:wandering_trader/emerald_jungle_log", + "minecraft:wandering_trader/emerald_oak_log", + "minecraft:wandering_trader/emerald_spruce_log", + "minecraft:wandering_trader/emerald_cherry_log", + "minecraft:wandering_trader/emerald_mangrove_log", + "minecraft:wandering_trader/emerald_pale_oak_log", + "minecraft:wandering_trader/emerald_enchanted_iron_pickaxe", + "minecraft:wandering_trader/emerald_long_invisibility_potion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_1.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_1.json new file mode 100644 index 00000000..89cad00a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:weaponsmith/1/emerald_iron_axe", + "minecraft:weaponsmith/1/emerald_enchanted_iron_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_2.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_2.json new file mode 100644 index 00000000..bd2b80bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:common_smith/level_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_3.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_3.json new file mode 100644 index 00000000..9d396106 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:weaponsmith/3/flint_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_4.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_4.json new file mode 100644 index 00000000..65aa303f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:weaponsmith/4/emerald_enchanted_diamond_axe", + "minecraft:weaponsmith/4/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_5.json b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_5.json new file mode 100644 index 00000000..580d25e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/villager_trade/weaponsmith/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:weaponsmith/5/emerald_enchanted_diamond_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json new file mode 100644 index 00000000..0f5eb22e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json new file mode 100644 index 00000000..14035f0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json new file mode 100644 index 00000000..896ce431 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json new file mode 100644 index 00000000..35f76302 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_forest", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:warped_forest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json new file mode 100644 index 00000000..b15673e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/end_city.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/end_city.json new file mode 100644 index 00000000..b7e75588 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/end_city.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:end_highlands", + "minecraft:end_midlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/igloo.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/igloo.json new file mode 100644 index 00000000..71ee6f11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/igloo.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:snowy_taiga", + "minecraft:snowy_plains", + "minecraft:snowy_slopes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json new file mode 100644 index 00000000..cdde1cc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_jungle", + "minecraft:jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json new file mode 100644 index 00000000..a211c8c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json @@ -0,0 +1,26 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river", + "#minecraft:is_beach", + "#minecraft:is_mountain", + "#minecraft:is_hill", + "#minecraft:is_taiga", + "#minecraft:is_jungle", + "#minecraft:is_forest", + "minecraft:stony_shore", + "minecraft:mushroom_fields", + "minecraft:ice_spikes", + "minecraft:windswept_savanna", + "minecraft:desert", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:savanna_plateau", + "minecraft:dripstone_caves", + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json new file mode 100644 index 00000000..161fcc28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_badlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json new file mode 100644 index 00000000..f7e672b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_nether" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json new file mode 100644 index 00000000..220ffbbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand_valley" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json new file mode 100644 index 00000000..0fef9dd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_deep_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json new file mode 100644 index 00000000..87f9e020 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:frozen_ocean", + "minecraft:cold_ocean", + "minecraft:ocean", + "minecraft:deep_frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:deep_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json new file mode 100644 index 00000000..7e0e114b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:deep_lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json new file mode 100644 index 00000000..966dca19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:taiga", + "#minecraft:is_mountain", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json new file mode 100644 index 00000000..c1d3c371 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json new file mode 100644 index 00000000..5863945e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:is_badlands", + "#minecraft:is_hill", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:stony_shore", + "#minecraft:is_mountain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json new file mode 100644 index 00000000..f7e672b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_nether" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json new file mode 100644 index 00000000..9d98621b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json new file mode 100644 index 00000000..3cf0503f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:is_beach", + "#minecraft:is_river", + "#minecraft:is_taiga", + "#minecraft:is_forest", + "minecraft:mushroom_fields", + "minecraft:ice_spikes", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:plains", + "minecraft:sunflower_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json new file mode 100644 index 00000000..0f5eb22e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json new file mode 100644 index 00000000..9d98621b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json new file mode 100644 index 00000000..b15673e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json new file mode 100644 index 00000000..d3152c5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json new file mode 100644 index 00000000..6afa2575 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json new file mode 100644 index 00000000..6cd82ab7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:old_growth_birch_forest", + "minecraft:jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json new file mode 100644 index 00000000..ff5c6a15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json @@ -0,0 +1,57 @@ +{ + "values": [ + "minecraft:mushroom_fields", + "minecraft:deep_frozen_ocean", + "minecraft:frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:cold_ocean", + "minecraft:deep_ocean", + "minecraft:ocean", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:stony_shore", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:snowy_slopes", + "minecraft:snowy_plains", + "minecraft:snowy_beach", + "minecraft:windswept_gravelly_hills", + "minecraft:grove", + "minecraft:windswept_hills", + "minecraft:snowy_taiga", + "minecraft:windswept_forest", + "minecraft:taiga", + "minecraft:plains", + "minecraft:meadow", + "minecraft:beach", + "minecraft:forest", + "minecraft:old_growth_spruce_taiga", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:savanna_plateau", + "minecraft:savanna", + "minecraft:jungle", + "minecraft:badlands", + "minecraft:desert", + "minecraft:wooded_badlands", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:frozen_river", + "minecraft:river", + "minecraft:ice_spikes", + "minecraft:old_growth_pine_taiga", + "minecraft:sunflower_plains", + "minecraft:old_growth_birch_forest", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:eroded_badlands", + "minecraft:windswept_savanna", + "minecraft:cherry_grove", + "minecraft:frozen_peaks", + "minecraft:dripstone_caves", + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json new file mode 100644 index 00000000..b602af3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:plains", + "minecraft:meadow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json new file mode 100644 index 00000000..ed8b4550 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json new file mode 100644 index 00000000..05a22cb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:snowy_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json new file mode 100644 index 00000000..a466ede6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json new file mode 100644 index 00000000..33519bb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:dark_forest", + "minecraft:pale_garden" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_badlands.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_badlands.json new file mode 100644 index 00000000..2067af28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_badlands.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_beach.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_beach.json new file mode 100644 index 00000000..124b0d42 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_beach.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:beach", + "minecraft:snowy_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_deep_ocean.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_deep_ocean.json new file mode 100644 index 00000000..eefd3ebd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_deep_ocean.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:deep_frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:deep_ocean", + "minecraft:deep_lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_end.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_end.json new file mode 100644 index 00000000..71d4af2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_end.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_forest.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_forest.json new file mode 100644 index 00000000..bcd87f0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_forest.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:forest", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:old_growth_birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_hill.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_hill.json new file mode 100644 index 00000000..e52099d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_hill.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:windswept_hills", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_jungle.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_jungle.json new file mode 100644 index 00000000..2bc95599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_jungle.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_mountain.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_mountain.json new file mode 100644 index 00000000..fe922aa6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_mountain.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:meadow", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:snowy_slopes", + "minecraft:cherry_grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_nether.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_nether.json new file mode 100644 index 00000000..340c9d16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_nether.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_ocean.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_ocean.json new file mode 100644 index 00000000..ce6b5168 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_ocean.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:is_deep_ocean", + "minecraft:frozen_ocean", + "minecraft:ocean", + "minecraft:cold_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_overworld.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_overworld.json new file mode 100644 index 00000000..9de4c3f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_overworld.json @@ -0,0 +1,58 @@ +{ + "values": [ + "minecraft:mushroom_fields", + "minecraft:deep_frozen_ocean", + "minecraft:frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:cold_ocean", + "minecraft:deep_ocean", + "minecraft:ocean", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:stony_shore", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:snowy_slopes", + "minecraft:snowy_plains", + "minecraft:snowy_beach", + "minecraft:windswept_gravelly_hills", + "minecraft:grove", + "minecraft:windswept_hills", + "minecraft:snowy_taiga", + "minecraft:windswept_forest", + "minecraft:taiga", + "minecraft:plains", + "minecraft:meadow", + "minecraft:beach", + "minecraft:forest", + "minecraft:old_growth_spruce_taiga", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:savanna_plateau", + "minecraft:savanna", + "minecraft:jungle", + "minecraft:badlands", + "minecraft:desert", + "minecraft:wooded_badlands", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:frozen_river", + "minecraft:river", + "minecraft:ice_spikes", + "minecraft:old_growth_pine_taiga", + "minecraft:sunflower_plains", + "minecraft:old_growth_birch_forest", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:eroded_badlands", + "minecraft:windswept_savanna", + "minecraft:cherry_grove", + "minecraft:frozen_peaks", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_river.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_river.json new file mode 100644 index 00000000..5ca91a79 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_river.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:river", + "minecraft:frozen_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_savanna.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_savanna.json new file mode 100644 index 00000000..fc71cb52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_savanna.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_taiga.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_taiga.json new file mode 100644 index 00000000..42944dcb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/is_taiga.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json new file mode 100644 index 00000000..896ce431 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json new file mode 100644 index 00000000..c5435e25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json new file mode 100644 index 00000000..94d00730 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json new file mode 100644 index 00000000..21875c99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json new file mode 100644 index 00000000..c5435e25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json new file mode 100644 index 00000000..800c1719 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json new file mode 100644 index 00000000..c9da19ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json @@ -0,0 +1,26 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "#minecraft:is_end", + "minecraft:cold_ocean", + "minecraft:deep_cold_ocean", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:stony_peaks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json new file mode 100644 index 00000000..76dda367 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "#minecraft:is_end" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json new file mode 100644 index 00000000..21875c99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json new file mode 100644 index 00000000..b37d5ef6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_ocean", + "minecraft:snowy_taiga", + "minecraft:frozen_river", + "minecraft:snowy_beach", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json new file mode 100644 index 00000000..b009f682 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:warm_ocean", + "#minecraft:is_jungle", + "#minecraft:is_savanna", + "#minecraft:is_nether", + "#minecraft:is_badlands", + "minecraft:mangrove_swamp", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json new file mode 100644 index 00000000..c38caafd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:warm_ocean", + "#minecraft:is_jungle", + "#minecraft:is_savanna", + "#minecraft:is_nether", + "#minecraft:is_badlands", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json new file mode 100644 index 00000000..b37d5ef6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_ocean", + "minecraft:snowy_taiga", + "minecraft:frozen_river", + "minecraft:snowy_beach", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json new file mode 100644 index 00000000..bd1af0f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json @@ -0,0 +1,41 @@ +{ + "values": [ + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:desert", + "minecraft:forest", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:old_growth_birch_forest", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_hills", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_forest", + "minecraft:windswept_savanna", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:meadow", + "minecraft:cherry_grove", + "minecraft:grove", + "minecraft:snowy_slopes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:mushroom_fields", + "minecraft:dripstone_caves", + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json new file mode 100644 index 00000000..1128ade1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river", + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json new file mode 100644 index 00000000..f55aea66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:the_void" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json new file mode 100644 index 00000000..05d85d95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mushroom_fields" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json b/data/generated/V26_1/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json new file mode 100644 index 00000000..4c3e7adc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:flower_default", + "minecraft:flower_flower_forest", + "minecraft:flower_swamp", + "minecraft:flower_plain", + "minecraft:flower_meadow", + "minecraft:flower_cherry", + "minecraft:wildflower", + "minecraft:flower_pale_garden" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json b/data/generated/V26_1/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json new file mode 100644 index 00000000..de2b98df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:classic_flat", + "minecraft:tunnelers_dream", + "minecraft:water_world", + "minecraft:overworld", + "minecraft:snowy_kingdom", + "minecraft:bottomless_pit", + "minecraft:desert", + "minecraft:redstone_ready", + "minecraft:the_void" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_in.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_in.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/cats_spawn_in.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/dolphin_located.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/dolphin_located.json new file mode 100644 index 00000000..4c5da1fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/dolphin_located.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:ocean_ruin", + "#minecraft:shipwreck" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json new file mode 100644 index 00000000..0635d07a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:stronghold" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/mineshaft.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/mineshaft.json new file mode 100644 index 00000000..3def9bec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/mineshaft.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mineshaft", + "minecraft:mineshaft_mesa" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ocean_ruin.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ocean_ruin.json new file mode 100644 index 00000000..da7a0aca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ocean_ruin.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:ocean_ruin_cold", + "minecraft:ocean_ruin_warm" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json new file mode 100644 index 00000000..ba7efaf3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json new file mode 100644 index 00000000..ba0e1c3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:jungle_pyramid" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json new file mode 100644 index 00000000..ab6748eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:monument" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json new file mode 100644 index 00000000..10f9ba4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json new file mode 100644 index 00000000..c3bd14d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json new file mode 100644 index 00000000..d9477e5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_snowy" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json new file mode 100644 index 00000000..e74218b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_treasure_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_treasure_maps.json new file mode 100644 index 00000000..5dcd7092 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_treasure_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:buried_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json new file mode 100644 index 00000000..e8128caa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trial_chambers" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json new file mode 100644 index 00000000..b15b4215 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mansion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ruined_portal.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ruined_portal.json new file mode 100644 index 00000000..b2424b11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/ruined_portal.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:ruined_portal_desert", + "minecraft:ruined_portal_jungle", + "minecraft:ruined_portal_mountain", + "minecraft:ruined_portal_nether", + "minecraft:ruined_portal_ocean", + "minecraft:ruined_portal", + "minecraft:ruined_portal_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/shipwreck.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/shipwreck.json new file mode 100644 index 00000000..6b8bc734 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/shipwreck.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:shipwreck", + "minecraft:shipwreck_beached" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/structure/village.json b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/village.json new file mode 100644 index 00000000..a0f77018 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/structure/village.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:village_plains", + "minecraft:village_desert", + "minecraft:village_savanna", + "minecraft:village_snowy", + "minecraft:village_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/extended.json b/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/extended.json new file mode 100644 index 00000000..9603a20b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/extended.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:normal", + "minecraft:debug_all_block_states" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/normal.json b/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/normal.json new file mode 100644 index 00000000..cbd3e0b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/tags/worldgen/world_preset/normal.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:normal", + "minecraft:flat", + "minecraft:large_biomes", + "minecraft:amplified", + "minecraft:single_biome_surface" + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/test_environment/default.json b/data/generated/V26_1/data/minecraft/test_environment/default.json new file mode 100644 index 00000000..8808857c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/test_environment/default.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:all_of", + "definitions": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/test_instance/always_pass.json b/data/generated/V26_1/data/minecraft/test_instance/always_pass.json new file mode 100644 index 00000000..b4effb8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/test_instance/always_pass.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:function", + "environment": "minecraft:default", + "function": "minecraft:always_pass", + "max_ticks": 1, + "required": false, + "setup_ticks": 1, + "structure": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/timeline/day.json b/data/generated/V26_1/data/minecraft/timeline/day.json new file mode 100644 index 00000000..10ac3ca8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/timeline/day.json @@ -0,0 +1,489 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 24000, + "time_markers": { + "minecraft:day": { + "show_in_commands": true, + "ticks": 1000 + }, + "minecraft:midnight": { + "show_in_commands": true, + "ticks": 18000 + }, + "minecraft:night": { + "show_in_commands": true, + "ticks": 13000 + }, + "minecraft:noon": { + "show_in_commands": true, + "ticks": 6000 + }, + "minecraft:roll_village_siege": 18000, + "minecraft:wake_up_from_sleep": 0 + }, + "tracks": { + "minecraft:audio/firefly_bush_sounds": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/bees_stay_in_hive": { + "keyframes": [ + { + "ticks": 12542, + "value": true + }, + { + "ticks": 23460, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/cat_waking_up_gift_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 362, + "value": 0.0 + }, + { + "ticks": 23667, + "value": 0.7 + } + ], + "modifier": "maximum" + }, + "minecraft:gameplay/creaking_active": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/eyeblossom_open": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ] + }, + "minecraft:gameplay/monsters_burn": { + "keyframes": [ + { + "ticks": 12542, + "value": false + }, + { + "ticks": 23460, + "value": true + } + ], + "modifier": "or" + }, + "minecraft:gameplay/sky_light_level": { + "keyframes": [ + { + "ticks": 133, + "value": 1.0 + }, + { + "ticks": 11867, + "value": 1.0 + }, + { + "ticks": 13670, + "value": 0.26666668 + }, + { + "ticks": 22330, + "value": 0.26666668 + } + ], + "modifier": "multiply" + }, + "minecraft:gameplay/turtle_egg_hatch_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 21062, + "value": 1.0 + }, + { + "ticks": 21905, + "value": 0.002 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/cloud_color": { + "keyframes": [ + { + "ticks": 133, + "value": -1 + }, + { + "ticks": 11867, + "value": -1 + }, + { + "ticks": 13670, + "value": -15132378 + }, + { + "ticks": 22330, + "value": -15132378 + } + ], + "modifier": "multiply" + }, + "minecraft:visual/fog_color": { + "keyframes": [ + { + "ticks": 133, + "value": "#ffffff" + }, + { + "ticks": 11867, + "value": "#ffffff" + }, + { + "ticks": 13670, + "value": "#0f0f16" + }, + { + "ticks": 22330, + "value": "#0f0f16" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/moon_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 540.0 + }, + { + "ticks": 6000, + "value": 180.0 + } + ] + }, + "minecraft:visual/sky_color": { + "keyframes": [ + { + "ticks": 133, + "value": "#ffffff" + }, + { + "ticks": 11867, + "value": "#ffffff" + }, + { + "ticks": 13670, + "value": "#000000" + }, + { + "ticks": 22330, + "value": "#000000" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/sky_light_color": { + "keyframes": [ + { + "ticks": 730, + "value": "#ffffff" + }, + { + "ticks": 11270, + "value": "#ffffff" + }, + { + "ticks": 13140, + "value": "#7a7aff" + }, + { + "ticks": 22860, + "value": "#7a7aff" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/sky_light_factor": { + "keyframes": [ + { + "ticks": 730, + "value": 1.0 + }, + { + "ticks": 11270, + "value": 1.0 + }, + { + "ticks": 13140, + "value": 0.24 + }, + { + "ticks": 22860, + "value": 0.24 + } + ], + "modifier": "multiply" + }, + "minecraft:visual/star_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 360.0 + }, + { + "ticks": 6000, + "value": 0.0 + } + ] + }, + "minecraft:visual/star_brightness": { + "keyframes": [ + { + "ticks": 92, + "value": 0.037 + }, + { + "ticks": 627, + "value": 0.0 + }, + { + "ticks": 11373, + "value": 0.0 + }, + { + "ticks": 11732, + "value": 0.016 + }, + { + "ticks": 11959, + "value": 0.044 + }, + { + "ticks": 12399, + "value": 0.143 + }, + { + "ticks": 12729, + "value": 0.258 + }, + { + "ticks": 13228, + "value": 0.5 + }, + { + "ticks": 22772, + "value": 0.5 + }, + { + "ticks": 23032, + "value": 0.364 + }, + { + "ticks": 23356, + "value": 0.225 + }, + { + "ticks": 23758, + "value": 0.101 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/sun_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 360.0 + }, + { + "ticks": 6000, + "value": 0.0 + } + ] + }, + "minecraft:visual/sunrise_sunset_color": { + "keyframes": [ + { + "ticks": 71, + "value": "#5fefa333" + }, + { + "ticks": 310, + "value": "#29f5ba33" + }, + { + "ticks": 565, + "value": "#06fbd433" + }, + { + "ticks": 730, + "value": "#00ffe533" + }, + { + "ticks": 11270, + "value": "#00ffe533" + }, + { + "ticks": 11397, + "value": "#04fcd833" + }, + { + "ticks": 11522, + "value": "#0ff9cb33" + }, + { + "ticks": 11690, + "value": "#29f5ba33" + }, + { + "ticks": 11929, + "value": "#5fefa333" + }, + { + "ticks": 12243, + "value": "#b1e78733" + }, + { + "ticks": 12358, + "value": "#cce47e33" + }, + { + "ticks": 12512, + "value": "#e9e07233" + }, + { + "ticks": 12613, + "value": "#f6dd6b33" + }, + { + "ticks": 12732, + "value": "#feda6333" + }, + { + "ticks": 12841, + "value": "#fed75c33" + }, + { + "ticks": 13035, + "value": "#ecd25133" + }, + { + "ticks": 13252, + "value": "#c1cc4733" + }, + { + "ticks": 13775, + "value": "#36be3733" + }, + { + "ticks": 13888, + "value": "#1fbb3533" + }, + { + "ticks": 14039, + "value": "#09b73333" + }, + { + "ticks": 14192, + "value": "#00b33333" + }, + { + "ticks": 21807, + "value": "#00b23333" + }, + { + "ticks": 21961, + "value": "#09b73333" + }, + { + "ticks": 22112, + "value": "#1fbb3533" + }, + { + "ticks": 22225, + "value": "#36be3733" + }, + { + "ticks": 22748, + "value": "#c1cc4733" + }, + { + "ticks": 22965, + "value": "#ecd25133" + }, + { + "ticks": 23159, + "value": "#fed75c33" + }, + { + "ticks": 23272, + "value": "#feda6333" + }, + { + "ticks": 23488, + "value": "#e9e07233" + }, + { + "ticks": 23642, + "value": "#cce47e33" + }, + { + "ticks": 23757, + "value": "#b1e78733" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/timeline/early_game.json b/data/generated/V26_1/data/minecraft/timeline/early_game.json new file mode 100644 index 00000000..f9a10ee6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/timeline/early_game.json @@ -0,0 +1,18 @@ +{ + "clock": "minecraft:overworld", + "tracks": { + "minecraft:gameplay/can_pillager_patrol_spawn": { + "keyframes": [ + { + "ticks": 0, + "value": false + }, + { + "ticks": 120000, + "value": true + } + ], + "modifier": "and" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/timeline/moon.json b/data/generated/V26_1/data/minecraft/timeline/moon.json new file mode 100644 index 00000000..9b78d22d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/timeline/moon.json @@ -0,0 +1,80 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 192000, + "tracks": { + "minecraft:gameplay/surface_slime_spawn_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 0, + "value": 0.5 + }, + { + "ticks": 24000, + "value": 0.375 + }, + { + "ticks": 48000, + "value": 0.25 + }, + { + "ticks": 72000, + "value": 0.125 + }, + { + "ticks": 96000, + "value": 0.0 + }, + { + "ticks": 120000, + "value": 0.125 + }, + { + "ticks": 144000, + "value": 0.25 + }, + { + "ticks": 168000, + "value": 0.375 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/moon_phase": { + "keyframes": [ + { + "ticks": 0, + "value": "full_moon" + }, + { + "ticks": 24000, + "value": "waning_gibbous" + }, + { + "ticks": 48000, + "value": "third_quarter" + }, + { + "ticks": 72000, + "value": "waning_crescent" + }, + { + "ticks": 96000, + "value": "new_moon" + }, + { + "ticks": 120000, + "value": "waxing_crescent" + }, + { + "ticks": 144000, + "value": "first_quarter" + }, + { + "ticks": 168000, + "value": "waxing_gibbous" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/timeline/villager_schedule.json b/data/generated/V26_1/data/minecraft/timeline/villager_schedule.json new file mode 100644 index 00000000..b9c1bb66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/timeline/villager_schedule.json @@ -0,0 +1,54 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 24000, + "tracks": { + "minecraft:gameplay/baby_villager_activity": { + "keyframes": [ + { + "ticks": 10, + "value": "minecraft:idle" + }, + { + "ticks": 3000, + "value": "minecraft:play" + }, + { + "ticks": 6000, + "value": "minecraft:idle" + }, + { + "ticks": 10000, + "value": "minecraft:play" + }, + { + "ticks": 12000, + "value": "minecraft:rest" + } + ] + }, + "minecraft:gameplay/villager_activity": { + "keyframes": [ + { + "ticks": 10, + "value": "minecraft:idle" + }, + { + "ticks": 2000, + "value": "minecraft:work" + }, + { + "ticks": 9000, + "value": "minecraft:meet" + }, + { + "ticks": 11000, + "value": "minecraft:idle" + }, + { + "ticks": 12000, + "value": "minecraft:rest" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/armorer/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_1.json new file mode 100644 index 00000000..8e60ef3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_1", + "trades": "#minecraft:armorer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/armorer/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_2.json new file mode 100644 index 00000000..85e4c451 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_2", + "trades": "#minecraft:armorer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/armorer/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_3.json new file mode 100644 index 00000000..b45fcedb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_3", + "trades": "#minecraft:armorer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/armorer/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_4.json new file mode 100644 index 00000000..9498b8c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_4", + "trades": "#minecraft:armorer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/armorer/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_5.json new file mode 100644 index 00000000..4ac4a74a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/armorer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_5", + "trades": "#minecraft:armorer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/butcher/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_1.json new file mode 100644 index 00000000..4bb588b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_1", + "trades": "#minecraft:butcher/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/butcher/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_2.json new file mode 100644 index 00000000..581f6402 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_2", + "trades": "#minecraft:butcher/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/butcher/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_3.json new file mode 100644 index 00000000..af3495c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_3", + "trades": "#minecraft:butcher/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/butcher/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_4.json new file mode 100644 index 00000000..9218cc5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_4", + "trades": "#minecraft:butcher/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/butcher/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_5.json new file mode 100644 index 00000000..9c350f8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/butcher/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_5", + "trades": "#minecraft:butcher/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_1.json new file mode 100644 index 00000000..a9e18225 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_1", + "trades": "#minecraft:cartographer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_2.json new file mode 100644 index 00000000..72777f75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_2", + "trades": "#minecraft:cartographer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_3.json new file mode 100644 index 00000000..1351cc55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_3", + "trades": "#minecraft:cartographer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_4.json new file mode 100644 index 00000000..5c1765b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_4", + "trades": "#minecraft:cartographer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_5.json new file mode 100644 index 00000000..0d8e46a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cartographer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_5", + "trades": "#minecraft:cartographer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cleric/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_1.json new file mode 100644 index 00000000..dc7a0d5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_1", + "trades": "#minecraft:cleric/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cleric/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_2.json new file mode 100644 index 00000000..f3580e4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_2", + "trades": "#minecraft:cleric/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cleric/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_3.json new file mode 100644 index 00000000..36d8f708 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_3", + "trades": "#minecraft:cleric/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cleric/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_4.json new file mode 100644 index 00000000..e7875794 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_4", + "trades": "#minecraft:cleric/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/cleric/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_5.json new file mode 100644 index 00000000..94f8492d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/cleric/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_5", + "trades": "#minecraft:cleric/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/farmer/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_1.json new file mode 100644 index 00000000..fe947169 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_1", + "trades": "#minecraft:farmer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/farmer/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_2.json new file mode 100644 index 00000000..be905eca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_2", + "trades": "#minecraft:farmer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/farmer/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_3.json new file mode 100644 index 00000000..3681cbbe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_3", + "trades": "#minecraft:farmer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/farmer/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_4.json new file mode 100644 index 00000000..a271841c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_4", + "trades": "#minecraft:farmer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/farmer/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_5.json new file mode 100644 index 00000000..30cc0a58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/farmer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_5", + "trades": "#minecraft:farmer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_1.json new file mode 100644 index 00000000..c0d10980 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_1", + "trades": "#minecraft:fisherman/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_2.json new file mode 100644 index 00000000..d9b8a481 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_2", + "trades": "#minecraft:fisherman/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_3.json new file mode 100644 index 00000000..370c7d09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_3", + "trades": "#minecraft:fisherman/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_4.json new file mode 100644 index 00000000..d480fade --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_4", + "trades": "#minecraft:fisherman/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_5.json new file mode 100644 index 00000000..2a2c1e49 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fisherman/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_5", + "trades": "#minecraft:fisherman/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_1.json new file mode 100644 index 00000000..6aa2f740 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_1", + "trades": "#minecraft:fletcher/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_2.json new file mode 100644 index 00000000..7fae8c6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_2", + "trades": "#minecraft:fletcher/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_3.json new file mode 100644 index 00000000..439770c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_3", + "trades": "#minecraft:fletcher/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_4.json new file mode 100644 index 00000000..726fada5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_4", + "trades": "#minecraft:fletcher/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_5.json new file mode 100644 index 00000000..cfbc75a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/fletcher/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_5", + "trades": "#minecraft:fletcher/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_1.json new file mode 100644 index 00000000..a3f32f2c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_1", + "trades": "#minecraft:leatherworker/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_2.json new file mode 100644 index 00000000..0725d7da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_2", + "trades": "#minecraft:leatherworker/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_3.json new file mode 100644 index 00000000..b8d0b07c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_3", + "trades": "#minecraft:leatherworker/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_4.json new file mode 100644 index 00000000..9b3949aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_4", + "trades": "#minecraft:leatherworker/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_5.json new file mode 100644 index 00000000..cb2c80ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/leatherworker/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_5", + "trades": "#minecraft:leatherworker/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/librarian/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_1.json new file mode 100644 index 00000000..4dbeeb75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_1", + "trades": "#minecraft:librarian/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/librarian/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_2.json new file mode 100644 index 00000000..c9673c77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_2", + "trades": "#minecraft:librarian/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/librarian/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_3.json new file mode 100644 index 00000000..656d65e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_3", + "trades": "#minecraft:librarian/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/librarian/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_4.json new file mode 100644 index 00000000..907fc8de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_4", + "trades": "#minecraft:librarian/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/librarian/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_5.json new file mode 100644 index 00000000..fb1cdbb2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/librarian/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 3.0, + "random_sequence": "minecraft:trade_set/librarian/level_5", + "trades": "#minecraft:librarian/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/mason/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/mason/level_1.json new file mode 100644 index 00000000..2ae23b85 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/mason/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_1", + "trades": "#minecraft:mason/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/mason/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/mason/level_2.json new file mode 100644 index 00000000..b9d72c1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/mason/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_2", + "trades": "#minecraft:mason/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/mason/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/mason/level_3.json new file mode 100644 index 00000000..c0fa6abb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/mason/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_3", + "trades": "#minecraft:mason/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/mason/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/mason/level_4.json new file mode 100644 index 00000000..46d87e6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/mason/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_4", + "trades": "#minecraft:mason/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/mason/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/mason/level_5.json new file mode 100644 index 00000000..ed2a3c09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/mason/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_5", + "trades": "#minecraft:mason/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_1.json new file mode 100644 index 00000000..da4e3d0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_1", + "trades": "#minecraft:shepherd/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_2.json new file mode 100644 index 00000000..e4bb87fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_2", + "trades": "#minecraft:shepherd/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_3.json new file mode 100644 index 00000000..742d4900 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_3", + "trades": "#minecraft:shepherd/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_4.json new file mode 100644 index 00000000..4ba69086 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_4", + "trades": "#minecraft:shepherd/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_5.json new file mode 100644 index 00000000..7aa18fca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/shepherd/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_5", + "trades": "#minecraft:shepherd/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_1.json new file mode 100644 index 00000000..12300c73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_1", + "trades": "#minecraft:toolsmith/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_2.json new file mode 100644 index 00000000..39f257d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_2", + "trades": "#minecraft:toolsmith/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_3.json new file mode 100644 index 00000000..e041d82c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_3", + "trades": "#minecraft:toolsmith/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_4.json new file mode 100644 index 00000000..03ac88a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_4", + "trades": "#minecraft:toolsmith/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_5.json new file mode 100644 index 00000000..5d2af714 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/toolsmith/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_5", + "trades": "#minecraft:toolsmith/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/buying.json b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/buying.json new file mode 100644 index 00000000..6296a19f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/buying.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/wandering_trader/buying", + "trades": "#minecraft:wandering_trader/buying" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/common.json b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/common.json new file mode 100644 index 00000000..5e1fd19f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/common.json @@ -0,0 +1,5 @@ +{ + "amount": 5.0, + "random_sequence": "minecraft:trade_set/wandering_trader/common", + "trades": "#minecraft:wandering_trader/common" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/uncommon.json b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/uncommon.json new file mode 100644 index 00000000..18e5e7b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/wandering_trader/uncommon.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/wandering_trader/uncommon", + "trades": "#minecraft:wandering_trader/uncommon" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_1.json b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_1.json new file mode 100644 index 00000000..6a069e35 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_1", + "trades": "#minecraft:weaponsmith/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_2.json b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_2.json new file mode 100644 index 00000000..49994e86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_2", + "trades": "#minecraft:weaponsmith/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_3.json b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_3.json new file mode 100644 index 00000000..a61692d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_3", + "trades": "#minecraft:weaponsmith/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_4.json b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_4.json new file mode 100644 index 00000000..e3b198ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_4", + "trades": "#minecraft:weaponsmith/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_5.json b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_5.json new file mode 100644 index 00000000..93340760 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trade_set/weaponsmith/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_5", + "trades": "#minecraft:weaponsmith/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json new file mode 100644 index 00000000..d2d070c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json @@ -0,0 +1,17 @@ +{ + "simultaneous_mobs": 1.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:breeze" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 2.0, + "total_mobs_added_per_player": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json new file mode 100644 index 00000000..2ae41412 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:breeze" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 4.0, + "total_mobs_added_per_player": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json new file mode 100644 index 00000000..fdb89086 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:husk" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json new file mode 100644 index 00000000..19af8a68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:husk" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json new file mode 100644 index 00000000..429a8c0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json new file mode 100644 index 00000000..7cf6a6d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json new file mode 100644 index 00000000..c57d6b63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:zombie" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json new file mode 100644 index 00000000..e5a1ca28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:zombie" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json new file mode 100644 index 00000000..3b1fc126 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json new file mode 100644 index 00000000..2ae8933a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json new file mode 100644 index 00000000..29c9a1b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json new file mode 100644 index 00000000..5a06ca59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json new file mode 100644 index 00000000..4a0e90ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json new file mode 100644 index 00000000..f4dc8840 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json new file mode 100644 index 00000000..a8c39b00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json new file mode 100644 index 00000000..6ecc76c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json new file mode 100644 index 00000000..212d4f3c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json new file mode 100644 index 00000000..97b42e47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json new file mode 100644 index 00000000..37fdcc10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json new file mode 100644 index 00000000..5fef6aeb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json new file mode 100644 index 00000000..23712fd5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "IsBaby": 1, + "id": "minecraft:zombie" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json new file mode 100644 index 00000000..5870dcf6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "IsBaby": 1, + "id": "minecraft:zombie" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json new file mode 100644 index 00000000..5fb31836 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:cave_spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json new file mode 100644 index 00000000..040a6755 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:cave_spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json new file mode 100644 index 00000000..b7c75408 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:silverfish" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json new file mode 100644 index 00000000..7441b4c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:silverfish" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json new file mode 100644 index 00000000..24c0f956 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json @@ -0,0 +1,25 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "Size": 1, + "id": "minecraft:slime" + } + }, + "weight": 3 + }, + { + "data": { + "entity": { + "Size": 2, + "id": "minecraft:slime" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json new file mode 100644 index 00000000..eadafd86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json @@ -0,0 +1,36 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "Size": 1, + "id": "minecraft:slime" + } + }, + "weight": 3 + }, + { + "data": { + "entity": { + "Size": 2, + "id": "minecraft:slime" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/amethyst.json b/data/generated/V26_1/data/minecraft/trim_material/amethyst.json new file mode 100644 index 00000000..8ee4630b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/amethyst.json @@ -0,0 +1,7 @@ +{ + "asset_name": "amethyst", + "description": { + "color": "#9A5CC6", + "translate": "trim_material.minecraft.amethyst" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/copper.json b/data/generated/V26_1/data/minecraft/trim_material/copper.json new file mode 100644 index 00000000..7922e35d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/copper.json @@ -0,0 +1,10 @@ +{ + "asset_name": "copper", + "description": { + "color": "#B4684D", + "translate": "trim_material.minecraft.copper" + }, + "override_armor_assets": { + "minecraft:copper": "copper_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/diamond.json b/data/generated/V26_1/data/minecraft/trim_material/diamond.json new file mode 100644 index 00000000..bf9d314f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/diamond.json @@ -0,0 +1,10 @@ +{ + "asset_name": "diamond", + "description": { + "color": "#6EECD2", + "translate": "trim_material.minecraft.diamond" + }, + "override_armor_assets": { + "minecraft:diamond": "diamond_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/emerald.json b/data/generated/V26_1/data/minecraft/trim_material/emerald.json new file mode 100644 index 00000000..10c7c240 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/emerald.json @@ -0,0 +1,7 @@ +{ + "asset_name": "emerald", + "description": { + "color": "#11A036", + "translate": "trim_material.minecraft.emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/gold.json b/data/generated/V26_1/data/minecraft/trim_material/gold.json new file mode 100644 index 00000000..3c0eff3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/gold.json @@ -0,0 +1,10 @@ +{ + "asset_name": "gold", + "description": { + "color": "#DEB12D", + "translate": "trim_material.minecraft.gold" + }, + "override_armor_assets": { + "minecraft:gold": "gold_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/iron.json b/data/generated/V26_1/data/minecraft/trim_material/iron.json new file mode 100644 index 00000000..208e50f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/iron.json @@ -0,0 +1,10 @@ +{ + "asset_name": "iron", + "description": { + "color": "#ECECEC", + "translate": "trim_material.minecraft.iron" + }, + "override_armor_assets": { + "minecraft:iron": "iron_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/lapis.json b/data/generated/V26_1/data/minecraft/trim_material/lapis.json new file mode 100644 index 00000000..2f78caad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/lapis.json @@ -0,0 +1,7 @@ +{ + "asset_name": "lapis", + "description": { + "color": "#416E97", + "translate": "trim_material.minecraft.lapis" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/netherite.json b/data/generated/V26_1/data/minecraft/trim_material/netherite.json new file mode 100644 index 00000000..f787cde2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/netherite.json @@ -0,0 +1,10 @@ +{ + "asset_name": "netherite", + "description": { + "color": "#625859", + "translate": "trim_material.minecraft.netherite" + }, + "override_armor_assets": { + "minecraft:netherite": "netherite_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/quartz.json b/data/generated/V26_1/data/minecraft/trim_material/quartz.json new file mode 100644 index 00000000..67588503 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/quartz.json @@ -0,0 +1,7 @@ +{ + "asset_name": "quartz", + "description": { + "color": "#E3D4C4", + "translate": "trim_material.minecraft.quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/redstone.json b/data/generated/V26_1/data/minecraft/trim_material/redstone.json new file mode 100644 index 00000000..a2e7750b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/redstone.json @@ -0,0 +1,7 @@ +{ + "asset_name": "redstone", + "description": { + "color": "#971607", + "translate": "trim_material.minecraft.redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_material/resin.json b/data/generated/V26_1/data/minecraft/trim_material/resin.json new file mode 100644 index 00000000..3798c0e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_material/resin.json @@ -0,0 +1,7 @@ +{ + "asset_name": "resin", + "description": { + "color": "#FC7812", + "translate": "trim_material.minecraft.resin" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/bolt.json b/data/generated/V26_1/data/minecraft/trim_pattern/bolt.json new file mode 100644 index 00000000..55989273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/bolt.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:bolt", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.bolt" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/coast.json b/data/generated/V26_1/data/minecraft/trim_pattern/coast.json new file mode 100644 index 00000000..174e48e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/coast.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:coast", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.coast" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/dune.json b/data/generated/V26_1/data/minecraft/trim_pattern/dune.json new file mode 100644 index 00000000..09293865 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/dune.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:dune", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.dune" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/eye.json b/data/generated/V26_1/data/minecraft/trim_pattern/eye.json new file mode 100644 index 00000000..86265106 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/eye.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:eye", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/flow.json b/data/generated/V26_1/data/minecraft/trim_pattern/flow.json new file mode 100644 index 00000000..21ad7420 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/flow.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:flow", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.flow" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/host.json b/data/generated/V26_1/data/minecraft/trim_pattern/host.json new file mode 100644 index 00000000..b43cc5ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/host.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:host", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.host" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/raiser.json b/data/generated/V26_1/data/minecraft/trim_pattern/raiser.json new file mode 100644 index 00000000..448d93fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/raiser.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:raiser", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.raiser" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/rib.json b/data/generated/V26_1/data/minecraft/trim_pattern/rib.json new file mode 100644 index 00000000..0e77a83f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/rib.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:rib", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.rib" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/sentry.json b/data/generated/V26_1/data/minecraft/trim_pattern/sentry.json new file mode 100644 index 00000000..e32df2ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/sentry.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:sentry", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.sentry" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/shaper.json b/data/generated/V26_1/data/minecraft/trim_pattern/shaper.json new file mode 100644 index 00000000..9636aa24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/shaper.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:shaper", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.shaper" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/silence.json b/data/generated/V26_1/data/minecraft/trim_pattern/silence.json new file mode 100644 index 00000000..2c073608 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/silence.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:silence", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.silence" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/snout.json b/data/generated/V26_1/data/minecraft/trim_pattern/snout.json new file mode 100644 index 00000000..bf3686d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/snout.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:snout", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.snout" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/spire.json b/data/generated/V26_1/data/minecraft/trim_pattern/spire.json new file mode 100644 index 00000000..c57dc165 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/spire.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:spire", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.spire" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/tide.json b/data/generated/V26_1/data/minecraft/trim_pattern/tide.json new file mode 100644 index 00000000..9d6332dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/tide.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:tide", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.tide" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/vex.json b/data/generated/V26_1/data/minecraft/trim_pattern/vex.json new file mode 100644 index 00000000..231f7d36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/vex.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:vex", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.vex" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/ward.json b/data/generated/V26_1/data/minecraft/trim_pattern/ward.json new file mode 100644 index 00000000..bcdfcf77 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/ward.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:ward", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.ward" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/wayfinder.json b/data/generated/V26_1/data/minecraft/trim_pattern/wayfinder.json new file mode 100644 index 00000000..61838729 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/wayfinder.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:wayfinder", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.wayfinder" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/trim_pattern/wild.json b/data/generated/V26_1/data/minecraft/trim_pattern/wild.json new file mode 100644 index 00000000..18d392b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/trim_pattern/wild.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:wild", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.wild" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json new file mode 100644 index 00000000..a2793937 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json new file mode 100644 index 00000000..d352871b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json new file mode 100644 index 00000000..914ede3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json new file mode 100644 index 00000000..8b5918d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json new file mode 100644 index 00000000..7836697d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json new file mode 100644 index 00000000..24225f7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/diamond_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/diamond_emerald.json new file mode 100644 index 00000000..6f0216d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json new file mode 100644 index 00000000..d0b1dd2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json new file mode 100644 index 00000000..7c6dcc3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_shield.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_shield.json new file mode 100644 index 00000000..c8b0c927 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/emerald_shield.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:shield" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json new file mode 100644 index 00000000..0c322b2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:lava_bucket" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json new file mode 100644 index 00000000..cef7ece5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json new file mode 100644 index 00000000..06502a1d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 14.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json new file mode 100644 index 00000000..4ef98538 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json b/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json new file mode 100644 index 00000000..82365657 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/chicken_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/chicken_emerald.json new file mode 100644 index 00000000..f971ccee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/chicken_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 14.0, + "id": "minecraft:chicken" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json new file mode 100644 index 00000000..c982c19c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:rabbit_stew" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json new file mode 100644 index 00000000..1eba7380 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:porkchop" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json new file mode 100644 index 00000000..33bf8ded --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:rabbit" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/coal_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/coal_emerald.json new file mode 100644 index 00000000..ffb1bdce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json new file mode 100644 index 00000000..7d222490 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:cooked_chicken" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json new file mode 100644 index 00000000..5aac709c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 5, + "id": "minecraft:cooked_porkchop" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/beef_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/beef_emerald.json new file mode 100644 index 00000000..f4c52e82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/beef_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:beef" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/mutton_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/mutton_emerald.json new file mode 100644 index 00000000..5e743742 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/3/mutton_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:mutton" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json new file mode 100644 index 00000000..cd0100c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:dried_kelp_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json new file mode 100644 index 00000000..0a805f53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:sweet_berries" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/emerald_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/emerald_map.json new file mode 100644 index 00000000..e2736ef5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/emerald_map.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/paper_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/paper_emerald.json new file mode 100644 index 00000000..f586d1b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/1/paper_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:paper" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json new file mode 100644 index 00000000..2aac7a60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:jungle_temple", + "destination": "minecraft:on_jungle_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.explorer_jungle" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:swamp", + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json new file mode 100644 index 00000000..29f38d73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:swamp_hut", + "destination": "minecraft:on_swamp_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.explorer_swamp" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json new file mode 100644 index 00000000..569799b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json @@ -0,0 +1,54 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_desert", + "destination": "minecraft:on_desert_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_desert" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:savanna", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json new file mode 100644 index 00000000..885281c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json @@ -0,0 +1,56 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_plains", + "destination": "minecraft:on_plains_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_plains" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow", + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json new file mode 100644 index 00000000..a602ef8d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_savanna", + "destination": "minecraft:on_savanna_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_savanna" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json new file mode 100644 index 00000000..be0d75c8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json @@ -0,0 +1,54 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_snowy", + "destination": "minecraft:on_snowy_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_snowy" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json new file mode 100644 index 00000000..63e3221c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_taiga", + "destination": "minecraft:on_taiga_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_taiga" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:swamp", + "minecraft:snow", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json new file mode 100644 index 00000000..fce059e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:glass_pane" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/compass_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/compass_emerald.json new file mode 100644 index 00000000..47a2ba5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/compass_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:compass" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json new file mode 100644 index 00000000..b504fbb8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json @@ -0,0 +1,42 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:monument", + "destination": "minecraft:on_ocean_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.monument" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json new file mode 100644 index 00000000..afa8de87 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json @@ -0,0 +1,42 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:trial_chambers", + "destination": "minecraft:on_trial_chambers_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.trial_chambers" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json new file mode 100644 index 00000000..0800260d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:black_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json new file mode 100644 index 00000000..a1e80a59 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:blue_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json new file mode 100644 index 00000000..7abd475b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:brown_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json new file mode 100644 index 00000000..00c665c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:cyan_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:snow" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json new file mode 100644 index 00000000..c883c432 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:gray_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json new file mode 100644 index 00000000..aa4b2266 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json @@ -0,0 +1,25 @@ +{ + "gives": { + "id": "minecraft:green_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:savanna", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json new file mode 100644 index 00000000..20f19157 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:item_frame" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json new file mode 100644 index 00000000..aa1f076e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:light_blue_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json new file mode 100644 index 00000000..03efd8f5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:lime_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json new file mode 100644 index 00000000..482a62af --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:magenta_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json new file mode 100644 index 00000000..50629efa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:orange_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json new file mode 100644 index 00000000..812b7f8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:pink_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json new file mode 100644 index 00000000..b345859a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:purple_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json new file mode 100644 index 00000000..08dfd9a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:red_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:savanna" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json new file mode 100644 index 00000000..92e457ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:white_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json new file mode 100644 index 00000000..03fe40b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:yellow_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json new file mode 100644 index 00000000..9d7691e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json @@ -0,0 +1,41 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "destination": "minecraft:on_woodland_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.mansion" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 14.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json new file mode 100644 index 00000000..81a2f63a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:globe_banner_pattern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/emerald_redstone.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/emerald_redstone.json new file mode 100644 index 00000000..99677787 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/emerald_redstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:redstone" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json new file mode 100644 index 00000000..b00c74a4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 32.0, + "id": "minecraft:rotten_flesh" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json new file mode 100644 index 00000000..32bc421d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lapis_lazuli" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json new file mode 100644 index 00000000..d33e290a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:gold_ingot" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json new file mode 100644 index 00000000..d52484ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:glowstone" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json new file mode 100644 index 00000000..76d2260c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:rabbit_foot" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json new file mode 100644 index 00000000..738ed342 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:ender_pearl" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json new file mode 100644 index 00000000..4040e995 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:glass_bottle" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json new file mode 100644 index 00000000..30d0363f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:turtle_scute" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json new file mode 100644 index 00000000..b6062520 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:experience_bottle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json new file mode 100644 index 00000000..e315c118 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 22.0, + "id": "minecraft:nether_wart" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json new file mode 100644 index 00000000..13083fe2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:beetroot" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/carrot_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/carrot_emerald.json new file mode 100644 index 00000000..ed59e174 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/carrot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 22.0, + "id": "minecraft:carrot" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/emerald_bread.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/emerald_bread.json new file mode 100644 index 00000000..8395bb80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/emerald_bread.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 6, + "id": "minecraft:bread" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/potato_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/potato_emerald.json new file mode 100644 index 00000000..9408e32d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/potato_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:potato" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/wheat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/wheat_emerald.json new file mode 100644 index 00000000..7a44097b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/1/wheat_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:wheat" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_apple.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_apple.json new file mode 100644 index 00000000..7f706958 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_apple.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:apple" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json new file mode 100644 index 00000000..7214e5f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:pumpkin_pie" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json new file mode 100644 index 00000000..a6f6f3c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:pumpkin" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/emerald_cookie.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/emerald_cookie.json new file mode 100644 index 00000000..f612c5c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/emerald_cookie.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 18, + "id": "minecraft:cookie" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/melon_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/melon_emerald.json new file mode 100644 index 00000000..4064ae99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/3/melon_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:melon" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_cake.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_cake.json new file mode 100644 index 00000000..f66dc47d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_cake.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cake" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json new file mode 100644 index 00000000..b2123ed8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json @@ -0,0 +1,42 @@ +{ + "given_item_modifiers": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": 5.0 + }, + { + "type": "minecraft:jump_boost", + "duration": 8.0 + }, + { + "type": "minecraft:weakness", + "duration": 7.0 + }, + { + "type": "minecraft:blindness", + "duration": 6.0 + }, + { + "type": "minecraft:poison", + "duration": 14.0 + }, + { + "type": "minecraft:saturation", + "duration": 7.0 + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "gives": { + "id": "minecraft:suspicious_stew" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json new file mode 100644 index 00000000..0ed11265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:glistering_melon_slice" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json b/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json new file mode 100644 index 00000000..fdca11eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:golden_carrot" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/coal_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/coal_emerald.json new file mode 100644 index 00000000..e4f062d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json new file mode 100644 index 00000000..7b2dfac4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cod_bucket" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json new file mode 100644 index 00000000..057b31d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json @@ -0,0 +1,15 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 6, + "id": "minecraft:cooked_cod" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/string_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/string_emerald.json new file mode 100644 index 00000000..2bf38270 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/1/string_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:string" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/cod_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/cod_emerald.json new file mode 100644 index 00000000..9016a127 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/cod_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:cod" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json new file mode 100644 index 00000000..519e5982 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:campfire" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json new file mode 100644 index 00000000..e90d6a43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json @@ -0,0 +1,16 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 6, + "id": "minecraft:cooked_salmon" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:salmon" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json new file mode 100644 index 00000000..3c4e934e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:fishing_rod", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:fishing_rod" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json new file mode 100644 index 00000000..2cf93282 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:salmon" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json new file mode 100644 index 00000000..a7bf96de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:tropical_fish" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json new file mode 100644 index 00000000..2ec18427 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:acacia_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json new file mode 100644 index 00000000..5b1b3bf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:dark_oak_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json new file mode 100644 index 00000000..420fec21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json @@ -0,0 +1,23 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:jungle_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json new file mode 100644 index 00000000..5cdc0cc6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:oak_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json new file mode 100644 index 00000000..16b9a767 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:pufferfish" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json new file mode 100644 index 00000000..b876a754 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json @@ -0,0 +1,23 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:spruce_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json new file mode 100644 index 00000000..1e65462a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 16, + "id": "minecraft:arrow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json new file mode 100644 index 00000000..cb34e019 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json @@ -0,0 +1,15 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 10, + "id": "minecraft:flint" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:gravel" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/stick_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/stick_emerald.json new file mode 100644 index 00000000..0b6a0116 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/1/stick_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 32.0, + "id": "minecraft:stick" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/emerald_bow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/emerald_bow.json new file mode 100644 index 00000000..f29f43ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/emerald_bow.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/flint_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/flint_emerald.json new file mode 100644 index 00000000..864252d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/2/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:flint" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json new file mode 100644 index 00000000..c2b288c0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:crossbow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/string_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/string_emerald.json new file mode 100644 index 00000000..cc46db4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/3/string_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 14.0, + "id": "minecraft:string" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json new file mode 100644 index 00000000..1c6636ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:bow", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:bow" + }, + "max_uses": 3.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/feather_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/feather_emerald.json new file mode 100644 index 00000000..4c51dc76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/4/feather_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:feather" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json new file mode 100644 index 00000000..64f95b88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json @@ -0,0 +1,23 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "given_item_modifiers": [ + { + "function": "minecraft:set_random_potion", + "options": "#minecraft:tradeable" + } + ], + "gives": { + "count": 5, + "id": "minecraft:tipped_arrow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:arrow" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json new file mode 100644 index 00000000..a438879a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:crossbow", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:crossbow" + }, + "max_uses": 3.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json new file mode 100644 index 00000000..268cbcee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:tripwire_hook" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json new file mode 100644 index 00000000..947f746b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_chestplate", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json new file mode 100644 index 00000000..8bb907ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_leggings", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json new file mode 100644 index 00000000..1aeb91fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:leather" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json new file mode 100644 index 00000000..7c59bdd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_boots", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json new file mode 100644 index 00000000..3a5dbcd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_helmet", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json new file mode 100644 index 00000000..864252d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:flint" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json new file mode 100644 index 00000000..947f746b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_chestplate", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json new file mode 100644 index 00000000..7147d26c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:rabbit_hide" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json new file mode 100644 index 00000000..75cc3c44 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_horse_armor", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_horse_armor" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json new file mode 100644 index 00000000..30d0363f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:turtle_scute" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json new file mode 100644 index 00000000..3a5dbcd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_helmet", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json new file mode 100644 index 00000000..d2d98a3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:saddle" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..bc36b321 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json @@ -0,0 +1,37 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json new file mode 100644 index 00000000..b39e637e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:bookshelf" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/paper_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/paper_emerald.json new file mode 100644 index 00000000..9cc409c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/1/paper_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:paper" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/book_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/book_emerald.json new file mode 100644 index 00000000..9df17f4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:book" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..7b9d522e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_lantern.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_lantern.json new file mode 100644 index 00000000..0b7fb1dc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/2/emerald_lantern.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lantern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..c221c3b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_glass.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_glass.json new file mode 100644 index 00000000..d9477418 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/emerald_glass.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:glass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json new file mode 100644 index 00000000..67ff59b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:ink_sac" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json new file mode 100644 index 00000000..a32d5599 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_clock.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_clock.json new file mode 100644 index 00000000..32b02901 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_clock.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:clock" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_compass.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_compass.json new file mode 100644 index 00000000..d1b0380a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/emerald_compass.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:compass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json new file mode 100644 index 00000000..c39aef6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:writable_book" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json new file mode 100644 index 00000000..0fb86285 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_candle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json b/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json new file mode 100644 index 00000000..b965d61f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_candle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json new file mode 100644 index 00000000..bf58ea5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:clay_ball" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/1/emerald_brick.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/1/emerald_brick.json new file mode 100644 index 00000000..a62bc329 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/1/emerald_brick.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 10, + "id": "minecraft:brick" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json new file mode 100644 index 00000000..fe5a96b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:chiseled_stone_bricks" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/2/stone_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/2/stone_emerald.json new file mode 100644 index 00000000..501f55aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/2/stone_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:stone" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/andesite_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/andesite_emerald.json new file mode 100644 index 00000000..d6ab6180 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/andesite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:andesite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/diorite_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/diorite_emerald.json new file mode 100644 index 00000000..d151014d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/diorite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:diorite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json new file mode 100644 index 00000000..4a67db41 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:dripstone_block" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json new file mode 100644 index 00000000..fb893d58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_andesite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json new file mode 100644 index 00000000..5522757b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_diorite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json new file mode 100644 index 00000000..dfb5f698 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_granite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/3/granite_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/granite_emerald.json new file mode 100644 index 00000000..3f3ebeee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/3/granite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:granite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json new file mode 100644 index 00000000..73e7808e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json new file mode 100644 index 00000000..21e5d8ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json new file mode 100644 index 00000000..51b8755b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json new file mode 100644 index 00000000..8963a785 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json new file mode 100644 index 00000000..ec5562cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json new file mode 100644 index 00000000..1761cbee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json new file mode 100644 index 00000000..500c1bef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json new file mode 100644 index 00000000..c5a3c185 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json new file mode 100644 index 00000000..71535611 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json new file mode 100644 index 00000000..bb3aa747 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json new file mode 100644 index 00000000..85549bfe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json new file mode 100644 index 00000000..0057fab9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json new file mode 100644 index 00000000..515c7a82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json new file mode 100644 index 00000000..bae30da5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json new file mode 100644 index 00000000..59a2a849 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json new file mode 100644 index 00000000..1f36015e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json new file mode 100644 index 00000000..7ac50427 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json new file mode 100644 index 00000000..817e64d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json new file mode 100644 index 00000000..75553ba6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json new file mode 100644 index 00000000..e757cd45 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json new file mode 100644 index 00000000..28fc0e9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json new file mode 100644 index 00000000..8a94d646 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json new file mode 100644 index 00000000..43031869 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json new file mode 100644 index 00000000..fde8d544 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json new file mode 100644 index 00000000..3c1f446e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json new file mode 100644 index 00000000..1ba4d032 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json new file mode 100644 index 00000000..8505027e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json new file mode 100644 index 00000000..170e32a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json new file mode 100644 index 00000000..7745eda5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json new file mode 100644 index 00000000..415df2c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json new file mode 100644 index 00000000..8352557a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json new file mode 100644 index 00000000..3dcd50b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/4/quartz_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/quartz_emerald.json new file mode 100644 index 00000000..2efede53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/4/quartz_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:quartz" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json new file mode 100644 index 00000000..004ba79b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:quartz_block" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json b/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json new file mode 100644 index 00000000..bc96455f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:quartz_pillar" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json new file mode 100644 index 00000000..4504aabe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:black_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json new file mode 100644 index 00000000..05ba1e99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:brown_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/emerald_shears.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/emerald_shears.json new file mode 100644 index 00000000..b1a43e9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/emerald_shears.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:shears" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json new file mode 100644 index 00000000..9ac01f62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:gray_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json new file mode 100644 index 00000000..5c720e27 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:white_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json new file mode 100644 index 00000000..31812ec8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:black_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json new file mode 100644 index 00000000..f35e7ceb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:black_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json new file mode 100644 index 00000000..aabda9e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json new file mode 100644 index 00000000..f2411b8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:blue_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json new file mode 100644 index 00000000..f5e75b88 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json new file mode 100644 index 00000000..922794e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:brown_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json new file mode 100644 index 00000000..864b84da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json new file mode 100644 index 00000000..c04276ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:cyan_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json new file mode 100644 index 00000000..a98104d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json new file mode 100644 index 00000000..f2e67e17 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:gray_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json new file mode 100644 index 00000000..39800d6c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json new file mode 100644 index 00000000..26af7fb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:green_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json new file mode 100644 index 00000000..6c9b7c52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json new file mode 100644 index 00000000..e53ee02a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:light_blue_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json new file mode 100644 index 00000000..5f015989 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json new file mode 100644 index 00000000..2da839f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:light_gray_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json new file mode 100644 index 00000000..35a962df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json new file mode 100644 index 00000000..e71c44ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:lime_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json new file mode 100644 index 00000000..4b436880 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json new file mode 100644 index 00000000..2a6bdee1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:magenta_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json new file mode 100644 index 00000000..216654be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json new file mode 100644 index 00000000..ed68f068 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:orange_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json new file mode 100644 index 00000000..e2798bf8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json new file mode 100644 index 00000000..12ebc19a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:pink_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json new file mode 100644 index 00000000..0489a2e4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json new file mode 100644 index 00000000..18588940 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:purple_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json new file mode 100644 index 00000000..538934b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json new file mode 100644 index 00000000..36873d69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:red_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json new file mode 100644 index 00000000..40f55341 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json new file mode 100644 index 00000000..112b8252 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:white_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json new file mode 100644 index 00000000..cf151b21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json new file mode 100644 index 00000000..de13011a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:yellow_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json new file mode 100644 index 00000000..70f283d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json new file mode 100644 index 00000000..94df51ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:gray_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json new file mode 100644 index 00000000..54840418 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:light_blue_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json new file mode 100644 index 00000000..eab23690 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:lime_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json new file mode 100644 index 00000000..e00f92e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:white_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json new file mode 100644 index 00000000..119be50d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:black_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json new file mode 100644 index 00000000..7bb9acf1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:blue_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json new file mode 100644 index 00000000..2fc8501f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:brown_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json new file mode 100644 index 00000000..0febaff2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cyan_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json new file mode 100644 index 00000000..6013e9f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:gray_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json new file mode 100644 index 00000000..a863d130 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:green_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json new file mode 100644 index 00000000..249b4eda --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_blue_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json new file mode 100644 index 00000000..b898e610 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_gray_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json new file mode 100644 index 00000000..92b7e333 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:lime_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json new file mode 100644 index 00000000..86e71b05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:magenta_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json new file mode 100644 index 00000000..ed84abb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:orange_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json new file mode 100644 index 00000000..8b6d25f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:pink_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json new file mode 100644 index 00000000..7f94490b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:purple_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json new file mode 100644 index 00000000..f47715a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json new file mode 100644 index 00000000..2c501ac8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:white_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json new file mode 100644 index 00000000..9b4ebacd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json new file mode 100644 index 00000000..2b316f8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:light_gray_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json new file mode 100644 index 00000000..11b7f4c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:orange_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json new file mode 100644 index 00000000..eb4ae654 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:pink_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json new file mode 100644 index 00000000..6d188395 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:red_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json new file mode 100644 index 00000000..700b02d5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:yellow_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json new file mode 100644 index 00000000..4672a43b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:blue_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json new file mode 100644 index 00000000..721e83fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:brown_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json new file mode 100644 index 00000000..79131b3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:cyan_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json new file mode 100644 index 00000000..30da9a07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:black_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json new file mode 100644 index 00000000..ef24b484 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:blue_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json new file mode 100644 index 00000000..1f1d00ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:brown_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json new file mode 100644 index 00000000..73d504e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cyan_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json new file mode 100644 index 00000000..bf3e84a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:gray_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json new file mode 100644 index 00000000..ac11236d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:green_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json new file mode 100644 index 00000000..758460d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_blue_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json new file mode 100644 index 00000000..6135a66a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_gray_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json new file mode 100644 index 00000000..09c3fe26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:lime_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json new file mode 100644 index 00000000..5763aed3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:magenta_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json new file mode 100644 index 00000000..258c0302 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:orange_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json new file mode 100644 index 00000000..a99bb284 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:pink_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json new file mode 100644 index 00000000..4e371b8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:purple_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json new file mode 100644 index 00000000..ba33447a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json new file mode 100644 index 00000000..486d9cb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:white_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json new file mode 100644 index 00000000..43264944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json new file mode 100644 index 00000000..474019ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:green_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json new file mode 100644 index 00000000..3d0995e8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:magenta_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json new file mode 100644 index 00000000..963b0fe2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:purple_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/shepherd/5/emerald_painting.json b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/5/emerald_painting.json new file mode 100644 index 00000000..f328d265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/shepherd/5/emerald_painting.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:painting" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/smith/1/coal_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/smith/1/coal_emerald.json new file mode 100644 index 00000000..ffb1bdce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/smith/1/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/smith/2/emerald_bell.json b/data/generated/V26_1/data/minecraft/villager_trade/smith/2/emerald_bell.json new file mode 100644 index 00000000..00193edd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/smith/2/emerald_bell.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bell" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 36.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json new file mode 100644 index 00000000..cb9d7dce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:iron_ingot" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json new file mode 100644 index 00000000..e1a4b5e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_axe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json new file mode 100644 index 00000000..bc2e2369 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_hoe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json new file mode 100644 index 00000000..7e64af98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_pickaxe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json new file mode 100644 index 00000000..8fa8259e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_shovel" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json new file mode 100644 index 00000000..6ca42afa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:diamond_hoe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json new file mode 100644 index 00000000..c046ed6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json @@ -0,0 +1,37 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json new file mode 100644 index 00000000..40c85262 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_pickaxe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json new file mode 100644 index 00000000..9384e2ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_shovel", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_shovel" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json new file mode 100644 index 00000000..b0484ea7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 30.0, + "id": "minecraft:flint" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json new file mode 100644 index 00000000..06030b60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json new file mode 100644 index 00000000..f44b278c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json new file mode 100644 index 00000000..15c8d677 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_shovel", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_shovel" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json new file mode 100644 index 00000000..1b1fccd1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_pickaxe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json new file mode 100644 index 00000000..67e48e7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json new file mode 100644 index 00000000..8046c39d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:acacia_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json new file mode 100644 index 00000000..39a75f46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:acacia_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_allium.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_allium.json new file mode 100644 index 00000000..5b9fa723 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_allium.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:allium" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json new file mode 100644 index 00000000..032239c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:azure_bluet" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json new file mode 100644 index 00000000..46193a94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:beetroot_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json new file mode 100644 index 00000000..91e8f598 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:birch_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json new file mode 100644 index 00000000..639ab413 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:birch_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json new file mode 100644 index 00000000..5fcb2a5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:black_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json new file mode 100644 index 00000000..b5e8cd19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:blue_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json new file mode 100644 index 00000000..cb889e02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_ice" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json new file mode 100644 index 00000000..2b490f64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:blue_orchid" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json new file mode 100644 index 00000000..f39aac30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brain_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json new file mode 100644 index 00000000..38ede856 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:brown_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json new file mode 100644 index 00000000..d3dfe6ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:brown_mushroom" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json new file mode 100644 index 00000000..f0969b02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:bubble_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json new file mode 100644 index 00000000..f1031026 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cactus" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json new file mode 100644 index 00000000..f0199a5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:cherry_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json new file mode 100644 index 00000000..56625bf5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cherry_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json new file mode 100644 index 00000000..c22ad824 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:cornflower" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json new file mode 100644 index 00000000..ac993de7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:cyan_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json new file mode 100644 index 00000000..c0dc174f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:dandelion" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json new file mode 100644 index 00000000..d4f30fd4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:dark_oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json new file mode 100644 index 00000000..7ac83b43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:dark_oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json new file mode 100644 index 00000000..25ec2364 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:tall_dry_grass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json new file mode 100644 index 00000000..e3193a09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json @@ -0,0 +1,36 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_pickaxe" + }, + "max_uses": 1.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fern.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fern.json new file mode 100644 index 00000000..2c520485 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fern.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:fern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json new file mode 100644 index 00000000..72b4e962 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:fire_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json new file mode 100644 index 00000000..f188db90 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:firefly_bush" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json new file mode 100644 index 00000000..0fa71121 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:tropical_fish_bucket" + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json new file mode 100644 index 00000000..ec087022 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:glowstone" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json new file mode 100644 index 00000000..cc1ae68c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:golden_dandelion" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json new file mode 100644 index 00000000..36b7755e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:gray_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json new file mode 100644 index 00000000..594f80f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:green_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json new file mode 100644 index 00000000..c1516eed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:gunpowder" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json new file mode 100644 index 00000000..a119f4e9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:horn_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json new file mode 100644 index 00000000..67436f82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:jungle_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json new file mode 100644 index 00000000..9ffd3863 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:jungle_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json new file mode 100644 index 00000000..582c1bed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:kelp" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json new file mode 100644 index 00000000..6ac79031 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:light_blue_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json new file mode 100644 index 00000000..8ac1c63e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:light_gray_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json new file mode 100644 index 00000000..6a9f0e1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:lily_of_the_valley" + }, + "max_uses": 7.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json new file mode 100644 index 00000000..1ca91e55 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 5, + "id": "minecraft:lily_pad" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json new file mode 100644 index 00000000..3583a16b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:lime_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json new file mode 100644 index 00000000..9e3a1c7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json @@ -0,0 +1,17 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:long_invisibility" + } + ], + "gives": { + "id": "minecraft:potion" + }, + "max_uses": 1.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json new file mode 100644 index 00000000..373bfc3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:magenta_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json new file mode 100644 index 00000000..5c1499b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:mangrove_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json new file mode 100644 index 00000000..1dd8c399 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:mangrove_propagule" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json new file mode 100644 index 00000000..c3f0b676 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:melon_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json new file mode 100644 index 00000000..bc5f8e21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:moss_block" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json new file mode 100644 index 00000000..bc1ed865 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:name_tag" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json new file mode 100644 index 00000000..22bf7efd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:nautilus_shell" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json new file mode 100644 index 00000000..2c0c20c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json new file mode 100644 index 00000000..6f5b67cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json new file mode 100644 index 00000000..d0209a86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:open_eyeblossom" + }, + "max_uses": 7.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json new file mode 100644 index 00000000..9d341688 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:orange_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json new file mode 100644 index 00000000..76a8c6ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:orange_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json new file mode 100644 index 00000000..dd138f6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:oxeye_daisy" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json new file mode 100644 index 00000000..2065c886 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:packed_ice" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json new file mode 100644 index 00000000..f3ae4bf8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:pale_hanging_moss" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json new file mode 100644 index 00000000..ab836036 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:pale_moss_block" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json new file mode 100644 index 00000000..bceeef69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:pale_oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json new file mode 100644 index 00000000..71e1e139 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pale_oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json new file mode 100644 index 00000000..79e5e616 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:pink_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json new file mode 100644 index 00000000..3840b561 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pink_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json new file mode 100644 index 00000000..e1585d16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:podzol" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json new file mode 100644 index 00000000..fdd6d311 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:pointed_dripstone" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json new file mode 100644 index 00000000..441099f4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:poppy" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json new file mode 100644 index 00000000..b9508a2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pufferfish_bucket" + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json new file mode 100644 index 00000000..5a04fead --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json @@ -0,0 +1,9 @@ +{ + "gives": { + "id": "minecraft:pumpkin" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json new file mode 100644 index 00000000..ee876771 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pumpkin_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json new file mode 100644 index 00000000..2650ba8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:purple_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json new file mode 100644 index 00000000..33db326c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:red_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json new file mode 100644 index 00000000..16cf92a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:red_mushroom" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json new file mode 100644 index 00000000..7a14dde6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:red_sand" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json new file mode 100644 index 00000000..a6c3067a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:red_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json new file mode 100644 index 00000000..478bc81c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:rooted_dirt" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sand.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sand.json new file mode 100644 index 00000000..e1b1f7e0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sand.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:sand" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json new file mode 100644 index 00000000..6c857a16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:sea_pickle" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json new file mode 100644 index 00000000..c236c938 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:slime_ball" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json new file mode 100644 index 00000000..70bade20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:small_dripleaf" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json new file mode 100644 index 00000000..9d8e074d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:spruce_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json new file mode 100644 index 00000000..a398ed51 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:spruce_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json new file mode 100644 index 00000000..7acee07c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:sugar_cane" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json new file mode 100644 index 00000000..24129e85 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:tube_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_vine.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_vine.json new file mode 100644 index 00000000..61a5c9b0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_vine.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:vine" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json new file mode 100644 index 00000000..94001c9f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:wheat_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json new file mode 100644 index 00000000..b0a50900 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:white_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json new file mode 100644 index 00000000..b809839b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:white_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json new file mode 100644 index 00000000..5c59b338 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:wildflowers" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json new file mode 100644 index 00000000..aeab8a98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:yellow_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json new file mode 100644 index 00000000..7ab98272 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:fermented_spider_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json new file mode 100644 index 00000000..ca02b17a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:hay_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json new file mode 100644 index 00000000..f821d50a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:milk_bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json new file mode 100644 index 00000000..2e87c3ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json @@ -0,0 +1,15 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "components": { + "minecraft:potion_contents": { + "potion": "minecraft:water" + } + }, + "id": "minecraft:potion" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json new file mode 100644 index 00000000..a29810cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:water_bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json new file mode 100644 index 00000000..917a5dd6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json @@ -0,0 +1,37 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_sword", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_sword" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json new file mode 100644 index 00000000..f10b1919 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_axe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json new file mode 100644 index 00000000..62249fc5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:flint" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json new file mode 100644 index 00000000..06030b60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json new file mode 100644 index 00000000..f44b278c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json new file mode 100644 index 00000000..54f826aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_sword", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_sword" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/angry.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/angry.json new file mode 100644 index 00000000..d40f8e5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/angry.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_angry.ambient", + "death_sound": "minecraft:entity.wolf_angry.death", + "growl_sound": "minecraft:entity.wolf_angry.growl", + "hurt_sound": "minecraft:entity.wolf_angry.hurt", + "pant_sound": "minecraft:entity.wolf_angry.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_angry.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/big.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/big.json new file mode 100644 index 00000000..f351344b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/big.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_big.ambient", + "death_sound": "minecraft:entity.wolf_big.death", + "growl_sound": "minecraft:entity.wolf_big.growl", + "hurt_sound": "minecraft:entity.wolf_big.hurt", + "pant_sound": "minecraft:entity.wolf_big.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_big.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/classic.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/classic.json new file mode 100644 index 00000000..19722b5c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/classic.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf.ambient", + "death_sound": "minecraft:entity.wolf.death", + "growl_sound": "minecraft:entity.wolf.growl", + "hurt_sound": "minecraft:entity.wolf.hurt", + "pant_sound": "minecraft:entity.wolf.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/cute.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/cute.json new file mode 100644 index 00000000..6c70f5be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/cute.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_cute.ambient", + "death_sound": "minecraft:entity.wolf_cute.death", + "growl_sound": "minecraft:entity.wolf_cute.growl", + "hurt_sound": "minecraft:entity.wolf_cute.hurt", + "pant_sound": "minecraft:entity.wolf_cute.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_cute.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/grumpy.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/grumpy.json new file mode 100644 index 00000000..4defaebf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/grumpy.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_grumpy.ambient", + "death_sound": "minecraft:entity.wolf_grumpy.death", + "growl_sound": "minecraft:entity.wolf_grumpy.growl", + "hurt_sound": "minecraft:entity.wolf_grumpy.hurt", + "pant_sound": "minecraft:entity.wolf_grumpy.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_grumpy.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/puglin.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/puglin.json new file mode 100644 index 00000000..4fd06e7c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/puglin.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_puglin.ambient", + "death_sound": "minecraft:entity.wolf_puglin.death", + "growl_sound": "minecraft:entity.wolf_puglin.growl", + "hurt_sound": "minecraft:entity.wolf_puglin.hurt", + "pant_sound": "minecraft:entity.wolf_puglin.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_puglin.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_sound_variant/sad.json b/data/generated/V26_1/data/minecraft/wolf_sound_variant/sad.json new file mode 100644 index 00000000..6ef04a4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_sound_variant/sad.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_sad.ambient", + "death_sound": "minecraft:entity.wolf_sad.death", + "growl_sound": "minecraft:entity.wolf_sad.growl", + "hurt_sound": "minecraft:entity.wolf_sad.hurt", + "pant_sound": "minecraft:entity.wolf_sad.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_sad.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/ashen.json b/data/generated/V26_1/data/minecraft/wolf_variant/ashen.json new file mode 100644 index 00000000..de853047 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/ashen.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_ashen_angry", + "tame": "minecraft:entity/wolf/wolf_ashen_tame", + "wild": "minecraft:entity/wolf/wolf_ashen" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_ashen_angry_baby", + "tame": "minecraft:entity/wolf/wolf_ashen_tame_baby", + "wild": "minecraft:entity/wolf/wolf_ashen_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:snowy_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/black.json b/data/generated/V26_1/data/minecraft/wolf_variant/black.json new file mode 100644 index 00000000..7af1c3da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/black.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_black_angry", + "tame": "minecraft:entity/wolf/wolf_black_tame", + "wild": "minecraft:entity/wolf/wolf_black" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_black_angry_baby", + "tame": "minecraft:entity/wolf/wolf_black_tame_baby", + "wild": "minecraft:entity/wolf/wolf_black_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_pine_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/chestnut.json b/data/generated/V26_1/data/minecraft/wolf_variant/chestnut.json new file mode 100644 index 00000000..3a943e0e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/chestnut.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_chestnut_angry", + "tame": "minecraft:entity/wolf/wolf_chestnut_tame", + "wild": "minecraft:entity/wolf/wolf_chestnut" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_chestnut_angry_baby", + "tame": "minecraft:entity/wolf/wolf_chestnut_tame_baby", + "wild": "minecraft:entity/wolf/wolf_chestnut_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_spruce_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/pale.json b/data/generated/V26_1/data/minecraft/wolf_variant/pale.json new file mode 100644 index 00000000..b288f6e7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/pale.json @@ -0,0 +1,17 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_angry", + "tame": "minecraft:entity/wolf/wolf_tame", + "wild": "minecraft:entity/wolf/wolf" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_angry_baby", + "tame": "minecraft:entity/wolf/wolf_tame_baby", + "wild": "minecraft:entity/wolf/wolf_baby" + }, + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/rusty.json b/data/generated/V26_1/data/minecraft/wolf_variant/rusty.json new file mode 100644 index 00000000..f67b6a6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/rusty.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_rusty_angry", + "tame": "minecraft:entity/wolf/wolf_rusty_tame", + "wild": "minecraft:entity/wolf/wolf_rusty" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_rusty_angry_baby", + "tame": "minecraft:entity/wolf/wolf_rusty_tame_baby", + "wild": "minecraft:entity/wolf/wolf_rusty_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_jungle" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/snowy.json b/data/generated/V26_1/data/minecraft/wolf_variant/snowy.json new file mode 100644 index 00000000..1e38d100 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/snowy.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_snowy_angry", + "tame": "minecraft:entity/wolf/wolf_snowy_tame", + "wild": "minecraft:entity/wolf/wolf_snowy" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_snowy_angry_baby", + "tame": "minecraft:entity/wolf/wolf_snowy_tame_baby", + "wild": "minecraft:entity/wolf/wolf_snowy_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:grove" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/spotted.json b/data/generated/V26_1/data/minecraft/wolf_variant/spotted.json new file mode 100644 index 00000000..3ac1ea47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/spotted.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_spotted_angry", + "tame": "minecraft:entity/wolf/wolf_spotted_tame", + "wild": "minecraft:entity/wolf/wolf_spotted" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_spotted_angry_baby", + "tame": "minecraft:entity/wolf/wolf_spotted_tame_baby", + "wild": "minecraft:entity/wolf/wolf_spotted_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_savanna" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/striped.json b/data/generated/V26_1/data/minecraft/wolf_variant/striped.json new file mode 100644 index 00000000..89e5fcbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/striped.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_striped_angry", + "tame": "minecraft:entity/wolf/wolf_striped_tame", + "wild": "minecraft:entity/wolf/wolf_striped" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_striped_angry_baby", + "tame": "minecraft:entity/wolf/wolf_striped_tame_baby", + "wild": "minecraft:entity/wolf/wolf_striped_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_badlands" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/wolf_variant/woods.json b/data/generated/V26_1/data/minecraft/wolf_variant/woods.json new file mode 100644 index 00000000..56d1912e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/wolf_variant/woods.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_woods_angry", + "tame": "minecraft:entity/wolf/wolf_woods_tame", + "wild": "minecraft:entity/wolf/wolf_woods" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_woods_angry_baby", + "tame": "minecraft:entity/wolf/wolf_woods_tame_baby", + "wild": "minecraft:entity/wolf/wolf_woods_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:forest" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/world_clock/overworld.json b/data/generated/V26_1/data/minecraft/world_clock/overworld.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/world_clock/overworld.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/world_clock/the_end.json b/data/generated/V26_1/data/minecraft/world_clock/the_end.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/world_clock/the_end.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/badlands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/badlands.json new file mode 100644 index 00000000..01bcc37d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/badlands.json @@ -0,0 +1,200 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.03, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/bamboo_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/biome/bamboo_jungle.json new file mode 100644 index 00000000..c565de8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/bamboo_jungle.json @@ -0,0 +1,216 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.bamboo_jungle" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo", + "minecraft:bamboo_vegetation", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 80 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/basalt_deltas.json b/data/generated/V26_1/data/minecraft/worldgen/biome/basalt_deltas.json new file mode 100644 index 00000000..a589bbac --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/basalt_deltas.json @@ -0,0 +1,101 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.basalt_deltas.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.basalt_deltas.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.basalt_deltas.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.basalt_deltas" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:white_ash" + }, + "probability": 0.118093334 + } + ], + "minecraft:visual/fog_color": "#685f70" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:delta", + "minecraft:small_basalt_columns", + "minecraft:large_basalt_columns" + ], + [], + [], + [ + "minecraft:basalt_blobs", + "minecraft:blackstone_blobs", + "minecraft:spring_delta", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed_double", + "minecraft:ore_gold_deltas", + "minecraft:ore_quartz_deltas", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 1, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 5, + "minCount": 2, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/beach.json b/data/generated/V26_1/data/minecraft/worldgen/biome/beach.json new file mode 100644 index 00000000..4f8f40c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/beach.json @@ -0,0 +1,162 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:turtle", + "maxCount": 5, + "minCount": 2, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/birch_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/birch_forest.json new file mode 100644 index 00000000..6f9e21cb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/birch_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#7aa5ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.6, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", + "minecraft:trees_birch", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/cherry_grove.json b/data/generated/V26_1/data/minecraft/worldgen/biome/cherry_grove.json new file mode 100644 index 00000000..0da8bec4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/cherry_grove.json @@ -0,0 +1,184 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.cherry_grove" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#5db7ef" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "foliage_color": "#b6db61", + "grass_color": "#b6db61", + "water_color": "#5db7ef" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_plain", + "minecraft:flower_cherry", + "minecraft:trees_cherry" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:pig", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/cold_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/cold_ocean.json new file mode 100644 index 00000000..d67da3bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/cold_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_cold", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/crimson_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/crimson_forest.json new file mode 100644 index 00000000..76322997 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/crimson_forest.json @@ -0,0 +1,109 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.crimson_forest.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.crimson_forest.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.crimson_forest.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.crimson_forest" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.025 + } + ], + "minecraft:visual/fog_color": "#330303" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:weeping_vines", + "minecraft:crimson_fungi", + "minecraft:crimson_forest_vegetation" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:hoglin", + "maxCount": 4, + "minCount": 3, + "weight": 9 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 3, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/dark_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/dark_forest.json new file mode 100644 index 00000000..6c2c775d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/dark_forest.json @@ -0,0 +1,192 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "dry_foliage_color": "#7b5334", + "grass_color_modifier": "dark_forest", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:dark_forest_vegetation", + "minecraft:forest_flowers", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_leaf_litter", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/deep_cold_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_cold_ocean.json new file mode 100644 index 00000000..156960d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_cold_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep_cold", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/deep_dark.json b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_dark.json new file mode 100644 index 00000000..6181520e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_dark.json @@ -0,0 +1,96 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.deep_dark" + } + }, + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:sculk_vein", + "minecraft:sculk_patch_deep_dark" + ], + [], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/deep_frozen_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_frozen_ocean.json new file mode 100644 index 00000000..89fbea8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_frozen_ocean.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5, + "temperature_modifier": "frozen" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json new file mode 100644 index 00000000..51c20569 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json @@ -0,0 +1,220 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041633" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#45adf2" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep_warm", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 8 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 8 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/deep_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_ocean.json new file mode 100644 index 00000000..3757b79b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/deep_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/desert.json b/data/generated/V26_1/data/minecraft/worldgen/biome/desert.json new file mode 100644 index 00000000..72d9f33e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/desert.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.desert" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:desert_well" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_desert", + "minecraft:patch_dead_bush_2", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_desert", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_desert" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 12 + }, + { + "type": "minecraft:camel", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 19 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:husk", + "maxCount": 4, + "minCount": 4, + "weight": 80 + }, + { + "type": "minecraft:parched", + "maxCount": 4, + "minCount": 4, + "weight": 50 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/dripstone_caves.json b/data/generated/V26_1/data/minecraft/worldgen/biome/dripstone_caves.json new file mode 100644 index 00000000..a699ca38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/dripstone_caves.json @@ -0,0 +1,172 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.dripstone_caves" + } + }, + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:large_dripstone" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper_large", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:dripstone_cluster", + "minecraft:pointed_dripstone" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 4, + "minCount": 4, + "weight": 95 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/end_barrens.json b/data/generated/V26_1/data/minecraft/worldgen/biome/end_barrens.json new file mode 100644 index 00000000..8d3af01e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/end_barrens.json @@ -0,0 +1,28 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/end_highlands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/end_highlands.json new file mode 100644 index 00000000..4097fe4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/end_highlands.json @@ -0,0 +1,43 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_gateway_return" + ], + [], + [], + [], + [], + [ + "minecraft:chorus_plant" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/end_midlands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/end_midlands.json new file mode 100644 index 00000000..8d3af01e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/end_midlands.json @@ -0,0 +1,28 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/eroded_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/eroded_badlands.json new file mode 100644 index 00000000..01bcc37d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/eroded_badlands.json @@ -0,0 +1,200 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.03, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/flower_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/flower_forest.json new file mode 100644 index 00000000..bf57d7b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/flower_forest.json @@ -0,0 +1,195 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.flower_forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_forest_flowers", + "minecraft:trees_flower_forest", + "minecraft:flower_flower_forest", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/forest.json new file mode 100644 index 00000000..16d5ea30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/forest.json @@ -0,0 +1,196 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:trees_birch_and_oak_leaf_litter", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_ocean.json new file mode 100644 index 00000000..b73c8396 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_ocean.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.0, + "temperature_modifier": "frozen" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_peaks.json b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_peaks.json new file mode 100644 index 00000000..ff35db62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_peaks.json @@ -0,0 +1,167 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.frozen_peaks" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#859dff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_river.json b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_river.json new file mode 100644 index 00000000..f6c4ddb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/frozen_river.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/grove.json b/data/generated/V26_1/data/minecraft/worldgen/biome/grove.json new file mode 100644 index 00000000..6be35462 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/grove.json @@ -0,0 +1,180 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.grove" + } + }, + "minecraft:visual/sky_color": "#81a0ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_grove", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:wolf", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 8 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/ice_spikes.json b/data/generated/V26_1/data/minecraft/worldgen/biome/ice_spikes.json new file mode 100644 index 00000000..bf846421 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/ice_spikes.json @@ -0,0 +1,179 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.07, + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:ice_spike", + "minecraft:ice_patch" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/jagged_peaks.json b/data/generated/V26_1/data/minecraft/worldgen/biome/jagged_peaks.json new file mode 100644 index 00000000..0f226949 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/jagged_peaks.json @@ -0,0 +1,167 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.jagged_peaks" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#859dff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/jungle.json b/data/generated/V26_1/data/minecraft/worldgen/biome/jungle.json new file mode 100644 index 00000000..0761ad5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/jungle.json @@ -0,0 +1,216 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.jungle" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo_light", + "minecraft:trees_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 3, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/lukewarm_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/lukewarm_ocean.json new file mode 100644 index 00000000..b0975c73 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/lukewarm_ocean.json @@ -0,0 +1,220 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041633" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#45adf2" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_warm", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/lush_caves.json b/data/generated/V26_1/data/minecraft/worldgen/biome/lush_caves.json new file mode 100644 index 00000000..338de57e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/lush_caves.json @@ -0,0 +1,178 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.lush_caves" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_clay", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:lush_caves_ceiling_vegetation", + "minecraft:cave_vines", + "minecraft:lush_caves_clay", + "minecraft:lush_caves_vegetation", + "minecraft:rooted_azalea_tree", + "minecraft:spore_blossom", + "minecraft:classic_vines_cave_feature" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [ + { + "type": "minecraft:axolotl", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/mangrove_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/biome/mangrove_swamp.json new file mode 100644 index 00000000..9db5edfb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/mangrove_swamp.json @@ -0,0 +1,198 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.swamp" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#4d7a60", + "minecraft:visual/water_fog_end_distance": { + "argument": 0.85, + "modifier": "multiply" + } + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "dry_foliage_color": "#7b5334", + "foliage_color": "#8db127", + "grass_color_modifier": "swamp", + "water_color": "#3a7a6a" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_grass", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_mangrove", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:seagrass_swamp", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 70 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:bogged", + "maxCount": 4, + "minCount": 4, + "weight": 30 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/meadow.json b/data/generated/V26_1/data/minecraft/worldgen/biome/meadow.json new file mode 100644 index 00000000..ef659111 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/meadow.json @@ -0,0 +1,182 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.meadow" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#0e4ecf" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_meadow", + "minecraft:flower_meadow", + "minecraft:trees_meadow", + "minecraft:wildflowers_meadow" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:donkey", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/mushroom_fields.json b/data/generated/V26_1/data/minecraft/worldgen/biome/mushroom_fields.json new file mode 100644 index 00000000..d3a2118d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/mushroom_fields.json @@ -0,0 +1,113 @@ +{ + "attributes": { + "minecraft:gameplay/can_pillager_patrol_spawn": false, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 1.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:mushroom_island_vegetation", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:mooshroom", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.9 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/nether_wastes.json b/data/generated/V26_1/data/minecraft/worldgen/biome/nether_wastes.json new file mode 100644 index 00000000..cbdcf9fe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/nether_wastes.json @@ -0,0 +1,113 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.nether_wastes.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.nether_wastes.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.nether_wastes.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.nether_wastes" + } + }, + "minecraft:visual/fog_color": "#330808" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 2 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 4, + "weight": 15 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/ocean.json new file mode 100644 index 00000000..d2cf1f52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_normal", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_birch_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_birch_forest.json new file mode 100644 index 00000000..9673f7c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_birch_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#7aa5ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.6, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", + "minecraft:birch_tall", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_pine_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_pine_taiga.json new file mode 100644 index 00000000..6a224a75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_pine_taiga.json @@ -0,0 +1,212 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.old_growth_taiga" + } + }, + "minecraft:visual/sky_color": "#7ca3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_pine_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 25 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json new file mode 100644 index 00000000..8fab75c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json @@ -0,0 +1,212 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.old_growth_taiga" + } + }, + "minecraft:visual/sky_color": "#7da3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_spruce_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/pale_garden.json b/data/generated/V26_1/data/minecraft/worldgen/biome/pale_garden.json new file mode 100644 index 00000000..29a155d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/pale_garden.json @@ -0,0 +1,163 @@ +{ + "attributes": { + "minecraft:audio/background_music": {}, + "minecraft:audio/music_volume": 0.0, + "minecraft:visual/fog_color": "#817770", + "minecraft:visual/sky_color": "#b9b9b9", + "minecraft:visual/water_fog_color": "#556980" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "dry_foliage_color": "#a0a69c", + "foliage_color": "#878d76", + "grass_color": "#778272", + "water_color": "#76889d" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:pale_garden_vegetation", + "minecraft:pale_moss_patch", + "minecraft:pale_garden_flowers", + "minecraft:flower_pale_garden", + "minecraft:patch_grass_forest", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/plains.json b/data/generated/V26_1/data/minecraft/worldgen/biome/plains.json new file mode 100644 index 00000000..18d3838b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/plains.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_bush", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/river.json b/data/generated/V26_1/data/minecraft/worldgen/biome/river.json new file mode 100644 index 00000000..32bcd5a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/river.json @@ -0,0 +1,195 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_river" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/savanna.json b/data/generated/V26_1/data/minecraft/worldgen/biome/savanna.json new file mode 100644 index 00000000..ff682a5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/savanna.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/savanna_plateau.json b/data/generated/V26_1/data/minecraft/worldgen/biome/savanna_plateau.json new file mode 100644 index 00000000..5d79d69a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/savanna_plateau.json @@ -0,0 +1,219 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:llama", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/small_end_islands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/small_end_islands.json new file mode 100644 index 00000000..435c4fb4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/small_end_islands.json @@ -0,0 +1,32 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [ + "minecraft:end_island_decorated" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_beach.json b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_beach.json new file mode 100644 index 00000000..97e85854 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_beach.json @@ -0,0 +1,155 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.05 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_plains.json b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_plains.json new file mode 100644 index 00000000..a2739d4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_plains.json @@ -0,0 +1,182 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.07, + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_slopes.json b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_slopes.json new file mode 100644 index 00000000..f6563814 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_slopes.json @@ -0,0 +1,174 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.snowy_slopes" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#829fff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_taiga.json new file mode 100644 index 00000000..94c7f5b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/snowy_taiga.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#839eff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_rare" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/soul_sand_valley.json b/data/generated/V26_1/data/minecraft/worldgen/biome/soul_sand_valley.json new file mode 100644 index 00000000..b1426a14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/soul_sand_valley.json @@ -0,0 +1,126 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.soul_sand_valley.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.soul_sand_valley.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.soul_sand_valley.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.soul_sand_valley" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:ash" + }, + "probability": 0.00625 + } + ], + "minecraft:visual/fog_color": "#1b4745" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [ + "minecraft:basalt_pillar" + ], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:patch_crimson_roots", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_soul_sand", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "minecraft:enderman": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:ghast": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:skeleton": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:strider": { + "charge": 0.7, + "energy_budget": 0.15 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 20 + }, + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/sparse_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/biome/sparse_jungle.json new file mode 100644 index 00000000..73ed818f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/sparse_jungle.json @@ -0,0 +1,202 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.sparse_jungle" + } + }, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_sparse_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon_sparse" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/stony_peaks.json b/data/generated/V26_1/data/minecraft/worldgen/biome/stony_peaks.json new file mode 100644 index 00000000..d2d076ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/stony_peaks.json @@ -0,0 +1,158 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.stony_peaks" + } + }, + "minecraft:visual/sky_color": "#76a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/stony_shore.json b/data/generated/V26_1/data/minecraft/worldgen/biome/stony_shore.json new file mode 100644 index 00000000..522f3d60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/stony_shore.json @@ -0,0 +1,155 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/sunflower_plains.json b/data/generated/V26_1/data/minecraft/worldgen/biome/sunflower_plains.json new file mode 100644 index 00000000..a0d75fa0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/sunflower_plains.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_sunflower", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/swamp.json b/data/generated/V26_1/data/minecraft/worldgen/biome/swamp.json new file mode 100644 index 00000000..69225880 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/swamp.json @@ -0,0 +1,221 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.swamp" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#232317", + "minecraft:visual/water_fog_end_distance": { + "argument": 0.85, + "modifier": "multiply" + } + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "dry_foliage_color": "#7b5334", + "foliage_color": "#6a7039", + "grass_color_modifier": "swamp", + "water_color": "#617b64" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_swamp", + "minecraft:flower_swamp", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:brown_mushroom_swamp", + "minecraft:red_mushroom_swamp", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_swamp", + "minecraft:patch_pumpkin", + "minecraft:patch_firefly_bush_swamp", + "minecraft:patch_firefly_bush_near_water_swamp", + "minecraft:seagrass_swamp" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 70 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:bogged", + "maxCount": 4, + "minCount": 4, + "weight": 30 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/taiga.json b/data/generated/V26_1/data/minecraft/worldgen/biome/taiga.json new file mode 100644 index 00000000..ebf9ff26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/taiga.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/the_end.json b/data/generated/V26_1/data/minecraft/worldgen/biome/the_end.json new file mode 100644 index 00000000..8f82e277 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/the_end.json @@ -0,0 +1,44 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_spike" + ], + [], + [], + [], + [], + [], + [ + "minecraft:end_platform" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/the_void.json b/data/generated/V26_1/data/minecraft/worldgen/biome/the_void.json new file mode 100644 index 00000000..9a3231c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/the_void.json @@ -0,0 +1,38 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:void_start_platform" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/warm_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/biome/warm_ocean.json new file mode 100644 index 00000000..4e3f2505 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/warm_ocean.json @@ -0,0 +1,215 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041f33" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#43d5ee" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:warm_ocean_vegetation", + "minecraft:seagrass_warm", + "minecraft:sea_pickle" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 15 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/warped_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/warped_forest.json new file mode 100644 index 00000000..f3972d0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/warped_forest.json @@ -0,0 +1,104 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.warped_forest.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.warped_forest.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.warped_forest.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.warped_forest" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:warped_spore" + }, + "probability": 0.01428 + } + ], + "minecraft:visual/fog_color": "#1a051a" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:warped_fungi", + "minecraft:warped_forest_vegetation", + "minecraft:nether_sprouts", + "minecraft:twisting_vines" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "minecraft:enderman": { + "charge": 1.0, + "energy_budget": 0.12 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_forest.json b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_forest.json new file mode 100644 index 00000000..09f1d06e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_forest", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_gravelly_hills.json b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_gravelly_hills.json new file mode 100644 index 00000000..1228ab07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_gravelly_hills.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_hills.json b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_hills.json new file mode 100644 index 00000000..1228ab07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_hills.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_savanna.json new file mode 100644 index 00000000..84ba7b26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/windswept_savanna.json @@ -0,0 +1,206 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_savanna", + "minecraft:flower_default", + "minecraft:patch_grass_normal", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/biome/wooded_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/biome/wooded_badlands.json new file mode 100644 index 00000000..c61c41c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/biome/wooded_badlands.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.04, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_badlands", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_carver/canyon.json b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/canyon.json new file mode 100644 index 00000000..0e00c48d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/canyon.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:canyon", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:warped_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.01, + "replaceable": "#minecraft:overworld_carver_replaceables", + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.75 + }, + "horizontal_radius_factor": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.75 + }, + "thickness": { + "type": "minecraft:trapezoid", + "max": 6.0, + "min": 0.0, + "plateau": 2.0 + }, + "vertical_radius_center_factor": 0.0, + "vertical_radius_default_factor": 1.0, + "width_smoothness": 3 + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "max_exclusive": 0.125, + "min_inclusive": -0.125 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 67 + }, + "min_inclusive": { + "absolute": 10 + } + }, + "yScale": 3.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave.json b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave.json new file mode 100644 index 00000000..5beb3f63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "max_exclusive": -0.4, + "min_inclusive": -1.0 + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.4, + "min_inclusive": 0.7 + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.3, + "min_inclusive": 0.8 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 8 + } + }, + "yScale": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave_extra_underground.json b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 00000000..bc1ac71b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "max_exclusive": -0.4, + "min_inclusive": -1.0 + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.4, + "min_inclusive": 0.7 + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.3, + "min_inclusive": 0.8 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 47 + }, + "min_inclusive": { + "above_bottom": 8 + } + }, + "yScale": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_carver/nether_cave.json b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/nether_cave.json new file mode 100644 index 00000000..5cd88ba5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_carver/nether_cave.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:nether_cave", + "config": { + "floor_level": -0.7, + "horizontal_radius_multiplier": 1.0, + "lava_level": { + "above_bottom": 10 + }, + "probability": 0.2, + "replaceable": "#minecraft:nether_carver_replaceables", + "vertical_radius_multiplier": 1.0, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 1 + }, + "min_inclusive": { + "absolute": 0 + } + }, + "yScale": 0.5 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/acacia.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/acacia.json new file mode 100644 index 00000000..ddad3fde --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/acacia.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:acacia_foliage_placer", + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:acacia_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:forking_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 2 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:acacia_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/amethyst_geode.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/amethyst_geode.json new file mode 100644 index 00000000..46a48fe9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/amethyst_geode.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:budding_amethyst" + } + }, + "cannot_replace": "#minecraft:features_cannot_replace", + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:amethyst_block" + } + }, + "inner_placements": [ + { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + ], + "invalid_blocks": "#minecraft:geode_invalid_blocks", + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:calcite" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:smooth_basalt" + } + } + }, + "crack": { + "base_crack_size": 2.0, + "crack_point_offset": 2, + "generate_crack_chance": 0.95 + }, + "distribution_points": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 3 + }, + "invalid_blocks_threshold": 1, + "layers": { + "filling": 1.7, + "inner_layer": 2.2, + "middle_layer": 3.2, + "outer_layer": 4.2 + }, + "max_gen_offset": 16, + "min_gen_offset": -16, + "noise_multiplier": 0.05, + "outer_wall_distance": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 4 + }, + "placements_require_layer0_alternate": true, + "point_offset": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + }, + "use_alternate_layer0_chance": 0.083, + "use_potential_placements_chance": 0.35 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/azalea_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/azalea_tree.json new file mode 100644 index 00000000..df04fe93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/azalea_tree.json @@ -0,0 +1,74 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rooted_dirt" + } + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 50, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:azalea_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + }, + "weight": 3 + }, + { + "data": { + "Name": "minecraft:flowering_azalea_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + }, + "weight": 1 + } + ] + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:bending_trunk_placer", + "base_height": 4, + "bend_length": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + }, + "height_rand_a": 2, + "height_rand_b": 0, + "min_height_for_leaves": 3 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json new file mode 100644 index 00000000..5ac3632f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:bamboo", + "config": { + "probability": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json new file mode 100644 index 00000000..308ada01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:bamboo", + "config": { + "probability": 0.2 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json new file mode 100644 index 00000000..32eae08f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": { + "feature": "minecraft:grass_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:podzol", + "offset": [ + 0, + -1, + 0 + ] + } + } + ] + } + } + ] + }, + "features": [ + { + "chance": 0.05, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.15, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.7, + "feature": "minecraft:mega_jungle_tree_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_blobs.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_blobs.json new file mode 100644 index 00000000..593df33e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_blobs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:netherrack" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_pillar.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_pillar.json new file mode 100644 index 00000000..f32f9a66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/basalt_pillar.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:basalt_pillar", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/berry_bush.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/berry_bush.json new file mode 100644 index 00000000..f98acb6d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/berry_bush.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sweet_berry_bush", + "Properties": { + "age": "3" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch.json new file mode 100644 index 00000000..f0f8b28c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002.json new file mode 100644 index 00000000..e33d9266 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json new file mode 100644 index 00000000..4d7e70eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json @@ -0,0 +1,372 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_002.json new file mode 100644 index 00000000..1992f89e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_002.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_005.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_005.json new file mode 100644 index 00000000..9b03d14e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_bees_005.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json new file mode 100644 index 00000000..45ff9d96 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json @@ -0,0 +1,368 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_tall.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_tall.json new file mode 100644 index 00000000..ee8d6377 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/birch_tall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:birch_bees_0002", + "features": [ + { + "chance": 0.00625, + "feature": "minecraft:fallen_super_birch_tree" + }, + { + "chance": 0.5, + "feature": "minecraft:super_birch_bees_0002" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_birch_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blackstone_blobs.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blackstone_blobs.json new file mode 100644 index 00000000..99b2568f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blackstone_blobs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "state": { + "Name": "minecraft:blackstone" + }, + "target": { + "Name": "minecraft:netherrack" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blue_ice.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blue_ice.json new file mode 100644 index 00000000..d26c9f5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/blue_ice.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:blue_ice", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bonus_chest.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bonus_chest.json new file mode 100644 index 00000000..2e409dd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bonus_chest.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:bonus_chest", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/brown_mushroom.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/brown_mushroom.json new file mode 100644 index 00000000..f33c2bab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/brown_mushroom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:brown_mushroom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bush.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bush.json new file mode 100644 index 00000000..73d41379 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cactus.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cactus.json new file mode 100644 index 00000000..2e6ee195 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cactus.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 3, + "min_inclusive": 1 + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + }, + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 3 + }, + { + "data": 1, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cactus_flower" + } + } + } + ], + "prioritize_tip": false + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine.json new file mode 100644 index 00000000..53979ce5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine.json @@ -0,0 +1,104 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "weight": 3 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 0 + }, + "weight": 10 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "true" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json new file mode 100644 index 00000000..9a0218a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json @@ -0,0 +1,96 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 0 + }, + "weight": 5 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 1 + }, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "true" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry.json new file mode 100644 index 00000000..ca40a8ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:cherry_foliage_placer", + "corner_hole_chance": 0.25, + "hanging_leaves_chance": 0.16666667, + "hanging_leaves_extension_chance": 0.33333334, + "height": 5, + "offset": 0, + "radius": 4, + "wide_bottom_layer_hole_chance": 0.25 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:cherry_trunk_placer", + "base_height": 7, + "branch_count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 1 + }, + { + "data": 2, + "weight": 1 + }, + { + "data": 3, + "weight": 1 + } + ] + }, + "branch_end_offset_from_top": { + "type": "minecraft:uniform", + "max_inclusive": 0, + "min_inclusive": -1 + }, + "branch_horizontal_length": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "branch_start_offset_from_top": { + "max_inclusive": -3, + "min_inclusive": -4 + }, + "height_rand_a": 1, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry_bees_005.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry_bees_005.json new file mode 100644 index 00000000..afaa36ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/cherry_bees_005.json @@ -0,0 +1,105 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:cherry_foliage_placer", + "corner_hole_chance": 0.25, + "hanging_leaves_chance": 0.16666667, + "hanging_leaves_extension_chance": 0.33333334, + "height": 5, + "offset": 0, + "radius": 4, + "wide_bottom_layer_hole_chance": 0.25 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:cherry_trunk_placer", + "base_height": 7, + "branch_count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 1 + }, + { + "data": 2, + "weight": 1 + }, + { + "data": 3, + "weight": 1 + } + ] + }, + "branch_end_offset_from_top": { + "type": "minecraft:uniform", + "max_inclusive": 0, + "min_inclusive": -1 + }, + "branch_horizontal_length": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "branch_start_offset_from_top": { + "max_inclusive": -3, + "min_inclusive": -4 + }, + "height_rand_a": 1, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/chorus_plant.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/chorus_plant.json new file mode 100644 index 00000000..7c7b9e33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/chorus_plant.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:chorus_plant", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json new file mode 100644 index 00000000..db6f05ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:waterlogged_vegetation_patch", + "config": { + "depth": 3, + "extra_bottom_block_chance": 0.8, + "extra_edge_column_chance": 0.7, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "replaceable": "#minecraft:lush_ground_replaceable", + "surface": "floor", + "vegetation_chance": 0.1, + "vegetation_feature": { + "feature": "minecraft:dripleaf", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json new file mode 100644 index 00000000..e0120c02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 3, + "extra_bottom_block_chance": 0.8, + "extra_edge_column_chance": 0.7, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "replaceable": "#minecraft:lush_ground_replaceable", + "surface": "floor", + "vegetation_chance": 0.05, + "vegetation_feature": { + "feature": "minecraft:dripleaf", + "placement": [] + }, + "vertical_range": 2, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json new file mode 100644 index 00000000..d40be6a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 87 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 11 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json new file mode 100644 index 00000000..bc5bc1d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 87 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 11 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus.json new file mode 100644 index 00000000..420cc88b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:nether_wart_block" + }, + "planted": false, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:crimson_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:crimson_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json new file mode 100644 index 00000000..18a41976 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:nether_wart_block" + }, + "planted": true, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:crimson_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:crimson_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_roots.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_roots.json new file mode 100644 index 00000000..4fa03a60 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/crimson_roots.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:crimson_roots" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json new file mode 100644 index 00000000..ba26b1be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_leaf_litter", + "features": [ + { + "chance": 0.025, + "feature": { + "feature": "minecraft:huge_brown_mushroom", + "placement": [] + } + }, + { + "chance": 0.05, + "feature": { + "feature": "minecraft:huge_red_mushroom", + "placement": [] + } + }, + { + "chance": 0.6666667, + "feature": "minecraft:dark_oak_leaf_litter" + }, + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_leaf_litter" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_leaf_litter" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak.json new file mode 100644 index 00000000..f93f372b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "limit": 1, + "lower_size": 0, + "middle_size": 1, + "upper_limit": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json new file mode 100644 index 00000000..4f6e2a42 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json @@ -0,0 +1,369 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "limit": 1, + "lower_size": 0, + "middle_size": 1, + "upper_limit": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dead_bush.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dead_bush.json new file mode 100644 index 00000000..a29a0603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dead_bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dead_bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/delta.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/delta.json new file mode 100644 index 00000000..18e97973 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/delta.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:magma_block" + }, + "rim_size": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "size": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/desert_well.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/desert_well.json new file mode 100644 index 00000000..f0f1ba22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/desert_well.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:desert_well", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_clay.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_clay.json new file mode 100644 index 00000000..b9f2731f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_clay.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 1, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:clay" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_grass.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_grass.json new file mode 100644 index 00000000..0b736220 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_grass.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:rule_based_state_provider", + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + }, + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:solid", + "offset": [ + 0, + 1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water", + "offset": [ + 0, + 1, + 0 + ] + } + ] + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + } + ] + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:mud" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_gravel.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_gravel.json new file mode 100644 index 00000000..b773c845 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_gravel.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:gravel" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_sand.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_sand.json new file mode 100644 index 00000000..d359ec34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/disk_sand.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:rule_based_state_provider", + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sand" + } + }, + "rules": [ + { + "if_true": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air", + "offset": [ + 0, + -1, + 0 + ] + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sandstone" + } + } + } + ] + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripleaf.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripleaf.json new file mode 100644 index 00000000..027310a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripleaf.json @@ -0,0 +1,336 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + } + ] + } + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "east", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "west", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "south", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "north", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripstone_cluster.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripstone_cluster.json new file mode 100644 index 00000000..82edfafd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dripstone_cluster.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:dripstone_cluster", + "config": { + "chance_of_dripstone_column_at_max_distance_from_center": 0.1, + "density": { + "type": "minecraft:uniform", + "max_exclusive": 0.7, + "min_inclusive": 0.3 + }, + "dripstone_block_layer_thickness": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "floor_to_ceiling_search_range": 12, + "height": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 3 + }, + "height_deviation": 3, + "max_distance_from_center_affecting_height_bias": 8, + "max_distance_from_edge_affecting_chance_of_dripstone_column": 3, + "max_stalagmite_stalactite_height_diff": 1, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 8, + "min_inclusive": 2 + }, + "wetness": { + "type": "minecraft:clamped_normal", + "deviation": 0.3, + "max": 0.9, + "mean": 0.1, + "min": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dry_grass.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dry_grass.json new file mode 100644 index 00000000..2106a87e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/dry_grass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_dry_grass" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:tall_dry_grass" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json new file mode 100644 index 00000000..34e7d25f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:end_gateway", + "config": { + "exact": false + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_return.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_return.json new file mode 100644 index 00000000..664a6c1a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_gateway_return.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:end_gateway", + "config": { + "exact": true, + "exit": [ + 100, + 50, + 0 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_island.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_island.json new file mode 100644 index 00000000..af26c1c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_island.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:end_island", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_platform.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_platform.json new file mode 100644 index 00000000..8a622fc7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_platform.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:end_platform", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_spike.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_spike.json new file mode 100644 index 00000000..ee498033 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/end_spike.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:end_spike", + "config": { + "crystal_invulnerable": false, + "spikes": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json new file mode 100644 index 00000000..1f95f2b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 8, + "min_inclusive": 5 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json new file mode 100644 index 00000000..29cfe152 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 11, + "min_inclusive": 4 + }, + "stump_decorators": [ + { + "type": "minecraft:trunk_vine" + } + ], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json new file mode 100644 index 00000000..59e49f03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + }, + "stump_decorators": [ + { + "type": "minecraft:trunk_vine" + } + ], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json new file mode 100644 index 00000000..30113ea3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 10, + "min_inclusive": 6 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json new file mode 100644 index 00000000..a189ea4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 15, + "min_inclusive": 5 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak.json new file mode 100644 index 00000000..0744ef48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json new file mode 100644 index 00000000..b872d68a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..49c415f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json @@ -0,0 +1,373 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json new file mode 100644 index 00000000..306ef341 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json new file mode 100644 index 00000000..2ce2a798 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json new file mode 100644 index 00000000..b7213fcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json @@ -0,0 +1,369 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/firefly_bush.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/firefly_bush.json new file mode 100644 index 00000000..650524b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/firefly_bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:firefly_bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_cherry.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_cherry.json new file mode 100644 index 00000000..55427ee4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_cherry.json @@ -0,0 +1,170 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "4" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_default.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_default.json new file mode 100644 index 00000000..7b503c25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_default.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:poppy" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:dandelion" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_flower_forest.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_flower_forest.json new file mode 100644 index 00000000..e3fc9fd0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_flower_forest.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:noise_provider", + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": 0 + }, + "scale": 0.020833334, + "seed": 2345, + "states": [ + { + "Name": "minecraft:dandelion" + }, + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:allium" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:red_tulip" + }, + { + "Name": "minecraft:orange_tulip" + }, + { + "Name": "minecraft:white_tulip" + }, + { + "Name": "minecraft:pink_tulip" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:cornflower" + }, + { + "Name": "minecraft:lily_of_the_valley" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_meadow.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_meadow.json new file mode 100644 index 00000000..443b415a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_meadow.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:dual_noise_provider", + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 + }, + "scale": 1.0, + "seed": 2345, + "slow_noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": -10 + }, + "slow_scale": 1.0, + "states": [ + { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + { + "Name": "minecraft:allium" + }, + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:dandelion" + }, + { + "Name": "minecraft:cornflower" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:short_grass" + } + ], + "variety": [ + 1, + 3 + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_pale_garden.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_pale_garden.json new file mode 100644 index 00000000..77081953 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_pale_garden.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:simple_block", + "config": { + "schedule_tick": true, + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:closed_eyeblossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_plain.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_plain.json new file mode 100644 index 00000000..382e8f5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_plain.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:noise_threshold_provider", + "default_state": { + "Name": "minecraft:dandelion" + }, + "high_chance": 0.33333334, + "high_states": [ + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:cornflower" + } + ], + "low_states": [ + { + "Name": "minecraft:orange_tulip" + }, + { + "Name": "minecraft:red_tulip" + }, + { + "Name": "minecraft:pink_tulip" + }, + { + "Name": "minecraft:white_tulip" + } + ], + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": 0 + }, + "scale": 0.005, + "seed": 2345, + "threshold": -0.8 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_swamp.json new file mode 100644 index 00000000..aa64b528 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/flower_swamp.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:blue_orchid" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_flowers.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_flowers.json new file mode 100644 index 00000000..96a67ba0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_flowers.json @@ -0,0 +1,180 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lilac", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rose_bush", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:peony", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lily_of_the_valley" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_rock.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_rock.json new file mode 100644 index 00000000..663b935c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/forest_rock.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:block_blob", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:forest_rock_can_place_on" + }, + "state": { + "Name": "minecraft:mossy_cobblestone" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_coal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_coal.json new file mode 100644 index 00000000..829b5dbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_coal.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:fossil", + "config": { + "fossil_processors": "minecraft:fossil_rot", + "fossil_structures": [ + "minecraft:fossil/spine_1", + "minecraft:fossil/spine_2", + "minecraft:fossil/spine_3", + "minecraft:fossil/spine_4", + "minecraft:fossil/skull_1", + "minecraft:fossil/skull_2", + "minecraft:fossil/skull_3", + "minecraft:fossil/skull_4" + ], + "max_empty_corners_allowed": 4, + "overlay_processors": "minecraft:fossil_coal", + "overlay_structures": [ + "minecraft:fossil/spine_1_coal", + "minecraft:fossil/spine_2_coal", + "minecraft:fossil/spine_3_coal", + "minecraft:fossil/spine_4_coal", + "minecraft:fossil/skull_1_coal", + "minecraft:fossil/skull_2_coal", + "minecraft:fossil/skull_3_coal", + "minecraft:fossil/skull_4_coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_diamonds.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_diamonds.json new file mode 100644 index 00000000..36530950 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/fossil_diamonds.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:fossil", + "config": { + "fossil_processors": "minecraft:fossil_rot", + "fossil_structures": [ + "minecraft:fossil/spine_1", + "minecraft:fossil/spine_2", + "minecraft:fossil/spine_3", + "minecraft:fossil/spine_4", + "minecraft:fossil/skull_1", + "minecraft:fossil/skull_2", + "minecraft:fossil/skull_3", + "minecraft:fossil/skull_4" + ], + "max_empty_corners_allowed": 4, + "overlay_processors": "minecraft:fossil_diamonds", + "overlay_structures": [ + "minecraft:fossil/spine_1_coal", + "minecraft:fossil/spine_2_coal", + "minecraft:fossil/spine_3_coal", + "minecraft:fossil/spine_4_coal", + "minecraft:fossil/skull_1_coal", + "minecraft:fossil/skull_2_coal", + "minecraft:fossil/skull_3_coal", + "minecraft:fossil/skull_4_coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/freeze_top_layer.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/freeze_top_layer.json new file mode 100644 index 00000000..3b684589 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/freeze_top_layer.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:freeze_top_layer", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glow_lichen.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glow_lichen.json new file mode 100644 index 00000000..fb97dabe --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glow_lichen.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:multiface_growth", + "config": { + "block": "minecraft:glow_lichen", + "can_be_placed_on": [ + "minecraft:stone", + "minecraft:andesite", + "minecraft:diorite", + "minecraft:granite", + "minecraft:dripstone_block", + "minecraft:calcite", + "minecraft:tuff", + "minecraft:deepslate" + ], + "can_place_on_ceiling": true, + "can_place_on_floor": false, + "can_place_on_wall": true, + "chance_of_spreading": 0.5, + "search_range": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glowstone_extra.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glowstone_extra.json new file mode 100644 index 00000000..a1a14276 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/glowstone_extra.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:glowstone_blob", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass.json new file mode 100644 index 00000000..7539bcec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:short_grass" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass_jungle.json new file mode 100644 index 00000000..22c7b2f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/grass_jungle.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 3 + }, + { + "data": { + "Name": "minecraft:fern" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json new file mode 100644 index 00000000..4a283b00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:huge_brown_mushroom", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:huge_brown_mushroom_can_place_on" + }, + "cap_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:brown_mushroom_block", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + "foliage_radius": 3, + "stem_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mushroom_stem", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json new file mode 100644 index 00000000..91e79d7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:huge_red_mushroom", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:huge_red_mushroom_can_place_on" + }, + "cap_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:red_mushroom_block", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + "foliage_radius": 2, + "stem_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mushroom_stem", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_patch.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_patch.json new file mode 100644 index 00000000..b76c07dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_patch.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 1, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:packed_ice" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:coarse_dirt", + "minecraft:mycelium", + "minecraft:snow_block", + "minecraft:ice" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_spike.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_spike.json new file mode 100644 index 00000000..38f9889e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ice_spike.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:spike", + "config": { + "can_place_on": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:snow_block" + }, + "can_replace": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:ice_spike_replaceable" + }, + "state": { + "Name": "minecraft:packed_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_blue.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_blue.json new file mode 100644 index 00000000..27ed8fe5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_blue.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:iceberg", + "config": { + "state": { + "Name": "minecraft:blue_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_packed.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_packed.json new file mode 100644 index 00000000..2f777514 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/iceberg_packed.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:iceberg", + "config": { + "state": { + "Name": "minecraft:packed_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_bush.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_bush.json new file mode 100644 index 00000000..7a53255a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_bush.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:bush_foliage_placer", + "height": 2, + "offset": 1, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "lower_size": 0, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 1, + "height_rand_a": 0, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree.json new file mode 100644 index 00000000..a137025d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:cocoa", + "probability": 0.2 + }, + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 8, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json new file mode 100644 index 00000000..a374daec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 8, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/kelp.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/kelp.json new file mode 100644 index 00000000..c07640df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/kelp.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:kelp", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lake_lava.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lake_lava.json new file mode 100644 index 00000000..696af9c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lake_lava.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:lake", + "config": { + "barrier": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:stone" + } + }, + "fluid": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_basalt_columns.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_basalt_columns.json new file mode 100644 index 00000000..6ae5eda6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_basalt_columns.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "max_inclusive": 10, + "min_inclusive": 5 + }, + "reach": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_dripstone.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_dripstone.json new file mode 100644 index 00000000..0987f947 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_dripstone.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 3 + }, + "floor_to_ceiling_search_range": 30, + "height_scale": { + "type": "minecraft:uniform", + "max_exclusive": 2.0, + "min_inclusive": 0.4 + }, + "max_column_radius_to_cave_height_ratio": 0.33, + "min_bluntness_for_wind": 0.6, + "min_radius_for_wind": 4, + "stalactite_bluntness": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.3 + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.4 + }, + "wind_speed": { + "type": "minecraft:uniform", + "max_exclusive": 0.3, + "min_inclusive": 0.0 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_fern.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_fern.json new file mode 100644 index 00000000..99a5c2b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/large_fern.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:large_fern", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/leaf_litter.json new file mode 100644 index 00000000..73f02e0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/leaf_litter.json @@ -0,0 +1,130 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lush_caves_clay.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lush_caves_clay.json new file mode 100644 index 00000000..e4d495f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/lush_caves_clay.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:random_boolean_selector", + "config": { + "feature_false": { + "feature": "minecraft:clay_pool_with_dripleaves", + "placement": [] + }, + "feature_true": { + "feature": "minecraft:clay_with_dripleaves", + "placement": [] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove.json new file mode 100644 index 00000000..55424e95 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove.json @@ -0,0 +1,163 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.125 + }, + { + "type": "minecraft:attached_to_leaves", + "block_provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + } + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + "directions": [ + "down" + ], + "exclusion_radius_xz": 1, + "exclusion_radius_y": 0, + "probability": 0.14, + "required_empty_blocks": 2 + }, + { + "type": "minecraft:beehive", + "probability": 0.01 + } + ], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 70, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "lower_size": 0, + "upper_size": 2 + }, + "root_placer": { + "type": "minecraft:mangrove_root_placer", + "above_root_placement": { + "above_root_placement_chance": 0.5, + "above_root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_carpet" + } + } + }, + "mangrove_root_placement": { + "can_grow_through": "#minecraft:mangrove_roots_can_grow_through", + "max_root_length": 15, + "max_root_width": 8, + "muddy_roots_in": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ], + "muddy_roots_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:muddy_mangrove_roots", + "Properties": { + "axis": "y" + } + } + }, + "random_skew_chance": 0.2 + }, + "root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "trunk_offset_y": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "trunk_placer": { + "type": "minecraft:upwards_branching_trunk_placer", + "base_height": 2, + "can_grow_through": "#minecraft:mangrove_logs_can_grow_through", + "extra_branch_length": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "extra_branch_steps": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 1 + }, + "height_rand_a": 1, + "height_rand_b": 4, + "place_branch_per_log_probability": 0.5 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json new file mode 100644 index 00000000..b92fb402 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:mangrove_checked", + "features": [ + { + "chance": 0.85, + "feature": "minecraft:tall_mangrove_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/meadow_trees.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/meadow_trees.json new file mode 100644 index 00000000..293ae6d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/meadow_trees.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:super_birch_bees", + "features": [ + { + "chance": 0.5, + "feature": "minecraft:fancy_oak_bees" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json new file mode 100644 index 00000000..a5a74531 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json @@ -0,0 +1,73 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:jungle_foliage_placer", + "height": 2, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:mega_jungle_trunk_placer", + "base_height": 10, + "height_rand_a": 2, + "height_rand_b": 19 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_pine.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_pine.json new file mode 100644 index 00000000..676a16ab --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_pine.json @@ -0,0 +1,93 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:alter_ground", + "provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:beneath_tree_podzol_replaceable" + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + } + ], + "foliage_placer": { + "type": "minecraft:mega_pine_foliage_placer", + "crown_height": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 13, + "height_rand_a": 2, + "height_rand_b": 14 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_spruce.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_spruce.json new file mode 100644 index 00000000..eff5b4d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mega_spruce.json @@ -0,0 +1,93 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:alter_ground", + "provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:beneath_tree_podzol_replaceable" + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + } + ], + "foliage_placer": { + "type": "minecraft:mega_pine_foliage_placer", + "crown_height": { + "type": "minecraft:uniform", + "max_inclusive": 17, + "min_inclusive": 13 + }, + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 13, + "height_rand_a": 2, + "height_rand_b": 14 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/melon.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/melon.json new file mode 100644 index 00000000..f4701503 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/melon.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:melon" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/monster_room.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/monster_room.json new file mode 100644 index 00000000..f8aaf027 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/monster_room.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:monster_room", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch.json new file mode 100644 index 00000000..4a66f746 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.3, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.8, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json new file mode 100644 index 00000000..a9f8b319 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.6, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json new file mode 100644 index 00000000..f03ce33c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + }, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.3, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "ceiling", + "vegetation_chance": 0.08, + "vegetation_feature": { + "feature": "minecraft:cave_vine_in_moss", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_vegetation.json new file mode 100644 index 00000000..9e199688 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/moss_vegetation.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:flowering_azalea" + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:azalea" + }, + "weight": 7 + }, + { + "data": { + "Name": "minecraft:moss_carpet" + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 50 + }, + { + "data": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json new file mode 100644 index 00000000..a61a8d03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:random_boolean_selector", + "config": { + "feature_false": { + "feature": "minecraft:huge_brown_mushroom", + "placement": [] + }, + "feature_true": { + "feature": "minecraft:huge_red_mushroom", + "placement": [] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts.json new file mode 100644 index 00000000..a7fd952f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:nether_sprouts" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json new file mode 100644 index 00000000..bd829b10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:nether_sprouts" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak.json new file mode 100644 index 00000000..11ebbfc8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..3b5f7876 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json @@ -0,0 +1,372 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_002.json new file mode 100644 index 00000000..360c2b11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_002.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_005.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_005.json new file mode 100644 index 00000000..767c91b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_bees_005.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json new file mode 100644 index 00000000..9e3d844f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json @@ -0,0 +1,368 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json new file mode 100644 index 00000000..dd844579 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:scattered_ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 3, + "targets": [ + { + "state": { + "Name": "minecraft:ancient_debris" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_nether" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json new file mode 100644 index 00000000..207fb6ee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:scattered_ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 2, + "targets": [ + { + "state": { + "Name": "minecraft:ancient_debris" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_nether" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_andesite.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_andesite.json new file mode 100644 index 00000000..b73561f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_andesite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:andesite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_blackstone.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_blackstone.json new file mode 100644 index 00000000..bb05bf05 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_blackstone.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:blackstone" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_clay.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_clay.json new file mode 100644 index 00000000..88fd2f8f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_clay.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:clay" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal.json new file mode 100644 index 00000000..50ecedc9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 17, + "targets": [ + { + "state": { + "Name": "minecraft:coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal_buried.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal_buried.json new file mode 100644 index 00000000..b35e6b32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_coal_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 17, + "targets": [ + { + "state": { + "Name": "minecraft:coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_large.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_large.json new file mode 100644 index 00000000..d3657159 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_large.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 20, + "targets": [ + { + "state": { + "Name": "minecraft:copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_small.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_small.json new file mode 100644 index 00000000..b9809375 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_copper_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 10, + "targets": [ + { + "state": { + "Name": "minecraft:copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json new file mode 100644 index 00000000..8f529fe4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_large.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_large.json new file mode 100644 index 00000000..501925ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_large.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.7, + "size": 12, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json new file mode 100644 index 00000000..aa20fc8b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_small.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_small.json new file mode 100644 index 00000000..cddd59e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diamond_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 4, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diorite.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diorite.json new file mode 100644 index 00000000..4249f867 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_diorite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:diorite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_dirt.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_dirt.json new file mode 100644 index 00000000..e6c140f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_dirt.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:dirt" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_emerald.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_emerald.json new file mode 100644 index 00000000..fc68e2d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_emerald.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 3, + "targets": [ + { + "state": { + "Name": "minecraft:emerald_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_emerald_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold.json new file mode 100644 index 00000000..cba3856d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold_buried.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold_buried.json new file mode 100644 index 00000000..9a85c4a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gold_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_granite.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_granite.json new file mode 100644 index 00000000..32ea76f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_granite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:granite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel.json new file mode 100644 index 00000000..6497dc69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:gravel" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json new file mode 100644 index 00000000..f58621a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:gravel" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_infested.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_infested.json new file mode 100644 index 00000000..46fd07cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_infested.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:infested_stone" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:infested_deepslate", + "Properties": { + "axis": "y" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron.json new file mode 100644 index 00000000..acd256a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron_small.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron_small.json new file mode 100644 index 00000000..edb954b2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_iron_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 4, + "targets": [ + { + "state": { + "Name": "minecraft:iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis.json new file mode 100644 index 00000000..aa191fe5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 7, + "targets": [ + { + "state": { + "Name": "minecraft:lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json new file mode 100644 index 00000000..c6429558 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 7, + "targets": [ + { + "state": { + "Name": "minecraft:lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_magma.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_magma.json new file mode 100644 index 00000000..a983f464 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_magma.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:magma_block" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_nether_gold.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_nether_gold.json new file mode 100644 index 00000000..2010286a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_nether_gold.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 10, + "targets": [ + { + "state": { + "Name": "minecraft:nether_gold_ore" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_quartz.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_quartz.json new file mode 100644 index 00000000..39fe03ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_quartz.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 14, + "targets": [ + { + "state": { + "Name": "minecraft:nether_quartz_ore" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_redstone.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_redstone.json new file mode 100644 index 00000000..66c042d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_redstone.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:redstone_ore", + "Properties": { + "lit": "false" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_redstone_ore", + "Properties": { + "lit": "false" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_soul_sand.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_soul_sand.json new file mode 100644 index 00000000..96f80cb0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_soul_sand.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 12, + "targets": [ + { + "state": { + "Name": "minecraft:soul_sand" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_tuff.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_tuff.json new file mode 100644 index 00000000..39a405dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/ore_tuff.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:tuff" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_forest_flower.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_forest_flower.json new file mode 100644 index 00000000..77081953 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_forest_flower.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:simple_block", + "config": { + "schedule_tick": true, + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:closed_eyeblossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json new file mode 100644 index 00000000..d0d5fb36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:pale_oak_checked", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:pale_oak_creaking_checked" + }, + { + "chance": 0.9, + "feature": "minecraft:pale_oak_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch.json new file mode 100644 index 00000000..ed4aea4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.3, + "vegetation_feature": { + "feature": "minecraft:pale_moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json new file mode 100644 index 00000000..7cc05b58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.6, + "vegetation_feature": { + "feature": "minecraft:pale_moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json new file mode 100644 index 00000000..31c8110c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pale_moss_carpet", + "Properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak.json new file mode 100644 index 00000000..410d593a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak.json @@ -0,0 +1,73 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:pale_moss", + "ground_probability": 0.8, + "leaves_probability": 0.15, + "trunk_probability": 0.4 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "limit": 1, + "lower_size": 0, + "middle_size": 1, + "upper_limit": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json new file mode 100644 index 00000000..90e1f06e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json @@ -0,0 +1,66 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "limit": 1, + "lower_size": 0, + "middle_size": 1, + "upper_limit": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json new file mode 100644 index 00000000..3ae2ebf3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:pale_moss", + "ground_probability": 0.8, + "leaves_probability": 0.15, + "trunk_probability": 0.4 + }, + { + "type": "minecraft:creaking_heart", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "limit": 1, + "lower_size": 0, + "middle_size": 1, + "upper_limit": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_fire.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_fire.json new file mode 100644 index 00000000..135261b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_fire.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:fire", + "Properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_soul_fire.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_soul_fire.json new file mode 100644 index 00000000..8c2292f6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/patch_soul_fire.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:soul_fire" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_hay.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_hay.json new file mode 100644 index 00000000..b54eb444 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_hay.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:rotated_block_provider", + "state": { + "Name": "minecraft:hay_block", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_ice.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_ice.json new file mode 100644 index 00000000..5fc9f198 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_ice.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:blue_ice" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:packed_ice" + }, + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_melon.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_melon.json new file mode 100644 index 00000000..2b1e8526 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_melon.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:melon" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_pumpkin.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_pumpkin.json new file mode 100644 index 00000000..3ab3e710 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_pumpkin.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pumpkin" + }, + "weight": 19 + }, + { + "data": { + "Name": "minecraft:jack_o_lantern", + "Properties": { + "facing": "north" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_snow.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_snow.json new file mode 100644 index 00000000..80545386 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pile_snow.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:snow", + "Properties": { + "layers": "1" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pine.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pine.json new file mode 100644 index 00000000..cdaab46a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pine.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:pine_foliage_placer", + "height": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 3 + }, + "offset": 1, + "radius": 1 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "lower_size": 0, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 6, + "height_rand_a": 4, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pointed_dripstone.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pointed_dripstone.json new file mode 100644 index 00000000..617e261b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pointed_dripstone.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:pointed_dripstone", + "config": { + "chance_of_directional_spread": 0.7, + "chance_of_spread_radius2": 0.5, + "chance_of_spread_radius3": 0.5, + "chance_of_taller_dripstone": 0.2 + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] + }, + { + "feature": { + "type": "minecraft:pointed_dripstone", + "config": { + "chance_of_directional_spread": 0.7, + "chance_of_spread_radius2": 0.5, + "chance_of_spread_radius3": 0.5, + "chance_of_taller_dripstone": 0.2 + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pumpkin.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pumpkin.json new file mode 100644 index 00000000..ac7c2c58 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/pumpkin.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pumpkin" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/red_mushroom.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/red_mushroom.json new file mode 100644 index 00000000..e9a9ed7b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/red_mushroom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:red_mushroom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json new file mode 100644 index 00000000..f162a4d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:root_system", + "config": { + "allowed_tree_position": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:replaceable_by_trees" + } + ] + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ + 0, + -1, + 0 + ], + "tag": "minecraft:azalea_grows_on" + } + ] + }, + "allowed_vertical_water_for_tree": 2, + "feature": { + "feature": "minecraft:azalea_tree", + "placement": [] + }, + "hanging_root_placement_attempts": 20, + "hanging_root_radius": 3, + "hanging_root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:hanging_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "hanging_roots_vertical_span": 2, + "required_vertical_space_for_tree": 3, + "root_column_max_height": 100, + "root_placement_attempts": 20, + "root_radius": 3, + "root_replaceable": "#minecraft:azalea_root_replaceable", + "root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rooted_dirt" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json new file mode 100644 index 00000000..2e87f425 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:sculk_patch", + "config": { + "amount_per_charge": 32, + "catalyst_chance": 0.5, + "charge_count": 10, + "extra_rare_growths": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 1 + }, + "growth_rounds": 0, + "spread_attempts": 64, + "spread_rounds": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json new file mode 100644 index 00000000..95147b72 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:sculk_patch", + "config": { + "amount_per_charge": 32, + "catalyst_chance": 0.5, + "charge_count": 10, + "extra_rare_growths": 0, + "growth_rounds": 0, + "spread_attempts": 64, + "spread_rounds": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_vein.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_vein.json new file mode 100644 index 00000000..8539e3ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sculk_vein.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:multiface_growth", + "config": { + "block": "minecraft:sculk_vein", + "can_be_placed_on": [ + "minecraft:stone", + "minecraft:andesite", + "minecraft:diorite", + "minecraft:granite", + "minecraft:dripstone_block", + "minecraft:calcite", + "minecraft:tuff", + "minecraft:deepslate" + ], + "can_place_on_ceiling": true, + "can_place_on_floor": true, + "can_place_on_wall": true, + "chance_of_spreading": 1.0, + "search_range": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sea_pickle.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sea_pickle.json new file mode 100644 index 00000000..2d7b08a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sea_pickle.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:sea_pickle", + "config": { + "count": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_mid.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_mid.json new file mode 100644 index 00000000..88941d5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_mid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.6 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_short.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_short.json new file mode 100644 index 00000000..0bf9b0f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_short.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.3 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json new file mode 100644 index 00000000..7ddd77de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.4 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_tall.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_tall.json new file mode 100644 index 00000000..3647eb84 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/seagrass_tall.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.8 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/small_basalt_columns.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/small_basalt_columns.json new file mode 100644 index 00000000..1cdb0745 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/small_basalt_columns.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 1 + }, + "reach": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spore_blossom.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spore_blossom.json new file mode 100644 index 00000000..41a28b48 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spore_blossom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spore_blossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json new file mode 100644 index 00000000..919cc23a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 1, + "requires_block_below": true, + "rock_count": 4, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow", + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_nether.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_nether.json new file mode 100644 index 00000000..088f2511 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_nether.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 1, + "requires_block_below": true, + "rock_count": 4, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:netherrack", + "minecraft:soul_sand", + "minecraft:gravel", + "minecraft:magma_block", + "minecraft:blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json new file mode 100644 index 00000000..99583564 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 1, + "requires_block_below": true, + "rock_count": 4, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:deepslate", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:dirt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_closed.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_closed.json new file mode 100644 index 00000000..a0ee2912 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_closed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 0, + "requires_block_below": false, + "rock_count": 5, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": "minecraft:netherrack" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_open.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_open.json new file mode 100644 index 00000000..c1f5888c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_nether_open.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 1, + "requires_block_below": false, + "rock_count": 4, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": "minecraft:netherrack" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_water.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_water.json new file mode 100644 index 00000000..c9be5208 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spring_water.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 1, + "requires_block_below": true, + "rock_count": 4, + "state": { + "Name": "minecraft:water", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:deepslate", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:dirt", + "minecraft:snow_block", + "minecraft:powder_snow", + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spruce.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spruce.json new file mode 100644 index 00000000..4468558b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/spruce.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:spruce_foliage_placer", + "offset": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "trunk_height": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "lower_size": 0, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sugar_cane.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sugar_cane.json new file mode 100644 index 00000000..a76123f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sugar_cane.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + } + } + ], + "prioritize_tip": false + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sunflower.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sunflower.json new file mode 100644 index 00000000..a69492c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/sunflower.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sunflower", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees.json new file mode 100644 index 00000000..f2847c52 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 6 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json new file mode 100644 index 00000000..ca3a2b8e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 6 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/swamp_oak.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/swamp_oak.json new file mode 100644 index 00000000..45e72b82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/swamp_oak.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 1, + "lower_size": 0, + "upper_size": 1 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 3, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/taiga_grass.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/taiga_grass.json new file mode 100644 index 00000000..273eca10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/taiga_grass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:fern" + }, + "weight": 4 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_grass.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_grass.json new file mode 100644 index 00000000..09040bfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_grass.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_mangrove.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_mangrove.json new file mode 100644 index 00000000..52e662c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/tall_mangrove.json @@ -0,0 +1,163 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.125 + }, + { + "type": "minecraft:attached_to_leaves", + "block_provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + } + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + "directions": [ + "down" + ], + "exclusion_radius_xz": 1, + "exclusion_radius_y": 0, + "probability": 0.14, + "required_empty_blocks": 2 + }, + { + "type": "minecraft:beehive", + "probability": 0.01 + } + ], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 70, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 3, + "lower_size": 0, + "upper_size": 2 + }, + "root_placer": { + "type": "minecraft:mangrove_root_placer", + "above_root_placement": { + "above_root_placement_chance": 0.5, + "above_root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_carpet" + } + } + }, + "mangrove_root_placement": { + "can_grow_through": "#minecraft:mangrove_roots_can_grow_through", + "max_root_length": 15, + "max_root_width": 8, + "muddy_roots_in": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ], + "muddy_roots_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:muddy_mangrove_roots", + "Properties": { + "axis": "y" + } + } + }, + "random_skew_chance": 0.2 + }, + "root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "trunk_offset_y": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + } + }, + "trunk_placer": { + "type": "minecraft:upwards_branching_trunk_placer", + "base_height": 4, + "can_grow_through": "#minecraft:mangrove_logs_can_grow_through", + "extra_branch_length": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "extra_branch_steps": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 1 + }, + "height_rand_a": 1, + "height_rand_b": 9, + "place_branch_per_log_probability": 0.5 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_badlands.json new file mode 100644 index 00000000..661d28ae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_badlands.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_leaf_litter", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch.json new file mode 100644 index 00000000..6d309c01 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:birch_bees_0002", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_birch_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json new file mode 100644 index 00000000..179fdbec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_bees_0002_leaf_litter", + "features": [ + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_bees_0002_leaf_litter" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_bees_0002_leaf_litter" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_flower_forest.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_flower_forest.json new file mode 100644 index 00000000..ecdadd9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_flower_forest.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_bees_002", + "features": [ + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_bees_002" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_bees_002" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_grove.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_grove.json new file mode 100644 index 00000000..7c6afd66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_grove.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_on_snow", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:pine_on_snow" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_jungle.json new file mode 100644 index 00000000..98a5c862 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_jungle.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:jungle_tree", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.5, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.33333334, + "feature": "minecraft:mega_jungle_tree_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_jungle_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json new file mode 100644 index 00000000..162d5d2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.025641026, + "feature": "minecraft:mega_spruce_checked" + }, + { + "chance": 0.30769232, + "feature": "minecraft:mega_pine_checked" + }, + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json new file mode 100644 index 00000000..343c030c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:mega_spruce_checked" + }, + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_plains.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_plains.json new file mode 100644 index 00000000..99468ece --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_plains.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": { + "feature": "minecraft:oak_bees_005", + "placement": [] + }, + "features": [ + { + "chance": 0.33333334, + "feature": { + "feature": "minecraft:fancy_oak_bees_005", + "placement": [] + } + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_savanna.json new file mode 100644 index 00000000..27f9535b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_savanna.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.8, + "feature": "minecraft:acacia_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_snowy.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_snowy.json new file mode 100644 index 00000000..b919971f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_snowy.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json new file mode 100644 index 00000000..6ab500eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:jungle_tree", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.5, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_jungle_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_taiga.json new file mode 100644 index 00000000..f101351f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_taiga.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_water.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_water.json new file mode 100644 index 00000000..b98ce95e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_water.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json new file mode 100644 index 00000000..8a3da4be --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.008325, + "feature": "minecraft:fallen_spruce_tree" + }, + { + "chance": 0.666, + "feature": "minecraft:spruce_checked" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines.json new file mode 100644 index 00000000..b7f42b23 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:twisting_vines", + "config": { + "max_height": 8, + "spread_height": 4, + "spread_width": 8 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json new file mode 100644 index 00000000..e3cea5ad --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:twisting_vines", + "config": { + "max_height": 2, + "spread_height": 1, + "spread_width": 3 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/underwater_magma.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/underwater_magma.json new file mode 100644 index 00000000..6800a78b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/underwater_magma.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:underwater_magma", + "config": { + "floor_search_range": 5, + "placement_probability_per_valid_position": 0.5, + "placement_radius_around_floor": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/vines.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/vines.json new file mode 100644 index 00000000..9d2db213 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/vines.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:vines", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/void_start_platform.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/void_start_platform.json new file mode 100644 index 00000000..d6249646 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/void_start_platform.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:void_start_platform", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json new file mode 100644 index 00000000..89fc9075 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:coral_tree", + "config": {} + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:coral_claw", + "config": {} + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:coral_mushroom", + "config": {} + }, + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json new file mode 100644 index 00000000..7aa937dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:warped_roots" + }, + "weight": 85 + }, + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 13 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json new file mode 100644 index 00000000..3508b719 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:warped_roots" + }, + "weight": 85 + }, + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 13 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus.json new file mode 100644 index 00000000..be66cb2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:warped_wart_block" + }, + "planted": false, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:warped_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:warped_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json new file mode 100644 index 00000000..6136f9d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:warped_wart_block" + }, + "planted": true, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:warped_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:warped_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/waterlily.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/waterlily.json new file mode 100644 index 00000000..ccd03bae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/waterlily.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lily_pad" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/weeping_vines.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/weeping_vines.json new file mode 100644 index 00000000..c914f4a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/weeping_vines.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:weeping_vines", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/configured_feature/wildflower.json b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/wildflower.json new file mode 100644 index 00000000..228e3a53 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/configured_feature/wildflower.json @@ -0,0 +1,170 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "4" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/end/base_3d_noise.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/end/base_3d_noise.json new file mode 100644 index 00000000..42ce3b80 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/end/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 4.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/end/sloped_cheese.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/end/sloped_cheese.json new file mode 100644 index 00000000..52cf0ac0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/end/sloped_cheese.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:end_islands" + }, + "argument2": "minecraft:end/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/nether/base_3d_noise.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/nether/base_3d_noise.json new file mode 100644 index 00000000..f4f9874e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/nether/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 60.0, + "y_scale": 0.375 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json new file mode 100644 index 00000000..ed5a2d9c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.125 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/entrances.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/entrances.json new file mode 100644 index 00000000..582c4778 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/entrances.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -10, + "to_value": 0.0, + "to_y": 30 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_1", + "rarity_value_mapper": "type_1" + }, + "argument2": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "noise": "minecraft:spaghetti_3d_2", + "rarity_value_mapper": "type_1" + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/noodle.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/noodle.json new file mode 100644 index 00000000..b5566b10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.025, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/pillars.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/pillars.json new file mode 100644 index 00000000..ef84930e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json new file mode 100644 index 00000000..7a1a4dc4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:weird_scaled_sampler", + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 2.0, + "y_scale": 1.0 + }, + "noise": "minecraft:spaghetti_2d", + "rarity_value_mapper": "type_2" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "minecraft:overworld/caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 1.0, + "y_scale": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -64, + "to_value": -40.0, + "to_y": 320 + } + } + }, + "argument2": "minecraft:overworld/caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 00000000..be136655 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.95, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.35000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 2.0, + "y_scale": 1.0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json new file mode 100644 index 00000000..549344e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.05, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.05, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/continents.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/continents.json new file mode 100644 index 00000000..321b6f03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/continents.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/depth.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/depth.json new file mode 100644 index 00000000..23944893 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld/offset" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/erosion.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/erosion.json new file mode 100644 index 00000000..fff06598 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/factor.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/factor.json new file mode 100644 index 00000000..3a5de1fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/jaggedness.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/jaggedness.json new file mode 100644 index 00000000..70216d6e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/offset.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/offset.json new file mode 100644 index 00000000..61ef46d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges.json new file mode 100644 index 00000000..f4d6b4a5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:ridge", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges_folded.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges_folded.json new file mode 100644 index 00000000..e4d81cde --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/ridges_folded.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:mul", + "argument1": -3.0, + "argument2": { + "type": "minecraft:add", + "argument1": -0.3333333333333333, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": -0.6666666666666666, + "argument2": { + "type": "minecraft:abs", + "argument": "minecraft:overworld/ridges" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json new file mode 100644 index 00000000..4e8ecd56 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "minecraft:overworld/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/depth.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/depth.json new file mode 100644 index 00000000..b6a3b0d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld_amplified/offset" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/factor.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/factor.json new file mode 100644 index 00000000..4dd87e3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 0.2972561 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 0.2972561 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 0.2688383 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 0.2688383 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 0.6050052 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json new file mode 100644 index 00000000..fcfe2f08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/offset.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/offset.json new file mode 100644 index 00000000..646d88f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.088 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.002 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.006 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.40470043 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 1.4323502 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 2.46 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.8936405 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 1.76 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.6165899 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 1.4000001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.7 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.84000003 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0139999995 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.042 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.7 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.84000003 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.6958525 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 1.8479263 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 3.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 1.078341 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 2.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 1.078341 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 2.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 1.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 1.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 1.0 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.06 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 1.0 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json new file mode 100644 index 00000000..e9675714 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld_amplified/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld_amplified/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "minecraft:overworld_amplified/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json new file mode 100644 index 00000000..c86ba3a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json new file mode 100644 index 00000000..95783517 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld_large_biomes/offset" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json new file mode 100644 index 00000000..4447cd98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json new file mode 100644 index 00000000..aed6a45f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json new file mode 100644 index 00000000..2e202d03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json new file mode 100644 index 00000000..7e8a3b63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json new file mode 100644 index 00000000..5da0fba5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld_large_biomes/depth", + "argument2": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld_large_biomes/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": "minecraft:overworld_large_biomes/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_x.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_x.json new file mode 100644 index 00000000..7c212483 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_x.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:shift_a", + "argument": "minecraft:offset" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_z.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_z.json new file mode 100644 index 00000000..263c1129 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/shift_z.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:shift_b", + "argument": "minecraft:offset" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/y.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/y.json new file mode 100644 index 00000000..4d21495f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/y.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:y_clamped_gradient", + "from_value": -4064.0, + "from_y": -4064, + "to_value": 4062.0, + "to_y": 4062 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/density_function/zero.json b/data/generated/V26_1/data/minecraft/worldgen/density_function/zero.json new file mode 100644 index 00000000..171538eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/density_function/zero.json @@ -0,0 +1 @@ +0.0 \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json new file mode 100644 index 00000000..93134c03 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:feather", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:cobblestone", + "height": 2 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": "minecraft:villages" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json new file mode 100644 index 00000000..0f4a33e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:grass_block", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:dirt", + "height": 2 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": "minecraft:villages" + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/desert.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/desert.json new file mode 100644 index 00000000..e8686430 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/desert.json @@ -0,0 +1,32 @@ +{ + "display": "minecraft:sand", + "settings": { + "biome": "minecraft:desert", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 3 + }, + { + "block": "minecraft:sandstone", + "height": 52 + }, + { + "block": "minecraft:sand", + "height": 8 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:desert_pyramids", + "minecraft:mineshafts", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/overworld.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/overworld.json new file mode 100644 index 00000000..981ed494 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/overworld.json @@ -0,0 +1,33 @@ +{ + "display": "minecraft:short_grass", + "settings": { + "biome": "minecraft:plains", + "features": true, + "lakes": true, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 59 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:mineshafts", + "minecraft:pillager_outposts", + "minecraft:ruined_portals", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json new file mode 100644 index 00000000..7d960592 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:redstone", + "settings": { + "biome": "minecraft:desert", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 3 + }, + { + "block": "minecraft:sandstone", + "height": 116 + } + ], + "structure_overrides": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json new file mode 100644 index 00000000..6f4df895 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json @@ -0,0 +1,34 @@ +{ + "display": "minecraft:snow", + "settings": { + "biome": "minecraft:snowy_plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 59 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + }, + { + "block": "minecraft:snow", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:igloos" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/the_void.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/the_void.json new file mode 100644 index 00000000..6de56e38 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/the_void.json @@ -0,0 +1,15 @@ +{ + "display": "minecraft:barrier", + "settings": { + "biome": "minecraft:the_void", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:air", + "height": 1 + } + ], + "structure_overrides": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json new file mode 100644 index 00000000..d3b8a8ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json @@ -0,0 +1,30 @@ +{ + "display": "minecraft:stone", + "settings": { + "biome": "minecraft:windswept_hills", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 230 + }, + { + "block": "minecraft:dirt", + "height": 5 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:mineshafts", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/water_world.json b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/water_world.json new file mode 100644 index 00000000..cc84af5f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/flat_level_generator_preset/water_world.json @@ -0,0 +1,39 @@ +{ + "display": "minecraft:water_bucket", + "settings": { + "biome": "minecraft:deep_ocean", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:deepslate", + "height": 64 + }, + { + "block": "minecraft:stone", + "height": 5 + }, + { + "block": "minecraft:dirt", + "height": 5 + }, + { + "block": "minecraft:gravel", + "height": 5 + }, + { + "block": "minecraft:water", + "height": 90 + } + ], + "structure_overrides": [ + "minecraft:ocean_ruins", + "minecraft:shipwrecks", + "minecraft:ocean_monuments" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json b/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json new file mode 100644 index 00000000..69ae9ebf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json @@ -0,0 +1,3 @@ +{ + "preset": "minecraft:nether" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json b/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json new file mode 100644 index 00000000..4dd59007 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json @@ -0,0 +1,3 @@ +{ + "preset": "minecraft:overworld" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_barrier.json b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_barrier.json new file mode 100644 index 00000000..24271d2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_barrier.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_lava.json b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_lava.json new file mode 100644 index 00000000..5eba7707 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/aquifer_lava.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -1 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar.json b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar.json new file mode 100644 index 00000000..44eea82a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar_roof.json b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar_roof.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_pillar_roof.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_surface.json b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/badlands_surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/calcite.json b/data/generated/V26_1/data/minecraft/worldgen/noise/calcite.json new file mode 100644 index 00000000..d0ae5c0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/calcite.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/cave_cheese.json b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_cheese.json new file mode 100644 index 00000000..76e3564a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_cheese.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 0.5, + 1.0, + 2.0, + 1.0, + 2.0, + 1.0, + 0.0, + 2.0, + 0.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/cave_entrance.json b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_entrance.json new file mode 100644 index 00000000..b03b4dd6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_entrance.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 0.4, + 0.5, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/cave_layer.json b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_layer.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/cave_layer.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/clay_bands_offset.json b/data/generated/V26_1/data/minecraft/worldgen/noise/clay_bands_offset.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/clay_bands_offset.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness.json new file mode 100644 index 00000000..974cce70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 2.0, + 2.0, + 2.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness_large.json b/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness_large.json new file mode 100644 index 00000000..1a966482 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/continentalness_large.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 2.0, + 2.0, + 2.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/erosion.json b/data/generated/V26_1/data/minecraft/worldgen/noise/erosion.json new file mode 100644 index 00000000..5cb78233 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/erosion.json @@ -0,0 +1,10 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/erosion_large.json b/data/generated/V26_1/data/minecraft/worldgen/noise/erosion_large.json new file mode 100644 index 00000000..9d22d239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/erosion_large.json @@ -0,0 +1,10 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0, + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/gravel.json b/data/generated/V26_1/data/minecraft/worldgen/noise/gravel.json new file mode 100644 index 00000000..77668018 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/gravel.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/gravel_layer.json b/data/generated/V26_1/data/minecraft/worldgen/noise/gravel_layer.json new file mode 100644 index 00000000..64adfc30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/gravel_layer.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ice.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ice.json new file mode 100644 index 00000000..93c50c69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ice.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar.json b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar.json new file mode 100644 index 00000000..b51be97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar_roof.json b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar_roof.json new file mode 100644 index 00000000..24271d2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_pillar_roof.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_surface.json b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/iceberg_surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/jagged.json b/data/generated/V26_1/data/minecraft/worldgen/noise/jagged.json new file mode 100644 index 00000000..75d6175f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/jagged.json @@ -0,0 +1,21 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -16 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/nether/temperature.json b/data/generated/V26_1/data/minecraft/worldgen/noise/nether/temperature.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/nether/temperature.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/nether/vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/noise/nether/vegetation.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/nether/vegetation.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/nether_state_selector.json b/data/generated/V26_1/data/minecraft/worldgen/noise/nether_state_selector.json new file mode 100644 index 00000000..964556b3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/nether_state_selector.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -4 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/nether_wart.json b/data/generated/V26_1/data/minecraft/worldgen/noise/nether_wart.json new file mode 100644 index 00000000..4ecd087f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/nether_wart.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.9 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/netherrack.json b/data/generated/V26_1/data/minecraft/worldgen/noise/netherrack.json new file mode 100644 index 00000000..afceca13 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/netherrack.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.35 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/noodle.json b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_a.json b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_a.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_a.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_b.json b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_b.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_ridge_b.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_thickness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/noodle_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/offset.json b/data/generated/V26_1/data/minecraft/worldgen/noise/offset.json new file mode 100644 index 00000000..db285f39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/offset.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 0.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ore_gap.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_gap.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_gap.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_a.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_a.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_a.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_b.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_b.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_vein_b.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ore_veininess.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_veininess.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ore_veininess.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/packed_ice.json b/data/generated/V26_1/data/minecraft/worldgen/noise/packed_ice.json new file mode 100644 index 00000000..97249698 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/packed_ice.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/patch.json b/data/generated/V26_1/data/minecraft/worldgen/noise/patch.json new file mode 100644 index 00000000..b73af3ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/patch.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/pillar.json b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_rareness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_rareness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_rareness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_thickness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/pillar_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/powder_snow.json b/data/generated/V26_1/data/minecraft/worldgen/noise/powder_snow.json new file mode 100644 index 00000000..b51be97c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/powder_snow.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/ridge.json b/data/generated/V26_1/data/minecraft/worldgen/noise/ridge.json new file mode 100644 index 00000000..c935aa7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/ridge.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 2.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/soul_sand_layer.json b/data/generated/V26_1/data/minecraft/worldgen/noise/soul_sand_layer.json new file mode 100644 index 00000000..64adfc30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/soul_sand_layer.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_1.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_1.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_1.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_2.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_2.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_2.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/surface.json b/data/generated/V26_1/data/minecraft/worldgen/noise/surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/surface_secondary.json b/data/generated/V26_1/data/minecraft/worldgen/noise/surface_secondary.json new file mode 100644 index 00000000..71bbea94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/surface_secondary.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/surface_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/noise/surface_swamp.json new file mode 100644 index 00000000..d6da1547 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/surface_swamp.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -2 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/temperature.json b/data/generated/V26_1/data/minecraft/worldgen/noise/temperature.json new file mode 100644 index 00000000..ddcab842 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/temperature.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.5, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/temperature_large.json b/data/generated/V26_1/data/minecraft/worldgen/noise/temperature_large.json new file mode 100644 index 00000000..184e5899 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/temperature_large.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.5, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -12 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation.json new file mode 100644 index 00000000..320e418e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation_large.json b/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation_large.json new file mode 100644 index 00000000..1f4daef0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise/vegetation_large.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -10 +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/amplified.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/amplified.json new file mode 100644 index 00000000..2b4fd800 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/amplified.json @@ -0,0 +1,2599 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld/continents", + "depth": "minecraft:overworld_amplified/depth", + "erosion": "minecraft:overworld/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 304, + "to_value": 0.0, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld_amplified/sloped_cheese", + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld_amplified/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld_amplified/sloped_cheese" + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 304, + "to_value": 0.0, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/caves.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/caves.json new file mode 100644 index 00000000..6bba555d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/caves.json @@ -0,0 +1,2261 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 192, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 2.5, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -72, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2.5, + "argument2": { + "type": "minecraft:add", + "argument1": 0.9375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 104, + "to_value": 0.0, + "to_y": 128 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.9375, + "argument2": "minecraft:nether/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 32, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "below_top": 0 + }, + "random_name": "minecraft:bedrock_roof", + "true_at_and_below": { + "below_top": 5 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/end.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/end.json new file mode 100644 index 00000000..57902441 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/end.json @@ -0,0 +1,97 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:end_stone" + }, + "default_fluid": { + "Name": "minecraft:air" + }, + "disable_mob_generation": true, + "legacy_random_source": true, + "noise": { + "height": 128, + "min_y": 0, + "size_horizontal": 2, + "size_vertical": 1 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:end_islands" + } + }, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": -0.234375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": 4, + "to_value": 1.0, + "to_y": 32 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.234375, + "argument2": { + "type": "minecraft:add", + "argument1": -23.4375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 56, + "to_value": 0.0, + "to_y": 312 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 23.4375, + "argument2": "minecraft:end/sloped_cheese" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 0, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:end_stone" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/floating_islands.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/floating_islands.json new file mode 100644 index 00000000..aea7ed4e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/floating_islands.json @@ -0,0 +1,2220 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 256, + "min_y": 0, + "size_horizontal": 2, + "size_vertical": 1 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": -0.234375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": 4, + "to_value": 1.0, + "to_y": 32 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.234375, + "argument2": { + "type": "minecraft:add", + "argument1": -23.4375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 184, + "to_value": 0.0, + "to_y": 440 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 23.4375, + "argument2": "minecraft:end/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": -64, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/large_biomes.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/large_biomes.json new file mode 100644 index 00000000..2441f54c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/large_biomes.json @@ -0,0 +1,2599 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld_large_biomes/continents", + "depth": "minecraft:overworld_large_biomes/depth", + "erosion": "minecraft:overworld_large_biomes/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld_large_biomes/sloped_cheese", + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld_large_biomes/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld_large_biomes/sloped_cheese" + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/nether.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/nether.json new file mode 100644 index 00000000..05103d76 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/nether.json @@ -0,0 +1,737 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:netherrack" + }, + "default_fluid": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 128, + "min_y": 0, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 2.5, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -8, + "to_value": 1.0, + "to_y": 24 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2.5, + "argument2": { + "type": "minecraft:add", + "argument1": 0.9375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 104, + "to_value": 0.0, + "to_y": 128 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.9375, + "argument2": "minecraft:nether/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:nether/temperature", + "shift_x": 0.0, + "shift_y": 0.0, + "shift_z": 0.0, + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:nether/vegetation", + "shift_x": 0.0, + "shift_y": 0.0, + "shift_z": 0.0, + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 32, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "below_top": 0 + }, + "random_name": "minecraft:bedrock_roof", + "true_at_and_below": { + "below_top": 5 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "below_top": 5 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:basalt_deltas" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:patch" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:soul_sand_valley" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_soil" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:patch" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_soil" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 32 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warped_forest" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.54, + "noise": "minecraft:netherrack" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 1.17, + "noise": "minecraft:nether_wart" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:warped_wart_block" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:warped_nylium" + } + } + ] + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:crimson_forest" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.54, + "noise": "minecraft:netherrack" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 1.17, + "noise": "minecraft:nether_wart" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:nether_wart_block" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:crimson_nylium" + } + } + ] + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:nether_wastes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:soul_sand_layer" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:gravel_layer" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 32 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + ] + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/noise_settings/overworld.json b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/overworld.json new file mode 100644 index 00000000..51847df4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/noise_settings/overworld.json @@ -0,0 +1,2599 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld/continents", + "depth": "minecraft:overworld/depth", + "erosion": "minecraft:overworld/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/sloped_cheese", + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": "minecraft:overworld/sloped_cheese", + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": "minecraft:overworld/sloped_cheese" + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:ice_spikes" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mushroom_fields" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:snowy_slopes" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:grove" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_peaks" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:stony_shore" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_hills" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:dripstone_caves" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_savanna" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:windswept_gravelly_hills" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:mangrove_swamp" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:desert" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia.json new file mode 100644 index 00000000..ee4d0d43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:acacia", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:acacia_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia_checked.json new file mode 100644 index 00000000..ee4d0d43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/acacia_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:acacia", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:acacia_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/amethyst_geode.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/amethyst_geode.json new file mode 100644 index 00000000..3a21bb47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/amethyst_geode.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:amethyst_geode", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 24 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 30 + }, + "min_inclusive": { + "above_bottom": 6 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo.json new file mode 100644 index 00000000..65e79c18 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo.json @@ -0,0 +1,21 @@ +{ + "feature": "minecraft:bamboo_some_podzol", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_offset": 0.3, + "noise_to_count_ratio": 160 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_light.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_light.json new file mode 100644 index 00000000..e827cc28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_light.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:bamboo_no_podzol", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json new file mode 100644 index 00000000..9da04ec6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:bamboo_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 30, + "weight": 9 + }, + { + "data": 31, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_blobs.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_blobs.json new file mode 100644 index 00000000..369daf31 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_blobs.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_blobs", + "placement": [ + { + "type": "minecraft:count", + "count": 75 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_pillar.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_pillar.json new file mode 100644 index 00000000..9505c449 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/basalt_pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002.json new file mode 100644 index 00000000..fafa3b47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_0002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json new file mode 100644 index 00000000..4d983284 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_002.json new file mode 100644 index 00000000..92cbaffb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_checked.json new file mode 100644 index 00000000..4171ea91 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json new file mode 100644 index 00000000..5f64be20 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_tall.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_tall.json new file mode 100644 index 00000000..498eecc4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/birch_tall.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:birch_tall", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blackstone_blobs.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blackstone_blobs.json new file mode 100644 index 00000000..352f73b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blackstone_blobs.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:blackstone_blobs", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blue_ice.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blue_ice.json new file mode 100644 index 00000000..b2901812 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/blue_ice.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:blue_ice", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 61 + }, + "min_inclusive": { + "absolute": 30 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json new file mode 100644 index 00000000..047eccb1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json @@ -0,0 +1,53 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json new file mode 100644 index 00000000..02c84d30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json new file mode 100644 index 00000000..d14c680b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json new file mode 100644 index 00000000..7e3e3c30 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json new file mode 100644 index 00000000..846bdf63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cave_vines.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cave_vines.json new file mode 100644 index 00000000..b22c0aa8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cave_vines.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:cave_vine", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_bees_005.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_bees_005.json new file mode 100644 index 00000000..1939ba11 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_bees_005.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:cherry_bees_005", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_checked.json new file mode 100644 index 00000000..36d0536a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/cherry_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:cherry", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/chorus_plant.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/chorus_plant.json new file mode 100644 index 00000000..e6971203 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/chorus_plant.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:chorus_plant", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json new file mode 100644 index 00000000..77af5731 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:vines", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json new file mode 100644 index 00000000..2b2bd018 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:crimson_forest_vegetation", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 6 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_fungi.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_fungi.json new file mode 100644 index 00000000..c805ba3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/crimson_fungi.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:crimson_fungus", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json new file mode 100644 index 00000000..1a69bc57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:dark_forest_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_checked.json new file mode 100644 index 00000000..bbfac2a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:dark_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:dark_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json new file mode 100644 index 00000000..b46e1728 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:dark_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:dark_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/delta.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/delta.json new file mode 100644 index 00000000..b483f400 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/delta.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 40 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/desert_well.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/desert_well.json new file mode 100644 index 00000000..972623c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/desert_well.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:desert_well", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1000 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_clay.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_clay.json new file mode 100644 index 00000000..7bb5f696 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_clay.json @@ -0,0 +1,22 @@ +{ + "feature": "minecraft:disk_clay", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_grass.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_grass.json new file mode 100644 index 00000000..df6d29a8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_grass.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:disk_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:mud" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_gravel.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_gravel.json new file mode 100644 index 00000000..f6448e5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_gravel.json @@ -0,0 +1,22 @@ +{ + "feature": "minecraft:disk_gravel", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_sand.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_sand.json new file mode 100644 index 00000000..88df19ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/disk_sand.json @@ -0,0 +1,26 @@ +{ + "feature": "minecraft:disk_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dripstone_cluster.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dripstone_cluster.json new file mode 100644 index 00000000..b13083bb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/dripstone_cluster.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:dripstone_cluster", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 96, + "min_inclusive": 48 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_gateway_return.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_gateway_return.json new file mode 100644 index 00000000..d0c7c6c4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_gateway_return.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:end_gateway_return", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 700 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": { + "type": "minecraft:uniform", + "max_inclusive": 9, + "min_inclusive": 3 + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_island_decorated.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_island_decorated.json new file mode 100644 index 00000000..453397dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_island_decorated.json @@ -0,0 +1,43 @@ +{ + "feature": "minecraft:end_island", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 14 + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 3 + }, + { + "data": 2, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 70 + }, + "min_inclusive": { + "absolute": 55 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_platform.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_platform.json new file mode 100644 index 00000000..77cbe112 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_platform.json @@ -0,0 +1,18 @@ +{ + "feature": "minecraft:end_platform", + "placement": [ + { + "type": "minecraft:fixed_placement", + "positions": [ + [ + 100, + 49, + 0 + ] + ] + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_spike.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_spike.json new file mode 100644 index 00000000..8140240a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/end_spike.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:end_spike", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json new file mode 100644 index 00000000..f6dc2939 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_birch_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json new file mode 100644 index 00000000..1a17826b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json new file mode 100644 index 00000000..e6aac160 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_oak_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json new file mode 100644 index 00000000..ab56e627 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_spruce_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json new file mode 100644 index 00000000..4af5ed15 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_super_birch_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json new file mode 100644 index 00000000..952dcadc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..7a9bd273 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json new file mode 100644 index 00000000..4e4defd7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json new file mode 100644 index 00000000..b13ef1d2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json new file mode 100644 index 00000000..96b13592 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_cherry.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_cherry.json new file mode 100644 index 00000000..834f8a2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_cherry.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:flower_cherry", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_default.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_default.json new file mode 100644 index 00000000..63bbb515 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_default.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:flower_default", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_flower_forest.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_flower_forest.json new file mode 100644 index 00000000..62bb6f40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_flower_forest.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:flower_flower_forest", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json new file mode 100644 index 00000000..3c62153b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:forest_flowers", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:clamped", + "max_inclusive": 3, + "min_inclusive": 0, + "source": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": -1 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_meadow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_meadow.json new file mode 100644 index 00000000..67fb4156 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_meadow.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:flower_meadow", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_pale_garden.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_pale_garden.json new file mode 100644 index 00000000..4ca303c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_pale_garden.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:flower_pale_garden", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plain.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plain.json new file mode 100644 index 00000000..6534cc02 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plain.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:flower_plain", + "placement": [ + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plains.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plains.json new file mode 100644 index 00000000..e69d6790 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_plains.json @@ -0,0 +1,51 @@ +{ + "feature": "minecraft:flower_plain", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 4, + "below_noise": 15, + "noise_level": -0.8 + }, + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_swamp.json new file mode 100644 index 00000000..e95bfd57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:flower_swamp", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_warm.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_warm.json new file mode 100644 index 00000000..f669c159 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/flower_warm.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:flower_default", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_flowers.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_flowers.json new file mode 100644 index 00000000..7d5d4df8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_flowers.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:forest_flowers", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:clamped", + "max_inclusive": 1, + "min_inclusive": 0, + "source": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": -3 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_rock.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_rock.json new file mode 100644 index 00000000..db95ee2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/forest_rock.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:forest_rock", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_lower.json new file mode 100644 index 00000000..d1c7d385 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:fossil_diamonds", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_upper.json new file mode 100644 index 00000000..d6f4a4f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/fossil_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:fossil_coal", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/freeze_top_layer.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/freeze_top_layer.json new file mode 100644 index 00000000..d95d87df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/freeze_top_layer.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:freeze_top_layer", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glow_lichen.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glow_lichen.json new file mode 100644 index 00000000..292b0645 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glow_lichen.json @@ -0,0 +1,36 @@ +{ + "feature": "minecraft:glow_lichen", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 157, + "min_inclusive": 104 + } + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -13 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone.json new file mode 100644 index 00000000..560063db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:glowstone_extra", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone_extra.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone_extra.json new file mode 100644 index 00000000..ba2d4f40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/glowstone_extra.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:glowstone_extra", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 9, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/grass_bonemeal.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/grass_bonemeal.json new file mode 100644 index 00000000..a8e523bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/grass_bonemeal.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_patch.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_patch.json new file mode 100644 index 00000000..322a6430 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_patch.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:ice_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:snow_block" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_spike.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_spike.json new file mode 100644 index 00000000..a545382e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ice_spike.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:ice_spike", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_blue.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_blue.json new file mode 100644 index 00000000..465f52f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_blue.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:iceberg_blue", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_packed.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_packed.json new file mode 100644 index 00000000..df686ce8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/iceberg_packed.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:iceberg_packed", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_bush.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_bush.json new file mode 100644 index 00000000..30e24a6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_bush.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:jungle_bush", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_tree.json new file mode 100644 index 00000000..c64fa96d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/jungle_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_cold.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_cold.json new file mode 100644 index 00000000..5a7e6a62 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_cold.json @@ -0,0 +1,21 @@ +{ + "feature": "minecraft:kelp", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_offset": 0.0, + "noise_to_count_ratio": 120 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_warm.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_warm.json new file mode 100644 index 00000000..b22be2df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/kelp_warm.json @@ -0,0 +1,21 @@ +{ + "feature": "minecraft:kelp", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_offset": 0.0, + "noise_to_count_ratio": 80 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_surface.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_surface.json new file mode 100644 index 00000000..72722131 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_surface.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:lake_lava", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_underground.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_underground.json new file mode 100644 index 00000000..a74a1c64 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lake_lava_underground.json @@ -0,0 +1,57 @@ +{ + "feature": "minecraft:lake_lava", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 9 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + }, + { + "type": "minecraft:inside_world_bounds", + "offset": [ + 0, + -5, + 0 + ] + } + ] + } + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -5 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_basalt_columns.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_basalt_columns.json new file mode 100644 index 00000000..ea240cfd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_basalt_columns.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:large_basalt_columns", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 2 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_dripstone.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_dripstone.json new file mode 100644 index 00000000..df40c063 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/large_dripstone.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:large_dripstone", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 48, + "min_inclusive": 10 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json new file mode 100644 index 00000000..ca83901b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:moss_patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 125 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_clay.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_clay.json new file mode 100644 index 00000000..8ec6d652 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_clay.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:lush_caves_clay", + "placement": [ + { + "type": "minecraft:count", + "count": 62 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json new file mode 100644 index 00000000..a6d74bae --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:moss_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 125 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mangrove_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mangrove_checked.json new file mode 100644 index 00000000..b1b987fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mangrove_checked.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:mangrove", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json new file mode 100644 index 00000000..f0583154 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_pine_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_pine_checked.json new file mode 100644 index 00000000..3eea8e24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_pine_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json new file mode 100644 index 00000000..67c91906 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room.json new file mode 100644 index 00000000..eeec57fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:monster_room", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room_deep.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room_deep.json new file mode 100644 index 00000000..d4c380b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/monster_room_deep.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:monster_room", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -1 + }, + "min_inclusive": { + "above_bottom": 6 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json new file mode 100644 index 00000000..8079ef75 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:mushroom_island_vegetation", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/nether_sprouts.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/nether_sprouts.json new file mode 100644 index 00000000..718616fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/nether_sprouts.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:nether_sprouts", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 4 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak.json new file mode 100644 index 00000000..219b753d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..de58b9f7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_002.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_002.json new file mode 100644 index 00000000..25e38943 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_checked.json new file mode 100644 index 00000000..219b753d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json new file mode 100644 index 00000000..3cbaadaa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json new file mode 100644 index 00000000..d0719a2f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:ore_ancient_debris_large", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 24 + }, + "min_inclusive": { + "absolute": 8 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json new file mode 100644 index 00000000..782687df --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_andesite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json new file mode 100644 index 00000000..4ea278c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_andesite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_blackstone.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_blackstone.json new file mode 100644 index 00000000..751fc75c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_blackstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_blackstone", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 31 + }, + "min_inclusive": { + "absolute": 5 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_clay.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_clay.json new file mode 100644 index 00000000..7bcecead --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_clay.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_clay", + "placement": [ + { + "type": "minecraft:count", + "count": 46 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_lower.json new file mode 100644 index 00000000..2469dd96 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_coal_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 192 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_upper.json new file mode 100644 index 00000000..973c39b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_coal_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_coal", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 136 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper.json new file mode 100644 index 00000000..de894cfa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_copper_small", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 112 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper_large.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper_large.json new file mode 100644 index 00000000..9df99eb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_copper_large.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_copper_large", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 112 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_debris_small.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_debris_small.json new file mode 100644 index 00000000..1065910f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_debris_small.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:ore_ancient_debris_small", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 8 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond.json new file mode 100644 index 00000000..e24c6c9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_small", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json new file mode 100644 index 00000000..b9cfbaaa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_large.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_large.json new file mode 100644 index 00000000..0a8a0f93 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_large.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_large", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 9 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json new file mode 100644 index 00000000..cc88d4cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_medium", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -4 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json new file mode 100644 index 00000000..7aabf8de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diorite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json new file mode 100644 index 00000000..404a8082 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diorite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_dirt.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_dirt.json new file mode 100644 index 00000000..bcce4c19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_dirt.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_dirt", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 160 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_emerald.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_emerald.json new file mode 100644 index 00000000..09d5a406 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_emerald.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_emerald", + "placement": [ + { + "type": "minecraft:count", + "count": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 480 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold.json new file mode 100644 index 00000000..004acb81 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 32 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json new file mode 100644 index 00000000..55072eb3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_nether_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_extra.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_extra.json new file mode 100644 index 00000000..c3cb1052 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_extra.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 50 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "absolute": 32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_lower.json new file mode 100644 index 00000000..5ab44009 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_lower.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -48 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_nether.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_nether.json new file mode 100644 index 00000000..1a3c6613 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gold_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_nether_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_lower.json new file mode 100644 index 00000000..ab721172 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_granite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_upper.json new file mode 100644 index 00000000..c5787158 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_granite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_granite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel.json new file mode 100644 index 00000000..1dc3077b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gravel", + "placement": [ + { + "type": "minecraft:count", + "count": 14 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json new file mode 100644 index 00000000..7b2518e6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gravel_nether", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 41 + }, + "min_inclusive": { + "absolute": 5 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_infested.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_infested.json new file mode 100644 index 00000000..b6615bb5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_infested.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_infested", + "placement": [ + { + "type": "minecraft:count", + "count": 14 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 63 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_middle.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_middle.json new file mode 100644 index 00000000..6f10b77c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_middle.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 56 + }, + "min_inclusive": { + "absolute": -24 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_small.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_small.json new file mode 100644 index 00000000..c21289de --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_small.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron_small", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 72 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_upper.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_upper.json new file mode 100644 index 00000000..e096548e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_iron_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron", + "placement": [ + { + "type": "minecraft:count", + "count": 90 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 384 + }, + "min_inclusive": { + "absolute": 80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis.json new file mode 100644 index 00000000..4f1d8737 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_lapis", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 32 + }, + "min_inclusive": { + "absolute": -32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json new file mode 100644 index 00000000..e90a95e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_lapis_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 64 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_magma.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_magma.json new file mode 100644 index 00000000..4512bae5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_magma.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_magma", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 36 + }, + "min_inclusive": { + "absolute": 27 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json new file mode 100644 index 00000000..c1e9a491 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_quartz", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json new file mode 100644 index 00000000..fb9746f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_quartz", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone.json new file mode 100644 index 00000000..d23d800d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_redstone", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 15 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json new file mode 100644 index 00000000..ce1d41cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_redstone", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 32 + }, + "min_inclusive": { + "above_bottom": -32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_soul_sand.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_soul_sand.json new file mode 100644 index 00000000..28b86977 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_soul_sand.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_soul_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 12 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 31 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_tuff.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_tuff.json new file mode 100644 index 00000000..b5e55e1f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/ore_tuff.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_tuff", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json new file mode 100644 index 00000000..8e5766d3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:pale_forest_flower", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json new file mode 100644 index 00000000..9542b328 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:pale_garden_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_moss_patch.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_moss_patch.json new file mode 100644 index 00000000..c7da9c32 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_moss_patch.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:pale_moss_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_checked.json new file mode 100644 index 00000000..5cfab029 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pale_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:pale_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json new file mode 100644 index 00000000..32422f5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pale_oak_creaking", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:pale_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_bush.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_bush.json new file mode 100644 index 00000000..2b8463c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_bush.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_common.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_common.json new file mode 100644 index 00000000..4aeaaa7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_common.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_rare.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_rare.json new file mode 100644 index 00000000..9d7ca729 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_berry_rare.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 384 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_bush.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_bush.json new file mode 100644 index 00000000..007024a1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_bush.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 24 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 5, + "min": -5, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus.json new file mode 100644 index 00000000..a5149bd2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json new file mode 100644 index 00000000..a45d088d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 13 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json new file mode 100644 index 00000000..d784d1bc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json new file mode 100644 index 00000000..440c99b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json @@ -0,0 +1,46 @@ +{ + "feature": "minecraft:crimson_roots", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush.json new file mode 100644 index 00000000..120e3b69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json new file mode 100644 index 00000000..2bdf8715 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json new file mode 100644 index 00000000..321dbfbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json new file mode 100644 index 00000000..cb1fbc4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dry_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json new file mode 100644 index 00000000..888c7ad8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dry_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_fire.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_fire.json new file mode 100644 index 00000000..669dcdfc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_fire.json @@ -0,0 +1,71 @@ +{ + "feature": "minecraft:patch_fire", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:netherrack", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json new file mode 100644 index 00000000..25200ae4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json @@ -0,0 +1,116 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:firefly_bush" + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json new file mode 100644 index 00000000..27c0b2db --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json @@ -0,0 +1,116 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:firefly_bush" + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json new file mode 100644 index 00000000..02c4f6ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json new file mode 100644 index 00000000..afa0fbed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_forest.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_forest.json new file mode 100644 index 00000000..0bf67a2d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_forest.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json new file mode 100644 index 00000000..f0b343da --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:grass_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:podzol", + "offset": [ + 0, + -1, + 0 + ] + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json new file mode 100644 index 00000000..28c486b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_normal.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_normal.json new file mode 100644 index 00000000..5e704943 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_plain.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_plain.json new file mode 100644 index 00000000..6a910c10 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_plain.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json new file mode 100644 index 00000000..c02fc8c3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json new file mode 100644 index 00000000..cdaed444 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json new file mode 100644 index 00000000..99e97a82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_large_fern.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_large_fern.json new file mode 100644 index 00000000..0b32bbd3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_large_fern.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:large_fern", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json new file mode 100644 index 00000000..2c69bccc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:leaf_litter", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon.json new file mode 100644 index 00000000..a685cdbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:melon", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:empty" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json new file mode 100644 index 00000000..9b3e0f70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:melon", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:empty" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_pumpkin.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_pumpkin.json new file mode 100644 index 00000000..dd9048f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_pumpkin.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:pumpkin", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 300 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_soul_fire.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_soul_fire.json new file mode 100644 index 00000000..3e1fd4f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_soul_fire.json @@ -0,0 +1,71 @@ +{ + "feature": "minecraft:patch_soul_fire", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:soul_soil", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json new file mode 100644 index 00000000..4924b342 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json new file mode 100644 index 00000000..b0d5a0b6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json new file mode 100644 index 00000000..d92c6b26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json @@ -0,0 +1,108 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json new file mode 100644 index 00000000..f7505464 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sunflower.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sunflower.json new file mode 100644 index 00000000..d7b63d66 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_sunflower.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:sunflower", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json new file mode 100644 index 00000000..75e782aa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass.json new file mode 100644 index 00000000..c5005e3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:tall_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json new file mode 100644 index 00000000..58651c24 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json @@ -0,0 +1,51 @@ +{ + "feature": "minecraft:tall_grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 7, + "below_noise": 0, + "noise_level": -0.8 + }, + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_waterlily.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_waterlily.json new file mode 100644 index 00000000..c0009e83 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/patch_waterlily.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:waterlily", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_hay.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_hay.json new file mode 100644 index 00000000..7036d4ce --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_hay.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_hay", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_ice.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_ice.json new file mode 100644 index 00000000..d778000a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_ice.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_ice", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_melon.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_melon.json new file mode 100644 index 00000000..915d5735 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_melon.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_melon", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_pumpkin.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_pumpkin.json new file mode 100644 index 00000000..397f3260 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_pumpkin.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_pumpkin", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_snow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_snow.json new file mode 100644 index 00000000..07bb3bc7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pile_snow.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_snow", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine.json new file mode 100644 index 00000000..303bcaf4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_checked.json new file mode 100644 index 00000000..303bcaf4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_on_snow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_on_snow.json new file mode 100644 index 00000000..797cf813 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pine_on_snow.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 8, + "target_condition": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:powder_snow" + } + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow" + ], + "offset": [ + 0, + -1, + 0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pointed_dripstone.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pointed_dripstone.json new file mode 100644 index 00000000..ee384e85 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/pointed_dripstone.json @@ -0,0 +1,56 @@ +{ + "feature": "minecraft:pointed_dripstone", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 256, + "min_inclusive": 192 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:clamped_normal", + "deviation": 3.0, + "max_inclusive": 10, + "mean": 0.0, + "min_inclusive": -10 + }, + "y_spread": { + "type": "minecraft:clamped_normal", + "deviation": 0.6, + "max_inclusive": 2, + "mean": 0.0, + "min_inclusive": -2 + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json new file mode 100644 index 00000000..32d2a2c7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json @@ -0,0 +1,53 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json new file mode 100644 index 00000000..d6317875 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 512 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json new file mode 100644 index 00000000..e5fdd465 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 171 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json new file mode 100644 index 00000000..a3560332 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json new file mode 100644 index 00000000..d719c059 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json new file mode 100644 index 00000000..ec079e22 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json @@ -0,0 +1,48 @@ +{ + "feature": "minecraft:rooted_azalea_tree", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json new file mode 100644 index 00000000..9d9a5c4a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:sculk_patch_ancient_city", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json new file mode 100644 index 00000000..f7339687 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:sculk_patch_deep_dark", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_vein.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_vein.json new file mode 100644 index 00000000..5f16b749 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sculk_vein.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:sculk_vein", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 250, + "min_inclusive": 204 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sea_pickle.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sea_pickle.json new file mode 100644 index 00000000..80175bbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/sea_pickle.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:sea_pickle", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_cold.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_cold.json new file mode 100644 index 00000000..419adcc6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_cold.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep.json new file mode 100644 index 00000000..306b9182 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json new file mode 100644 index 00000000..b8a8b28f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 40 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json new file mode 100644 index 00000000..6015530c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 80 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_normal.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_normal.json new file mode 100644 index 00000000..1cc1627b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_normal.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_river.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_river.json new file mode 100644 index 00000000..ea722425 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_river.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_slightly_less_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_swamp.json new file mode 100644 index 00000000..52b3f359 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_swamp.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_mid", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_warm.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_warm.json new file mode 100644 index 00000000..3d973788 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/seagrass_warm.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 80 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/small_basalt_columns.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/small_basalt_columns.json new file mode 100644 index 00000000..13d368a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/small_basalt_columns.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:small_basalt_columns", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 4 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spore_blossom.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spore_blossom.json new file mode 100644 index 00000000..e66a65bf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spore_blossom.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:spore_blossom", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed.json new file mode 100644 index 00000000..c90abc33 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_closed", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed_double.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed_double.json new file mode 100644 index 00000000..98b3e91c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_closed_double.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_closed", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_delta.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_delta.json new file mode 100644 index 00000000..b680210e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_delta.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_lava_nether", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava.json new file mode 100644 index 00000000..4a799ff5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:spring_lava_overworld", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:very_biased_to_bottom", + "inner": 8, + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json new file mode 100644 index 00000000..6d02d4f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:spring_lava_frozen", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:very_biased_to_bottom", + "inner": 8, + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_open.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_open.json new file mode 100644 index 00000000..173f6447 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_open.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_open", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_water.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_water.json new file mode 100644 index 00000000..61a88588 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spring_water.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_water", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 192 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce.json new file mode 100644 index 00000000..097a470b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_checked.json new file mode 100644 index 00000000..097a470b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_on_snow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_on_snow.json new file mode 100644 index 00000000..2eb5ea21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/spruce_on_snow.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 8, + "target_condition": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:powder_snow" + } + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow" + ], + "offset": [ + 0, + -1, + 0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees.json new file mode 100644 index 00000000..85bcfe9e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:super_birch_bees", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json new file mode 100644 index 00000000..647e3038 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:super_birch_bees_0002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json new file mode 100644 index 00000000..5d29165f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:tall_mangrove", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_badlands.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_badlands.json new file mode 100644 index 00000000..b0bae882 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_badlands.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_badlands", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 5, + "weight": 9 + }, + { + "data": 6, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch.json new file mode 100644 index 00000000..96e1dbd0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_birch", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json new file mode 100644 index 00000000..1751dd2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_birch_and_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_cherry.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_cherry.json new file mode 100644 index 00000000..bb63f871 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_cherry.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:cherry_bees_005", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_flower_forest.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_flower_forest.json new file mode 100644 index 00000000..29553d4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_flower_forest.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_flower_forest", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 6, + "weight": 9 + }, + { + "data": 7, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_grove.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_grove.json new file mode 100644 index 00000000..b09ef9cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_grove.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_grove", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_jungle.json new file mode 100644 index 00000000..8d746a5a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_jungle.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 50, + "weight": 9 + }, + { + "data": 51, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_mangrove.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_mangrove.json new file mode 100644 index 00000000..178dba98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_mangrove.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:mangrove_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 5 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_meadow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_meadow.json new file mode 100644 index 00000000..903e9ea8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_meadow.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:meadow_trees", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json new file mode 100644 index 00000000..835d8466 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_old_growth_pine_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json new file mode 100644 index 00000000..88be4c70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_old_growth_spruce_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_plains.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_plains.json new file mode 100644 index 00000000..68a61ddf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_plains.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_plains", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 19 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_savanna.json new file mode 100644 index 00000000..5c0dd227 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_savanna.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_savanna", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 9 + }, + { + "data": 2, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_snowy.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_snowy.json new file mode 100644 index 00000000..524337a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_snowy.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_snowy", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json new file mode 100644 index 00000000..a585bbe0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_sparse_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_swamp.json new file mode 100644 index 00000000..5db3e482 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_swamp.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:swamp_oak", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 2 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_taiga.json new file mode 100644 index 00000000..835090a6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_water.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_water.json new file mode 100644 index 00000000..997128fc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_water.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_water", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json new file mode 100644 index 00000000..8bce669f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_windswept_hills", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 3, + "weight": 9 + }, + { + "data": 4, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json new file mode 100644 index 00000000..8be56da5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_windswept_hills", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json new file mode 100644 index 00000000..4fa16756 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_savanna", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/twisting_vines.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/twisting_vines.json new file mode 100644 index 00000000..52640f09 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/twisting_vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:twisting_vines", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/underwater_magma.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/underwater_magma.json new file mode 100644 index 00000000..ba5c116d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/underwater_magma.json @@ -0,0 +1,36 @@ +{ + "feature": "minecraft:underwater_magma", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 52, + "min_inclusive": 44 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -2 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/vines.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/vines.json new file mode 100644 index 00000000..682c6aa4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:vines", + "placement": [ + { + "type": "minecraft:count", + "count": 127 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 100 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/void_start_platform.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/void_start_platform.json new file mode 100644 index 00000000..9027738e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/void_start_platform.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:void_start_platform", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json new file mode 100644 index 00000000..8648d40c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json @@ -0,0 +1,21 @@ +{ + "feature": "minecraft:warm_ocean_vegetation", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 400.0, + "noise_offset": 0.0, + "noise_to_count_ratio": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json new file mode 100644 index 00000000..10e5ed5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:warped_forest_vegetation", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 5 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_fungi.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_fungi.json new file mode 100644 index 00000000..5c6a1482 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/warped_fungi.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:warped_fungus", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/weeping_vines.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/weeping_vines.json new file mode 100644 index 00000000..f189eb69 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/weeping_vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:weeping_vines", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json new file mode 100644 index 00000000..79455ee9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:wildflower", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json new file mode 100644 index 00000000..b0ad3318 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:wildflower", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json new file mode 100644 index 00000000..384eeecc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json @@ -0,0 +1,57 @@ +{ + "processors": [ + { + "integrity": 0.95, + "processor_type": "minecraft:block_rot", + "rottable_blocks": "#minecraft:ancient_city_replaceable" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json new file mode 100644 index 00000000..2807a8cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json @@ -0,0 +1,52 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json new file mode 100644 index 00000000..ea7d74f9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "integrity": 0.95, + "processor_type": "minecraft:block_rot", + "rottable_blocks": "#minecraft:ancient_city_replaceable" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tile_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json new file mode 100644 index 00000000..e78711ea --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json @@ -0,0 +1,74 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/bottom_rampart.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bottom_rampart.json new file mode 100644 index 00000000..9712f5cf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bottom_rampart.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:magma_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.75 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:cracked_polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/bridge.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bridge.json new file mode 100644 index 00000000..a91ac156 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/bridge.json @@ -0,0 +1,35 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/empty.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/empty.json new file mode 100644 index 00000000..06b65ef0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/empty.json @@ -0,0 +1,3 @@ +{ + "processors": [] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/entrance_replacement.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/entrance_replacement.json new file mode 100644 index 00000000..f6884353 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/entrance_replacement.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.6 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_desert.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_desert.json new file mode 100644 index 00000000..6b6bef0f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_desert.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_plains.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_plains.json new file mode 100644 index 00000000..68ba02a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_plains.json @@ -0,0 +1,57 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_savanna.json new file mode 100644 index 00000000..1be4851d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_savanna.json @@ -0,0 +1,25 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_snowy.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_snowy.json new file mode 100644 index 00000000..d7c61b46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_snowy.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_taiga.json new file mode 100644 index 00000000..a361bb46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/farm_taiga.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:pumpkin_stem", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_coal.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_coal.json new file mode 100644 index 00000000..ae7a6011 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_coal.json @@ -0,0 +1,12 @@ +{ + "processors": [ + { + "integrity": 0.1, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_diamonds.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_diamonds.json new file mode 100644 index 00000000..2181c32b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_diamonds.json @@ -0,0 +1,29 @@ +{ + "processors": [ + { + "integrity": 0.1, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:coal_ore", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:deepslate_diamond_ore" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_rot.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_rot.json new file mode 100644 index 00000000..9295d08f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/fossil_rot.json @@ -0,0 +1,12 @@ +{ + "processors": [ + { + "integrity": 0.9, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_rampart.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_rampart.json new file mode 100644 index 00000000..635d25eb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_rampart.json @@ -0,0 +1,54 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:always_true" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + }, + "position_predicate": { + "axis": "y", + "max_chance": 0.05, + "max_dist": 100, + "min_chance": 0.0, + "min_dist": 0, + "predicate_type": "minecraft:axis_aligned_linear_pos" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_wall.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_wall.json new file mode 100644 index 00000000..413a7925 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/high_wall.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/housing.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/housing.json new file mode 100644 index 00000000..166d1246 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/housing.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_10_percent.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_10_percent.json new file mode 100644 index 00000000..f518c509 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_10_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_20_percent.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_20_percent.json new file mode 100644 index 00000000..c3a45e28 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_20_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_70_percent.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_70_percent.json new file mode 100644 index 00000000..7b14dbdf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/mossify_70_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.7 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/outpost_rot.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/outpost_rot.json new file mode 100644 index 00000000..65991b4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/outpost_rot.json @@ -0,0 +1,8 @@ +{ + "processors": [ + { + "integrity": 0.05, + "processor_type": "minecraft:block_rot" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/rampart_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/rampart_degradation.json new file mode 100644 index 00000000..b18c5ba6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/rampart_degradation.json @@ -0,0 +1,100 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/roof.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/roof.json new file mode 100644 index 00000000..2f0f4c26 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/roof.json @@ -0,0 +1,48 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/side_wall_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/side_wall_degradation.json new file mode 100644 index 00000000..6b33ec25 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/side_wall_degradation.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/stable_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/stable_degradation.json new file mode 100644 index 00000000..ada3a945 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/stable_degradation.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_plains.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_plains.json new file mode 100644 index 00000000..098c0868 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_plains.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:oak_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_savanna.json new file mode 100644 index 00000000..ad90f636 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_savanna.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:acacia_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json new file mode 100644 index 00000000..21fc3017 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json @@ -0,0 +1,83 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:spruce_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:ice", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:spruce_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json new file mode 100644 index 00000000..2d6a7fa6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json @@ -0,0 +1,104 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:coarse_dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:mud_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:packed_mud" + } + } + ] + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 6, + "processor_type": "minecraft:capped" + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_rare" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 3, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json new file mode 100644 index 00000000..8a76493b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json @@ -0,0 +1,76 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:coarse_dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:mud_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:packed_mud" + } + } + ] + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 2, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json new file mode 100644 index 00000000..1658d1c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json @@ -0,0 +1,32 @@ +{ + "processors": [ + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 2, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/treasure_rooms.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/treasure_rooms.json new file mode 100644 index 00000000..5ab17822 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/treasure_rooms.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.35 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json new file mode 100644 index 00000000..d5debb6b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json @@ -0,0 +1,64 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_oxidized_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.33333334 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_weathered_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_exposed_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_desert.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_desert.json new file mode 100644 index 00000000..8846384a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_desert.json @@ -0,0 +1,142 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:cut_sandstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_plains.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_plains.json new file mode 100644 index 00000000..e85d5a3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_plains.json @@ -0,0 +1,266 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:mossy_cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:white_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_oak_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.02 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_savanna.json new file mode 100644 index 00000000..d6a0354d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_savanna.json @@ -0,0 +1,221 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_wood", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:orange_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:yellow_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:red_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_snowy.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_snowy.json new file mode 100644 index 00000000..9464bd14 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_snowy.json @@ -0,0 +1,210 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:lantern", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_spruce_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_spruce_wood", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_taiga.json new file mode 100644 index 00000000..bd94491d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/processor_list/zombie_taiga.json @@ -0,0 +1,203 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:campfire", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:campfire", + "Properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:pumpkin_stem", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ancient_city.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ancient_city.json new file mode 100644 index 00000000..d7582a0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ancient_city.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/ancient_city", + "max_distance_from_center": 116, + "size": 7, + "spawn_overrides": { + "ambient": { + "bounding_box": "full", + "spawns": [] + }, + "axolotls": { + "bounding_box": "full", + "spawns": [] + }, + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "misc": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + }, + "underground_water_creature": { + "bounding_box": "full", + "spawns": [] + }, + "water_ambient": { + "bounding_box": "full", + "spawns": [] + }, + "water_creature": { + "bounding_box": "full", + "spawns": [] + } + }, + "start_height": { + "absolute": -27 + }, + "start_jigsaw_name": "minecraft:city_anchor", + "start_pool": "minecraft:ancient_city/city_center", + "step": "underground_decoration", + "terrain_adaptation": "beard_box", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/bastion_remnant.json b/data/generated/V26_1/data/minecraft/worldgen/structure/bastion_remnant.json new file mode 100644 index 00000000..105d6db0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/bastion_remnant.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/bastion_remnant", + "max_distance_from_center": 80, + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 33 + }, + "start_pool": "minecraft:bastion/starts", + "step": "surface_structures", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/buried_treasure.json b/data/generated/V26_1/data/minecraft/worldgen/structure/buried_treasure.json new file mode 100644 index 00000000..0ecc1c97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/buried_treasure.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:buried_treasure", + "biomes": "#minecraft:has_structure/buried_treasure", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/desert_pyramid.json b/data/generated/V26_1/data/minecraft/worldgen/structure/desert_pyramid.json new file mode 100644 index 00000000..a11436ba --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/desert_pyramid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:desert_pyramid", + "biomes": "#minecraft:has_structure/desert_pyramid", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/end_city.json b/data/generated/V26_1/data/minecraft/worldgen/structure/end_city.json new file mode 100644 index 00000000..022ffaec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/end_city.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:end_city", + "biomes": "#minecraft:has_structure/end_city", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/fortress.json b/data/generated/V26_1/data/minecraft/worldgen/structure/fortress.json new file mode 100644 index 00000000..e310f12d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/fortress.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:fortress", + "biomes": "#minecraft:has_structure/nether_fortress", + "spawn_overrides": { + "monster": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:blaze", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 5 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 8 + }, + { + "type": "minecraft:skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 2 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 3 + } + ] + } + }, + "step": "underground_decoration" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/igloo.json b/data/generated/V26_1/data/minecraft/worldgen/structure/igloo.json new file mode 100644 index 00000000..6e46cb68 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/igloo.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:igloo", + "biomes": "#minecraft:has_structure/igloo", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/jungle_pyramid.json b/data/generated/V26_1/data/minecraft/worldgen/structure/jungle_pyramid.json new file mode 100644 index 00000000..66c88010 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/jungle_pyramid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:jungle_temple", + "biomes": "#minecraft:has_structure/jungle_temple", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/mansion.json b/data/generated/V26_1/data/minecraft/worldgen/structure/mansion.json new file mode 100644 index 00000000..25ccc3e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/mansion.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:woodland_mansion", + "biomes": "#minecraft:has_structure/woodland_mansion", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft.json b/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft.json new file mode 100644 index 00000000..973a9575 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:mineshaft", + "biomes": "#minecraft:has_structure/mineshaft", + "mineshaft_type": "normal", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft_mesa.json b/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft_mesa.json new file mode 100644 index 00000000..5c163780 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/mineshaft_mesa.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:mineshaft", + "biomes": "#minecraft:has_structure/mineshaft_mesa", + "mineshaft_type": "mesa", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/monument.json b/data/generated/V26_1/data/minecraft/worldgen/structure/monument.json new file mode 100644 index 00000000..e4aa008e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/monument.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:ocean_monument", + "biomes": "#minecraft:has_structure/ocean_monument", + "spawn_overrides": { + "axolotls": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [ + { + "type": "minecraft:guardian", + "maxCount": 4, + "minCount": 2, + "weight": 1 + } + ] + }, + "underground_water_creature": { + "bounding_box": "full", + "spawns": [] + } + }, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/nether_fossil.json b/data/generated/V26_1/data/minecraft/worldgen/structure/nether_fossil.json new file mode 100644 index 00000000..d040f3e2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/nether_fossil.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:nether_fossil", + "biomes": "#minecraft:has_structure/nether_fossil", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 2 + }, + "min_inclusive": { + "absolute": 32 + } + }, + "spawn_overrides": {}, + "step": "underground_decoration", + "terrain_adaptation": "beard_thin" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_cold.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_cold.json new file mode 100644 index 00000000..552a31fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_cold.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:ocean_ruin", + "biome_temp": "cold", + "biomes": "#minecraft:has_structure/ocean_ruin_cold", + "cluster_probability": 0.9, + "large_probability": 0.3, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_warm.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_warm.json new file mode 100644 index 00000000..8620fa9d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ocean_ruin_warm.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:ocean_ruin", + "biome_temp": "warm", + "biomes": "#minecraft:has_structure/ocean_ruin_warm", + "cluster_probability": 0.9, + "large_probability": 0.3, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/pillager_outpost.json b/data/generated/V26_1/data/minecraft/worldgen/structure/pillager_outpost.json new file mode 100644 index 00000000..a11ced2a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/pillager_outpost.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/pillager_outpost", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 7, + "spawn_overrides": { + "monster": { + "bounding_box": "full", + "spawns": [ + { + "type": "minecraft:pillager", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + } + }, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:pillager_outpost/base_plates", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal.json new file mode 100644 index 00000000..5c8ae1b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_standard", + "setups": [ + { + "air_pocket_probability": 1.0, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "underground", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + }, + { + "air_pocket_probability": 0.5, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_desert.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_desert.json new file mode 100644 index 00000000..489b9c86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_desert.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_desert", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": false, + "mossiness": 0.0, + "overgrown": false, + "placement": "partly_buried", + "replace_with_blackstone": false, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_jungle.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_jungle.json new file mode 100644 index 00000000..da747a8a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_jungle.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_jungle", + "setups": [ + { + "air_pocket_probability": 0.5, + "can_be_cold": false, + "mossiness": 0.8, + "overgrown": true, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": true, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_mountain.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_mountain.json new file mode 100644 index 00000000..67e3d22c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_mountain.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_mountain", + "setups": [ + { + "air_pocket_probability": 1.0, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "in_mountain", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + }, + { + "air_pocket_probability": 0.5, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_nether.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_nether.json new file mode 100644 index 00000000..ddf2069c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_nether.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_nether", + "setups": [ + { + "air_pocket_probability": 0.5, + "can_be_cold": false, + "mossiness": 0.0, + "overgrown": false, + "placement": "in_nether", + "replace_with_blackstone": true, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_ocean.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_ocean.json new file mode 100644 index 00000000..e473d153 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_ocean.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_ocean", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": true, + "mossiness": 0.8, + "overgrown": false, + "placement": "on_ocean_floor", + "replace_with_blackstone": false, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_swamp.json b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_swamp.json new file mode 100644 index 00000000..ac0898b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/ruined_portal_swamp.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_swamp", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": false, + "mossiness": 0.5, + "overgrown": false, + "placement": "on_ocean_floor", + "replace_with_blackstone": false, + "vines": true, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck.json b/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck.json new file mode 100644 index 00000000..57e0f941 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:shipwreck", + "biomes": "#minecraft:has_structure/shipwreck", + "is_beached": false, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck_beached.json b/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck_beached.json new file mode 100644 index 00000000..8debacbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/shipwreck_beached.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:shipwreck", + "biomes": "#minecraft:has_structure/shipwreck_beached", + "is_beached": true, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/stronghold.json b/data/generated/V26_1/data/minecraft/worldgen/structure/stronghold.json new file mode 100644 index 00000000..53edaf89 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/stronghold.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stronghold", + "biomes": "#minecraft:has_structure/stronghold", + "spawn_overrides": {}, + "step": "surface_structures", + "terrain_adaptation": "bury" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/swamp_hut.json b/data/generated/V26_1/data/minecraft/worldgen/structure/swamp_hut.json new file mode 100644 index 00000000..21c5c467 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/swamp_hut.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:swamp_hut", + "biomes": "#minecraft:has_structure/swamp_hut", + "spawn_overrides": { + "creature": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:cat", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + }, + "monster": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + } + }, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/trail_ruins.json b/data/generated/V26_1/data/minecraft/worldgen/structure/trail_ruins.json new file mode 100644 index 00000000..eead38e3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/trail_ruins.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/trail_ruins", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 7, + "spawn_overrides": {}, + "start_height": { + "absolute": -15 + }, + "start_pool": "minecraft:trail_ruins/tower", + "step": "underground_structures", + "terrain_adaptation": "bury", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/trial_chambers.json b/data/generated/V26_1/data/minecraft/worldgen/structure/trial_chambers.json new file mode 100644 index 00000000..1debb918 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/trial_chambers.json @@ -0,0 +1,147 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/trial_chambers", + "dimension_padding": 10, + "liquid_settings": "ignore_waterlogging", + "max_distance_from_center": 116, + "pool_aliases": [ + { + "type": "minecraft:random_group", + "groups": [ + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/skeleton" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/skeleton" + } + ], + "weight": 1 + }, + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/stray" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/stray" + } + ], + "weight": 1 + }, + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/poison_skeleton" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/poison_skeleton" + } + ], + "weight": 1 + } + ] + }, + { + "type": "minecraft:random", + "alias": "minecraft:trial_chambers/spawner/contents/melee", + "targets": [ + { + "data": "minecraft:trial_chambers/spawner/melee/zombie", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/melee/husk", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/melee/spider", + "weight": 1 + } + ] + }, + { + "type": "minecraft:random", + "alias": "minecraft:trial_chambers/spawner/contents/small_melee", + "targets": [ + { + "data": "minecraft:trial_chambers/spawner/small_melee/slime", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/cave_spider", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/silverfish", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/baby_zombie", + "weight": 1 + } + ] + } + ], + "size": 20, + "spawn_overrides": { + "ambient": { + "bounding_box": "piece", + "spawns": [] + }, + "axolotls": { + "bounding_box": "piece", + "spawns": [] + }, + "creature": { + "bounding_box": "piece", + "spawns": [] + }, + "misc": { + "bounding_box": "piece", + "spawns": [] + }, + "monster": { + "bounding_box": "piece", + "spawns": [] + }, + "underground_water_creature": { + "bounding_box": "piece", + "spawns": [] + }, + "water_ambient": { + "bounding_box": "piece", + "spawns": [] + }, + "water_creature": { + "bounding_box": "piece", + "spawns": [] + } + }, + "start_height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -20 + }, + "min_inclusive": { + "absolute": -40 + } + }, + "start_pool": "minecraft:trial_chambers/chamber/end", + "step": "underground_structures", + "terrain_adaptation": "encapsulate", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/village_desert.json b/data/generated/V26_1/data/minecraft/worldgen/structure/village_desert.json new file mode 100644 index 00000000..8e140ee3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/village_desert.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_desert", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/desert/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/village_plains.json b/data/generated/V26_1/data/minecraft/worldgen/structure/village_plains.json new file mode 100644 index 00000000..5aa6d1a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/village_plains.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_plains", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/plains/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/village_savanna.json b/data/generated/V26_1/data/minecraft/worldgen/structure/village_savanna.json new file mode 100644 index 00000000..0281f6a7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/village_savanna.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_savanna", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/savanna/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/village_snowy.json b/data/generated/V26_1/data/minecraft/worldgen/structure/village_snowy.json new file mode 100644 index 00000000..cca57933 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/village_snowy.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_snowy", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/snowy/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure/village_taiga.json b/data/generated/V26_1/data/minecraft/worldgen/structure/village_taiga.json new file mode 100644 index 00000000..8a88cdd8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure/village_taiga.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_taiga", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/taiga/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/ancient_cities.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ancient_cities.json new file mode 100644 index 00000000..decca0b9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ancient_cities.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 20083232, + "separation": 8, + "spacing": 24 + }, + "structures": [ + { + "structure": "minecraft:ancient_city", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/buried_treasures.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/buried_treasures.json new file mode 100644 index 00000000..fe9483fd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/buried_treasures.json @@ -0,0 +1,21 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "frequency": 0.01, + "frequency_reduction_method": "legacy_type_2", + "locate_offset": [ + 9, + 0, + 9 + ], + "salt": 0, + "separation": 0, + "spacing": 1 + }, + "structures": [ + { + "structure": "minecraft:buried_treasure", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/desert_pyramids.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/desert_pyramids.json new file mode 100644 index 00000000..99f26c3a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/desert_pyramids.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357617, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:desert_pyramid", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/end_cities.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/end_cities.json new file mode 100644 index 00000000..8e7b3bb7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/end_cities.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387313, + "separation": 11, + "spacing": 20, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:end_city", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/igloos.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/igloos.json new file mode 100644 index 00000000..f2e610fb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/igloos.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357618, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:igloo", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/jungle_temples.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/jungle_temples.json new file mode 100644 index 00000000..e792548f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/jungle_temples.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357619, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:jungle_pyramid", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/mineshafts.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/mineshafts.json new file mode 100644 index 00000000..e4fc85a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/mineshafts.json @@ -0,0 +1,20 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "frequency": 0.004, + "frequency_reduction_method": "legacy_type_3", + "salt": 0, + "separation": 0, + "spacing": 1 + }, + "structures": [ + { + "structure": "minecraft:mineshaft", + "weight": 1 + }, + { + "structure": "minecraft:mineshaft_mesa", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_complexes.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_complexes.json new file mode 100644 index 00000000..3f2d8e00 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_complexes.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 30084232, + "separation": 4, + "spacing": 27 + }, + "structures": [ + { + "structure": "minecraft:fortress", + "weight": 2 + }, + { + "structure": "minecraft:bastion_remnant", + "weight": 3 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_fossils.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_fossils.json new file mode 100644 index 00000000..571a28f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/nether_fossils.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357921, + "separation": 1, + "spacing": 2 + }, + "structures": [ + { + "structure": "minecraft:nether_fossil", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_monuments.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_monuments.json new file mode 100644 index 00000000..0a0157d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_monuments.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387313, + "separation": 5, + "spacing": 32, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:monument", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_ruins.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_ruins.json new file mode 100644 index 00000000..9a8b6e5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ocean_ruins.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357621, + "separation": 8, + "spacing": 20 + }, + "structures": [ + { + "structure": "minecraft:ocean_ruin_cold", + "weight": 1 + }, + { + "structure": "minecraft:ocean_ruin_warm", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/pillager_outposts.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/pillager_outposts.json new file mode 100644 index 00000000..ad635a47 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/pillager_outposts.json @@ -0,0 +1,20 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "exclusion_zone": { + "chunk_count": 10, + "other_set": "minecraft:villages" + }, + "frequency": 0.2, + "frequency_reduction_method": "legacy_type_1", + "salt": 165745296, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:pillager_outpost", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/ruined_portals.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ruined_portals.json new file mode 100644 index 00000000..60c2e972 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/ruined_portals.json @@ -0,0 +1,38 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 34222645, + "separation": 15, + "spacing": 40 + }, + "structures": [ + { + "structure": "minecraft:ruined_portal", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_desert", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_jungle", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_swamp", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_mountain", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_ocean", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_nether", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/shipwrecks.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/shipwrecks.json new file mode 100644 index 00000000..7b403b4c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/shipwrecks.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 165745295, + "separation": 4, + "spacing": 24 + }, + "structures": [ + { + "structure": "minecraft:shipwreck", + "weight": 1 + }, + { + "structure": "minecraft:shipwreck_beached", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/strongholds.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/strongholds.json new file mode 100644 index 00000000..c3f6005e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/strongholds.json @@ -0,0 +1,16 @@ +{ + "placement": { + "type": "minecraft:concentric_rings", + "count": 128, + "distance": 32, + "preferred_biomes": "#minecraft:stronghold_biased_to", + "salt": 0, + "spread": 3 + }, + "structures": [ + { + "structure": "minecraft:stronghold", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/swamp_huts.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/swamp_huts.json new file mode 100644 index 00000000..0fe01b4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/swamp_huts.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357620, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:swamp_hut", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/trail_ruins.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/trail_ruins.json new file mode 100644 index 00000000..9a9ac814 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/trail_ruins.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 83469867, + "separation": 8, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:trail_ruins", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/trial_chambers.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/trial_chambers.json new file mode 100644 index 00000000..9989d05a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/trial_chambers.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 94251327, + "separation": 12, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:trial_chambers", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/villages.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/villages.json new file mode 100644 index 00000000..a9a148ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/villages.json @@ -0,0 +1,30 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387312, + "separation": 8, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:village_plains", + "weight": 1 + }, + { + "structure": "minecraft:village_desert", + "weight": 1 + }, + { + "structure": "minecraft:village_savanna", + "weight": 1 + }, + { + "structure": "minecraft:village_snowy", + "weight": 1 + }, + { + "structure": "minecraft:village_taiga", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/structure_set/woodland_mansions.json b/data/generated/V26_1/data/minecraft/worldgen/structure_set/woodland_mansions.json new file mode 100644 index 00000000..d0a685ff --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/structure_set/woodland_mansions.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387319, + "separation": 20, + "spacing": 80, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:mansion", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json new file mode 100644 index 00000000..f91e5db4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_connector", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_4", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_5", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center.json new file mode 100644 index 00000000..f9baf9b7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_1", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_2", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_3", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json new file mode 100644 index 00000000..ddb5fbbb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json @@ -0,0 +1,95 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_left_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_right_corner_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_right_corner_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/left", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/right", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top_right_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top_left_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/sculk.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/sculk.json new file mode 100644 index 00000000..a05c861e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/sculk.json @@ -0,0 +1,19 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:sculk_patch_ancient_city", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/structures.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/structures.json new file mode 100644 index 00000000..6350bed2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/structures.json @@ -0,0 +1,208 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/barracks", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/sauna_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_statue", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/large_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_4", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/large_pillar_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_pillar_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/ice_box_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls.json new file mode 100644 index 00000000..2f17eb21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_corner_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_intersection_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_lshape_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_passage_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_corner_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_corner_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json new file mode 100644 index 00000000..380a33e1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json @@ -0,0 +1,77 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_5", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_bridge", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json new file mode 100644 index 00000000..c5c17289 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/blocks/air", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/blocks/gold", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json new file mode 100644 index 00000000..536479c9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/bridge_pieces/bridge", + "processors": "minecraft:bridge", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json new file mode 100644 index 00000000..dfbfc5d4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/connectors/back_bridge_top", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/connectors/back_bridge_bottom", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json new file mode 100644 index 00000000..1545bb86 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/legs/leg_0", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/legs/leg_1", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json new file mode 100644 index 00000000..fa6aa7cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/rampart_plates/plate_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json new file mode 100644 index 00000000..8d64dd16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/ramparts/rampart_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/ramparts/rampart_1", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json new file mode 100644 index 00000000..95e67ee9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance", + "processors": "minecraft:entrance_replacement", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance_face", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json new file mode 100644 index 00000000..519f747b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/walls/wall_base_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/walls/wall_base_1", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json new file mode 100644 index 00000000..b9141a07 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/connectors/end_post_connector", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json new file mode 100644 index 00000000..d5f6db4f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json new file mode 100644 index 00000000..7e7f4644 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json new file mode 100644 index 00000000..fe684790 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_0_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_1_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_2_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_3_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_4_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json new file mode 100644 index 00000000..72be6944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/posts/stair_post", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/posts/end_post", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json new file mode 100644 index 00000000..2c5e9d16 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/rampart_plates/rampart_plate_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json new file mode 100644 index 00000000..866b742d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json new file mode 100644 index 00000000..f49b3d65 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json new file mode 100644 index 00000000..c6876191 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json new file mode 100644 index 00000000..dffa6294 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json @@ -0,0 +1,140 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json new file mode 100644 index 00000000..fe42d672 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json new file mode 100644 index 00000000..857e2f57 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/wall_base", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json new file mode 100644 index 00000000..d72cfc99 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/side_wall_0", + "processors": "minecraft:side_wall_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/side_wall_1", + "processors": "minecraft:side_wall_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json new file mode 100644 index 00000000..80262c74 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/hoglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/empty", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json new file mode 100644 index 00000000..49881414 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/sword_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/crossbow_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/empty", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json new file mode 100644 index 00000000..57e8b443 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin_always", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/sword_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/starts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/starts.json new file mode 100644 index 00000000..268da0d8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/starts.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/air_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/air_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/big_air_full", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json new file mode 100644 index 00000000..2407bb50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/lava_basin", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json new file mode 100644 index 00000000..37494415 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json new file mode 100644 index 00000000..0424a1a2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/brains/center_brain", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json new file mode 100644 index 00000000..ee5f8435 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_middle", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_top", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_top_entrance", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json new file mode 100644 index 00000000..3151ea3b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/bottom/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/bottom/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json new file mode 100644 index 00000000..38aaef5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/bottom", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/middle", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/top", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json new file mode 100644 index 00000000..26ce379c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/middle/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/middle/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json new file mode 100644 index 00000000..654639fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/top/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/top/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json new file mode 100644 index 00000000..efebb4cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/entrances/entrance_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json new file mode 100644 index 00000000..c7a4e02d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/house_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/house_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json new file mode 100644 index 00000000..abb8c232 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json @@ -0,0 +1,86 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/fire_room", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/roofed_bridge", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json new file mode 100644 index 00000000..e69a1f97 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/fire_room", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json new file mode 100644 index 00000000..b36db2c6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/mid_wall_main", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/mid_wall_side", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/bottom_wall_0", + "processors": "minecraft:bottom_rampart", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/top_wall", + "processors": "minecraft:high_rampart", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/lava_basin_side", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/lava_basin_main", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json new file mode 100644 index 00000000..2a5ca133 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/wall_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/corner_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/center_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json new file mode 100644 index 00000000..d3cc0b98 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/stairs/lower_stairs", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json new file mode 100644 index 00000000..2f0e66a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/lava_wall", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/entrance_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json new file mode 100644 index 00000000..7657ab9a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json new file mode 100644 index 00000000..ad94c72d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json new file mode 100644 index 00000000..51723b0b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/top_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/mid_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/bottom_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/medium_outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/tall_outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json new file mode 100644 index 00000000..d2e25690 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/main_entrance", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json new file mode 100644 index 00000000..22407c36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json new file mode 100644 index 00000000..e9d3d785 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/wall_units/edge_0_large", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edges.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edges.json new file mode 100644 index 00000000..86941f70 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/edges.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/edges/edge_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json new file mode 100644 index 00000000..51a65e94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/fillers/stage_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json new file mode 100644 index 00000000..371c1e9b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/pathways.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/pathways.json new file mode 100644 index 00000000..e9dee7dd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/pathways.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/pathways/pathway_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/pathways/pathway_wall_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json new file mode 100644 index 00000000..c90df3d6 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/rampart_plates/plate_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json new file mode 100644 index 00000000..37f3ea6a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json new file mode 100644 index 00000000..384e94d1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/rot/stage_1_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json new file mode 100644 index 00000000..7f7b2389 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json new file mode 100644 index 00000000..f21b16fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json new file mode 100644 index 00000000..8f35045a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_2_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_2_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json new file mode 100644 index 00000000..03ab4efb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json new file mode 100644 index 00000000..c373888f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/wall_units/unit_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json new file mode 100644 index 00000000..262a0275 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/walls/wall_base", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/walls/connected_wall", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/empty.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/empty.json new file mode 100644 index 00000000..6bae5ad7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/empty.json @@ -0,0 +1,4 @@ +{ + "elements": [], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json new file mode 100644 index 00000000..9f7c180b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/base_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json new file mode 100644 index 00000000..58540017 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_plate", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/features.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/features.json new file mode 100644 index 00000000..bc1d5a5e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/features.json @@ -0,0 +1,88 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage_with_allays", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_logs", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_tent1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_tent2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_targets", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json new file mode 100644 index 00000000..0900d795 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json @@ -0,0 +1,28 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/watchtower", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/watchtower_overgrown", + "processors": "minecraft:outpost_rot", + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json new file mode 100644 index 00000000..f8ad2e63 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json @@ -0,0 +1,140 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json new file mode 100644 index 00000000..ac3742b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json @@ -0,0 +1,185 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/decor.json new file mode 100644 index 00000000..0e653984 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/decor.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_6", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_7", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/roads.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/roads.json new file mode 100644 index 00000000..78e08201 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/roads.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/long_road_end", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_end_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_2", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_3", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_4", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_spacer_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower.json new file mode 100644 index 00000000..a6616ddb --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json new file mode 100644 index 00000000..d2cb61c5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json @@ -0,0 +1,230 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json new file mode 100644 index 00000000..1557d5f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_1", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_2", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_3", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_4", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_5", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json new file mode 100644 index 00000000..48435ede --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json @@ -0,0 +1,82 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/bogged_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/breeze_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/spiral_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/spider_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json new file mode 100644 index 00000000..3a169623 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json @@ -0,0 +1,115 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_stacked_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_stacked_walkway_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_corner_column", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/grate_bridge", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/hanging_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/short_grate_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/short_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/lower_staircase_down", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/walkway_with_bridge_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/c1_breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json new file mode 100644 index 00000000..466e2c8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json @@ -0,0 +1,236 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/full_column", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/platform_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/spawner_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json new file mode 100644 index 00000000..8f1e1944 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/end_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/end_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json new file mode 100644 index 00000000..74f5ca94 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/entrance_cap", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json new file mode 100644 index 00000000..c566f87c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json @@ -0,0 +1,115 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/center_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/breeze_slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json new file mode 100644 index 00000000..c08313b8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json @@ -0,0 +1,159 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/center_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/ominous_slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json new file mode 100644 index 00000000..c1ebb836 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json @@ -0,0 +1,148 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/center", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ominous_upper_arm_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json new file mode 100644 index 00000000..8a3f6c0a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:trial_chambers/hallway/fallback" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json new file mode 100644 index 00000000..a903fe67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chests/supply", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json new file mode 100644 index 00000000..1f4a5c7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chests/connectors/supply", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json new file mode 100644 index 00000000..3bc1aa08 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json @@ -0,0 +1,90 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/second_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/first_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json new file mode 100644 index 00000000..33d952a0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json @@ -0,0 +1,77 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_5", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_6", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_7", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_8", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json new file mode 100644 index 00000000..21b4c2b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json @@ -0,0 +1,66 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 8 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/staircase", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/wall", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/ladder_to_middle", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/arrow_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/bridge_lower", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json new file mode 100644 index 00000000..80bab521 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json @@ -0,0 +1,33 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 8 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/open_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/walled_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json new file mode 100644 index 00000000..b2b6f3d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json @@ -0,0 +1,66 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/open_walkway_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/chandelier_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/decoration_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/head_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/reward_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor.json new file mode 100644 index 00000000..ba102020 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor.json @@ -0,0 +1,132 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 22 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/empty_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/dead_bush_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/undecorated_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/flow_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/guster_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/scrape_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/barrel", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json new file mode 100644 index 00000000..0e705777 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json @@ -0,0 +1,181 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/white_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/light_gray_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/gray_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/black_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/brown_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/red_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/orange_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/yellow_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/lime_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/green_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/cyan_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/light_blue_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/blue_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/purple_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/magenta_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/pink_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json new file mode 100644 index 00000000..7b84f825 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json @@ -0,0 +1,22 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/undecorated_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json new file mode 100644 index 00000000..aeb21958 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/disposal", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json new file mode 100644 index 00000000..08309169 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/chamber", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/wall_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/floor_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json new file mode 100644 index 00000000..3f44df4d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json new file mode 100644 index 00000000..75f08818 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json @@ -0,0 +1,279 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corridor_connector_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/upper_hallway_connector", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/lower_hallway_connector", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_8", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber_thin", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/cache_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/left_corner", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/right_corner", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corner_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corner_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/long_straight_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/long_straight_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/trapped_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_5", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:trial_chambers/hallway/fallback" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json new file mode 100644 index 00000000..06c5bf39 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_thin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber_thin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json new file mode 100644 index 00000000..7466e265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json new file mode 100644 index 00000000..7466e265 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json new file mode 100644 index 00000000..6b69ee3f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/ominous_vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json new file mode 100644 index 00000000..23e4652c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/small_melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json new file mode 100644 index 00000000..39b8230b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json new file mode 100644 index 00000000..11a5dadf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/breeze/breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json new file mode 100644 index 00000000..c9f06db3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json new file mode 100644 index 00000000..38f6ec36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/husk", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json new file mode 100644 index 00000000..bba81938 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/spider", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json new file mode 100644 index 00000000..11e70e3e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/zombie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json new file mode 100644 index 00000000..a4b4c4d0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json new file mode 100644 index 00000000..e80b3f19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/poison_skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json new file mode 100644 index 00000000..495e8616 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json new file mode 100644 index 00000000..324b6c34 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/stray", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json new file mode 100644 index 00000000..a0cab514 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/slow_ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json new file mode 100644 index 00000000..202bd0ed --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/poison_skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json new file mode 100644 index 00000000..626a1339 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json new file mode 100644 index 00000000..9a8a6c43 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/stray", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json new file mode 100644 index 00000000..f57f8f0d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/small_melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json new file mode 100644 index 00000000..d7d40458 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/baby_zombie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json new file mode 100644 index 00000000..8f109513 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/cave_spider", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json new file mode 100644 index 00000000..5ce375cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/silverfish", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json new file mode 100644 index 00000000..d68fae82 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/slime", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/animals.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/animals.json new file mode 100644 index 00000000..81aa432b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/animals.json @@ -0,0 +1,110 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cows_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/pigs_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json new file mode 100644 index 00000000..c68baef8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cows_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/pigs_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/cats.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/cats.json new file mode 100644 index 00000000..e92f19c2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/cats.json @@ -0,0 +1,121 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_black", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_british", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_calico", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_persian", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_ragdoll", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_red", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_siamese", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_tabby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_white", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_jellie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/iron_golem.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/iron_golem.json new file mode 100644 index 00000000..7b57cfbc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/iron_golem.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/iron_golem", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/sheep.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/sheep.json new file mode 100644 index 00000000..357e70c1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/sheep.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json new file mode 100644 index 00000000..aaddc3f1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/well_bottom", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/camel.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/camel.json new file mode 100644 index 00000000..c0521486 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/camel.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/camel_spawn", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/decor.json new file mode 100644 index 00000000..2176243c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/decor.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/desert_lamp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_cactus", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/houses.json new file mode 100644 index 00000000..ccd54e7e --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/houses.json @@ -0,0 +1,313 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_butcher_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_shepherd_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_armorer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fisher_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_cartographer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_mason_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_weaponsmith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_large_farm_1", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 11 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_1", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_2", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/desert/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/streets.json new file mode 100644 index 00000000..18900da4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/streets.json @@ -0,0 +1,126 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/corner_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/corner_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/square_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/square_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/turn_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/desert/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/terminators.json new file mode 100644 index 00000000..080901ca --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/terminators.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/town_centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/town_centers.json new file mode 100644 index 00000000..ee435a4b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/town_centers.json @@ -0,0 +1,65 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 98 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 98 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_3", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/villagers.json new file mode 100644 index 00000000..19f21603 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json new file mode 100644 index 00000000..87b9b755 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json @@ -0,0 +1,36 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/desert_lamp_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_cactus", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json new file mode 100644 index 00000000..b1b8913d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json @@ -0,0 +1,263 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_3", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_4", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_5", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_6", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_7", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_8", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_medium_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_medium_house_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_butcher_shop_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tool_smith_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fletcher_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_shepherd_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_armorer_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fisher_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tannery_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_cartographer_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_library_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_mason_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_weaponsmith_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_large_farm_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/desert/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json new file mode 100644 index 00000000..6005b0a3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json @@ -0,0 +1,126 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/corner_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/corner_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/square_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/square_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/turn_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/desert/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json new file mode 100644 index 00000000..5c416edc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/terminators/terminator_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json new file mode 100644 index 00000000..3b4a1254 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/decor.json new file mode 100644 index 00000000..2ef26d19 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/decor.json @@ -0,0 +1,46 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/plains_lamp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:flower_plain", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/houses.json new file mode 100644 index 00000000..583f595f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/houses.json @@ -0,0 +1,349 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_5", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_6", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_7", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_8", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_medium_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_medium_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_big_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tool_smith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fletcher_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_shepherds_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_armorer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fisher_cottage_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tannery_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_cartographer_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_masons_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_weaponsmith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_large_farm_1", + "processors": "minecraft:farm_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_farm_1", + "processors": "minecraft:farm_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_accessory_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_meeting_point_4", + "processors": "minecraft:mossify_70_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_meeting_point_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/streets.json new file mode 100644 index 00000000..9cc0d999 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/turn_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/terminators.json new file mode 100644 index 00000000..d633b01f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/town_centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/town_centers.json new file mode 100644 index 00000000..ae1f33b4 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/town_centers.json @@ -0,0 +1,79 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_fountain_01", + "processors": "minecraft:mossify_20_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_1", + "processors": "minecraft:mossify_20_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_3", + "processors": "minecraft:mossify_70_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_fountain_01", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/trees.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/trees.json new file mode 100644 index 00000000..ef13b73b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/villagers.json new file mode 100644 index 00000000..aba2e1a9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json new file mode 100644 index 00000000..0d027fc7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/plains_lamp_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:flower_plain", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json new file mode 100644 index 00000000..7c3bc8cc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json @@ -0,0 +1,326 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_5", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_6", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_7", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_8", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_medium_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_medium_house_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_big_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_butcher_shop_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tool_smith_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_fletcher_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_shepherds_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_armorer_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fisher_cottage_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tannery_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_cartographer_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_masons_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_weaponsmith_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_stable_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_large_farm_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_farm_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_animal_pen_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_meeting_point_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_meeting_point_5", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json new file mode 100644 index 00000000..ec79de21 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/turn_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json new file mode 100644 index 00000000..07dbae1b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/decor.json new file mode 100644 index 00000000..d7a351f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/decor.json @@ -0,0 +1,46 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/savanna_lamp_post_01", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_melon", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/houses.json new file mode 100644 index 00000000..994666ef --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/houses.json @@ -0,0 +1,346 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_shepherd_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_armorer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fisher_cottage_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_cartographer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_mason_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_1", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_2", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_farm", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/savanna/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/streets.json new file mode 100644 index 00000000..16eb8094 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/streets.json @@ -0,0 +1,176 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/corner_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/corner_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_08", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_09", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_10", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_11", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_07", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/split_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/split_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/turn_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/savanna/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/terminators.json new file mode 100644 index 00000000..96569d5d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/terminators.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/terminators/terminator_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json new file mode 100644 index 00000000..98319745 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json @@ -0,0 +1,85 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 100 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_4", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/trees.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/trees.json new file mode 100644 index 00000000..11dc7fa0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/villagers.json new file mode 100644 index 00000000..022306b5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json new file mode 100644 index 00000000..28310694 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/savanna_lamp_post_01", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_melon", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json new file mode 100644 index 00000000..bb0ea1f0 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json @@ -0,0 +1,290 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_4", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_5", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_6", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_7", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_8", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_medium_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_medium_house_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tool_smith_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fletcher_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_shepherd_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_armorer_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fisher_cottage_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tannery_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_cartographer_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_library_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_mason_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_large_farm_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_farm", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_animal_pen_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_animal_pen_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/savanna/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json new file mode 100644 index 00000000..cd7e2812 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json @@ -0,0 +1,176 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/corner_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/corner_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_08", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_09", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_10", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_11", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_07", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/split_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/split_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/turn_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/savanna/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json new file mode 100644 index 00000000..ca8b1d5b --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/terminators/terminator_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json new file mode 100644 index 00000000..c8c3a5ec --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/decor.json new file mode 100644 index 00000000..3ea5c2cd --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/decor.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_01", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_02", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_03", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_snow", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_ice", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 9 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/houses.json new file mode 100644 index 00000000..a6063d67 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/houses.json @@ -0,0 +1,337 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_shepherds_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fisher_cottage", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_cartographer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_weapon_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_1", + "processors": "minecraft:farm_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_2", + "processors": "minecraft:farm_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/streets.json new file mode 100644 index 00000000..85215a8c --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/square_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_08", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/terminators.json new file mode 100644 index 00000000..9421bd7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json new file mode 100644 index 00000000..4768a893 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json @@ -0,0 +1,71 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 100 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/trees.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/trees.json new file mode 100644 index 00000000..e2d30848 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/villagers.json new file mode 100644 index 00000000..695d2c40 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json new file mode 100644 index 00000000..89f2ab46 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json @@ -0,0 +1,62 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_01", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_02", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_03", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_snow", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_ice", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 7 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json new file mode 100644 index 00000000..339c80d7 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json @@ -0,0 +1,281 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_3", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_4", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_5", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_6", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_7", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_8", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_3", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tool_smith_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fletcher_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_shepherds_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fisher_cottage", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tannery_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_cartographer_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_library_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_weapon_smith_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_temple_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json new file mode 100644 index 00000000..c96006f8 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/square_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_08", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json new file mode 100644 index 00000000..f89b780d --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/decor.json new file mode 100644 index 00000000..36fa2e36 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/decor.json @@ -0,0 +1,128 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_lamp_post_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pine", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_pumpkin", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_taiga_grass", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_berry_bush", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/houses.json new file mode 100644 index 00000000..008c6eee --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/houses.json @@ -0,0 +1,254 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_5", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_butcher_shop_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tool_smith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fletcher_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_shepherds_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fisher_cottage_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tannery_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_cartographer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_library_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_masons_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_temple_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_1", + "processors": "minecraft:farm_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_2", + "processors": "minecraft:farm_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_farm_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_animal_pen_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/streets.json new file mode 100644 index 00000000..937ea9b1 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/terminators.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/terminators.json new file mode 100644 index 00000000..9421bd7f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json new file mode 100644 index 00000000..3a510bbf --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/town_centers/taiga_meeting_point_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/town_centers/taiga_meeting_point_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/town_centers/taiga_meeting_point_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/town_centers/taiga_meeting_point_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/villagers.json new file mode 100644 index 00000000..50cff359 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json new file mode 100644 index 00000000..ae913165 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json @@ -0,0 +1,95 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pine", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_pumpkin", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_taiga_grass", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_berry_bush", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json new file mode 100644 index 00000000..0d953314 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json @@ -0,0 +1,245 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_3", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_4", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_5", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_3", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_4", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_butcher_shop_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_tool_smith_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fletcher_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_shepherds_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_fisher_cottage_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tannery_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_cartographer_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_library_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_masons_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_weaponsmith_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_temple_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_large_farm_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_farm_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_animal_pen_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json new file mode 100644 index 00000000..0bd0fbcc --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json new file mode 100644 index 00000000..f8f144fa --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/amplified.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/amplified.json new file mode 100644 index 00000000..949d42f3 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/amplified.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:amplified" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/debug_all_block_states.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/debug_all_block_states.json new file mode 100644 index 00000000..fc2f42e5 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/debug_all_block_states.json @@ -0,0 +1,31 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:debug" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/flat.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/flat.json new file mode 100644 index 00000000..a0a96fd9 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/flat.json @@ -0,0 +1,54 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:flat", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:dirt", + "height": 2 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:strongholds", + "minecraft:villages" + ] + } + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/large_biomes.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/large_biomes.json new file mode 100644 index 00000000..261f020f --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/large_biomes.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:large_biomes" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/normal.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/normal.json new file mode 100644 index 00000000..8087f56a --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/normal.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/worldgen/world_preset/single_biome_surface.json b/data/generated/V26_1/data/minecraft/worldgen/world_preset/single_biome_surface.json new file mode 100644 index 00000000..ff20e691 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/worldgen/world_preset/single_biome_surface.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:fixed", + "biome": "minecraft:plains" + }, + "settings": "minecraft:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/temperate.json b/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/temperate.json new file mode 100644 index 00000000..e15e1f50 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/nautilus/zombie_nautilus", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/warm.json b/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/warm.json new file mode 100644 index 00000000..af97a0f2 --- /dev/null +++ b/data/generated/V26_1/data/minecraft/zombie_nautilus_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/nautilus/zombie_nautilus_coral", + "model": "warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_coral_variant_zombie_nautilus" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/biome_parameters/minecraft/nether.json b/data/generated/V26_1/reports/biome_parameters/minecraft/nether.json new file mode 100644 index 00000000..a4f48ed0 --- /dev/null +++ b/data/generated/V26_1/reports/biome_parameters/minecraft/nether.json @@ -0,0 +1,64 @@ +{ + "biomes": [ + { + "biome": "minecraft:nether_wastes", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.0, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:soul_sand_valley", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": -0.5, + "offset": 0.0, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:crimson_forest", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.0, + "temperature": 0.4, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:warped_forest", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.5, + "offset": 0.375, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:basalt_deltas", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.175, + "temperature": -0.5, + "weirdness": 0.0 + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/biome_parameters/minecraft/overworld.json b/data/generated/V26_1/reports/biome_parameters/minecraft/overworld.json new file mode 100644 index 00000000..56a1171d --- /dev/null +++ b/data/generated/V26_1/reports/biome_parameters/minecraft/overworld.json @@ -0,0 +1,205021 @@ +{ + "biomes": [ + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "continentalness": [ + 0.8, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "continentalness": [ + -1.0, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + 0.7, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "continentalness": [ + -1.0, + 1.0 + ], + "depth": 1.1, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/blocks.json b/data/generated/V26_1/reports/blocks.json new file mode 100644 index 00000000..1624e6b2 --- /dev/null +++ b/data/generated/V26_1/reports/blocks.json @@ -0,0 +1,303792 @@ +{ + "minecraft:acacia_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "acacia", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10771, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10772, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10773, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10774, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10775, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10776, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10777, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10778, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10779, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10780, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10781, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10782, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10783, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10784, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10785, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10786, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10787, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10788, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10789, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10790, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10791, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10792, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10793, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10794, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14252, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14253, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14254, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14255, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14256, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14257, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14258, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14259, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14260, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14261, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14262, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14263, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14264, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14265, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14266, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14267, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14268, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14269, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14270, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14271, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14272, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14273, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14274, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14275, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14276, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14277, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14278, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14279, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14280, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14281, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14282, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14283, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14284, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14285, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14286, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14287, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14288, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14289, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14290, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14291, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14292, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14293, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14294, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14295, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14296, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14297, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14298, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14299, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14300, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14301, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14302, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14303, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14304, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14305, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14306, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14307, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14308, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14309, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14310, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14311, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14312, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14313, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14314, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14315, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13868, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13869, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13870, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13871, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13872, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13873, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13874, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13875, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13876, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13877, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13878, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13879, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13880, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13881, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13882, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13883, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13884, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13885, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13886, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13887, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13888, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13889, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13890, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13891, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13892, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13893, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13894, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13895, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13896, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13897, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13898, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13899, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:acacia_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13580, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13581, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13582, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13583, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13584, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13585, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13586, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13587, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13588, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13589, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13590, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13591, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13592, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13593, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13594, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13595, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13596, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13597, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13598, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13599, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13600, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13601, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13602, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13603, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13604, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13605, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13606, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13607, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13608, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13609, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13610, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13611, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6099, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6100, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6101, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6102, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6103, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6104, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6105, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6106, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6107, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6108, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6109, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6110, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6111, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6112, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6113, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6114, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6115, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6116, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6117, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6118, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6119, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6120, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6121, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6122, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6123, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6124, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6125, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6126, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6127, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6128, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6129, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6130, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6131, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6132, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6133, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6134, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6135, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6136, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6137, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6138, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6139, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6140, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6141, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6142, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6143, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6144, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6145, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6146, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6147, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6148, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6149, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6150, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6151, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6152, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6153, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6154, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6155, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6156, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6157, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6158, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6159, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6160, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6161, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6162, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 364, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 365, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 366, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 367, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 368, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 369, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 370, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 371, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 372, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 373, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 374, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 375, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 376, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 377, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 378, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 379, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 380, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 381, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 382, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 383, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 384, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 385, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 386, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 387, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 388, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 389, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 390, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 391, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:acacia_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19 + } + ] + }, + "minecraft:acacia_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6869, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6870, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:acacia_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "acacia" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:acacia_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2600, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2601, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2602, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2603, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2604, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2605, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2606, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2607, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2608, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2609, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2610, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2611, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2612, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2613, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2614, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2615, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2616, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2617, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2618, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2619, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2620, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2621, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2622, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2623, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2624, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2625, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2626, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2627, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2628, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2629, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2630, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2631, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2632, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2633, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2634, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2635, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2636, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2637, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2638, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2639, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2640, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2641, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2642, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2643, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2644, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2645, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2646, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2647, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2648, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2649, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2650, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2651, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2652, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2653, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2654, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2655, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2656, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2657, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2658, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2659, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2660, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2661, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2662, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2663, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5431, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5432, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5433, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5434, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5435, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5436, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5437, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5438, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5439, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5440, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5441, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5442, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5443, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5444, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5445, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5446, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5447, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5448, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5449, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5450, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5451, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5452, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5453, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5454, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5455, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5456, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5457, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5458, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5459, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5460, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5461, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5462, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13354, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13355, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13356, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13357, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13358, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13359, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:acacia_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11972, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11973, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11974, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11975, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11976, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11977, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11978, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11979, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11980, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11981, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11984, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11985, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11986, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11987, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11988, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11989, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11990, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11991, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11992, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11993, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11994, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11995, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11996, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11997, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11998, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11999, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12000, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12001, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12004, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12005, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12006, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12007, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12008, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12009, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12010, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12011, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12012, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12013, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12014, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12015, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12016, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12017, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12018, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12019, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12020, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12021, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12024, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12025, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12026, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12027, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12028, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12029, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12030, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12031, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12032, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12033, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12034, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12035, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12036, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12037, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12038, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12039, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12040, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12041, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12044, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12045, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12046, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12047, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12048, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12049, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12050, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12051, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7370, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7371, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7372, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7373, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7374, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7375, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7376, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7377, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7378, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7379, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7380, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7381, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7382, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7383, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7384, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7385, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7386, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7387, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7388, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7389, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7390, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7391, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7392, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7393, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7394, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7395, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7396, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7397, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7398, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7399, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7400, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7401, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7402, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7403, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7404, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7405, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7406, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7407, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7408, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7409, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7410, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7411, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7412, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7413, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7414, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7415, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7416, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7417, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7418, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7419, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7420, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7421, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7422, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7423, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7424, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7425, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7426, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7427, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7428, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7429, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7430, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7431, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7432, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7433, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6699, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6700, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6701, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6702, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6703, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6704, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6705, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6706, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5851, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5852, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5853, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5854, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5855, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5856, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5857, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5858, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 213, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 214, + "properties": { + "axis": "y" + } + }, + { + "id": 215, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11408, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 11409, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 11410, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 11411, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 11412, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 11413, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 11414, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 11415, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 11416, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 11417, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 11418, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 11419, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 11420, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11421, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 11422, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 11423, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 11424, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 11425, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 11426, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 11427, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 11428, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 11429, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 11430, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 11431, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 60, + "id": "minecraft:fire_resistance" + } + ] + }, + "states": [ + { + "default": true, + "id": 2326 + } + ] + }, + "minecraft:amethyst_block": { + "definition": { + "type": "minecraft:amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23402 + } + ] + }, + "minecraft:amethyst_cluster": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 7.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23404, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23405, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23406, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23407, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23408, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23409, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23410, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23411, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23412, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23413, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23414, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23415, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21819 + } + ] + }, + "minecraft:andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16470, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16471, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16472, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16473, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16474, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16475, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16096, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16097, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16098, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16099, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16100, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16101, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16102, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16103, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16104, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16105, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16106, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16107, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16108, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16109, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16110, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16111, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16112, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16113, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16114, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16115, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16116, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16117, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16118, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16119, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16120, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16121, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16122, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16123, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16124, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16125, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16126, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16127, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16128, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16129, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16130, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16131, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16132, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16133, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16134, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16135, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16136, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16137, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16138, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16139, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16140, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16141, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16142, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16143, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16144, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16145, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16146, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16147, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16148, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16149, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16150, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16151, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16152, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16153, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16154, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16155, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16156, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16157, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16158, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16159, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16160, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16161, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16162, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16163, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16164, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16165, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16168, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16169, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16170, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16171, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16172, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16173, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16174, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16175, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19086, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19087, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19088, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19089, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19090, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19091, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19092, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19093, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19094, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19095, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19096, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19097, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19098, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19099, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19100, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19101, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19102, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19103, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19104, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19105, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19106, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19107, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19108, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19109, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19110, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19111, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19112, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19113, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19114, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19115, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19116, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19117, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19118, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19119, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19120, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19121, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19122, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19123, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19124, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19125, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19126, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19127, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19128, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19129, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19130, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19131, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19132, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19133, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19134, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19135, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19136, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19137, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19138, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19139, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19140, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19141, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19142, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19143, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19144, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19145, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19146, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19147, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19148, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19149, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19150, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19151, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19152, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19153, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19154, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19155, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19156, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19157, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19158, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19159, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19160, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19161, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19162, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19163, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19164, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19165, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19166, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19167, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19168, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19169, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19170, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19171, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19172, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19173, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19174, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19175, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19176, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19177, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19178, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19179, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19180, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19181, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19182, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19183, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19184, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19185, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19186, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19187, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19188, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19189, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19190, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19191, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19192, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19193, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19194, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19195, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19196, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19197, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19198, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19199, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19200, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19201, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19202, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19203, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19204, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19205, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19206, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19207, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19208, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19209, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19210, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19211, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19212, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19213, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19214, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19215, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19216, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19217, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19218, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19219, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19220, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19221, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19222, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19223, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19224, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19225, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19226, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19227, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19228, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19229, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19230, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19231, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19232, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19233, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19234, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19235, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19236, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19237, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19238, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19239, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19240, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19241, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19242, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19243, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19244, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19245, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19246, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19247, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19248, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19249, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19250, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19251, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19252, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19253, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19254, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19255, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19256, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19257, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19258, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19259, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19260, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19261, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19262, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19263, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19264, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19265, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19266, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19267, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19268, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19269, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19270, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19271, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19272, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19273, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19274, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19275, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19276, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19277, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19278, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19279, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19280, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19281, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19282, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19283, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19284, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19285, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19286, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19287, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19288, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19289, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19290, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19291, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19292, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19293, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19294, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19295, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19296, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19297, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19298, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19299, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19300, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19301, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19302, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19303, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19304, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19305, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19306, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19307, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19308, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19309, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19310, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19311, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19312, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19313, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19314, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19315, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19316, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19317, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19318, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19319, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19320, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19321, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19322, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19323, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19324, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19325, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19326, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19327, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19328, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19329, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19330, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19331, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19332, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19333, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19334, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19335, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19336, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19337, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19338, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19339, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19340, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19341, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19342, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19343, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19344, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19345, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19346, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19347, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19348, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19349, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19350, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19351, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19352, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19353, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19354, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19355, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19356, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19357, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19358, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19359, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19360, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19361, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19362, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19363, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19364, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19365, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19366, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19367, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19368, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19369, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19370, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19371, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19372, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19373, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19374, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19375, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19376, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19377, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19378, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19379, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19380, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19381, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19382, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19383, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19384, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19385, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19386, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19387, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19388, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19389, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19390, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19391, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19392, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19393, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19394, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19395, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19396, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19397, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19398, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19399, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19400, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19401, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19402, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19403, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19404, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19405, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19406, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19407, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19408, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19409, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11195, + "properties": { + "facing": "north" + } + }, + { + "id": 11196, + "properties": { + "facing": "south" + } + }, + { + "id": 11197, + "properties": { + "facing": "west" + } + }, + { + "id": 11198, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem": "minecraft:melon_stem", + "support_blocks": "minecraft:supports_melon_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8338, + "properties": { + "facing": "north" + } + }, + { + "id": 8339, + "properties": { + "facing": "south" + } + }, + { + "id": 8340, + "properties": { + "facing": "west" + } + }, + { + "id": 8341, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem": "minecraft:pumpkin_stem", + "support_blocks": "minecraft:supports_pumpkin_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8334, + "properties": { + "facing": "north" + } + }, + { + "id": 8335, + "properties": { + "facing": "south" + } + }, + { + "id": 8336, + "properties": { + "facing": "west" + } + }, + { + "id": 8337, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27811 + } + ] + }, + "minecraft:azalea_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 504, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 505, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 506, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 507, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 508, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 509, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 510, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 511, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 512, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 513, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 514, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 515, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 516, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 517, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 518, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 519, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 520, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 521, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 522, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 523, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 524, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 525, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 526, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 527, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 528, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 529, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 530, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 531, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2327 + } + ] + }, + "minecraft:bamboo": { + "definition": { + "type": "minecraft:bamboo_stalk", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 15279, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 15280, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 15281, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 15282, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 15283, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 15284, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 15285, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 15286, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 15287, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 15288, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 15289, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 15290, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 168, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 169, + "properties": { + "axis": "y" + } + }, + { + "id": 170, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "bamboo", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10891, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10892, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10893, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10894, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10895, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10896, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10897, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10898, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10899, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10900, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10901, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10902, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10903, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10904, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10905, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10906, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10907, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10908, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10909, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10910, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10911, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10912, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10913, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10914, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14572, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14573, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14574, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14575, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14576, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14577, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14578, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14579, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14580, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14581, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14582, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14583, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14584, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14585, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14586, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14587, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14588, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14589, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14590, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14591, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14592, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14593, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14594, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14595, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14596, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14597, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14598, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14599, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14600, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14601, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14602, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14603, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14604, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14605, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14606, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14607, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14608, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14609, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14610, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14611, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14612, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14613, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14614, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14615, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14616, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14617, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14618, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14619, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14620, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14621, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14622, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14623, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14624, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14625, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14626, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14627, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14628, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14629, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14630, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14631, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14632, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14633, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14634, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14635, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14028, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14029, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14030, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14031, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14032, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14033, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14034, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14035, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14036, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14037, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14038, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14039, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14040, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14041, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14042, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14043, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14044, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14045, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14046, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14047, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14048, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14049, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14050, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14051, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14052, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14053, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14054, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14055, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14056, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14057, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14058, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14059, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13740, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13741, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13742, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13743, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13744, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13745, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13746, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13747, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13748, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13749, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13750, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13751, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13752, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13753, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13754, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13755, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13756, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13757, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13758, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13759, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13760, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13761, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13762, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13763, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13764, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13765, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13766, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13767, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13768, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13769, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13770, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13771, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6611, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6612, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6613, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6614, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6615, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6616, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6617, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6618, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6619, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6620, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6621, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6622, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6623, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6624, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6625, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6626, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6627, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6628, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6629, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6630, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6631, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6632, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6633, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6634, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6635, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6636, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6637, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6638, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6639, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6640, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6641, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6642, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6643, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6644, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6645, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6646, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6647, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6648, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6649, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6650, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6651, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6652, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6653, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6654, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6655, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6656, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6657, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6658, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6659, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6660, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6661, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6662, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6663, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6664, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6665, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6666, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6667, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6668, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6669, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6670, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6671, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6672, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6673, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6674, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 28 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13390, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13391, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13392, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13393, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13394, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13395, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_mosaic" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12452, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12453, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12454, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12455, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12456, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12457, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12458, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12459, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12460, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12461, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12462, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12463, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12464, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12465, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12466, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12467, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12468, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12472, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12473, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12474, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12475, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12476, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12477, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12478, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12479, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12480, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12481, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12482, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12483, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12484, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12485, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12486, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12487, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12488, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12492, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12493, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12494, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12495, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12496, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12497, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12498, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12499, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12500, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12501, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12502, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12503, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12504, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12505, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12506, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12507, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12508, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12512, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12513, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12514, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12515, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12516, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12517, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12518, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12519, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12520, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12521, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12522, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12523, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12524, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12525, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6879, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6880, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "definition": { + "type": "minecraft:bamboo_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15278 + } + ] + }, + "minecraft:bamboo_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2664, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2665, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2666, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2667, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2668, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2669, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2670, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2671, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2672, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2673, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2674, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2675, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2676, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2677, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2678, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2679, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2680, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2681, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2682, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2683, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2684, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2685, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2686, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2687, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2688, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2689, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2690, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2691, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2692, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2693, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2694, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2695, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2696, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2697, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2698, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2699, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2700, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2701, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2702, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2703, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2704, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2705, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2706, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2707, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2708, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2709, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2710, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2711, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2712, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2713, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2714, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2715, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2716, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2717, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2718, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2719, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2720, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2721, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2722, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2723, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2724, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2725, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2726, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2727, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5623, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5624, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5625, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5626, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5627, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5628, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5629, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5630, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5631, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5632, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5633, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5634, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5635, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5636, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5637, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5638, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5639, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5640, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5641, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5642, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5643, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5644, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5645, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5646, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5647, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5648, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5649, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5650, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5651, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5652, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5653, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5654, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13384, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13385, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13386, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13387, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13388, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13389, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12372, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12373, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12374, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12375, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12376, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12377, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12378, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12379, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12380, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12381, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12382, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12383, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12384, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12385, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12387, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12388, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12389, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12390, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12391, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12392, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12393, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12394, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12395, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12396, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12397, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12398, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12399, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12400, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12401, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12402, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12403, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12404, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12405, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12407, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12408, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12409, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12410, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12412, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12413, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12414, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12415, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12416, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12417, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12418, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12419, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12420, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12421, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12422, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12423, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12424, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12425, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12427, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12428, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12429, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12430, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12431, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12432, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12433, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12434, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12435, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12436, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12437, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12438, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12439, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12440, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12441, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12442, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12443, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12444, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12445, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12447, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12448, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12449, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12450, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12451, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7690, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7691, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7692, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7693, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7694, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7695, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7696, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7697, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7698, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7699, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7700, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7701, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7702, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7703, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7704, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7705, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7706, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7707, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7708, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7709, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7710, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7711, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7712, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7713, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7714, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7715, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7716, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7717, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7718, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7719, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7720, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7721, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7722, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7723, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7724, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7725, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7726, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7727, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7728, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7729, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7730, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7731, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7732, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7733, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7734, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7735, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7736, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7737, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7738, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7739, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7740, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7741, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7745, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7746, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7747, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7748, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7749, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7750, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7751, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7752, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7753, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6763, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6764, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6765, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6766, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6767, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6768, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6769, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6770, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5899, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5900, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5901, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5902, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5903, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5904, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5905, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5906, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:barrel": { + "definition": { + "type": "minecraft:barrel", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20742, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 20743, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 20744, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 20745, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 20746, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 20747, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 20748, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 20749, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 20750, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 20751, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 20752, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 20753, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "definition": { + "type": "minecraft:barrier", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12533, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12534, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 7000, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 7001, + "properties": { + "axis": "y" + } + }, + { + "id": 7002, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "definition": { + "type": "minecraft:beacon", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9980 + } + ] + }, + "minecraft:bedrock": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 85 + } + ] + }, + "minecraft:bee_nest": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 21768, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 21769, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 21770, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 21771, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 21772, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 21773, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 21774, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 21775, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 21776, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 21777, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 21778, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 21779, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 21780, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 21781, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 21782, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 21783, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 21784, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 21785, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 21786, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 21787, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 21788, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 21789, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 21790, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 21791, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 21792, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 21793, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 21794, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 21795, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 21796, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 21797, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 21798, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 21799, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 21800, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 21801, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 21802, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 21803, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 21804, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 21805, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 21806, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 21807, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 21808, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 21809, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 21810, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 21811, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 21812, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 21813, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 21814, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 21815, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "definition": { + "type": "minecraft:beetroot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 14811, + "properties": { + "age": "0" + } + }, + { + "id": 14812, + "properties": { + "age": "1" + } + }, + { + "id": 14813, + "properties": { + "age": "2" + } + }, + { + "id": 14814, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "definition": { + "type": "minecraft:bell", + "properties": {} + }, + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20805, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 20806, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20807, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20808, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20809, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20810, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20811, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20812, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20813, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20814, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20815, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20816, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20817, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20818, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20819, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20820, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20821, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20822, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20823, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20824, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20825, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20826, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20827, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20828, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20829, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20830, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20831, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20832, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20833, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20834, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20835, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20836, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "definition": { + "type": "minecraft:big_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27863, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27864, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 27865, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 27866, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 27867, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 27868, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 27869, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 27870, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 27871, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 27872, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 27873, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 27874, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 27875, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 27876, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 27877, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 27878, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 27879, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 27880, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 27881, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 27882, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 27883, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 27884, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 27885, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 27886, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 27887, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 27888, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 27889, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 27890, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 27891, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 27892, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 27893, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 27894, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "definition": { + "type": "minecraft:big_dripleaf_stem", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27895, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27896, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27897, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27898, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27899, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27900, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27901, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27902, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "birch", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10723, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10724, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10725, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10726, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10727, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10728, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10729, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10730, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10731, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10732, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10733, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10734, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10735, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10736, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10737, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10738, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10739, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10740, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10741, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10742, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10743, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10744, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10745, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10746, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14124, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14125, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14126, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14127, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14128, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14129, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14130, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14131, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14132, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14133, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14134, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14135, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14136, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14137, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14138, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14139, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14140, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14141, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14142, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14143, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14144, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14145, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14146, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14147, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14148, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14149, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14150, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14151, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14152, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14153, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14154, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14155, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14156, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14157, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14158, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14159, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14160, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14161, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14162, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14163, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14164, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14165, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14166, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14167, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14168, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14169, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14170, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14171, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14172, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14173, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14174, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14175, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14176, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14177, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14178, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14179, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14180, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14181, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14182, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14183, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14184, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14185, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14186, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14187, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13804, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13805, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13806, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13807, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13808, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13809, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13810, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13811, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13812, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13813, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13814, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13815, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13816, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13817, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13818, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13819, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13820, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13821, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13822, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13823, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13824, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13825, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13826, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13827, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13828, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13829, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13830, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13831, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13832, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13833, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13834, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13835, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13516, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13517, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13518, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13519, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13520, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13521, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13522, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13523, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13524, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13525, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13526, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13527, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13528, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13529, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13530, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13531, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13532, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13533, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13534, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13535, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13536, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13537, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13538, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13539, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13540, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13541, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13542, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13543, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13544, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13545, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13546, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13547, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6035, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6036, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6037, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6038, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6039, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6040, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6041, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6042, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6043, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6044, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6045, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6046, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6047, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6048, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6049, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6050, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6051, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6052, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6053, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6054, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6055, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6056, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6057, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6058, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6059, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6060, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6061, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6062, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6063, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6064, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6065, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6066, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6067, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6068, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6069, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6070, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6071, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6072, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6073, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6074, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6075, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6076, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6077, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6078, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6079, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6080, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6081, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6082, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6083, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6084, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6085, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6086, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6087, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6088, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6089, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6090, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6091, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6092, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6093, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6094, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6095, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6096, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6097, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6098, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 308, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 309, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 310, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 311, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 312, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 313, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 314, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 315, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 316, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 317, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 318, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 319, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 320, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 321, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 322, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 323, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 324, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 325, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 326, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 327, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 328, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 329, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 330, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 331, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 332, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 333, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 334, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 335, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 142, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 143, + "properties": { + "axis": "y" + } + }, + { + "id": 144, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6865, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6866, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "birch" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 33, + "properties": { + "stage": "0" + } + }, + { + "id": 34, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:birch_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2728, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2729, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2730, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2731, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2732, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2733, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2734, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2735, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2736, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2737, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2738, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2739, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2740, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2741, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2742, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2743, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2744, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2745, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2746, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2747, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2748, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2749, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2750, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2751, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2752, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2753, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2754, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2755, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2756, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2757, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2758, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2759, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2760, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2761, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2762, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2763, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2764, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2765, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2766, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2767, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2768, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2769, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2770, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2771, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2772, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2773, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2774, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2775, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2776, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2777, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2778, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2779, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2780, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2781, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2782, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2783, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2784, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2785, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2786, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2787, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2788, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2789, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2790, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2791, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5399, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5400, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5401, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5402, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5403, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5404, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5405, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5406, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5407, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5408, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5409, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5410, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5411, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5412, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5413, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5414, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5415, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5416, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5417, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5418, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5419, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5420, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5421, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5422, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5423, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5424, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5425, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5426, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5427, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5428, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5429, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5430, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13342, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13343, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13344, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13345, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13346, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13347, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:birch_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9808, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9809, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9810, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9811, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9812, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9813, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9814, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9815, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9816, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9817, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9818, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9819, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9820, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9821, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9822, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9823, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9824, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9825, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9826, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9827, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9828, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9829, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9830, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9831, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9832, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9833, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9834, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9835, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9836, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9837, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9838, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9839, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9840, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9841, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9842, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9843, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9844, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9845, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9846, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9847, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9848, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9849, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9850, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9851, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9852, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9853, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9854, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9855, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9856, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9857, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9858, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9859, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9860, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9861, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9862, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9863, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9864, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9865, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9866, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9867, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9868, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9869, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9870, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9871, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9872, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9873, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9874, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9875, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9876, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9877, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9878, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9879, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9880, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9881, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9882, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9883, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9884, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7242, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7243, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7244, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7245, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7246, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7247, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7248, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7249, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7250, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7251, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7252, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7253, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7254, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7255, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7256, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7257, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7258, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7259, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7260, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7261, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7262, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7263, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7264, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7265, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7266, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7267, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7268, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7269, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7270, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7271, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7272, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7273, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7274, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7275, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7276, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7277, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7278, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7279, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7280, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7281, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7282, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7283, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7284, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7285, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7286, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7287, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7288, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7289, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7290, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7291, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7292, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7293, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7294, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7295, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7296, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7297, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7298, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7299, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7300, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7301, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7302, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7303, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7304, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7305, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6691, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6692, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6693, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6694, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6695, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6696, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6697, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6698, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5843, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5844, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5845, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5846, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5847, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5848, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5849, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5850, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 207, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 208, + "properties": { + "axis": "y" + } + }, + { + "id": 209, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "definition": { + "type": "minecraft:banner", + "color": "black", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13167, + "properties": { + "rotation": "0" + } + }, + { + "id": 13168, + "properties": { + "rotation": "1" + } + }, + { + "id": 13169, + "properties": { + "rotation": "2" + } + }, + { + "id": 13170, + "properties": { + "rotation": "3" + } + }, + { + "id": 13171, + "properties": { + "rotation": "4" + } + }, + { + "id": 13172, + "properties": { + "rotation": "5" + } + }, + { + "id": 13173, + "properties": { + "rotation": "6" + } + }, + { + "id": 13174, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13175, + "properties": { + "rotation": "8" + } + }, + { + "id": 13176, + "properties": { + "rotation": "9" + } + }, + { + "id": 13177, + "properties": { + "rotation": "10" + } + }, + { + "id": 13178, + "properties": { + "rotation": "11" + } + }, + { + "id": 13179, + "properties": { + "rotation": "12" + } + }, + { + "id": 13180, + "properties": { + "rotation": "13" + } + }, + { + "id": 13181, + "properties": { + "rotation": "14" + } + }, + { + "id": 13182, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "definition": { + "type": "minecraft:bed", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2171, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2172, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2173, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2174, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2175, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2176, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2177, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2178, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2179, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2180, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2181, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2182, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2183, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2184, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2185, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2186, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23352, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23353, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23354, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23355, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23356, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23357, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23358, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23359, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23360, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23361, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23362, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23363, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23364, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23365, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23366, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23367, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:black_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23400, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23401, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12911 + } + ] + }, + "minecraft:black_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15045 + } + ] + }, + "minecraft:black_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:black_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15061 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15026, + "properties": { + "facing": "north" + } + }, + { + "id": 15027, + "properties": { + "facing": "south" + } + }, + { + "id": 15028, + "properties": { + "facing": "west" + } + }, + { + "id": 15029, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14960, + "properties": { + "facing": "north" + } + }, + { + "id": 14961, + "properties": { + "facing": "east" + } + }, + { + "id": 14962, + "properties": { + "facing": "south" + } + }, + { + "id": 14963, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14964, + "properties": { + "facing": "up" + } + }, + { + "id": 14965, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7113 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "black", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11940, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11941, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11942, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11943, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11944, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11945, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11946, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11947, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11948, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11949, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11950, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11951, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11952, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11953, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11954, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11955, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11956, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11957, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11958, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11959, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11960, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11961, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11962, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11963, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11964, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11965, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11966, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11967, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11968, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11969, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11970, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11971, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11459 + } + ] + }, + "minecraft:black_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13243, + "properties": { + "facing": "north" + } + }, + { + "id": 13244, + "properties": { + "facing": "south" + } + }, + { + "id": 13245, + "properties": { + "facing": "west" + } + }, + { + "id": 13246, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2308 + } + ] + }, + "minecraft:blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21831 + } + ] + }, + "minecraft:blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22236, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22237, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22238, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22239, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22240, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22241, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21832, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21833, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21834, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21835, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21836, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21837, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21838, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21839, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21840, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21841, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21844, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21845, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21846, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21847, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21848, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21851, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21852, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21853, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21854, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21855, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21856, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21857, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21858, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21859, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21860, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21861, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21864, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21865, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21866, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21867, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21868, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21871, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21872, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21873, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21874, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21875, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21876, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21877, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21878, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21879, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21880, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21881, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21884, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21885, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21886, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21887, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21888, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21891, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21892, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21893, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21894, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21895, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21896, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21897, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21898, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21899, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21900, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21901, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21905, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21906, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21907, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21908, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21911, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21912, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21913, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21914, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21915, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21916, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21917, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21918, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21924, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21925, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21926, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21927, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21928, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21929, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21930, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21936, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21937, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21938, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21939, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21940, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21941, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21942, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21948, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21949, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21950, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21951, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21952, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21953, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21954, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21960, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21961, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21962, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21963, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21964, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21965, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21966, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21972, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21973, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21974, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21975, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21976, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21977, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21978, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21984, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21985, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21986, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21987, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21988, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21989, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21990, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21996, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21997, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21998, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21999, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22000, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22001, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22002, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22008, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22009, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22010, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22011, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22012, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22013, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22014, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22020, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22021, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22022, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22023, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22024, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22025, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22026, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22032, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22033, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22034, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22035, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22036, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22037, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22038, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22044, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22045, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22046, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22047, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22048, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22049, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22050, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22056, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22057, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22058, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22059, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22060, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22061, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22062, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22068, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22069, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22070, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22071, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22072, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22073, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22074, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22080, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22081, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22082, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22083, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22084, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22085, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22086, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22092, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22093, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22094, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22095, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22096, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22097, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22098, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22104, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22105, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22106, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22107, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22108, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22109, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22110, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22116, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22117, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22118, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22119, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22120, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22121, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22122, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22128, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22129, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22130, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22131, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22132, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22133, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22134, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22140, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22141, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22142, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22143, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22144, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22145, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22146, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22152, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22153, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22154, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22155, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22156, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22157, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22158, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22164, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22165, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22166, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22167, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22168, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22169, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22170, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22176, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22177, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22178, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22179, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22180, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22181, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22182, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22188, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22189, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22190, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22191, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22192, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22193, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22194, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22200, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22201, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22202, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22203, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22204, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22205, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22206, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22212, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22213, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22214, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22215, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22216, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22217, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22218, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22224, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22225, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22226, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22227, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22228, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22229, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22230, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "definition": { + "type": "minecraft:blast_furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20762, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 20763, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 20764, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 20765, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 20766, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 20767, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 20768, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 20769, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13103, + "properties": { + "rotation": "0" + } + }, + { + "id": 13104, + "properties": { + "rotation": "1" + } + }, + { + "id": 13105, + "properties": { + "rotation": "2" + } + }, + { + "id": 13106, + "properties": { + "rotation": "3" + } + }, + { + "id": 13107, + "properties": { + "rotation": "4" + } + }, + { + "id": 13108, + "properties": { + "rotation": "5" + } + }, + { + "id": 13109, + "properties": { + "rotation": "6" + } + }, + { + "id": 13110, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13111, + "properties": { + "rotation": "8" + } + }, + { + "id": 13112, + "properties": { + "rotation": "9" + } + }, + { + "id": 13113, + "properties": { + "rotation": "10" + } + }, + { + "id": 13114, + "properties": { + "rotation": "11" + } + }, + { + "id": 13115, + "properties": { + "rotation": "12" + } + }, + { + "id": 13116, + "properties": { + "rotation": "13" + } + }, + { + "id": 13117, + "properties": { + "rotation": "14" + } + }, + { + "id": 13118, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2107, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2108, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2109, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2110, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2111, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2112, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2113, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2114, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2115, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2116, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2117, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2118, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2119, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2120, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2121, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2122, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23288, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23289, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23290, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23291, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23292, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23293, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23294, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23295, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23296, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23297, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23298, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23299, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23300, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23301, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23302, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23303, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23392, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23393, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12907 + } + ] + }, + "minecraft:blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15041 + } + ] + }, + "minecraft:blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15057 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15010, + "properties": { + "facing": "north" + } + }, + { + "id": 15011, + "properties": { + "facing": "south" + } + }, + { + "id": 15012, + "properties": { + "facing": "west" + } + }, + { + "id": 15013, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "definition": { + "type": "minecraft:half_transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15275 + } + ] + }, + "minecraft:blue_orchid": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2325 + } + ] + }, + "minecraft:blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14936, + "properties": { + "facing": "north" + } + }, + { + "id": 14937, + "properties": { + "facing": "east" + } + }, + { + "id": 14938, + "properties": { + "facing": "south" + } + }, + { + "id": 14939, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14940, + "properties": { + "facing": "up" + } + }, + { + "id": 14941, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7109 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11812, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11813, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11814, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11815, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11816, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11817, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11818, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11819, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11820, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11821, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11822, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11823, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11824, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11825, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11826, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11827, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11828, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11829, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11830, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11831, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11832, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11833, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11834, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11835, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11836, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11837, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11838, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11839, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11840, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11841, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11842, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11843, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11455 + } + ] + }, + "minecraft:blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13227, + "properties": { + "facing": "north" + } + }, + { + "id": 13228, + "properties": { + "facing": "south" + } + }, + { + "id": 13229, + "properties": { + "facing": "west" + } + }, + { + "id": 13230, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2304 + } + ] + }, + "minecraft:bone_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 14848, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 14849, + "properties": { + "axis": "y" + } + }, + { + "id": 14850, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2343 + } + ] + }, + "minecraft:brain_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_brain_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15159, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15160, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_brain_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15143 + } + ] + }, + "minecraft:brain_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_brain_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15179, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15180, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_brain_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15235, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15236, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15237, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15238, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15239, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15240, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15241, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15242, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "definition": { + "type": "minecraft:brewing_stand", + "properties": {} + }, + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9452, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 9453, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 9454, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 9455, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 9456, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 9457, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 9458, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 9459, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13432, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13433, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13434, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13435, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13436, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13437, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8678, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8679, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8680, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8681, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8682, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8683, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8684, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8685, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8686, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8687, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8688, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8689, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8690, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8691, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8698, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8699, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8700, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8701, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8702, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8703, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8704, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8705, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8706, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8707, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8708, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8709, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8710, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8711, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8718, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8719, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8720, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8721, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8722, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8723, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8724, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8725, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8726, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8727, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8728, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8729, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8730, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8731, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8738, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8739, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8740, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8741, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8742, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8743, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8744, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8745, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8746, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8747, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8748, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8749, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8750, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8751, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16494, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16495, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16496, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16497, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16498, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16499, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16500, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16501, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16502, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16503, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16504, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16505, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16506, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16507, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16508, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16509, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16510, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16511, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16512, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16513, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16514, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16515, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16516, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16517, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16518, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16519, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16520, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16521, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16522, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16523, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16524, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16525, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16526, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16527, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16528, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16529, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16530, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16531, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16532, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16533, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16534, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16535, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16536, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16537, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16538, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16539, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16540, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16541, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16542, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16543, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16544, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16545, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16546, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16547, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16548, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16549, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16550, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16551, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16552, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16553, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16554, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16555, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16556, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16557, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16558, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16559, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16560, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16561, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16562, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16563, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16564, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16565, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16566, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16567, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16568, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16569, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16570, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16571, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16572, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16573, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16574, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16575, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16576, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16577, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16578, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16579, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16580, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16581, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16582, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16583, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16584, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16585, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16586, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16587, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16588, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16589, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16590, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16591, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16592, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16593, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16594, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16595, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16596, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16597, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16598, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16599, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16600, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16601, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16602, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16603, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16604, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16605, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16606, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16607, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16608, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16609, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16610, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16611, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16612, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16613, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16614, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16615, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16616, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16617, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16618, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16619, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16620, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16621, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16622, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16623, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16624, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16625, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16626, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16627, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16628, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16629, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16630, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16631, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16632, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16633, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16634, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16635, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16636, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16637, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16638, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16639, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16640, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16641, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16642, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16643, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16644, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16645, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16646, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16647, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16648, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16649, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16650, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16651, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16652, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16653, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16654, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16655, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16656, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16657, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16659, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16660, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16661, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16662, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16663, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16664, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16665, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16666, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16667, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16668, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16669, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16670, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16671, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16672, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16673, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16674, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16675, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16676, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16677, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16678, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16679, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16680, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16681, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16682, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16683, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16693, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16694, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16695, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16696, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16697, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16698, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16699, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16700, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16701, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16702, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16703, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16704, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16705, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16706, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16707, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16708, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16709, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16710, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16711, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16712, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16713, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16714, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16715, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16716, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16717, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16718, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16719, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16729, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16730, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16731, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16732, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16733, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16734, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16735, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16736, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16737, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16738, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16739, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16740, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16741, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16742, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16743, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16744, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16745, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16746, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16747, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16748, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16749, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16750, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16751, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16752, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16753, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16754, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16755, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16765, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16766, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16767, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16768, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16769, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16770, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16771, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16772, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16773, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16774, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16775, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16776, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16777, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16778, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16779, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16789, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16790, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16791, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16801, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16802, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16803, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16804, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16805, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16806, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16807, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16808, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16809, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16810, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16811, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16812, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16813, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16814, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16815, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16816, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16817, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2340 + } + ] + }, + "minecraft:brown_banner": { + "definition": { + "type": "minecraft:banner", + "color": "brown", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13119, + "properties": { + "rotation": "0" + } + }, + { + "id": 13120, + "properties": { + "rotation": "1" + } + }, + { + "id": 13121, + "properties": { + "rotation": "2" + } + }, + { + "id": 13122, + "properties": { + "rotation": "3" + } + }, + { + "id": 13123, + "properties": { + "rotation": "4" + } + }, + { + "id": 13124, + "properties": { + "rotation": "5" + } + }, + { + "id": 13125, + "properties": { + "rotation": "6" + } + }, + { + "id": 13126, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13127, + "properties": { + "rotation": "8" + } + }, + { + "id": 13128, + "properties": { + "rotation": "9" + } + }, + { + "id": 13129, + "properties": { + "rotation": "10" + } + }, + { + "id": 13130, + "properties": { + "rotation": "11" + } + }, + { + "id": 13131, + "properties": { + "rotation": "12" + } + }, + { + "id": 13132, + "properties": { + "rotation": "13" + } + }, + { + "id": 13133, + "properties": { + "rotation": "14" + } + }, + { + "id": 13134, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "definition": { + "type": "minecraft:bed", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2123, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2124, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2125, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2126, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2127, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2128, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2129, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2130, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2131, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2132, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2133, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2134, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2135, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2136, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2137, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2138, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23304, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23305, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23306, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23307, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23308, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23309, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23310, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23311, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23312, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23313, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23314, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23315, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23316, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23317, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23318, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23319, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:brown_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23394, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23395, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12908 + } + ] + }, + "minecraft:brown_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15042 + } + ] + }, + "minecraft:brown_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:brown_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15058 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15014, + "properties": { + "facing": "north" + } + }, + { + "id": 15015, + "properties": { + "facing": "south" + } + }, + { + "id": 15016, + "properties": { + "facing": "west" + } + }, + { + "id": 15017, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2336 + } + ] + }, + "minecraft:brown_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7766, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7767, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7768, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7769, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7770, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7771, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7772, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7773, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7774, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7775, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7776, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7777, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7778, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7779, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7780, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7781, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7782, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7783, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7784, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7785, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7786, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7787, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7788, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7789, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7790, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7791, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7792, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7793, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7794, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7795, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7796, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7797, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7798, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7799, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7800, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7801, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7802, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7803, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7804, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7805, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7806, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7807, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7808, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7809, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7810, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7811, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7812, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7813, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7814, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7815, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7816, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7817, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7818, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7819, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7820, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7821, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7822, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7823, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7824, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7825, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7826, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7827, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7828, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7829, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14942, + "properties": { + "facing": "north" + } + }, + { + "id": 14943, + "properties": { + "facing": "east" + } + }, + { + "id": 14944, + "properties": { + "facing": "south" + } + }, + { + "id": 14945, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14946, + "properties": { + "facing": "up" + } + }, + { + "id": 14947, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7110 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "brown", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11844, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11845, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11846, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11847, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11848, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11849, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11850, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11851, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11852, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11853, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11854, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11855, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11856, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11857, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11858, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11859, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11860, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11861, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11862, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11863, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11864, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11865, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11866, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11867, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11868, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11869, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11870, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11871, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11872, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11873, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11874, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11875, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11456 + } + ] + }, + "minecraft:brown_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13231, + "properties": { + "facing": "north" + } + }, + { + "id": 13232, + "properties": { + "facing": "south" + } + }, + { + "id": 13233, + "properties": { + "facing": "west" + } + }, + { + "id": 13234, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2305 + } + ] + }, + "minecraft:bubble_column": { + "definition": { + "type": "minecraft:bubble_column", + "properties": {} + }, + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15294, + "properties": { + "drag": "true" + } + }, + { + "id": 15295, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_bubble_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15161, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15162, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_bubble_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15144 + } + ] + }, + "minecraft:bubble_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_bubble_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15181, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15182, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_bubble_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15243, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15244, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15245, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15246, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15247, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15248, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15249, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15250, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "definition": { + "type": "minecraft:budding_amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23403 + } + ] + }, + "minecraft:bush": { + "definition": { + "type": "minecraft:bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2251 + } + ] + }, + "minecraft:cactus": { + "definition": { + "type": "minecraft:cactus", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 6929, + "properties": { + "age": "0" + } + }, + { + "id": 6930, + "properties": { + "age": "1" + } + }, + { + "id": 6931, + "properties": { + "age": "2" + } + }, + { + "id": 6932, + "properties": { + "age": "3" + } + }, + { + "id": 6933, + "properties": { + "age": "4" + } + }, + { + "id": 6934, + "properties": { + "age": "5" + } + }, + { + "id": 6935, + "properties": { + "age": "6" + } + }, + { + "id": 6936, + "properties": { + "age": "7" + } + }, + { + "id": 6937, + "properties": { + "age": "8" + } + }, + { + "id": 6938, + "properties": { + "age": "9" + } + }, + { + "id": 6939, + "properties": { + "age": "10" + } + }, + { + "id": 6940, + "properties": { + "age": "11" + } + }, + { + "id": 6941, + "properties": { + "age": "12" + } + }, + { + "id": 6942, + "properties": { + "age": "13" + } + }, + { + "id": 6943, + "properties": { + "age": "14" + } + }, + { + "id": 6944, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cactus_flower": { + "definition": { + "type": "minecraft:cactus_flower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6945 + } + ] + }, + "minecraft:cake": { + "definition": { + "type": "minecraft:cake", + "properties": {} + }, + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 7027, + "properties": { + "bites": "0" + } + }, + { + "id": 7028, + "properties": { + "bites": "1" + } + }, + { + "id": 7029, + "properties": { + "bites": "2" + } + }, + { + "id": 7030, + "properties": { + "bites": "3" + } + }, + { + "id": 7031, + "properties": { + "bites": "4" + } + }, + { + "id": 7032, + "properties": { + "bites": "5" + } + }, + { + "id": 7033, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24687 + } + ] + }, + "minecraft:calibrated_sculk_sensor": { + "definition": { + "type": "minecraft:calibrated_sculk_sensor", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24786, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24787, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24788, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24789, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24790, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24791, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24792, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24793, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24794, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24795, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24796, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24797, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24798, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24799, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24800, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24801, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24802, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24803, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24804, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24805, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24806, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24807, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24808, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24809, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24810, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24811, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24812, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24813, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24814, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24815, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24816, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24817, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24818, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24819, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24820, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24821, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24822, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24823, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24824, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24825, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24826, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24827, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24828, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24829, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24830, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24831, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24832, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24833, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24834, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24835, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24836, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24837, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24838, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24839, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24840, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24841, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24842, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24843, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24844, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24845, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24846, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24847, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24848, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24849, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24850, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24851, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24852, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24853, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24854, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24855, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24856, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24857, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24858, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24859, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24860, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24861, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24862, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24863, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24864, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24865, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24866, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24867, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24868, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24869, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24870, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24871, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24872, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24873, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24874, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24875, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24876, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24877, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24878, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24879, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24880, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24881, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24882, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24883, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24884, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24885, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24886, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24887, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24888, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24889, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24890, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24891, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24892, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24893, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24894, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24895, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24896, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24897, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24898, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24899, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24900, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24901, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24902, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24903, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24904, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24905, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24906, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24907, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24908, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24909, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24910, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24911, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24912, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24913, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24914, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24915, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24916, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24917, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24918, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24919, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24920, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24921, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24922, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24923, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24924, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24925, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24926, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24927, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24928, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24929, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24930, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24931, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24932, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24933, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24934, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24935, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24936, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24937, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24938, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24939, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24940, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24941, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24942, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24943, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24944, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24945, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24946, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24947, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24948, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24949, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24950, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24951, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24952, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24953, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24954, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24955, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24956, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24957, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24958, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24959, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24960, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24961, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24962, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24963, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24964, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24965, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24966, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24967, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24968, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24969, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24970, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24971, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24972, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24973, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24974, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24975, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24976, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24977, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24978, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24979, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24980, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24981, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24982, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24983, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24984, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24985, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24986, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24987, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24988, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24989, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24990, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24991, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24992, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24993, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24994, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24995, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24996, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24997, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24998, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24999, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25000, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25001, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25002, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25003, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25004, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25005, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25006, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25007, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25008, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25009, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25010, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25011, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25012, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25013, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25014, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25015, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25016, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25017, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25018, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25019, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25020, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25021, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25022, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25023, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25024, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25025, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25026, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25027, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25028, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25029, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25030, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25031, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25032, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25033, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25034, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25035, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25036, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25037, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25038, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25039, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25040, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25041, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25042, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25043, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25044, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25045, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25046, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25047, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25048, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25049, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25050, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25051, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25052, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25053, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25054, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25055, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25056, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25057, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25058, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25059, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25060, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25061, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25062, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25063, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25064, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25065, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25066, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25067, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25068, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25069, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25070, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25071, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25072, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25073, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25074, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25075, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25076, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25077, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25078, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25079, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25080, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25081, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25082, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25083, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25084, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25085, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25086, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25087, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25088, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25089, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25090, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25091, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25092, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25093, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25094, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25095, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25096, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25097, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25098, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25099, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25100, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25101, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25102, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25103, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25104, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25105, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25106, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25107, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25108, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25109, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25110, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25111, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25112, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25113, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25114, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25115, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25116, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25117, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25118, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25119, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25120, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25121, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25122, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25123, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25124, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25125, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25126, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25127, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25128, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25129, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25130, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25131, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25132, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25133, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25134, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25135, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25136, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25137, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25138, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25139, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25140, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25141, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25142, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25143, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25144, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25145, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25146, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25147, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25148, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25149, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25150, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25151, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25152, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25153, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25154, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25155, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25156, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25157, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25158, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25159, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25160, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25161, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25162, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25163, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 25164, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 25165, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 25166, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 25167, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 25168, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 25169, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 1, + "properties": {}, + "spawn_particles": true + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20877, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20878, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20879, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20880, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20881, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20882, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20883, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20884, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20885, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20886, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20887, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20888, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20889, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20890, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20891, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20892, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20893, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20894, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20895, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20896, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20897, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20898, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20899, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20900, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20901, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20902, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20903, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20904, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20905, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20906, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20907, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20908, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23096, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23097, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23098, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23099, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23100, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23101, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23102, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23103, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23104, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23105, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23106, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23107, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23108, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23109, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23110, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23111, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23368, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23369, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "definition": { + "type": "minecraft:carrot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 10659, + "properties": { + "age": "0" + } + }, + { + "id": 10660, + "properties": { + "age": "1" + } + }, + { + "id": 10661, + "properties": { + "age": "2" + } + }, + { + "id": 10662, + "properties": { + "age": "3" + } + }, + { + "id": 10663, + "properties": { + "age": "4" + } + }, + { + "id": 10664, + "properties": { + "age": "5" + } + }, + { + "id": 10665, + "properties": { + "age": "6" + } + }, + { + "id": 10666, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "definition": { + "type": "minecraft:cartography_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20770 + } + ] + }, + "minecraft:carved_pumpkin": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7019, + "properties": { + "facing": "north" + } + }, + { + "id": 7020, + "properties": { + "facing": "south" + } + }, + { + "id": 7021, + "properties": { + "facing": "west" + } + }, + { + "id": 7022, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "definition": { + "type": "minecraft:cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9460 + } + ] + }, + "minecraft:cave_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15293 + } + ] + }, + "minecraft:cave_vines": { + "definition": { + "type": "minecraft:cave_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27756, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 27757, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 27758, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 27759, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 27760, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 27761, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 27762, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 27763, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 27764, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 27765, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 27766, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 27767, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 27768, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 27769, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 27770, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 27771, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 27772, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 27773, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 27774, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 27775, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 27776, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 27777, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 27778, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 27779, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 27780, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 27781, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 27782, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 27783, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 27784, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 27785, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 27786, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 27787, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 27788, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 27789, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 27790, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 27791, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 27792, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 27793, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 27794, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 27795, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 27796, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 27797, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 27798, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 27799, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 27800, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 27801, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 27802, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 27803, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 27804, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 27805, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 27806, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 27807, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "definition": { + "type": "minecraft:cave_vines_plant", + "properties": {} + }, + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27808, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 27809, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": true, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14829, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 14830, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 14831, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 14832, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 14833, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 14834, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 14835, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 14836, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 14837, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 14838, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 14839, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 14840, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:cherry_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "cherry", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10795, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10796, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10797, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10798, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10799, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10800, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10801, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10802, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10803, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10804, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10805, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10806, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10807, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10808, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10809, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10810, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10811, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10812, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10813, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10814, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10815, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10816, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10817, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10818, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14316, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14317, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14318, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14319, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14320, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14321, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14322, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14323, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14324, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14325, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14326, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14327, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14328, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14329, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14330, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14331, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14332, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14333, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14334, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14335, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14336, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14337, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14338, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14339, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14340, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14341, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14342, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14343, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14344, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14345, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14346, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14347, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14348, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14349, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14350, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14351, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14352, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14353, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14354, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14355, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14356, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14357, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14358, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14359, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14360, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14361, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14362, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14363, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14364, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14365, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14366, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14367, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14368, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14369, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14370, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14371, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14372, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14373, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14374, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14375, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14376, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14377, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14378, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14379, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13900, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13901, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13902, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13903, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13904, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13905, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13906, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13907, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13908, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13909, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13910, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13911, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13912, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13913, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13914, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13915, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13916, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13917, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13918, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13919, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13920, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13921, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13922, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13923, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13924, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13925, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13926, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13927, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13928, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13929, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13930, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13931, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cherry_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13612, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13613, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13614, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13615, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13616, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13617, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13618, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13619, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13620, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13621, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13622, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13623, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13624, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13625, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13626, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13627, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13628, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13629, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13630, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13631, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13632, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13633, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13634, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13635, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13636, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13637, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13638, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13639, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13640, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13641, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13642, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13643, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6163, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6164, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6165, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6166, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6167, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6168, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6169, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6170, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6171, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6172, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6173, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6174, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6175, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6176, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6177, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6178, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6179, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6180, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6181, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6182, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6183, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6184, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6185, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6186, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6187, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6188, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6189, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6190, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6191, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6192, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6193, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6194, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6195, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6196, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6197, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6198, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6199, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6200, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6201, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6202, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6203, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6204, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6205, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6206, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6207, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6208, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6209, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6210, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6211, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6212, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6213, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6214, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6215, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6216, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6217, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6218, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6219, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6220, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6221, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6222, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6223, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6224, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6225, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6226, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:cherry_leaves" + }, + "leaf_particle_chance": 0.1, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 392, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 393, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 394, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 395, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 396, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 397, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 398, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 399, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 400, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 401, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 402, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 403, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 404, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 405, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 406, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 407, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 408, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 409, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 410, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 411, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 412, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 413, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 414, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 415, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 416, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 417, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 418, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 419, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 151, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 152, + "properties": { + "axis": "y" + } + }, + { + "id": 153, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:cherry_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:cherry_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6871, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6872, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:cherry_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "cherry" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 39, + "properties": { + "stage": "0" + } + }, + { + "id": 40, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:cherry_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2792, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2793, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2794, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2795, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2796, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2797, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2798, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2799, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2800, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2801, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2802, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2803, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2804, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2805, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2806, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2807, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2808, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2809, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2810, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2811, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2812, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2813, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2814, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2815, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2816, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2817, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2818, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2819, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2820, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2821, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2822, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2823, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2824, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2825, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2826, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2827, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2828, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2829, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2830, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2831, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2832, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2833, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2834, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2835, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2836, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2837, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2838, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2839, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2840, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2841, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2842, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2843, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2844, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2845, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2846, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2847, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2848, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2849, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2850, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2851, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2852, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2853, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2854, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2855, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5463, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5464, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5465, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5466, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5467, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5468, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5469, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5470, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5471, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5472, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5473, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5474, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5475, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5476, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5477, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5478, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5479, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5480, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5481, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5482, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5483, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5484, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5485, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5486, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5487, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5488, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5489, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5490, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5491, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5492, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5493, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5494, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13360, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13361, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13362, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13363, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13364, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13365, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cherry_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12052, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12053, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12054, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12055, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12056, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12057, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12058, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12059, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12060, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12061, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12064, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12065, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12066, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12067, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12068, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12069, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12070, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12071, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12072, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12073, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12074, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12075, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12076, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12077, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12078, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12079, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12080, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12081, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12084, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12085, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12086, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12087, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12088, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12089, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12090, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12091, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12092, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12093, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12094, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12095, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12096, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12097, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12098, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12099, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12100, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12101, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12104, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12105, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12106, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12107, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12108, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12109, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12110, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12111, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12112, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12113, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12114, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12115, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12116, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12117, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12118, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12119, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12120, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12121, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12124, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12125, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12126, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12127, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12128, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12129, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12130, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12131, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7450, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7466, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7467, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7468, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7469, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7470, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7482, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7483, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7484, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7485, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7486, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7487, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7488, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7489, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7490, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6707, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6708, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6709, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6710, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6711, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6712, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6713, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6714, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5859, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5860, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5861, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5862, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5863, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5864, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5865, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5866, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 216, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 217, + "properties": { + "axis": "y" + } + }, + { + "id": 218, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:chest": { + "definition": { + "type": "minecraft:chest", + "close_sound": "minecraft:block.chest.close", + "open_sound": "minecraft:block.chest.open", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3987, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3988, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3989, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3990, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3991, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3992, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3993, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3994, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3995, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3996, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3997, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3998, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3999, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4000, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4001, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4002, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4003, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4004, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4005, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4006, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 4007, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4008, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 4009, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4010, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11199, + "properties": { + "facing": "north" + } + }, + { + "id": 11200, + "properties": { + "facing": "south" + } + }, + { + "id": 11201, + "properties": { + "facing": "west" + } + }, + { + "id": 11202, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_bookshelf": { + "definition": { + "type": "minecraft:chiseled_book_shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2344, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2345, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2346, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2347, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2348, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2349, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2350, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2351, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2352, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2353, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2354, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2355, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2356, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2357, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2358, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2359, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2360, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2361, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2362, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2363, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2364, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2365, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2366, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2367, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2368, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2369, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2370, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2371, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2372, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2373, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2374, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2375, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2376, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2377, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2378, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2379, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2380, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2381, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2382, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2383, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2384, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2385, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2386, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2387, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2388, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2389, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2390, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2391, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2392, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2393, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2394, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2395, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2396, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2397, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2398, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2399, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2400, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2401, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2402, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2403, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2404, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2405, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2406, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "default": true, + "id": 2407, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2408, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2409, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2410, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2411, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2412, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2413, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2414, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2415, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2416, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2417, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2418, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2419, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2420, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2421, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2422, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2423, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2424, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2425, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2426, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2427, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2428, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2429, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2430, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2431, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2432, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2433, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2434, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2435, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2436, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2437, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2438, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2439, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2440, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2441, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2442, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2443, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2444, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2445, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2446, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2447, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2448, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2449, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2450, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2451, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2452, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2453, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2454, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2455, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2456, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2457, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2458, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2459, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2460, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2461, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2462, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2463, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2464, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2465, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2466, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2467, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2468, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2469, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2470, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2471, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2472, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2473, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2474, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2475, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2476, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2477, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2478, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2479, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2480, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2481, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2482, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2483, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2484, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2485, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2486, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2487, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2488, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2489, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2490, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2491, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2492, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2493, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2494, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2495, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2496, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2497, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2498, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2499, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2500, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2501, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2502, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2503, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2504, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2505, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2506, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2507, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2508, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2509, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2510, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2511, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2512, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2513, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2514, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2515, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2516, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2517, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2518, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2519, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2520, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2521, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2522, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2523, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2524, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2525, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2526, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2527, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2528, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2529, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2530, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2531, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2532, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2533, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2534, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2535, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2536, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2537, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2538, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2539, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2540, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2541, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2542, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2543, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2544, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2545, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2546, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2547, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2548, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2549, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2550, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2551, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2552, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2553, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2554, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2555, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2556, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2557, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2558, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2559, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2560, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2561, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2562, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2563, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2564, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2565, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2566, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2567, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2568, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2569, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2570, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2571, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2572, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2573, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2574, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2575, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2576, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2577, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2578, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2579, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2580, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2581, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2582, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2583, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2584, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2585, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2586, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2587, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2588, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2589, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2590, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2591, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2592, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2593, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2594, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2595, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2596, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2597, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2598, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2599, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + } + ] + }, + "minecraft:chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 25322 + } + ] + }, + "minecraft:chiseled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29570 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23093 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22245 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11324 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13248 + } + ] + }, + "minecraft:chiseled_resin_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9333 + } + ] + }, + "minecraft:chiseled_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 579 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7757 + } + ] + }, + "minecraft:chiseled_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24274 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24686 + } + ] + }, + "minecraft:chorus_flower": { + "definition": { + "type": "minecraft:chorus_flower", + "plant": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 14706, + "properties": { + "age": "0" + } + }, + { + "id": 14707, + "properties": { + "age": "1" + } + }, + { + "id": 14708, + "properties": { + "age": "2" + } + }, + { + "id": 14709, + "properties": { + "age": "3" + } + }, + { + "id": 14710, + "properties": { + "age": "4" + } + }, + { + "id": 14711, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "definition": { + "type": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14642, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14643, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14644, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14645, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14646, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14647, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14648, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14649, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14650, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14651, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14652, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14653, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14654, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14655, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14656, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14657, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14658, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14659, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14660, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14661, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14662, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14663, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14664, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14665, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14666, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14667, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14668, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14669, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14670, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14671, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14672, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14673, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14674, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14675, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14676, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14677, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14678, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14679, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14680, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14681, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14682, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14683, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14684, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14685, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14686, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14687, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14688, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14689, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14690, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14691, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14692, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14693, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14694, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14695, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14696, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14697, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14698, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14699, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14700, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14701, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14702, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14703, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14704, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14705, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:clay": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6946 + } + ] + }, + "minecraft:closed_eyeblossom": { + "definition": { + "type": "minecraft:eyeblossom", + "open": false, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29869 + } + ] + }, + "minecraft:coal_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12913 + } + ] + }, + "minecraft:coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 133 + } + ] + }, + "minecraft:coarse_dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27926 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28007, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28008, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28009, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28010, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28011, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28012, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobbled_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27927, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27928, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27929, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27930, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27931, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27932, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27933, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27934, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27935, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27936, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27939, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27940, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27941, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27942, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27943, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27944, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27945, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27946, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27947, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27948, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27949, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27950, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27951, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27952, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27953, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27954, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27955, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27956, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27959, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27960, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27961, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27962, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27963, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27964, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27965, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27966, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27967, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27968, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27969, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27970, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27971, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27972, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27973, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27974, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27975, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27976, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27979, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27980, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27981, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27982, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27983, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27984, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27985, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27986, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27987, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27988, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27989, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27990, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27991, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27992, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27993, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27994, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27995, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27996, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28002, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28003, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28004, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28005, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 28013, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28014, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28015, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 28016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28021, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28022, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28023, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28024, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28025, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28026, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28027, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28033, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28034, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28035, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28036, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28037, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28038, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28039, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28045, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28046, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28047, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28048, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28049, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28050, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28051, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28057, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28058, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28059, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28060, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28061, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28062, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28063, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28069, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28070, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28071, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28072, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28073, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28074, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28075, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28081, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28082, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28083, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28084, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28085, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28086, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28087, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28093, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28094, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28095, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28096, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28097, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28098, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28099, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28105, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28106, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28107, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28108, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28109, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28110, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28111, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28121, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28122, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28123, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28129, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28130, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28131, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28132, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28133, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28134, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28135, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28141, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28142, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28143, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28144, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28145, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28146, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28147, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28153, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28154, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28155, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28156, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28157, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28158, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28159, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28165, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28166, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28167, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28168, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28169, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28170, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28171, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28177, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28178, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28179, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28180, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28181, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28182, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28183, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28189, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28190, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28191, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28192, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28193, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28194, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28195, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28201, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28202, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28203, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28204, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28205, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28206, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28207, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28213, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28214, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28215, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28216, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28217, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28218, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28219, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28229, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28230, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28231, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28237, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28238, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28239, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28240, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28241, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28242, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28243, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28249, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28250, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28251, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28252, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28253, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28254, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28255, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28265, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28266, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28267, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28273, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28274, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28275, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28276, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28277, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28278, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28279, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28285, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28286, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28287, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28288, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28289, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28290, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28291, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28301, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28302, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28303, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28309, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28310, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28311, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28312, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28313, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28314, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28315, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28321, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28325, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28326, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28327, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13426, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13427, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13428, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13429, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13430, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13431, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5747, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5748, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5749, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5750, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5752, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5754, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5756, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5757, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5758, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5766, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5767, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5768, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5769, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5770, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5772, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5773, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5774, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5776, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5778, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5786, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5787, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5788, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5789, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5790, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5792, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5793, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5794, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5796, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5797, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5798, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5806, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5807, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5808, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5809, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5810, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5812, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5813, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5814, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5816, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5818, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5826, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 9981, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9982, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9983, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 9984, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9985, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9986, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9987, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9988, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9989, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9990, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9993, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9994, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9995, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9996, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9997, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9998, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9999, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10000, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10001, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10002, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10005, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10006, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10007, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10008, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10009, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10010, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10011, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10012, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10013, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10014, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10017, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10018, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10019, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10020, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10021, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10022, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10023, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10024, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10025, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10026, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10029, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10030, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10031, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10032, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10033, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10034, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10035, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10036, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10037, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10038, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10041, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10042, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10043, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10044, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10045, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10046, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10047, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10048, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10049, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10050, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10053, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10054, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10055, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10056, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10057, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10058, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10059, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10060, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10061, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10062, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10065, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10066, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10067, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10068, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10069, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10070, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10071, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10072, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10073, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10074, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10077, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10078, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10079, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10080, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10081, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10082, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10083, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10084, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10085, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10086, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10089, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10090, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10091, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10092, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10093, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10094, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10095, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10096, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10097, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10098, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10101, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10102, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10103, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10104, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10105, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10106, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10107, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10108, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10109, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10110, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10113, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10114, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10115, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10116, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10117, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10118, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10119, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10120, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10121, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10122, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10125, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10126, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10127, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10128, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10129, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10130, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10131, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10132, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10133, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10134, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10137, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10138, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10139, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10140, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10141, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10142, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10143, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10144, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10145, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10146, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10149, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10150, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10151, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10152, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10153, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10154, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10155, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10156, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10157, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10158, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10161, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10162, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10163, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10164, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10165, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10166, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10167, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10168, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10169, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10170, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10173, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10174, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10175, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10176, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10177, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10178, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10179, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10180, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10181, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10182, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10185, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10186, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10187, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10188, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10189, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10190, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10191, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10192, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10193, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10194, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10197, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10198, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10199, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10200, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10201, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10202, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10203, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10204, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10205, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10206, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10209, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10210, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10211, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10212, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10213, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10214, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10215, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10216, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10217, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10218, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10221, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10222, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10223, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10224, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10225, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10226, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10227, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10228, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10229, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10230, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10233, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10234, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10235, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10236, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10237, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10238, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10239, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10240, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10241, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10242, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10245, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10246, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10247, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10248, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10249, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10250, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10251, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10252, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10253, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10254, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10257, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10258, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10259, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10260, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10261, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10262, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10263, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10264, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10265, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10266, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10269, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10270, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10271, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10272, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10273, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10274, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10275, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10276, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10277, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10278, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10281, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10282, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10283, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10284, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10285, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10286, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10287, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10288, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10289, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10290, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10293, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10294, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10295, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10296, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10297, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10298, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10299, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10300, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10301, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10302, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "definition": { + "type": "minecraft:web", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2247 + } + ] + }, + "minecraft:cocoa": { + "definition": { + "type": "minecraft:cocoa", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9481, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 9482, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 9483, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 9484, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 9485, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 9486, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 9487, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 9488, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 9489, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 9490, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 9491, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 9492, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 9968, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 9969, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 9970, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 9971, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 9972, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 9973, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 9974, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 9975, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 9976, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 9977, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 9978, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 9979, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "definition": { + "type": "minecraft:comparator", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11263, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 11264, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11265, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11266, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11267, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11268, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11269, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11270, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11271, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11272, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11273, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11274, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11275, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11276, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11277, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11278, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "definition": { + "type": "minecraft:composter", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 21743, + "properties": { + "level": "0" + } + }, + { + "id": 21744, + "properties": { + "level": "1" + } + }, + { + "id": 21745, + "properties": { + "level": "2" + } + }, + { + "id": 21746, + "properties": { + "level": "3" + } + }, + { + "id": 21747, + "properties": { + "level": "4" + } + }, + { + "id": 21748, + "properties": { + "level": "5" + } + }, + { + "id": 21749, + "properties": { + "level": "6" + } + }, + { + "id": 21750, + "properties": { + "level": "7" + } + }, + { + "id": 21751, + "properties": { + "level": "8" + } + } + ] + }, + "minecraft:conduit": { + "definition": { + "type": "minecraft:conduit", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15276, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15277, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7990, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7991, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7992, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7993, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7994, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7995, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7996, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7997, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7998, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7999, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8000, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8001, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8002, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8003, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8004, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8005, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8006, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8007, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8008, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8009, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8010, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8011, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8012, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8013, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8014, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8015, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8016, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8017, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8018, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8019, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8020, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8021, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:copper_block": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 25309 + } + ] + }, + "minecraft:copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27063, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27064, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27065, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27066, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8252, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8253, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8254, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8255, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8256, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8257, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27095, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27096, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27097, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27098, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27099, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27100, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27101, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27102, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27103, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27104, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27105, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27106, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27107, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27108, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27109, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27110, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27111, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27112, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27113, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27114, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27115, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27116, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27117, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27118, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26023, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26024, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26025, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26026, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26027, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26028, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26029, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26030, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26031, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26032, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26033, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26034, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26035, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26036, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26037, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26038, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26039, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26040, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26041, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26042, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26043, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26044, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26045, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26046, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26047, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26048, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26049, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26050, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26051, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26052, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26053, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26054, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26055, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26056, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26057, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26058, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26059, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26060, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26061, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26062, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26063, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26064, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26065, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26066, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26067, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26068, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26069, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26070, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26071, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26072, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26073, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26074, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26075, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26076, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26077, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26078, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26079, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26080, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26081, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26082, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26083, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26084, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26085, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26086, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27287, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27288, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27289, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27290, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27291, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27292, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27293, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27294, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27295, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27296, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27297, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27298, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27299, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27300, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27301, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27302, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27303, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27304, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27305, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27306, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27307, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27308, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27309, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27310, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27311, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27312, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27313, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27314, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27315, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27316, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27317, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27318, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27047, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27048, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20845, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20846, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20847, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20848, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25313 + } + ] + }, + "minecraft:copper_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:copper_fire_flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7011 + } + ] + }, + "minecraft:copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26535, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26536, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26537, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26538, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26539, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26540, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26541, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26542, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26543, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26544, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26545, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26546, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26547, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26548, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26549, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26550, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26551, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26552, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26553, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26554, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26555, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26556, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26557, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26558, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26559, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26560, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26561, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26562, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26563, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26564, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26565, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26566, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26567, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26568, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26569, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26570, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26571, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26572, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26573, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26574, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26575, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26576, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26577, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26578, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26579, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26580, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26581, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26582, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26583, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26584, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26585, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26586, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26587, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26588, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26589, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26590, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26591, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26592, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26593, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26594, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26595, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26596, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26597, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26598, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:copper_fire_flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7012, + "properties": { + "facing": "north" + } + }, + { + "id": 7013, + "properties": { + "facing": "south" + } + }, + { + "id": 7014, + "properties": { + "facing": "west" + } + }, + { + "id": 7015, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cornflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:jump_boost" + } + ] + }, + "states": [ + { + "default": true, + "id": 2333 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29571 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29572 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23094 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22244 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7756 + } + ] + }, + "minecraft:crafter": { + "definition": { + "type": "minecraft:crafter", + "properties": {} + }, + "properties": { + "crafting": [ + "true", + "false" + ], + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29609, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 29610, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 29611, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 29612, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 29613, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 29614, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 29615, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 29616, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 29617, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 29618, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 29619, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 29620, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 29621, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 29622, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 29623, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 29624, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 29625, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 29626, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 29627, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 29628, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 29629, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "id": 29630, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 29631, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 29632, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "false" + } + }, + { + "id": 29633, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 29634, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 29635, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 29636, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 29637, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 29638, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 29639, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 29640, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 29641, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 29642, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 29643, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 29644, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 29645, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 29646, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 29647, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 29648, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 29649, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 29650, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 29651, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 29652, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 29653, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "default": true, + "id": 29654, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 29655, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 29656, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "false" + } + } + ] + }, + "minecraft:crafting_table": { + "definition": { + "type": "minecraft:crafting_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5310 + } + ] + }, + "minecraft:creaking_heart": { + "definition": { + "type": "minecraft:creaking_heart", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "creaking_heart_state": [ + "uprooted", + "dormant", + "awake" + ], + "natural": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3889, + "properties": { + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "id": 3890, + "properties": { + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3891, + "properties": { + "axis": "x", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3892, + "properties": { + "axis": "x", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3893, + "properties": { + "axis": "x", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3894, + "properties": { + "axis": "x", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 3895, + "properties": { + "axis": "y", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "default": true, + "id": 3896, + "properties": { + "axis": "y", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3897, + "properties": { + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3898, + "properties": { + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3899, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3900, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 3901, + "properties": { + "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "id": 3902, + "properties": { + "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3903, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3904, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3905, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3906, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", + "natural": "false" + } + } + ] + }, + "minecraft:creeper_head": { + "definition": { + "type": "minecraft:skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11075, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11076, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11077, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11078, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11079, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11080, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11081, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11082, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11083, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11084, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11085, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11086, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11087, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11088, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11089, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11090, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11091, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11092, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11093, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11094, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11095, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11096, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11097, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11098, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11099, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11100, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11101, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11102, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11103, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11104, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11105, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11106, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11107, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11108, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11109, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11110, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11111, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11112, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11113, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11114, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "crimson", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21466, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21467, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21468, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21469, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21470, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21471, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21472, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21473, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21474, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 21475, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21476, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21477, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21478, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21479, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21480, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21481, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21482, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21483, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21484, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21485, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21486, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21487, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21488, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21489, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21514, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21515, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21516, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21517, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21518, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21519, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21520, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21521, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21522, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21523, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21524, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21525, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21526, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21527, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21528, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21529, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21530, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21531, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21532, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21533, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21534, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21535, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21536, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21537, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21538, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21539, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21540, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21541, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21542, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21543, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21544, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21545, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21546, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21547, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21548, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21549, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21550, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21551, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21552, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21553, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21554, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21555, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21556, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21557, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21558, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21559, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21560, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21561, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21562, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21563, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21564, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21565, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21566, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21567, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21568, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21569, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21570, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21571, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21572, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21573, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21574, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21575, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21576, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21577, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21050, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21051, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21052, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21053, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21054, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21055, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21056, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21057, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21058, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21059, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21060, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21061, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21062, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21063, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21064, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21065, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21066, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21067, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21068, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21069, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21070, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21071, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21072, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21073, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21074, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21075, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21076, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21077, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21078, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21079, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21080, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 21081, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21242, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21243, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21244, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21245, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21246, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21247, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21248, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21249, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21250, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21251, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21252, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21253, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21254, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21255, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21256, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21257, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21258, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21259, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21260, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21261, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21262, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21263, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21264, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21265, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21266, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21267, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21268, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21269, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21270, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21271, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21272, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21273, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "definition": { + "type": "minecraft:nether_fungus", + "feature": "minecraft:crimson_fungus_planted", + "grows_on": "minecraft:crimson_nylium", + "properties": {}, + "support_blocks": "minecraft:supports_crimson_fungus" + }, + "states": [ + { + "default": true, + "id": 20975 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6419, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6420, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6421, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6422, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6423, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6424, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6425, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6426, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6427, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6428, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6429, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6430, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6431, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6432, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6433, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6434, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6435, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6436, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6437, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6438, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6439, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6440, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6441, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6442, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6443, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6444, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6445, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6446, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6447, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6448, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6449, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6450, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6451, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6452, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6453, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6454, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6455, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6456, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6457, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6458, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6459, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6460, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6461, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6462, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6463, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6464, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6465, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6466, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6467, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6468, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6469, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6470, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6471, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6472, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6473, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6474, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6475, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6476, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6477, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6478, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6479, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6480, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6481, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6482, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20968, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20969, + "properties": { + "axis": "y" + } + }, + { + "id": 20970, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20974 + } + ] + }, + "minecraft:crimson_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21032 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21046, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 21047, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "definition": { + "type": "minecraft:nether_roots", + "properties": {}, + "support_blocks": "minecraft:supports_crimson_roots" + }, + "states": [ + { + "default": true, + "id": 21031 + } + ] + }, + "minecraft:crimson_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2856, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2857, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2858, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2859, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2860, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2861, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2862, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2863, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2864, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2865, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2866, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2867, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2868, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2869, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2870, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2871, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2872, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2873, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2874, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2875, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2876, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2877, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2878, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2879, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2880, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2881, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2882, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2883, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2884, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2885, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2886, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2887, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2888, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2889, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2890, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2891, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2892, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2893, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2894, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2895, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2896, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2897, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2898, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2899, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2900, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2901, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2902, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2903, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2904, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2905, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2906, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2907, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2908, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2909, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2910, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2911, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2912, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2913, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2914, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2915, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2916, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2917, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2918, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2919, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21642, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 21643, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 21644, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 21645, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 21646, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 21647, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 21648, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 21649, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 21650, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 21651, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 21652, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 21653, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 21654, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 21655, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 21656, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 21657, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 21658, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21659, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 21660, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 21661, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 21662, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 21663, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 21664, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 21665, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 21666, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 21667, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 21668, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 21669, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 21670, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 21671, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 21672, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 21673, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21034, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21035, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21036, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21037, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21038, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21039, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:crimson_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21306, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21307, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21308, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21309, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21311, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21315, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21316, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21317, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21325, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21326, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21327, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21328, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21329, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21331, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21332, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21333, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21335, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21336, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21337, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21345, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21346, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21347, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21348, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21349, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21351, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21352, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21353, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21355, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21356, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21357, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21365, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21366, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21367, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21368, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21369, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21371, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21372, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21373, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21375, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21385, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20962, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20963, + "properties": { + "axis": "y" + } + }, + { + "id": 20964, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21114, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21129, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21168, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21169, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21170, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21171, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21172, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21173, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21174, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21175, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21176, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21177, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6747, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6748, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6749, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6750, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6751, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6752, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6753, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6754, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21706, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21707, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21708, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21709, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21710, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21711, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21712, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21713, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "definition": { + "type": "minecraft:crying_obsidian", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21820 + } + ] + }, + "minecraft:cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 25318 + } + ] + }, + "minecraft:cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25665, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25666, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25667, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25668, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25669, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25670, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:cut_copper" + }, + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25567, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25568, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25569, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25570, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25571, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25572, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25573, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25574, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25575, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25576, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25577, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25578, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25579, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25580, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25581, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25582, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25583, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25584, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25585, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25586, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25587, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25588, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25589, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25590, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25591, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25592, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25593, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25594, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25595, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25596, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25597, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25598, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25599, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25600, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25601, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25602, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25603, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25604, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25605, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25606, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25607, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25608, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25609, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25610, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25611, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25612, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25613, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25614, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25615, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25616, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25617, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25618, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25619, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25620, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25621, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25622, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25623, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25624, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25625, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25626, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25627, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25628, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25629, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25630, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25631, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25632, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25633, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25634, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25635, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25636, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25637, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25638, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25639, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25640, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25641, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25642, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25643, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25644, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25645, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25646, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13249 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13468, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13469, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13470, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13471, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13472, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13473, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 580 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13414, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13415, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13416, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13417, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13418, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13419, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "definition": { + "type": "minecraft:banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13071, + "properties": { + "rotation": "0" + } + }, + { + "id": 13072, + "properties": { + "rotation": "1" + } + }, + { + "id": 13073, + "properties": { + "rotation": "2" + } + }, + { + "id": 13074, + "properties": { + "rotation": "3" + } + }, + { + "id": 13075, + "properties": { + "rotation": "4" + } + }, + { + "id": 13076, + "properties": { + "rotation": "5" + } + }, + { + "id": 13077, + "properties": { + "rotation": "6" + } + }, + { + "id": 13078, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13079, + "properties": { + "rotation": "8" + } + }, + { + "id": 13080, + "properties": { + "rotation": "9" + } + }, + { + "id": 13081, + "properties": { + "rotation": "10" + } + }, + { + "id": 13082, + "properties": { + "rotation": "11" + } + }, + { + "id": 13083, + "properties": { + "rotation": "12" + } + }, + { + "id": 13084, + "properties": { + "rotation": "13" + } + }, + { + "id": 13085, + "properties": { + "rotation": "14" + } + }, + { + "id": 13086, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "definition": { + "type": "minecraft:bed", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2075, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2076, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2077, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2078, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2079, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2080, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2081, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2082, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2083, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2084, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2085, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2086, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2087, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2088, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2089, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2090, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23256, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23257, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23258, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23259, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23260, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23261, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23262, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23263, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23264, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23265, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23266, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23267, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23268, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23269, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23270, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23271, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:cyan_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23388, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23389, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12905 + } + ] + }, + "minecraft:cyan_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15039 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:cyan_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15055 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15002, + "properties": { + "facing": "north" + } + }, + { + "id": 15003, + "properties": { + "facing": "south" + } + }, + { + "id": 15004, + "properties": { + "facing": "west" + } + }, + { + "id": 15005, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14924, + "properties": { + "facing": "north" + } + }, + { + "id": 14925, + "properties": { + "facing": "east" + } + }, + { + "id": 14926, + "properties": { + "facing": "south" + } + }, + { + "id": 14927, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14928, + "properties": { + "facing": "up" + } + }, + { + "id": 14929, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7107 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "cyan", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11748, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11749, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11750, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11751, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11752, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11753, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11754, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11755, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11756, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11757, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11758, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11759, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11760, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11761, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11762, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11763, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11764, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11765, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11766, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11767, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11768, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11769, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11770, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11771, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11772, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11773, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11774, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11775, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11776, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11777, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11778, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11779, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11453 + } + ] + }, + "minecraft:cyan_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13219, + "properties": { + "facing": "north" + } + }, + { + "id": 13220, + "properties": { + "facing": "south" + } + }, + { + "id": 13221, + "properties": { + "facing": "west" + } + }, + { + "id": 13222, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2302 + } + ] + }, + "minecraft:damaged_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11203, + "properties": { + "facing": "north" + } + }, + { + "id": 11204, + "properties": { + "facing": "south" + } + }, + { + "id": 11205, + "properties": { + "facing": "west" + } + }, + { + "id": 11206, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2321 + } + ] + }, + "minecraft:dark_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "dark_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10819, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10820, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10821, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10822, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10823, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10824, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10825, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10826, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10827, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10828, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10829, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10830, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10831, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10832, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10833, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10834, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10835, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10836, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10837, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10838, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10839, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10840, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10841, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10842, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14380, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14381, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14382, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14383, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14384, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14385, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14386, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14387, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14388, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14389, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14390, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14391, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14392, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14393, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14394, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14395, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14396, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14397, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14398, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14399, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14400, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14401, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14402, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14403, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14404, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14405, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14406, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14407, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14408, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14409, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14410, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14411, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14412, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14413, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14414, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14415, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14416, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14417, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14418, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14419, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14420, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14421, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14422, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14423, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14424, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14425, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14426, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14427, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14428, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14429, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14430, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14431, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14432, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14433, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14434, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14435, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14436, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14437, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14438, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14439, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14440, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14441, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14442, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14443, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13932, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13933, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13934, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13935, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13936, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13937, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13938, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13939, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13940, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13941, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13942, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13943, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13944, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13945, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13946, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13947, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13948, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13949, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13950, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13951, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13952, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13953, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13954, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13955, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13956, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13957, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13958, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13959, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13960, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13961, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13962, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13963, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13644, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13645, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13646, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13647, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13648, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13649, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13650, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13651, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13652, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13653, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13654, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13655, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13656, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13657, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13658, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13659, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13660, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13662, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13663, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13664, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13665, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13666, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13667, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13668, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13669, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13670, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13671, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13672, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13673, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13674, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13675, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6291, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6292, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6293, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6294, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6295, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6296, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6297, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6298, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6299, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6300, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6301, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6302, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6303, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6304, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6305, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6306, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6307, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6308, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6309, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6310, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6311, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6312, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6313, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6314, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6315, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6316, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6317, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6318, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6319, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6320, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6321, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6322, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6323, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6324, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6325, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6326, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6327, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6328, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6329, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6330, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6331, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6332, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6333, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6334, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6335, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6336, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6337, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6338, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6339, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6340, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6341, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6342, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6343, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6344, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6345, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6346, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6347, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6348, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6349, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6350, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6351, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6352, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6353, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6354, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 420, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 421, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 422, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 423, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 424, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 425, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 426, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 427, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 428, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 429, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 430, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 431, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 432, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 433, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 434, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 435, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 436, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 437, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 438, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 439, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 440, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 441, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 442, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 443, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 444, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 445, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 446, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 447, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 154, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 155, + "properties": { + "axis": "y" + } + }, + { + "id": 156, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6873, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6874, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "dark_oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 41, + "properties": { + "stage": "0" + } + }, + { + "id": 42, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2920, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2921, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2922, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2923, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2924, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2925, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2926, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2927, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2928, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2929, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2930, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2931, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2932, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2933, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2934, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2935, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2936, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2937, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2938, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2939, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2940, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2941, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2942, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2943, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2944, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2945, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2946, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2947, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2948, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2949, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2950, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2951, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2952, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2953, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2954, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2955, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2956, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2957, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2958, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2959, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2960, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2961, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2962, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2963, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2964, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2965, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2966, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2967, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2968, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2969, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2970, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2971, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2972, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2973, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2974, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2975, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2976, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2977, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2978, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2979, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2980, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2981, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2982, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2983, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5527, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5528, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5529, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5530, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5531, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5532, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5533, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5534, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5535, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5536, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5537, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5538, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5539, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5540, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5541, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5542, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5543, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5544, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5545, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5546, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5547, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5548, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5549, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5550, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5551, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5552, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5553, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5554, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5555, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5556, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5557, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5558, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13366, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13367, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13368, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13369, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13370, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13371, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12132, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12133, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12134, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12135, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12136, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12137, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12138, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12139, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12140, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12141, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12142, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12143, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12144, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12145, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12146, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12147, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12148, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12149, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12150, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12151, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12152, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12153, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12154, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12155, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12156, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12157, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12158, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12159, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12160, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12161, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12162, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12163, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12164, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12165, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12166, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12167, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12168, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12169, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12170, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12172, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12173, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12174, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12175, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12176, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12177, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12178, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12179, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12180, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12181, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12182, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12183, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12184, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12185, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12186, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12187, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12188, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12189, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12190, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12191, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12192, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12193, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12194, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12195, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12196, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12197, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12198, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12199, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12200, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12201, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12202, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12203, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12204, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12205, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12206, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12207, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12208, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12209, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12210, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7498, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7499, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7500, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7501, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7502, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7503, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7504, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7505, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7506, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7507, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7508, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7509, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7510, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7511, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7512, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7513, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7514, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7515, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7516, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7517, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7518, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7519, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7520, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7521, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7522, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7523, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7524, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7525, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7526, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7527, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7528, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7529, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7530, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7531, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7532, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7533, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7534, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7535, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7536, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7537, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7538, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7539, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7540, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7541, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7542, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7543, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7544, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7545, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7546, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7547, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7548, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7549, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7550, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7551, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7552, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7553, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7554, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7555, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7556, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7557, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7558, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7559, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7560, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7561, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6723, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6724, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6725, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6726, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6727, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6728, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6729, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6730, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5875, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5876, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5877, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5878, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5879, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5880, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5881, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5882, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 219, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 220, + "properties": { + "axis": "y" + } + }, + { + "id": 221, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12633 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12886, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12887, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12888, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12889, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12890, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12891, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12794, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12795, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12796, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12797, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12798, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12799, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12800, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12801, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12802, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12803, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12804, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12805, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12806, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12807, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12808, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12810, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12811, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12812, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12813, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12814, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12815, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12816, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12817, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12818, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12819, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12820, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12821, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12822, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12823, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12824, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12825, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12826, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12827, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12828, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12830, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12831, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12832, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12833, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12834, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12835, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12836, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12837, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12838, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12839, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12840, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12841, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12842, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12843, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12844, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12845, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12846, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12847, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12848, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12849, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12850, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12851, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12852, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12853, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12854, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12855, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12856, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12857, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12858, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12859, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12860, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12861, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12862, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12863, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12864, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12865, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12866, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12867, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12868, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12869, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12870, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12871, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12872, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12873, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "definition": { + "type": "minecraft:daylight_detector", + "properties": {} + }, + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11279, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 11280, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 11281, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 11282, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 11283, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 11284, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 11285, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 11286, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 11287, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 11288, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 11289, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 11290, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 11291, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 11292, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 11293, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 11294, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 11295, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 11296, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 11297, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 11298, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 11299, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 11300, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 11301, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 11302, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 11303, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 11304, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 11305, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 11306, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 11307, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 11308, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 11309, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 11310, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15149, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15150, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15138 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15169, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15170, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15195, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15196, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15197, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15198, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15199, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15200, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15201, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15202, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15151, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15152, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15139 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15171, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15172, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15203, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15204, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15205, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15206, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15207, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15208, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15209, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15210, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "definition": { + "type": "minecraft:dry_vegetation", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2250 + } + ] + }, + "minecraft:dead_fire_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15153, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15154, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15140 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15173, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15174, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15211, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15212, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15213, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15214, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15215, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15216, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15217, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15218, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15155, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15156, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15141 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15175, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15176, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15219, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15220, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15221, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15222, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15223, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15224, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15225, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15226, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15147, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15148, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15137 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15167, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15168, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15187, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15188, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15189, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15190, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15191, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15192, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15193, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15194, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "definition": { + "type": "minecraft:decorated_pot", + "properties": {} + }, + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29593, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29594, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29595, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29596, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29597, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29598, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29599, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29600, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29601, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29602, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29603, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29604, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29605, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29606, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29607, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29608, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 27923, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 27924, + "properties": { + "axis": "y" + } + }, + { + "id": 27925, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29240, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 29241, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 29242, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29243, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 29244, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 29245, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29160, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29161, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29162, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29163, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29164, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29165, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29166, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29167, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29168, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29169, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29170, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29171, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29172, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29173, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29174, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29175, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29176, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29177, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29178, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29179, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29180, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29181, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29182, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29183, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29184, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29185, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29186, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29187, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29188, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29189, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29190, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29191, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29192, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29193, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29194, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29195, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29196, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29197, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29198, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29199, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29200, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29201, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29202, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29203, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29204, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29205, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29206, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29207, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29208, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29209, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29210, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29211, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29212, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29213, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29214, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29215, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29216, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29217, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29218, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29219, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29220, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29221, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29222, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29223, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29224, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29225, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29226, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29227, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29228, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29229, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 29230, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 29231, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 29232, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 29233, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 29234, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 29235, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 29236, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 29237, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 29238, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 29239, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 29246, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29247, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29248, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 29249, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29250, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29251, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29252, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29253, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29254, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29255, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29256, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29257, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29258, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29259, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29260, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29261, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29262, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29263, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29264, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29265, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29266, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29267, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29268, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29269, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29270, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29271, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29272, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29273, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29274, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29275, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29276, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29277, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29278, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29279, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29280, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29281, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29282, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29283, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29284, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29285, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29286, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29287, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29288, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29289, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29290, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29291, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29292, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29293, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29294, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29295, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29296, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29297, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29298, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29299, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29300, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29301, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29302, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29303, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29304, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29305, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29306, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29307, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29308, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29309, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29310, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29311, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29312, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29313, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29314, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29315, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29316, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29317, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29318, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29319, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29320, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29321, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29322, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29323, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29324, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29325, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29326, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29327, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29328, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29329, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29330, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29331, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29332, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29333, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29334, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29335, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29336, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29337, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29338, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29339, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29340, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29341, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29342, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29343, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29344, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29345, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29346, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29347, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29348, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29349, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29350, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29351, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29352, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29353, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29354, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29355, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29356, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29357, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29358, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29359, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29360, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29361, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29362, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29363, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29364, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29365, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29366, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29367, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29368, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29369, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29370, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29371, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29372, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29373, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29374, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29375, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29376, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29377, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29378, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29379, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29380, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29381, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29382, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29383, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29384, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29385, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29386, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29387, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29388, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29389, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29390, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29391, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29392, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29393, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29394, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29395, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29396, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29397, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29398, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29399, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29400, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29401, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29402, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29403, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29404, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29405, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29406, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29407, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29408, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29409, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29410, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29411, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29412, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29413, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29414, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29415, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29416, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29417, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29418, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29419, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29420, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29421, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29422, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29423, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29424, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29425, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29426, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29427, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29428, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29429, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29430, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29431, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29432, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29433, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29434, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29435, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29436, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29437, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29438, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29439, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29440, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29441, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29442, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29443, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29444, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29445, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29446, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29447, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29448, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29449, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29450, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29451, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29452, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29453, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29454, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29455, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29456, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29457, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29458, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29459, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29460, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29461, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29462, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29463, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29464, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29465, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29466, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29467, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29468, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29469, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29470, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29471, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29472, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29473, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29474, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29475, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29476, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29477, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29478, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29479, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29480, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29481, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29482, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29483, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29484, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29485, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29486, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29487, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29488, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29489, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29490, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29491, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29492, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29493, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29494, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29495, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29496, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29497, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29498, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29499, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29500, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29501, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29502, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29503, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29504, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29505, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29506, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29507, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29508, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29509, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29510, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29511, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29512, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29513, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29514, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29515, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29516, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29517, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29518, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29519, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29520, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29521, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29522, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29523, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29524, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29525, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29526, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29527, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29528, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29529, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29530, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29531, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29532, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29533, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29534, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29535, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29536, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29537, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29538, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29539, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29540, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29541, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29542, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29543, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29544, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29545, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29546, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29547, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29548, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29549, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29550, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29551, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29552, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29553, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29554, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29555, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29556, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29557, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29558, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29559, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29560, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29561, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29562, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29563, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29564, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29565, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29566, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29567, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29568, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29569, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29159 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 134 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25314 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5308 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9574 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 130 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 132 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 564 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6883, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 6884, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28829, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28830, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28831, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28832, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28833, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28834, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_tiles" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28749, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28750, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28752, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28753, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28754, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28756, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28757, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28758, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28766, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28767, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28768, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28769, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28770, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28772, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28773, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28774, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28776, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28777, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28778, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28786, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28787, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28788, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28789, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28790, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28792, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28793, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28794, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28796, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28797, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28798, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28806, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28807, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28808, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28809, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28810, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28812, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28813, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28814, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28816, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28817, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28818, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28826, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28827, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28828, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 28835, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28836, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28837, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 28838, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28839, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28840, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28841, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28842, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28843, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28844, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28845, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28846, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28847, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28848, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28849, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28850, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28851, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28852, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28853, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28854, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28855, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28856, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28857, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28858, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28859, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28860, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28861, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28862, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28863, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28864, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28865, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28866, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28867, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28868, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28869, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28870, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28871, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28872, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28873, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28874, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28875, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28876, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28877, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28878, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28879, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28880, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28881, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28882, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28883, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28884, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28885, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28886, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28887, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28888, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28889, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28890, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28891, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28892, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28893, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28894, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28895, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28896, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28897, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28898, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28899, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28900, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28901, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28902, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28903, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28904, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28905, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28906, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28907, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28908, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28909, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28910, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28911, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28912, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28913, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28914, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28915, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28916, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28917, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28918, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28919, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28920, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28921, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28922, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28923, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28924, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28925, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28926, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28927, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28928, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28929, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28930, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28931, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28932, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28933, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28934, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28935, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28936, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28937, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28938, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28939, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28940, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28941, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28942, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28943, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28944, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28945, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28946, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28947, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28948, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28949, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28950, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28951, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28952, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28953, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28954, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28955, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28956, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28957, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28958, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28959, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28960, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28961, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28962, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28963, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28964, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28965, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28966, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28967, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28968, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28969, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28970, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28971, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28972, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28973, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28974, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28975, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28976, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28977, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28978, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28979, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28980, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28981, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28982, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28983, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28984, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28985, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28986, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28987, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28988, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28989, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28990, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28991, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28992, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28993, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28994, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28995, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28996, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28997, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28998, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28999, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29000, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29001, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29002, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29003, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29004, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29005, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29006, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29007, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29008, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29009, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29010, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29011, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29012, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29013, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29014, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29015, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29016, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29017, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29018, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29019, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29020, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29021, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29022, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29023, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29024, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29025, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29026, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29027, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29028, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29029, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29030, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29031, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29032, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29033, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29034, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29035, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29036, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29037, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29038, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29039, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29040, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29041, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29042, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29043, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29044, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29045, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29046, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29047, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29048, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29049, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29050, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29051, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29052, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29053, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29054, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29055, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29056, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29057, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29058, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29059, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29060, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29061, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29062, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29063, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29064, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29065, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29066, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29067, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29068, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29069, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29070, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29071, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29072, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29073, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29074, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29075, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29076, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29077, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29078, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29079, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29080, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29081, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29082, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29083, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29084, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29085, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29086, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29087, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29088, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29089, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29090, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29091, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29092, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29093, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29094, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29095, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29096, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29097, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29098, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29099, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29100, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29101, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29102, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29103, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29104, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29105, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29106, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29107, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29108, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29109, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29110, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29111, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29112, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29113, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29114, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29115, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29116, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29117, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29118, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29119, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29120, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29121, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29122, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29123, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29124, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29125, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29126, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29127, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29128, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29129, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29130, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29131, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29132, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29133, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29134, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29135, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29136, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29137, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29138, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29139, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29140, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29141, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29142, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29143, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29144, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29145, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29146, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29147, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29148, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29149, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29150, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29151, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29152, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 29153, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 29154, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 29155, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 29156, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 29157, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 29158, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 28748 + } + ] + }, + "minecraft:detector_rail": { + "definition": { + "type": "minecraft:detector_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2211, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 2212, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2213, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2214, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2215, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2216, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2217, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2218, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2219, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2220, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2221, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2222, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 2223, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2224, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2225, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2226, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2227, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2228, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2229, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2230, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2231, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2232, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2233, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2234, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5309 + } + ] + }, + "minecraft:diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5307 + } + ] + }, + "minecraft:diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16488, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16489, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16490, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16491, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16492, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16493, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16336, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16337, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16338, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16339, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16340, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16341, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16342, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16343, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16344, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16345, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16346, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16347, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16348, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16349, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16350, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16351, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16352, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16353, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16354, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16356, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16357, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16358, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16359, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16360, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16361, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16362, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16363, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16364, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16365, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16367, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16368, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16369, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16370, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16371, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16372, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16373, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16374, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16376, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16377, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16378, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16379, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16380, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16381, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16382, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16383, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16384, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16385, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16387, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16388, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16389, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16390, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16391, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16392, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16393, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16394, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16396, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16397, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16398, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16399, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16400, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16401, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16402, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16403, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16404, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16405, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16407, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16408, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16409, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16410, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16411, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16412, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16413, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16414, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20382, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20383, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20384, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20385, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20386, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20387, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20388, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20389, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20390, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20391, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20392, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20393, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20394, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20395, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20396, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20397, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20398, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20399, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20400, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20401, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20402, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20403, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20404, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20405, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20406, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20407, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20408, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20409, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20410, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20411, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20412, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20413, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20414, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20415, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20416, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20417, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20418, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20419, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20420, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20421, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20422, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20423, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20424, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20425, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20426, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20427, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20428, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20429, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20430, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20431, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20432, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20433, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20434, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20435, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20436, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20437, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20438, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20439, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20440, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20441, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20442, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20443, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20444, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20445, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20446, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20447, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20448, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20449, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20450, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20451, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20452, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20453, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20454, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20455, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20456, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20457, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20458, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20459, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20460, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20461, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20462, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20463, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20464, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20465, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20466, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20467, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20468, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20469, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20470, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20471, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20472, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20473, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20474, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20475, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20476, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20477, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20478, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20479, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20480, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20481, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20482, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20483, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20484, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20485, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20486, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20487, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20488, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20489, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20490, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20491, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20492, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20493, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20494, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20495, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20496, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20497, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20498, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20499, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20500, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20501, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20502, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20503, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20504, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20505, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20506, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20507, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20508, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20509, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20510, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20511, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20512, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20513, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20514, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20515, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20516, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20517, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20518, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20519, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20520, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20521, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20522, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20523, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20524, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20525, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20526, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20527, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20528, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20529, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20530, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20531, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20532, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20533, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20534, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20535, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20536, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20537, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20538, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20539, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20540, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20541, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20542, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20543, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20544, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20545, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20546, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20547, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20548, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20549, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20550, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20551, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20552, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20553, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20554, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20555, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20556, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20557, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20558, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20559, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20560, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20561, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20562, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20563, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20564, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20565, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20566, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20567, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20568, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20569, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20570, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20571, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20572, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20573, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20574, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20575, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20576, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20577, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20578, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20579, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20580, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20581, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20582, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20583, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20584, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20585, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20586, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20587, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20588, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20589, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20590, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20591, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20592, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20593, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20594, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20595, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20596, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20597, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20598, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20599, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20600, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20601, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20602, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20603, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20604, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20605, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20606, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20607, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20608, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20609, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20610, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20611, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20612, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20613, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20614, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20615, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20616, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20617, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20618, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20619, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20620, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20621, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20622, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20623, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20624, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20625, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20626, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20627, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20628, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20629, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20630, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20631, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20632, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20633, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20634, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20635, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20636, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20637, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20638, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20639, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20640, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20641, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20642, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20643, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20644, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20645, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20646, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20647, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20648, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20649, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20650, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20651, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20652, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20653, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20654, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20655, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20656, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20657, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20658, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20659, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20660, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20661, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20662, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20663, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20664, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20665, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20666, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20667, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20668, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20669, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20670, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20671, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20672, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20673, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20674, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20675, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20676, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20677, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20678, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20679, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20680, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20681, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20682, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20683, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20684, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20685, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20686, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20687, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20688, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20689, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20690, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20691, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20692, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20693, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20694, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20695, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20696, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20697, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20698, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20699, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20700, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20701, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20702, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20703, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20704, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20705, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "definition": { + "type": "minecraft:dirt_path", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14815 + } + ] + }, + "minecraft:dispenser": { + "definition": { + "type": "minecraft:dispenser", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 566, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 567, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 568, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 569, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 570, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 571, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 572, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 573, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 574, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 575, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 576, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 577, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "definition": { + "type": "minecraft:dragon_egg", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9478 + } + ] + }, + "minecraft:dragon_head": { + "definition": { + "type": "minecraft:skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11115, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11116, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11117, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11118, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11119, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11120, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11121, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11122, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11123, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11124, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11125, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11126, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11127, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11128, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11129, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11130, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11131, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11132, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11133, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11134, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11135, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11136, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11137, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11138, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11139, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11140, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11141, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11142, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11143, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11144, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11145, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11146, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11147, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11148, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11149, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11150, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11151, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11152, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11153, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11154, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dried_ghast": { + "definition": { + "type": "minecraft:dried_ghast", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "hydration": [ + "0", + "1", + "2", + "3" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15105, + "properties": { + "facing": "north", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15106, + "properties": { + "facing": "north", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15107, + "properties": { + "facing": "north", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15108, + "properties": { + "facing": "north", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15109, + "properties": { + "facing": "north", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15110, + "properties": { + "facing": "north", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15111, + "properties": { + "facing": "north", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15112, + "properties": { + "facing": "north", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15113, + "properties": { + "facing": "south", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15114, + "properties": { + "facing": "south", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15115, + "properties": { + "facing": "south", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15116, + "properties": { + "facing": "south", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15117, + "properties": { + "facing": "south", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15118, + "properties": { + "facing": "south", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15119, + "properties": { + "facing": "south", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15120, + "properties": { + "facing": "south", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15121, + "properties": { + "facing": "west", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15122, + "properties": { + "facing": "west", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15123, + "properties": { + "facing": "west", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15124, + "properties": { + "facing": "west", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15125, + "properties": { + "facing": "west", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15126, + "properties": { + "facing": "west", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15127, + "properties": { + "facing": "west", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15128, + "properties": { + "facing": "west", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15129, + "properties": { + "facing": "east", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15130, + "properties": { + "facing": "east", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15131, + "properties": { + "facing": "east", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15132, + "properties": { + "facing": "east", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15133, + "properties": { + "facing": "east", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15134, + "properties": { + "facing": "east", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15135, + "properties": { + "facing": "east", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15136, + "properties": { + "facing": "east", + "hydration": "3", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15089 + } + ] + }, + "minecraft:dripstone_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27755 + } + ] + }, + "minecraft:dropper": { + "definition": { + "type": "minecraft:dropper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11432, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 11433, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 11434, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 11435, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 11436, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 11437, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 11438, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 11439, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 11440, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 11441, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 11442, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 11443, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9727 + } + ] + }, + "minecraft:emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9573 + } + ] + }, + "minecraft:enchanting_table": { + "definition": { + "type": "minecraft:enchantment_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9451 + } + ] + }, + "minecraft:end_gateway": { + "definition": { + "type": "minecraft:end_gateway", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14816 + } + ] + }, + "minecraft:end_portal": { + "definition": { + "type": "minecraft:end_portal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9468 + } + ] + }, + "minecraft:end_portal_frame": { + "definition": { + "type": "minecraft:end_portal_frame", + "properties": {} + }, + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 9469, + "properties": { + "eye": "true", + "facing": "north" + } + }, + { + "id": 9470, + "properties": { + "eye": "true", + "facing": "south" + } + }, + { + "id": 9471, + "properties": { + "eye": "true", + "facing": "west" + } + }, + { + "id": 9472, + "properties": { + "eye": "true", + "facing": "east" + } + }, + { + "default": true, + "id": 9473, + "properties": { + "eye": "false", + "facing": "north" + } + }, + { + "id": 9474, + "properties": { + "eye": "false", + "facing": "south" + } + }, + { + "id": 9475, + "properties": { + "eye": "false", + "facing": "west" + } + }, + { + "id": 9476, + "properties": { + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "definition": { + "type": "minecraft:end_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14636, + "properties": { + "facing": "north" + } + }, + { + "id": 14637, + "properties": { + "facing": "east" + } + }, + { + "id": 14638, + "properties": { + "facing": "south" + } + }, + { + "id": 14639, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14640, + "properties": { + "facing": "up" + } + }, + { + "id": 14641, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9477 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16446, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16447, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16448, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16449, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16450, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16451, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:end_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15696, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15697, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15698, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15699, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15700, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15701, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15702, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15703, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15704, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15705, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15706, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15707, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15708, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15709, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15710, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15711, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15712, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15713, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15714, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15715, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15716, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15717, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15718, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15719, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15720, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15721, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15722, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15723, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15724, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15725, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15726, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15727, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15728, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15729, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15730, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15731, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15732, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15733, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15734, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15735, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15736, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15737, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15738, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15739, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15740, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15741, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15742, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15743, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15744, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15745, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15746, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15747, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15748, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15749, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15750, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15751, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15752, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15753, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15754, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15755, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15756, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15757, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15758, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15759, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15760, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15761, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15762, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15763, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15764, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15765, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15766, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15767, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15768, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15769, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15770, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15772, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15773, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15774, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20058, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20059, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20060, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20061, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20062, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20063, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20064, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20065, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20066, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20067, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20068, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20069, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20070, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20071, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20072, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20073, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20074, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20075, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20076, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20077, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20078, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20079, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20080, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20081, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20082, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20083, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20084, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20085, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20086, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20087, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20088, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20089, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20090, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20091, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20092, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20093, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20094, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20095, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20096, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20097, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20098, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20099, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20100, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20101, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20102, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20103, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20104, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20105, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20106, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20107, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20108, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20109, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20110, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20111, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20112, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20113, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20114, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20115, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20116, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20117, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20118, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20119, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20120, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20121, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20122, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20123, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20124, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20125, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20126, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20127, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20128, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20129, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20130, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20131, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20132, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20133, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20134, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20135, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20136, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20137, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20138, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20139, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20140, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20141, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20142, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20143, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20144, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20145, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20146, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20147, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20148, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20149, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20150, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20151, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20152, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20153, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20154, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20155, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20156, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20157, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20158, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20159, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20160, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20161, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20162, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20163, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20164, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20165, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20166, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20167, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20168, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20169, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20170, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20171, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20172, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20173, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20174, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20175, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20176, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20177, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20178, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20179, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20180, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20181, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20182, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20183, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20184, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20185, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20186, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20187, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20188, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20189, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20190, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20191, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20192, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20193, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20194, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20195, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20196, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20197, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20198, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20199, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20200, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20201, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20202, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20203, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20204, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20205, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20206, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20207, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20208, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20209, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20210, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20211, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20212, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20213, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20214, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20215, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20216, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20217, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20218, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20219, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20220, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20221, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20222, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20223, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20224, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20225, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20226, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20227, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20228, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20229, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20230, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20231, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20232, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20233, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20234, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20235, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20236, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20237, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20238, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20239, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20240, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20241, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20242, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20243, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20244, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20245, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20246, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20247, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20248, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20249, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20250, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20251, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20252, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20253, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20254, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20255, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20256, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20257, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20258, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20259, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20260, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20261, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20262, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20263, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20264, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20265, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20266, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20267, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20268, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20269, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20270, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20271, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20272, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20273, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20274, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20275, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20276, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20277, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20278, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20279, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20280, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20281, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20282, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20283, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20284, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20285, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20286, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20287, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20288, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20289, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20290, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20291, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20292, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20293, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20294, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20295, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20296, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20297, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20298, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20299, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20300, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20301, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20302, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20303, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20304, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20305, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20306, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20307, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20308, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20309, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20310, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20311, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20312, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20313, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20314, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20315, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20316, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20317, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20318, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20319, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20320, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20321, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20322, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20323, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20324, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20325, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20326, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20327, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20328, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20329, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20330, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20331, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20332, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20333, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20334, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20335, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20336, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20337, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20338, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20339, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20340, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20341, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20342, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20343, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20344, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20345, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20346, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20347, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20348, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20349, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20350, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20351, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20352, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20353, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20354, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20355, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20356, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20357, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20358, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20359, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20360, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20361, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20362, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20363, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20364, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20365, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20366, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20367, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20368, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20369, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20370, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20371, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20372, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20373, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20374, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20375, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20376, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20377, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20378, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20379, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20380, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20381, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14796 + } + ] + }, + "minecraft:ender_chest": { + "definition": { + "type": "minecraft:ender_chest", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9575, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9576, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9577, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9578, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9579, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9580, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9581, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9582, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 25321 + } + ] + }, + "minecraft:exposed_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 25310 + } + ] + }, + "minecraft:exposed_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8022, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8023, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8024, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8025, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8026, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8027, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8028, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8029, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8030, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8031, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8032, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8033, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8034, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8035, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8036, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8037, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8038, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8039, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8040, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8041, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8042, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8043, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8044, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8045, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8046, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8047, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8048, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8049, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8050, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8051, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8052, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8053, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:exposed_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27067, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27068, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27069, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27070, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8258, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8259, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8260, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8261, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8262, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8263, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27119, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27120, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27121, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27122, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27123, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27124, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27125, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27126, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27127, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27128, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27129, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27130, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27131, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27132, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27133, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27134, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27135, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27136, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27137, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27138, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27139, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27140, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27141, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27142, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26087, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26088, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26089, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26090, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26091, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26092, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26093, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26094, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26095, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26096, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26097, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26098, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26099, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26100, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26101, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26102, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26103, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26104, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26105, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26106, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26107, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26108, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26109, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26110, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26111, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26112, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26113, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26114, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26115, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26116, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26117, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26118, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26119, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26120, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26121, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26122, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26123, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26124, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26125, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26126, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26127, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26128, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26129, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26130, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26131, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26132, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26133, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26134, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26135, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26136, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26137, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26138, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26139, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26140, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26141, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26142, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26143, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26144, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26145, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26146, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26147, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26148, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26149, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26150, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27319, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27320, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27321, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27322, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27323, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27324, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27325, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27326, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27327, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27328, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27329, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27330, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27331, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27332, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27333, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27334, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27335, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27336, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27337, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27338, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27339, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27340, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27341, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27342, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27343, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27344, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27345, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27346, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27347, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27348, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27349, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27350, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27049, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27050, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20849, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20850, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20851, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20852, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26599, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26600, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26601, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26602, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26603, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26604, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26605, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26606, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26607, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26608, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26609, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26610, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26611, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26612, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26613, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26614, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26615, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26616, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26617, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26618, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26619, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26620, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26621, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26622, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26623, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26624, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26625, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26626, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26627, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26628, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26629, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26630, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26631, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26632, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26633, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26634, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26635, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26636, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26637, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26638, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26639, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26640, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26641, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26642, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26643, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26644, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26645, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26646, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26647, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26648, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26649, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26650, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26651, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26652, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26653, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26654, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26655, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26656, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26657, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26658, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26659, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26660, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26661, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26662, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 25317 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25659, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25660, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25661, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25662, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25663, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25664, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:exposed_cut_copper" + }, + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25487, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25488, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25489, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25490, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25491, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25492, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25493, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25494, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25495, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25496, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25497, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25498, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25499, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25500, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25501, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25502, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25503, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25504, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25505, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25506, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25507, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25508, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25509, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25510, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25511, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25512, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25513, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25514, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25515, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25516, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25517, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25518, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25519, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25520, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25521, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25522, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25523, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25524, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25525, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25526, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25527, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25528, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25529, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25530, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25531, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25532, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25533, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25534, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25535, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25536, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25537, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25538, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25539, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25540, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25541, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25542, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25543, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25544, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25545, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25546, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25547, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25548, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25549, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25550, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25551, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25552, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25553, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25554, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25555, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25556, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25557, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25558, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25559, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25560, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25561, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25562, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25563, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25564, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25565, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25566, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27567, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27568, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27569, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27570, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27571, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27572, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27573, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27574, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27575, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27576, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27577, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27578, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27579, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27580, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27581, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27582, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27583, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27584, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27585, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27586, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27587, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27588, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27589, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27590, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "definition": { + "type": "minecraft:farmland", + "properties": {} + }, + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5319, + "properties": { + "moisture": "0" + } + }, + { + "id": 5320, + "properties": { + "moisture": "1" + } + }, + { + "id": 5321, + "properties": { + "moisture": "2" + } + }, + { + "id": 5322, + "properties": { + "moisture": "3" + } + }, + { + "id": 5323, + "properties": { + "moisture": "4" + } + }, + { + "id": 5324, + "properties": { + "moisture": "5" + } + }, + { + "id": 5325, + "properties": { + "moisture": "6" + } + }, + { + "id": 5326, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2249 + } + ] + }, + "minecraft:fire": { + "definition": { + "type": "minecraft:fire", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3375, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3376, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3377, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3378, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3379, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3380, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3381, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3382, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3383, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3384, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3385, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3386, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3387, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3388, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3389, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3390, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3391, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3392, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3393, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3394, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3395, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3396, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3397, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3398, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3399, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3400, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3401, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3402, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3403, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3404, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3405, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 3406, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3407, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3408, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3409, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3410, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3411, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3412, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3413, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3414, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3415, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3416, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3417, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3418, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3419, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3420, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3421, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3422, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3423, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3424, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3425, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3426, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3427, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3428, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3429, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3430, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3431, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3432, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3433, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3434, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3435, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3436, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3437, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3438, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3439, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3440, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3441, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3442, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3443, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3444, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3445, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3446, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3447, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3448, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3449, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3450, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3451, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3452, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3453, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3454, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3455, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3456, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3457, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3458, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3459, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3460, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3461, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3462, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3463, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3464, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3465, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3466, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3467, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3468, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3469, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3470, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3471, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3472, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3473, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3474, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3475, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3476, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3477, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3478, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3479, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3480, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3481, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3482, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3483, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3484, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3485, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3486, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3487, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3488, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3489, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3490, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3491, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3492, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3493, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3494, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3495, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3496, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3497, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3498, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3499, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3500, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3501, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3502, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3503, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3504, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3505, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3506, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3507, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3508, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3509, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3510, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3511, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3512, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3513, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3514, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3515, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3516, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3517, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3518, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3519, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3520, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3521, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3522, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3523, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3524, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3525, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3526, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3527, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3528, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3529, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3530, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3531, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3532, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3533, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3534, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3535, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3536, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3537, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3538, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3539, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3540, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3541, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3542, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3543, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3544, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3545, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3546, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3547, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3548, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3549, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3550, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3551, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3552, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3553, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3554, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3555, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3556, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3557, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3558, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3559, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3560, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3561, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3562, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3563, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3564, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3565, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3566, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3567, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3568, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3569, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3570, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3571, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3572, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3573, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3574, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3575, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3576, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3577, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3578, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3579, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3580, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3581, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3582, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3583, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3584, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3585, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3586, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3587, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3588, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3589, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3590, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3591, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3592, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3593, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3594, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3595, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3596, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3597, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3598, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3599, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3600, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3601, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3602, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3603, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3604, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3605, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3606, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3607, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3608, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3609, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3610, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3611, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3612, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3613, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3614, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3615, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3616, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3617, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3618, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3619, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3620, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3621, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3622, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3623, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3624, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3625, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3626, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3627, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3628, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3629, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3630, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3631, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3632, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3633, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3634, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3635, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3636, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3637, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3638, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3639, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3640, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3641, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3642, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3643, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3644, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3645, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3646, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3647, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3648, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3649, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3650, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3651, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3652, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3653, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3654, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3655, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3656, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3657, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3658, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3659, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3660, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3661, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3662, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3663, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3664, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3665, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3666, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3667, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3668, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3669, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3670, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3671, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3672, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3673, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3674, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3675, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3676, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3677, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3678, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3679, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3680, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3681, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3682, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3683, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3684, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3685, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3686, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3687, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3688, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3689, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3690, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3691, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3692, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3693, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3694, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3695, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3696, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3697, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3698, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3699, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3700, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3701, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3702, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3703, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3704, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3705, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3706, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3707, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3708, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3709, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3710, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3711, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3712, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3713, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3714, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3715, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3716, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3717, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3718, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3719, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3720, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3721, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3722, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3723, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3724, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3725, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3726, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3727, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3728, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3729, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3730, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3731, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3732, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3733, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3734, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3735, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3736, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3737, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3738, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3739, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3740, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3741, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3742, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3743, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3744, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3745, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3746, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3747, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3748, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3749, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3750, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3751, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3752, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3753, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3754, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3755, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3756, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3757, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3758, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3759, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3760, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3761, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3762, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3763, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3764, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3765, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3766, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3767, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3768, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3769, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3770, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3771, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3772, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3773, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3774, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3775, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3776, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3777, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3778, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3779, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3780, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3781, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3782, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3783, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3784, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3785, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3786, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3787, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3788, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3789, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3790, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3791, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3792, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3793, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3794, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3795, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3796, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3797, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3798, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3799, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3800, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3801, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3802, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3803, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3804, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3805, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3806, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3807, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3808, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3809, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3810, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3811, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3812, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3813, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3814, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3815, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3816, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3817, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3818, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3819, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3820, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3821, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3822, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3823, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3824, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3825, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3826, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3827, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3828, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3829, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3830, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3831, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3832, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3833, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3834, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3835, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3836, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3837, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3838, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3839, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3840, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3841, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3842, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3843, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3844, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3845, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3846, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3847, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3848, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3849, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3850, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3851, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3852, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3853, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3854, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3855, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3856, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3857, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3858, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3859, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3860, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3861, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3862, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3863, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3864, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3865, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3866, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3867, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3868, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3869, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3870, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3871, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3872, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3873, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3874, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3875, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3876, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3877, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3878, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3879, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3880, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3881, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3882, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3883, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3884, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3885, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3886, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_fire_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15163, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15164, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_fire_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15145 + } + ] + }, + "minecraft:fire_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_fire_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15183, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15184, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_fire_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15251, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15252, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15253, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15254, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15255, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15256, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15257, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15258, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:firefly_bush": { + "definition": { + "type": "minecraft:firefly_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29872 + } + ] + }, + "minecraft:fletching_table": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20771 + } + ] + }, + "minecraft:flower_pot": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10629 + } + ] + }, + "minecraft:flowering_azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27812 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 532, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 533, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 534, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 535, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 536, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 537, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 538, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 539, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 540, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 541, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 542, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 543, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 544, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 545, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 546, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 547, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 548, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 549, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 550, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 551, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 552, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 553, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 554, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 555, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 556, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 557, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 558, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 559, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "definition": { + "type": "minecraft:frogspawn", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29591 + } + ] + }, + "minecraft:frosted_ice": { + "definition": { + "type": "minecraft:frosted_ice", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 14841, + "properties": { + "age": "0" + } + }, + { + "id": 14842, + "properties": { + "age": "1" + } + }, + { + "id": 14843, + "properties": { + "age": "2" + } + }, + { + "id": 14844, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "definition": { + "type": "minecraft:furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5327, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 5328, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 5329, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 5330, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 5331, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 5332, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 5333, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 5334, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22656 + } + ] + }, + "minecraft:glass": { + "definition": { + "type": "minecraft:transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 562 + } + ] + }, + "minecraft:glass_pane": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8300, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8301, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8302, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8303, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8304, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8305, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8306, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8307, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8308, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8309, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8310, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8311, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8312, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8313, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8314, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8315, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8316, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8317, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8318, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8319, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8320, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8321, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8322, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8323, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8324, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8325, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8326, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8327, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8328, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8329, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8330, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8331, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "definition": { + "type": "minecraft:glow_lichen", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8390, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8391, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8392, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8393, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8394, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8395, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8396, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8397, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8398, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8399, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8400, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8401, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8402, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8403, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8404, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8405, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8406, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8407, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8408, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8409, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8410, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8411, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8412, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8413, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8414, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8415, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8416, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8417, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8418, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8419, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8420, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8421, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8422, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8423, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8424, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8425, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8426, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8427, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8428, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8429, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8430, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8431, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8432, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8433, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8434, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8435, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8436, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8437, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8438, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8439, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8440, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8441, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8442, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8443, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8444, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8445, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8446, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8447, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8448, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8449, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8450, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8451, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8452, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8453, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8454, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8455, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8456, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8457, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8458, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8459, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8460, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8461, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8462, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8463, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8464, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8465, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8466, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8467, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8468, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8469, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8470, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8471, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8472, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8473, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8474, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8475, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8476, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8477, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8478, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8479, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8480, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8481, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8482, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8483, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8484, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8485, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8486, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8487, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8488, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8489, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8490, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8491, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8492, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8493, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8494, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8495, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8496, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8497, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8498, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8499, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8500, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8501, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8502, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8503, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8504, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8505, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8506, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8507, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8508, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8509, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8510, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8511, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8512, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8513, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8514, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8515, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8516, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8517, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7016 + } + ] + }, + "minecraft:gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2338 + } + ] + }, + "minecraft:gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 129 + } + ] + }, + "minecraft:golden_dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2322 + } + ] + }, + "minecraft:granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16464, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16465, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16466, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16467, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16468, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16469, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16016, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16017, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16018, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16019, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16020, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16021, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16022, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16023, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16024, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16025, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16026, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16027, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16028, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16029, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16035, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16036, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16037, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16038, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16039, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16040, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16041, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16042, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16043, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16044, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16045, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16046, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16047, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16048, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16049, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16055, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16056, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16057, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16058, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16059, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16060, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16061, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16062, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16063, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16064, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16065, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16066, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16067, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16068, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16069, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16075, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16076, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16077, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16078, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16079, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16080, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16081, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16082, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16083, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16084, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16085, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16086, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16087, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16088, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16089, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17791, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17792, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17793, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17794, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17795, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17796, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17797, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17798, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17799, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17800, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17801, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17803, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17804, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17805, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17806, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17807, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17808, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17809, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17810, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17811, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17812, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17813, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17815, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17816, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17817, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17818, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17819, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17820, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17821, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17822, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17823, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17824, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17825, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17827, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17828, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17829, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17830, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17831, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17832, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17833, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17834, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17835, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17836, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17837, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17839, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17840, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17841, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17842, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17843, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17844, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17845, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17846, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17847, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17848, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17849, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17851, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17852, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17853, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17854, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17855, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17856, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17857, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17858, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17859, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17860, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17861, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17863, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17864, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17865, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17866, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17867, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17868, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17869, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17870, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17871, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17872, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17873, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17875, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17876, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17877, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17878, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17879, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17880, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17881, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17882, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17883, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17884, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17885, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17887, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17888, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17889, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17890, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17891, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17892, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17893, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17894, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17895, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17896, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17897, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17899, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17900, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17901, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17902, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17903, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17904, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17905, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17906, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17907, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17908, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17909, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17911, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17912, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17913, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17914, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17915, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17916, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17917, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17918, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17919, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17920, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17921, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17923, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17924, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17925, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17926, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17927, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17928, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17929, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17930, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17931, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17932, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17933, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17935, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17936, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17937, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17938, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17939, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17940, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17941, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17942, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17943, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17944, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17945, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17947, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17948, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17949, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17950, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17951, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17952, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17953, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17954, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17955, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17956, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17957, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17959, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17960, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17961, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17962, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17963, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17964, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17965, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17966, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17967, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17968, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17969, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17971, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17972, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17973, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17974, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17975, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17976, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17977, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17978, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17979, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17980, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17981, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17983, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17984, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17985, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17986, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17987, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17988, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17989, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17990, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17991, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17992, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17993, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17995, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17996, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17997, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17998, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17999, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18000, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18001, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18002, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18003, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18004, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18005, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18007, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18008, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18009, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18010, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18011, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18012, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18013, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18014, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18015, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18016, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18017, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18019, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18020, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18021, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18022, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18023, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18024, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18025, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18026, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18027, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18028, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18029, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18031, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18032, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18033, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18034, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18035, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18036, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18037, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18038, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18039, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18040, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18041, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18043, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18044, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18045, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18046, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18047, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18048, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18049, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18050, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18051, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18052, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18053, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18055, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18056, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18057, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18058, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18059, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18060, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18061, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18062, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18063, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18064, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18065, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18067, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18068, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18069, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18070, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18071, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18072, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18073, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18074, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18075, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18076, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18077, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18079, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18080, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18081, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18082, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18083, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18084, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18085, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18086, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18087, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18088, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18089, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18091, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18092, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18093, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18094, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18095, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18096, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18097, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18098, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18099, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18100, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18101, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18103, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18104, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18105, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18106, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18107, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18108, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18109, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18110, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18111, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18112, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18113, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass_block": { + "definition": { + "type": "minecraft:grass", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#ff807c7b", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13039, + "properties": { + "rotation": "0" + } + }, + { + "id": 13040, + "properties": { + "rotation": "1" + } + }, + { + "id": 13041, + "properties": { + "rotation": "2" + } + }, + { + "id": 13042, + "properties": { + "rotation": "3" + } + }, + { + "id": 13043, + "properties": { + "rotation": "4" + } + }, + { + "id": 13044, + "properties": { + "rotation": "5" + } + }, + { + "id": 13045, + "properties": { + "rotation": "6" + } + }, + { + "id": 13046, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13047, + "properties": { + "rotation": "8" + } + }, + { + "id": 13048, + "properties": { + "rotation": "9" + } + }, + { + "id": 13049, + "properties": { + "rotation": "10" + } + }, + { + "id": 13050, + "properties": { + "rotation": "11" + } + }, + { + "id": 13051, + "properties": { + "rotation": "12" + } + }, + { + "id": 13052, + "properties": { + "rotation": "13" + } + }, + { + "id": 13053, + "properties": { + "rotation": "14" + } + }, + { + "id": 13054, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2043, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2044, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2045, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2046, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2047, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2048, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2049, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2050, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2051, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2052, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2053, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2054, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2055, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2056, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2057, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2058, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23224, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23225, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23226, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23227, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23228, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23229, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23230, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23231, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23232, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23233, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23234, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23235, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23236, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23237, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23238, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23239, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23384, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23385, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12903 + } + ] + }, + "minecraft:gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15037 + } + ] + }, + "minecraft:gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15053 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14994, + "properties": { + "facing": "north" + } + }, + { + "id": 14995, + "properties": { + "facing": "south" + } + }, + { + "id": 14996, + "properties": { + "facing": "west" + } + }, + { + "id": 14997, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14912, + "properties": { + "facing": "north" + } + }, + { + "id": 14913, + "properties": { + "facing": "east" + } + }, + { + "id": 14914, + "properties": { + "facing": "south" + } + }, + { + "id": 14915, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14916, + "properties": { + "facing": "up" + } + }, + { + "id": 14917, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7105 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11685, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11686, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11687, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11688, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11692, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11696, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11699, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11700, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11701, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11704, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11708, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11712, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11713, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11714, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11451 + } + ] + }, + "minecraft:gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13211, + "properties": { + "facing": "north" + } + }, + { + "id": 13212, + "properties": { + "facing": "south" + } + }, + { + "id": 13213, + "properties": { + "facing": "west" + } + }, + { + "id": 13214, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2300 + } + ] + }, + "minecraft:green_banner": { + "definition": { + "type": "minecraft:banner", + "color": "green", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13135, + "properties": { + "rotation": "0" + } + }, + { + "id": 13136, + "properties": { + "rotation": "1" + } + }, + { + "id": 13137, + "properties": { + "rotation": "2" + } + }, + { + "id": 13138, + "properties": { + "rotation": "3" + } + }, + { + "id": 13139, + "properties": { + "rotation": "4" + } + }, + { + "id": 13140, + "properties": { + "rotation": "5" + } + }, + { + "id": 13141, + "properties": { + "rotation": "6" + } + }, + { + "id": 13142, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13143, + "properties": { + "rotation": "8" + } + }, + { + "id": 13144, + "properties": { + "rotation": "9" + } + }, + { + "id": 13145, + "properties": { + "rotation": "10" + } + }, + { + "id": 13146, + "properties": { + "rotation": "11" + } + }, + { + "id": 13147, + "properties": { + "rotation": "12" + } + }, + { + "id": 13148, + "properties": { + "rotation": "13" + } + }, + { + "id": 13149, + "properties": { + "rotation": "14" + } + }, + { + "id": 13150, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "definition": { + "type": "minecraft:bed", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2139, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2140, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2141, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2142, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2143, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2144, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2145, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2146, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2147, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2148, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2149, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2150, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2151, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2152, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2153, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2154, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:green_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23320, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23321, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23322, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23323, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23324, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23325, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23326, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23327, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23328, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23329, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23330, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23331, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23332, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23333, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23334, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23335, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:green_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:green_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23396, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23397, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12909 + } + ] + }, + "minecraft:green_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15043 + } + ] + }, + "minecraft:green_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:green_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15059 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15018, + "properties": { + "facing": "north" + } + }, + { + "id": 15019, + "properties": { + "facing": "south" + } + }, + { + "id": 15020, + "properties": { + "facing": "west" + } + }, + { + "id": 15021, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14948, + "properties": { + "facing": "north" + } + }, + { + "id": 14949, + "properties": { + "facing": "east" + } + }, + { + "id": 14950, + "properties": { + "facing": "south" + } + }, + { + "id": 14951, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14952, + "properties": { + "facing": "up" + } + }, + { + "id": 14953, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7111 + } + ] + }, + "minecraft:green_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "green", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11876, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11877, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11878, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11879, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11880, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11881, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11882, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11883, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11884, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11885, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11886, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11887, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11888, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11889, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11890, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11891, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11892, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11893, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11894, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11895, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11896, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11897, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11898, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11899, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11900, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11901, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11902, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11903, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11904, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11905, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11906, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11907, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:green_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11457 + } + ] + }, + "minecraft:green_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13235, + "properties": { + "facing": "north" + } + }, + { + "id": 13236, + "properties": { + "facing": "south" + } + }, + { + "id": 13237, + "properties": { + "facing": "west" + } + }, + { + "id": 13238, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2306 + } + ] + }, + "minecraft:grindstone": { + "definition": { + "type": "minecraft:grindstone", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 20772, + "properties": { + "face": "floor", + "facing": "north" + } + }, + { + "id": 20773, + "properties": { + "face": "floor", + "facing": "south" + } + }, + { + "id": 20774, + "properties": { + "face": "floor", + "facing": "west" + } + }, + { + "id": 20775, + "properties": { + "face": "floor", + "facing": "east" + } + }, + { + "default": true, + "id": 20776, + "properties": { + "face": "wall", + "facing": "north" + } + }, + { + "id": 20777, + "properties": { + "face": "wall", + "facing": "south" + } + }, + { + "id": 20778, + "properties": { + "face": "wall", + "facing": "west" + } + }, + { + "id": 20779, + "properties": { + "face": "wall", + "facing": "east" + } + }, + { + "id": 20780, + "properties": { + "face": "ceiling", + "facing": "north" + } + }, + { + "id": 20781, + "properties": { + "face": "ceiling", + "facing": "south" + } + }, + { + "id": 20782, + "properties": { + "face": "ceiling", + "facing": "west" + } + }, + { + "id": 20783, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "definition": { + "type": "minecraft:hanging_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27919, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27920, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:hay_block": { + "definition": { + "type": "minecraft:hay", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12893, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12894, + "properties": { + "axis": "y" + } + }, + { + "id": 12895, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_core": { + "definition": { + "type": "minecraft:heavy_core", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29701, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29702, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "iron", + "max_weight": 150, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 11247, + "properties": { + "power": "0" + } + }, + { + "id": 11248, + "properties": { + "power": "1" + } + }, + { + "id": 11249, + "properties": { + "power": "2" + } + }, + { + "id": 11250, + "properties": { + "power": "3" + } + }, + { + "id": 11251, + "properties": { + "power": "4" + } + }, + { + "id": 11252, + "properties": { + "power": "5" + } + }, + { + "id": 11253, + "properties": { + "power": "6" + } + }, + { + "id": 11254, + "properties": { + "power": "7" + } + }, + { + "id": 11255, + "properties": { + "power": "8" + } + }, + { + "id": 11256, + "properties": { + "power": "9" + } + }, + { + "id": 11257, + "properties": { + "power": "10" + } + }, + { + "id": 11258, + "properties": { + "power": "11" + } + }, + { + "id": 11259, + "properties": { + "power": "12" + } + }, + { + "id": 11260, + "properties": { + "power": "13" + } + }, + { + "id": 11261, + "properties": { + "power": "14" + } + }, + { + "id": 11262, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:honey_block": { + "definition": { + "type": "minecraft:honey", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21816 + } + ] + }, + "minecraft:honeycomb_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21817 + } + ] + }, + "minecraft:hopper": { + "definition": { + "type": "minecraft:hopper", + "properties": {} + }, + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11313, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 11314, + "properties": { + "enabled": "true", + "facing": "north" + } + }, + { + "id": 11315, + "properties": { + "enabled": "true", + "facing": "south" + } + }, + { + "id": 11316, + "properties": { + "enabled": "true", + "facing": "west" + } + }, + { + "id": 11317, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 11318, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 11319, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 11320, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 11321, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 11322, + "properties": { + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_horn_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15165, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15166, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_horn_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15146 + } + ] + }, + "minecraft:horn_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_horn_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15185, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15186, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_horn_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15259, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15260, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15261, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15262, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15263, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15264, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15265, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15266, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "definition": { + "type": "minecraft:ice", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6927 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:chiseled_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7765 + } + ] + }, + "minecraft:infested_cobblestone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cobblestone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7761 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cracked_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7764 + } + ] + }, + "minecraft:infested_deepslate": { + "definition": { + "type": "minecraft:infested_rotated_pillar", + "host": "minecraft:deepslate", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 29573, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 29574, + "properties": { + "axis": "y" + } + }, + { + "id": 29575, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:mossy_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7763 + } + ] + }, + "minecraft:infested_stone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7760 + } + ] + }, + "minecraft:infested_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7762 + } + ] + }, + "minecraft:iron_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7958, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7959, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7960, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7961, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7962, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7963, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7964, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7965, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7966, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7967, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7968, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7969, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7970, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7971, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7972, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7973, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7974, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7975, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7976, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7977, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7978, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7979, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7980, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7981, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7982, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7983, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7984, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7985, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7986, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7987, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7988, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7989, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2339 + } + ] + }, + "minecraft:iron_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8246, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8247, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8248, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8249, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8250, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8251, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:iron_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6797, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6798, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6799, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6800, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6801, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6802, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6803, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6804, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6805, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6806, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6807, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 6808, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6809, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6810, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6811, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6812, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6813, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6814, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6815, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6816, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6817, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6818, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6819, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6820, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6821, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6822, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6823, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6824, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6825, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6826, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6827, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6828, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6829, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6830, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6831, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6832, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6833, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6834, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6835, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6836, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6837, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6838, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6839, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6840, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6841, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6842, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6843, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6844, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6845, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6846, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6847, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6848, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6849, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6850, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6851, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6852, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6853, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6854, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6855, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6856, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6857, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6858, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6859, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6860, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 131 + } + ] + }, + "minecraft:iron_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12567, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12568, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12569, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12570, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12571, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12572, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12573, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12574, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12575, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12576, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12577, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12578, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12579, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12580, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12581, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12582, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12583, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12584, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12585, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12586, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12587, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12588, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12589, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12590, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12591, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12592, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12593, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12594, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12595, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12596, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12597, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12598, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12599, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12600, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12601, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12602, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12603, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12604, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12605, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12606, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12607, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12608, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12609, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12610, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12611, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12612, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12613, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12614, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12615, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12616, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12617, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12618, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12619, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12620, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12621, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12622, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12623, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12624, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12625, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12626, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12627, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12628, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12629, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12630, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jack_o_lantern": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7023, + "properties": { + "facing": "north" + } + }, + { + "id": 7024, + "properties": { + "facing": "south" + } + }, + { + "id": 7025, + "properties": { + "facing": "west" + } + }, + { + "id": 7026, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:jigsaw": { + "definition": { + "type": "minecraft:jigsaw", + "properties": {} + }, + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ + { + "id": 21726, + "properties": { + "orientation": "down_east" + } + }, + { + "id": 21727, + "properties": { + "orientation": "down_north" + } + }, + { + "id": 21728, + "properties": { + "orientation": "down_south" + } + }, + { + "id": 21729, + "properties": { + "orientation": "down_west" + } + }, + { + "id": 21730, + "properties": { + "orientation": "up_east" + } + }, + { + "id": 21731, + "properties": { + "orientation": "up_north" + } + }, + { + "id": 21732, + "properties": { + "orientation": "up_south" + } + }, + { + "id": 21733, + "properties": { + "orientation": "up_west" + } + }, + { + "id": 21734, + "properties": { + "orientation": "west_up" + } + }, + { + "id": 21735, + "properties": { + "orientation": "east_up" + } + }, + { + "default": true, + "id": 21736, + "properties": { + "orientation": "north_up" + } + }, + { + "id": 21737, + "properties": { + "orientation": "south_up" + } + } + ] + }, + "minecraft:jukebox": { + "definition": { + "type": "minecraft:jukebox", + "properties": {} + }, + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6963, + "properties": { + "has_record": "true" + } + }, + { + "default": true, + "id": 6964, + "properties": { + "has_record": "false" + } + } + ] + }, + "minecraft:jungle_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "jungle", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10747, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10748, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10749, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10750, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10751, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10753, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10755, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10756, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10757, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10758, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10759, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10760, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10761, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10762, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10763, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10764, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10765, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10766, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10767, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10769, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14188, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14189, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14190, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14191, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14192, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14193, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14194, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14195, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14196, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14197, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14198, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14199, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14200, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14201, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14202, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14203, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14204, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14205, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14206, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14207, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14208, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14209, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14210, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14211, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14212, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14213, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14214, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14215, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14216, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14217, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14218, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14219, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14220, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14221, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14222, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14223, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14224, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14225, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14226, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14227, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14228, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14229, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14230, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14231, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14232, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14233, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14234, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14235, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14236, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14237, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14238, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14239, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14240, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14241, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14242, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14243, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14244, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14245, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14246, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14247, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14248, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14249, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14250, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14251, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13836, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13837, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13838, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13839, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13840, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13841, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13842, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13843, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13844, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13845, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13846, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13847, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13848, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13849, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13850, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13851, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13852, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13853, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13854, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13855, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13856, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13857, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13858, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13859, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13860, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13861, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13862, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13864, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13867, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:jungle_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13548, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13549, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13550, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13551, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13552, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13553, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13554, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13555, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13556, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13557, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13558, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13559, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13560, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13561, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13562, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13563, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13564, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13565, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13566, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13567, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13568, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13569, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13570, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13571, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13572, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13573, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13574, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13575, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13576, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13577, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13578, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13579, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6227, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6228, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6229, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6230, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6231, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6232, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6233, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6234, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6235, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6236, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6237, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6238, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6239, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6240, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6241, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6242, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6243, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6244, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6245, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6246, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6247, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6248, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6249, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6250, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6251, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6252, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6253, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6254, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6255, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6256, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6257, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6258, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6259, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6260, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6261, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6262, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6263, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6264, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6265, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6266, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6267, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6268, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6269, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6270, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6271, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6272, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6273, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6274, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6275, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6276, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6277, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6278, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6279, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6280, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6281, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6282, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6283, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6284, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6285, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6286, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6287, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6288, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6289, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6290, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 336, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 337, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 338, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 339, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 340, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 341, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 342, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 343, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 344, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 345, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 346, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 347, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 348, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 349, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 350, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 351, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 352, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 353, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 354, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 355, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 356, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 357, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 358, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 359, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 360, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 361, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 362, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 363, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6867, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6868, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "jungle" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 35, + "properties": { + "stage": "0" + } + }, + { + "id": 36, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2984, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2985, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2986, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2987, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2988, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2989, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2990, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2991, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2992, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2993, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2994, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2995, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2996, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2997, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2998, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2999, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3000, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3001, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3002, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3003, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3004, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3005, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3006, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3007, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3008, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3009, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3010, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3011, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3012, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3013, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3014, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3015, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3016, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3017, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3018, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3019, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3020, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3021, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3022, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3023, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3024, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3025, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3026, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3027, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3028, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3029, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3030, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3031, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3032, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3033, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3034, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3035, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3036, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3037, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3038, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3039, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3040, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3041, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3042, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3043, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3044, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3045, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3046, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3047, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5495, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5496, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5497, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5498, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5499, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5500, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5501, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5502, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5503, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5504, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5505, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5506, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5507, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5508, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5509, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5510, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5511, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5512, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5513, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5514, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5515, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5516, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5517, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5518, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5519, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5520, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5521, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5522, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5523, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5524, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5525, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5526, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13348, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13349, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13350, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13351, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13352, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13353, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:jungle_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9888, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9889, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9890, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9891, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9892, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9893, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9894, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9895, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9896, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9897, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9901, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9902, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9903, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9904, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9905, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9906, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9907, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9908, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9909, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9910, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9911, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9912, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9913, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9914, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9915, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9916, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9917, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9921, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9922, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9923, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9924, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9925, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9926, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9927, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9928, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9929, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9930, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9931, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9932, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9933, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9934, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9935, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9936, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9937, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9947, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9948, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9949, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9950, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9951, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9952, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9953, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9954, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9955, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9956, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9957, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9961, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9962, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9963, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9964, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9965, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9966, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9967, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7306, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7307, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7308, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7309, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7310, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7311, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7312, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7313, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7314, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7315, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7316, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7317, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7318, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7319, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7320, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7321, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7322, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7323, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7324, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7325, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7326, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7327, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7328, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7329, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7330, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7331, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7332, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7333, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7334, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7335, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7336, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7337, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7338, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7339, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7340, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7341, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7342, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7343, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7344, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7345, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7346, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7347, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7348, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7349, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7350, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7351, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7352, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7353, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7354, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7355, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7356, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7357, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7358, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7359, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7360, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7361, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7362, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7363, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7364, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7365, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7366, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7367, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7368, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7369, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6715, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6716, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6717, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6718, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6719, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6720, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6721, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6722, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5867, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5868, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5869, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5870, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5871, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5872, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5873, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5874, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 210, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 211, + "properties": { + "axis": "y" + } + }, + { + "id": 212, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "definition": { + "type": "minecraft:kelp", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 15062, + "properties": { + "age": "0" + } + }, + { + "id": 15063, + "properties": { + "age": "1" + } + }, + { + "id": 15064, + "properties": { + "age": "2" + } + }, + { + "id": 15065, + "properties": { + "age": "3" + } + }, + { + "id": 15066, + "properties": { + "age": "4" + } + }, + { + "id": 15067, + "properties": { + "age": "5" + } + }, + { + "id": 15068, + "properties": { + "age": "6" + } + }, + { + "id": 15069, + "properties": { + "age": "7" + } + }, + { + "id": 15070, + "properties": { + "age": "8" + } + }, + { + "id": 15071, + "properties": { + "age": "9" + } + }, + { + "id": 15072, + "properties": { + "age": "10" + } + }, + { + "id": 15073, + "properties": { + "age": "11" + } + }, + { + "id": 15074, + "properties": { + "age": "12" + } + }, + { + "id": 15075, + "properties": { + "age": "13" + } + }, + { + "id": 15076, + "properties": { + "age": "14" + } + }, + { + "id": 15077, + "properties": { + "age": "15" + } + }, + { + "id": 15078, + "properties": { + "age": "16" + } + }, + { + "id": 15079, + "properties": { + "age": "17" + } + }, + { + "id": 15080, + "properties": { + "age": "18" + } + }, + { + "id": 15081, + "properties": { + "age": "19" + } + }, + { + "id": 15082, + "properties": { + "age": "20" + } + }, + { + "id": 15083, + "properties": { + "age": "21" + } + }, + { + "id": 15084, + "properties": { + "age": "22" + } + }, + { + "id": 15085, + "properties": { + "age": "23" + } + }, + { + "id": 15086, + "properties": { + "age": "24" + } + }, + { + "id": 15087, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:kelp_plant": { + "definition": { + "type": "minecraft:kelp_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15088 + } + ] + }, + "minecraft:ladder": { + "definition": { + "type": "minecraft:ladder", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5719, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5720, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5721, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5722, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5723, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5724, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5725, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5726, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20837, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20838, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20839, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20840, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 565 + } + ] + }, + "minecraft:lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 563 + } + ] + }, + "minecraft:large_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 5.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23416, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23417, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23418, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23419, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23420, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23421, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23422, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23423, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23424, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23425, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23426, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23427, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12925, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12926, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lava": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:lava", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 102, + "properties": { + "level": "0" + } + }, + { + "id": 103, + "properties": { + "level": "1" + } + }, + { + "id": 104, + "properties": { + "level": "2" + } + }, + { + "id": 105, + "properties": { + "level": "3" + } + }, + { + "id": 106, + "properties": { + "level": "4" + } + }, + { + "id": 107, + "properties": { + "level": "5" + } + }, + { + "id": 108, + "properties": { + "level": "6" + } + }, + { + "id": 109, + "properties": { + "level": "7" + } + }, + { + "id": 110, + "properties": { + "level": "8" + } + }, + { + "id": 111, + "properties": { + "level": "9" + } + }, + { + "id": 112, + "properties": { + "level": "10" + } + }, + { + "id": 113, + "properties": { + "level": "11" + } + }, + { + "id": 114, + "properties": { + "level": "12" + } + }, + { + "id": 115, + "properties": { + "level": "13" + } + }, + { + "id": 116, + "properties": { + "level": "14" + } + }, + { + "id": 117, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:lava_cauldron": { + "definition": { + "type": "minecraft:lava_cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9464 + } + ] + }, + "minecraft:leaf_litter": { + "definition": { + "type": "minecraft:leaf_litter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "segment_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 27846, + "properties": { + "facing": "north", + "segment_amount": "1" + } + }, + { + "id": 27847, + "properties": { + "facing": "north", + "segment_amount": "2" + } + }, + { + "id": 27848, + "properties": { + "facing": "north", + "segment_amount": "3" + } + }, + { + "id": 27849, + "properties": { + "facing": "north", + "segment_amount": "4" + } + }, + { + "id": 27850, + "properties": { + "facing": "south", + "segment_amount": "1" + } + }, + { + "id": 27851, + "properties": { + "facing": "south", + "segment_amount": "2" + } + }, + { + "id": 27852, + "properties": { + "facing": "south", + "segment_amount": "3" + } + }, + { + "id": 27853, + "properties": { + "facing": "south", + "segment_amount": "4" + } + }, + { + "id": 27854, + "properties": { + "facing": "west", + "segment_amount": "1" + } + }, + { + "id": 27855, + "properties": { + "facing": "west", + "segment_amount": "2" + } + }, + { + "id": 27856, + "properties": { + "facing": "west", + "segment_amount": "3" + } + }, + { + "id": 27857, + "properties": { + "facing": "west", + "segment_amount": "4" + } + }, + { + "id": 27858, + "properties": { + "facing": "east", + "segment_amount": "1" + } + }, + { + "id": 27859, + "properties": { + "facing": "east", + "segment_amount": "2" + } + }, + { + "id": 27860, + "properties": { + "facing": "east", + "segment_amount": "3" + } + }, + { + "id": 27861, + "properties": { + "facing": "east", + "segment_amount": "4" + } + } + ] + }, + "minecraft:lectern": { + "definition": { + "type": "minecraft:lectern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "has_book": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20784, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20785, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20786, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 20787, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20788, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20789, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20790, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20791, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20792, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20793, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20794, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20795, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20796, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20797, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20798, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20799, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "false" + } + } + ] + }, + "minecraft:lever": { + "definition": { + "type": "minecraft:lever", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6771, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6772, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6773, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6774, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6775, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6776, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6777, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6778, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6779, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6780, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6781, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6782, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6783, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6784, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6785, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6786, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6787, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6788, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6789, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6790, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6791, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6792, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6793, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6794, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:light": { + "definition": { + "type": "minecraft:light", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12535, + "properties": { + "level": "0", + "waterlogged": "true" + } + }, + { + "id": 12536, + "properties": { + "level": "0", + "waterlogged": "false" + } + }, + { + "id": 12537, + "properties": { + "level": "1", + "waterlogged": "true" + } + }, + { + "id": 12538, + "properties": { + "level": "1", + "waterlogged": "false" + } + }, + { + "id": 12539, + "properties": { + "level": "2", + "waterlogged": "true" + } + }, + { + "id": 12540, + "properties": { + "level": "2", + "waterlogged": "false" + } + }, + { + "id": 12541, + "properties": { + "level": "3", + "waterlogged": "true" + } + }, + { + "id": 12542, + "properties": { + "level": "3", + "waterlogged": "false" + } + }, + { + "id": 12543, + "properties": { + "level": "4", + "waterlogged": "true" + } + }, + { + "id": 12544, + "properties": { + "level": "4", + "waterlogged": "false" + } + }, + { + "id": 12545, + "properties": { + "level": "5", + "waterlogged": "true" + } + }, + { + "id": 12546, + "properties": { + "level": "5", + "waterlogged": "false" + } + }, + { + "id": 12547, + "properties": { + "level": "6", + "waterlogged": "true" + } + }, + { + "id": 12548, + "properties": { + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 12549, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 12550, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 12551, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 12552, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 12553, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 12554, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 12555, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 12556, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 12557, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 12558, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 12559, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 12560, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 12561, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 12562, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 12563, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 12564, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 12565, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12566, + "properties": { + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12975, + "properties": { + "rotation": "0" + } + }, + { + "id": 12976, + "properties": { + "rotation": "1" + } + }, + { + "id": 12977, + "properties": { + "rotation": "2" + } + }, + { + "id": 12978, + "properties": { + "rotation": "3" + } + }, + { + "id": 12979, + "properties": { + "rotation": "4" + } + }, + { + "id": 12980, + "properties": { + "rotation": "5" + } + }, + { + "id": 12981, + "properties": { + "rotation": "6" + } + }, + { + "id": 12982, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12983, + "properties": { + "rotation": "8" + } + }, + { + "id": 12984, + "properties": { + "rotation": "9" + } + }, + { + "id": 12985, + "properties": { + "rotation": "10" + } + }, + { + "id": 12986, + "properties": { + "rotation": "11" + } + }, + { + "id": 12987, + "properties": { + "rotation": "12" + } + }, + { + "id": 12988, + "properties": { + "rotation": "13" + } + }, + { + "id": 12989, + "properties": { + "rotation": "14" + } + }, + { + "id": 12990, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1979, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1980, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1981, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1982, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1983, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1984, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1985, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1986, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1987, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1988, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1989, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1990, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1991, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1992, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1993, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1994, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23160, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23161, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23162, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23163, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23164, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23165, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23166, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23167, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23168, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23169, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23170, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23171, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23172, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23173, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23174, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23175, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23376, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23377, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12899 + } + ] + }, + "minecraft:light_blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15033 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15049 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14978, + "properties": { + "facing": "north" + } + }, + { + "id": 14979, + "properties": { + "facing": "south" + } + }, + { + "id": 14980, + "properties": { + "facing": "west" + } + }, + { + "id": 14981, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14888, + "properties": { + "facing": "north" + } + }, + { + "id": 14889, + "properties": { + "facing": "east" + } + }, + { + "id": 14890, + "properties": { + "facing": "south" + } + }, + { + "id": 14891, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14892, + "properties": { + "facing": "up" + } + }, + { + "id": 14893, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7101 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11556, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11557, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11558, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11559, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11560, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11561, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11562, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11563, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11564, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11565, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11566, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11569, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11570, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11571, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11572, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11573, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11574, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11575, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11576, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11577, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11578, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11579, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11580, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11581, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11584, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11585, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11586, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11587, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11447 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13195, + "properties": { + "facing": "north" + } + }, + { + "id": 13196, + "properties": { + "facing": "south" + } + }, + { + "id": 13197, + "properties": { + "facing": "west" + } + }, + { + "id": 13198, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2296 + } + ] + }, + "minecraft:light_gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13055, + "properties": { + "rotation": "0" + } + }, + { + "id": 13056, + "properties": { + "rotation": "1" + } + }, + { + "id": 13057, + "properties": { + "rotation": "2" + } + }, + { + "id": 13058, + "properties": { + "rotation": "3" + } + }, + { + "id": 13059, + "properties": { + "rotation": "4" + } + }, + { + "id": 13060, + "properties": { + "rotation": "5" + } + }, + { + "id": 13061, + "properties": { + "rotation": "6" + } + }, + { + "id": 13062, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13063, + "properties": { + "rotation": "8" + } + }, + { + "id": 13064, + "properties": { + "rotation": "9" + } + }, + { + "id": 13065, + "properties": { + "rotation": "10" + } + }, + { + "id": 13066, + "properties": { + "rotation": "11" + } + }, + { + "id": 13067, + "properties": { + "rotation": "12" + } + }, + { + "id": 13068, + "properties": { + "rotation": "13" + } + }, + { + "id": 13069, + "properties": { + "rotation": "14" + } + }, + { + "id": 13070, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2059, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2060, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2061, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2062, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2063, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2064, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2065, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2066, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2067, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2068, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2069, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2070, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2071, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2072, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2073, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2074, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23240, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23241, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23242, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23243, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23244, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23245, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23246, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23247, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23248, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23249, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23250, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23251, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23252, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23253, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23254, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23255, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23386, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23387, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12904 + } + ] + }, + "minecraft:light_gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15038 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15054 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14998, + "properties": { + "facing": "north" + } + }, + { + "id": 14999, + "properties": { + "facing": "south" + } + }, + { + "id": 15000, + "properties": { + "facing": "west" + } + }, + { + "id": 15001, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14918, + "properties": { + "facing": "north" + } + }, + { + "id": 14919, + "properties": { + "facing": "east" + } + }, + { + "id": 14920, + "properties": { + "facing": "south" + } + }, + { + "id": 14921, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14922, + "properties": { + "facing": "up" + } + }, + { + "id": 14923, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7106 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11716, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11717, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11718, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11719, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11720, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11724, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11728, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11731, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11732, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11733, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11736, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11740, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11744, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11745, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11746, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11747, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11452 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13215, + "properties": { + "facing": "north" + } + }, + { + "id": 13216, + "properties": { + "facing": "south" + } + }, + { + "id": 13217, + "properties": { + "facing": "west" + } + }, + { + "id": 13218, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2301 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "gold", + "max_weight": 15, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 11231, + "properties": { + "power": "0" + } + }, + { + "id": 11232, + "properties": { + "power": "1" + } + }, + { + "id": 11233, + "properties": { + "power": "2" + } + }, + { + "id": 11234, + "properties": { + "power": "3" + } + }, + { + "id": 11235, + "properties": { + "power": "4" + } + }, + { + "id": 11236, + "properties": { + "power": "5" + } + }, + { + "id": 11237, + "properties": { + "power": "6" + } + }, + { + "id": 11238, + "properties": { + "power": "7" + } + }, + { + "id": 11239, + "properties": { + "power": "8" + } + }, + { + "id": 11240, + "properties": { + "power": "9" + } + }, + { + "id": 11241, + "properties": { + "power": "10" + } + }, + { + "id": 11242, + "properties": { + "power": "11" + } + }, + { + "id": 11243, + "properties": { + "power": "12" + } + }, + { + "id": 11244, + "properties": { + "power": "13" + } + }, + { + "id": 11245, + "properties": { + "power": "14" + } + }, + { + "id": 11246, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27543, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27544, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27545, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27546, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27547, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27548, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27549, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27550, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27551, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27552, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27553, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27554, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27555, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27556, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27557, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27558, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27559, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27560, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27561, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27562, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27563, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27564, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27565, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27566, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12917, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12918, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:poison" + } + ] + }, + "states": [ + { + "default": true, + "id": 2335 + } + ] + }, + "minecraft:lily_pad": { + "definition": { + "type": "minecraft:lily_pad", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8920 + } + ] + }, + "minecraft:lime_banner": { + "definition": { + "type": "minecraft:banner", + "color": "lime", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13007, + "properties": { + "rotation": "0" + } + }, + { + "id": 13008, + "properties": { + "rotation": "1" + } + }, + { + "id": 13009, + "properties": { + "rotation": "2" + } + }, + { + "id": 13010, + "properties": { + "rotation": "3" + } + }, + { + "id": 13011, + "properties": { + "rotation": "4" + } + }, + { + "id": 13012, + "properties": { + "rotation": "5" + } + }, + { + "id": 13013, + "properties": { + "rotation": "6" + } + }, + { + "id": 13014, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13015, + "properties": { + "rotation": "8" + } + }, + { + "id": 13016, + "properties": { + "rotation": "9" + } + }, + { + "id": 13017, + "properties": { + "rotation": "10" + } + }, + { + "id": 13018, + "properties": { + "rotation": "11" + } + }, + { + "id": 13019, + "properties": { + "rotation": "12" + } + }, + { + "id": 13020, + "properties": { + "rotation": "13" + } + }, + { + "id": 13021, + "properties": { + "rotation": "14" + } + }, + { + "id": 13022, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "definition": { + "type": "minecraft:bed", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2011, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2012, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2013, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2014, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2015, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2016, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2017, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2018, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2019, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2020, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2021, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2022, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2023, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2024, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2025, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2026, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23192, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23193, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23194, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23195, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23196, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23197, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23198, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23199, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23200, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23201, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23202, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23203, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23204, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23205, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23206, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23207, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:lime_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23380, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23381, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12901 + } + ] + }, + "minecraft:lime_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15035 + } + ] + }, + "minecraft:lime_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:lime_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15051 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14986, + "properties": { + "facing": "north" + } + }, + { + "id": 14987, + "properties": { + "facing": "south" + } + }, + { + "id": 14988, + "properties": { + "facing": "west" + } + }, + { + "id": 14989, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14900, + "properties": { + "facing": "north" + } + }, + { + "id": 14901, + "properties": { + "facing": "east" + } + }, + { + "id": 14902, + "properties": { + "facing": "south" + } + }, + { + "id": 14903, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14904, + "properties": { + "facing": "up" + } + }, + { + "id": 14905, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7103 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "lime", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11620, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11621, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11622, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11623, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11624, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11625, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11626, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11627, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11628, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11629, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11630, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11631, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11632, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11633, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11634, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11635, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11636, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11637, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11638, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11639, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11640, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11641, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11642, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11643, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11644, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11645, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11646, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11647, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11648, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11649, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11650, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11651, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11449 + } + ] + }, + "minecraft:lime_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13203, + "properties": { + "facing": "north" + } + }, + { + "id": 13204, + "properties": { + "facing": "south" + } + }, + { + "id": 13205, + "properties": { + "facing": "west" + } + }, + { + "id": 13206, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2298 + } + ] + }, + "minecraft:lodestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21830 + } + ] + }, + "minecraft:loom": { + "definition": { + "type": "minecraft:loom", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 20738, + "properties": { + "facing": "north" + } + }, + { + "id": 20739, + "properties": { + "facing": "south" + } + }, + { + "id": 20740, + "properties": { + "facing": "west" + } + }, + { + "id": 20741, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "definition": { + "type": "minecraft:banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12959, + "properties": { + "rotation": "0" + } + }, + { + "id": 12960, + "properties": { + "rotation": "1" + } + }, + { + "id": 12961, + "properties": { + "rotation": "2" + } + }, + { + "id": 12962, + "properties": { + "rotation": "3" + } + }, + { + "id": 12963, + "properties": { + "rotation": "4" + } + }, + { + "id": 12964, + "properties": { + "rotation": "5" + } + }, + { + "id": 12965, + "properties": { + "rotation": "6" + } + }, + { + "id": 12966, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12967, + "properties": { + "rotation": "8" + } + }, + { + "id": 12968, + "properties": { + "rotation": "9" + } + }, + { + "id": 12969, + "properties": { + "rotation": "10" + } + }, + { + "id": 12970, + "properties": { + "rotation": "11" + } + }, + { + "id": 12971, + "properties": { + "rotation": "12" + } + }, + { + "id": 12972, + "properties": { + "rotation": "13" + } + }, + { + "id": 12973, + "properties": { + "rotation": "14" + } + }, + { + "id": 12974, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "definition": { + "type": "minecraft:bed", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1963, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1964, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1965, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1966, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1967, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1968, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1969, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1970, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1971, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1972, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1973, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1974, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1975, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1976, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1977, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1978, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23144, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23145, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23146, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23147, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23148, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23149, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23150, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23151, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23152, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23153, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23154, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23155, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23156, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23157, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23158, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23159, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:magenta_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23374, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23375, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12898 + } + ] + }, + "minecraft:magenta_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15032 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:magenta_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15048 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14974, + "properties": { + "facing": "north" + } + }, + { + "id": 14975, + "properties": { + "facing": "south" + } + }, + { + "id": 14976, + "properties": { + "facing": "west" + } + }, + { + "id": 14977, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14882, + "properties": { + "facing": "north" + } + }, + { + "id": 14883, + "properties": { + "facing": "east" + } + }, + { + "id": 14884, + "properties": { + "facing": "south" + } + }, + { + "id": 14885, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14886, + "properties": { + "facing": "up" + } + }, + { + "id": 14887, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7100 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "magenta", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11524, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11525, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11526, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11527, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11528, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11529, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11530, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11531, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11532, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11533, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11534, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11535, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11536, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11537, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11538, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11539, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11540, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11541, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11542, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11543, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11544, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11545, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11546, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11547, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11548, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11549, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11550, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11551, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11552, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11553, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11554, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11555, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11446 + } + ] + }, + "minecraft:magenta_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13191, + "properties": { + "facing": "north" + } + }, + { + "id": 13192, + "properties": { + "facing": "south" + } + }, + { + "id": 13193, + "properties": { + "facing": "west" + } + }, + { + "id": 13194, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2295 + } + ] + }, + "minecraft:magma_block": { + "definition": { + "type": "minecraft:magma", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14845 + } + ] + }, + "minecraft:mangrove_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "mangrove", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10867, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10868, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10869, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10870, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10871, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10872, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10873, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10874, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10875, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10876, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10877, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10878, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10879, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10880, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10881, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10882, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10883, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10884, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10885, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10886, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10887, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10888, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10889, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10890, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14508, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14509, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14510, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14511, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14512, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14513, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14514, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14515, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14516, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14517, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14518, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14519, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14520, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14521, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14522, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14523, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14524, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14525, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14526, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14527, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14528, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14529, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14530, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14531, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14532, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14533, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14534, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14535, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14536, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14537, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14538, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14539, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14540, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14541, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14542, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14543, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14544, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14545, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14546, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14547, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14548, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14549, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14550, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14551, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14552, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14553, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14554, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14555, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14556, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14557, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14558, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14559, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14560, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14561, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14562, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14563, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14564, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14565, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14566, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14567, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14568, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14569, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14570, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14571, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13996, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13997, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13998, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13999, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14000, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14001, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14002, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14003, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14004, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14005, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14006, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14007, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14008, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14009, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14010, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14011, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14012, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14013, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14014, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14015, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14016, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14017, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14018, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14019, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14020, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14021, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14022, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14023, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14024, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14025, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14026, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14027, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:mangrove_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13708, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13709, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13710, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13711, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13712, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13713, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13714, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13715, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13716, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13717, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13718, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13719, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13720, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13722, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13723, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13724, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13725, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13726, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13727, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13728, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13729, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13730, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13731, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13732, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13733, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13734, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13735, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13736, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13737, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13738, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13739, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6547, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6548, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6549, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6550, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6551, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6552, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6553, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6554, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6555, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6556, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6557, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6558, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6559, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6560, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6561, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6562, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6563, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6564, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6565, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6566, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6567, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6568, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6569, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6570, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6571, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6572, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6573, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6574, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6575, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6576, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6577, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6578, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6579, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6580, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6581, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6582, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6583, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6584, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6585, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6586, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6587, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6588, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6589, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6590, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6591, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6592, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6593, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6594, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6595, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6596, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6597, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6598, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6599, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6600, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6601, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6602, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6603, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6604, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6605, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6606, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6607, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6608, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6609, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6610, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_leaves": { + "definition": { + "type": "minecraft:mangrove_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 476, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 477, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 478, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 479, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 480, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 481, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 482, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 483, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 484, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 485, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 486, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 487, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 488, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 489, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 490, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 491, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 492, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 493, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 494, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 495, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 496, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 497, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 498, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 499, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 500, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 501, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 502, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 503, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 160, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 161, + "properties": { + "axis": "y" + } + }, + { + "id": 162, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mangrove_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26 + } + ] + }, + "minecraft:mangrove_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6877, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6878, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_propagule": { + "definition": { + "type": "minecraft:mangrove_propagule", + "properties": {}, + "tree": "mangrove" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 45, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 46, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 47, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 48, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 49, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 50, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 51, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 52, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 53, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 54, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 55, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 56, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 57, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 58, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 59, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 60, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 61, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 62, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 63, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 64, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 65, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 66, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 67, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 68, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 69, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 70, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 71, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 72, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 73, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 74, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 75, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 76, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 77, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 78, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 79, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 80, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 81, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 82, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 83, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 84, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_roots": { + "definition": { + "type": "minecraft:mangrove_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 163, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 164, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3048, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3049, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3050, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3051, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3052, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3053, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3054, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3055, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3056, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3057, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3058, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3059, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3060, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3061, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3062, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3063, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3064, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3065, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3066, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3067, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3068, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3069, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3070, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3071, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3072, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3073, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3074, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3075, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3076, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3077, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3078, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3079, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3080, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3081, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3082, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3083, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3084, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3085, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3086, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3087, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3088, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3089, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3090, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3091, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3092, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3093, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3094, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3095, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3096, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3097, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3098, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3099, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3100, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3101, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3102, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3103, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3104, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3105, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3106, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3107, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3108, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3109, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3110, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3111, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5591, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5592, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5593, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5594, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5595, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5596, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5597, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5598, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5599, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5600, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5601, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5602, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5603, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5604, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5605, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5606, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5607, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5608, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5609, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5610, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5611, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5612, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5613, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5614, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5615, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5616, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5617, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5618, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5619, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5620, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5621, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5622, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13378, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13379, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13380, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13381, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13382, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13383, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mangrove_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12292, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12293, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12294, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12295, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12296, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12297, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12298, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12299, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12300, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12301, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12304, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12305, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12306, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12307, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12308, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12309, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12310, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12311, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12312, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12313, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12314, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12315, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12316, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12317, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12318, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12319, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12320, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12321, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12324, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12325, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12326, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12327, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12328, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12329, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12330, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12331, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12332, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12333, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12334, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12335, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12336, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12337, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12338, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12339, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12340, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12341, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12344, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12345, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12346, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12347, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12348, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12349, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12350, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12351, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12352, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12353, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12354, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12355, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12356, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12357, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12358, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12359, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12360, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12361, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12364, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12365, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12366, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12367, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12368, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12369, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12370, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12371, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7626, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7627, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7628, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7629, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7630, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7631, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7632, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7633, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7634, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7635, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7636, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7637, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7638, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7639, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7640, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7641, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7642, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7643, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7644, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7645, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7646, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7647, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7648, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7649, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7650, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7651, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7652, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7653, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7654, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7655, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7656, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7657, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7658, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7659, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7660, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7661, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7662, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7663, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7664, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7665, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7666, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7667, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7668, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7669, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7670, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7671, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7672, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7676, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7677, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7678, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7679, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7680, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7681, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7682, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7683, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7684, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7685, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7686, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7687, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7688, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7689, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6739, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6740, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6741, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6742, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6743, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6744, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6745, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6746, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5891, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5892, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5893, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5894, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5895, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5896, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5897, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5898, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 222, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 223, + "properties": { + "axis": "y" + } + }, + { + "id": 224, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 4.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23428, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23429, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23430, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23431, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23432, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23433, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23434, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23435, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23436, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23437, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23438, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23439, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:melon": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8333 + } + ] + }, + "minecraft:melon_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_melon_stem", + "fruit": "minecraft:melon", + "fruit_support_blocks": "minecraft:supports_melon_stem_fruit", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem_support_blocks": "minecraft:supports_melon_stem" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8350, + "properties": { + "age": "0" + } + }, + { + "id": 8351, + "properties": { + "age": "1" + } + }, + { + "id": 8352, + "properties": { + "age": "2" + } + }, + { + "id": 8353, + "properties": { + "age": "3" + } + }, + { + "id": 8354, + "properties": { + "age": "4" + } + }, + { + "id": 8355, + "properties": { + "age": "5" + } + }, + { + "id": 8356, + "properties": { + "age": "6" + } + }, + { + "id": 8357, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "definition": { + "type": "minecraft:bonemealable_feature_placer", + "feature": "minecraft:moss_patch_bonemeal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27862 + } + ] + }, + "minecraft:moss_carpet": { + "definition": { + "type": "minecraft:carpet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27813 + } + ] + }, + "minecraft:mossy_cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3368 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16440, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16441, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16442, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16443, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16444, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16445, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15616, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15617, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15618, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15619, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15620, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15621, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15622, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15623, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15624, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15625, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15626, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15627, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15628, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15629, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15630, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15631, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15632, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15633, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15634, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15635, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15636, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15637, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15638, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15639, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15640, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15641, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15642, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15643, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15644, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15645, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15646, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15647, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15648, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15649, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15650, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15651, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15652, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15653, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15654, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15655, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15656, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15657, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15658, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15659, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15660, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15661, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15662, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15663, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15664, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15665, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15666, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15667, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15668, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15669, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15670, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15671, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15672, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15673, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15674, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15675, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15676, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15677, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15678, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15679, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15680, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15681, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15682, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15683, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15684, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15685, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15686, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15687, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15688, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15689, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15690, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15691, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15692, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15693, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15694, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15695, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 10305, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10306, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10307, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 10308, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10309, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10310, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10311, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10312, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10313, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10314, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10315, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10316, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10317, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10318, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10319, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10320, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10321, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10322, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10323, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10324, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10325, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10326, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10327, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10328, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10329, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10330, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10331, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10332, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10333, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10334, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10335, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10336, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10337, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10338, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10339, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10340, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10341, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10342, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10343, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10344, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10345, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10346, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10347, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10348, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10349, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10350, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10351, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10352, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10353, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10354, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10355, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10356, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10357, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10358, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10359, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10360, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10361, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10362, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10363, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10364, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10365, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10366, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10367, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10368, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10369, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10370, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10371, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10372, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10373, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10374, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10375, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10376, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10377, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10378, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10379, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10380, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10381, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10382, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10383, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10384, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10385, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10386, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10387, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10388, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10389, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10390, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10391, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10392, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10393, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10394, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10395, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10396, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10397, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10398, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10399, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10400, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10401, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10402, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10403, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10404, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10405, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10406, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10407, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10408, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10409, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10410, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10411, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10412, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10413, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10414, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10415, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10416, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10417, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10418, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10419, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10420, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10421, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10422, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10423, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10424, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10425, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10426, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10427, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10428, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10429, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10430, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10431, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10432, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10433, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10434, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10435, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10436, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10437, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10438, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10439, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10440, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10441, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10442, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10443, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10444, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10445, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10446, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10447, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10448, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10449, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10450, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10451, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10452, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10453, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10454, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10455, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10456, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10457, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10458, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10459, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10460, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10461, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10462, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10463, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10464, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10465, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10466, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10467, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10468, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10469, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10470, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10471, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10472, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10473, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10474, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10475, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10476, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10477, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10478, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10479, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10480, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10481, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10482, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10483, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10484, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10485, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10486, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10487, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10488, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10489, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10490, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10491, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10492, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10493, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10494, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10495, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10496, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10497, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10498, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10499, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10500, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10501, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10502, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10503, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10504, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10505, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10506, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10507, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10508, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10509, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10510, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10511, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10512, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10513, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10514, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10515, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10516, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10517, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10518, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10519, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10520, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10521, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10522, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10523, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10524, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10525, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10526, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10527, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10528, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10529, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10530, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10531, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10532, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10533, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10534, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10535, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10536, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10537, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10538, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10539, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10540, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10541, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10542, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10543, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10544, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10545, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10546, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10547, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10548, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10549, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10550, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10551, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10552, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10553, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10554, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10555, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10556, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10557, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10558, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10559, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10560, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10561, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10562, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10563, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10564, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10565, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10566, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10567, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10568, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10569, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10570, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10571, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10572, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10573, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10574, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10575, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10576, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10577, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10578, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10579, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10580, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10581, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10582, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10583, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10584, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10585, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10586, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10587, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10588, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10589, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10590, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10591, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10592, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10593, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10594, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10595, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10596, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10597, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10598, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10599, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10600, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10601, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10602, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10603, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10604, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10605, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10606, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10607, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10608, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10609, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10610, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10611, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10612, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10613, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10614, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10615, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10616, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10617, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10618, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10619, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10620, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10621, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10622, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10623, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10624, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10625, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10626, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10627, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10628, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16428, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16429, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16430, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16431, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16432, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16433, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15456, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15457, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15458, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15459, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15460, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15461, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15462, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15463, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15464, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15465, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15466, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15467, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15468, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15476, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15477, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15478, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15479, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15480, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15481, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15482, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15483, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15484, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15485, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15486, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15487, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15488, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15496, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15497, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15498, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15499, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15500, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15501, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15502, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15503, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15504, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15505, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15506, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15507, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15508, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15516, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15517, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15518, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15519, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15520, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15521, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15522, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15523, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15524, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15525, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17466, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17469, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17474, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17475, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17476, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17477, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17478, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17479, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17480, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17481, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17482, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17483, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17484, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17485, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17487, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17488, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17489, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17490, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17491, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17492, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17493, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17494, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17495, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17496, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17497, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17498, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17499, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17500, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17501, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17502, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17503, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17504, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17505, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17506, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17507, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17508, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17509, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17510, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17511, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17512, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17513, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17514, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17515, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17516, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17517, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17518, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17519, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17520, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17521, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17523, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17524, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17525, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17526, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17527, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17528, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17529, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17530, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17531, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17532, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17533, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17534, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17535, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17536, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17537, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17538, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17539, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17540, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17541, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17542, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17543, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17544, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17545, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17546, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17547, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17557, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17558, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17559, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17560, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17561, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17562, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17563, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17564, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17565, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17566, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17567, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17568, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17569, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17570, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17571, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17572, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17573, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17574, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17575, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17576, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17577, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17578, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17579, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17580, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17581, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17582, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17583, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17584, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17585, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17586, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17587, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17588, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17589, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17590, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17591, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17592, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17593, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17595, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17596, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17597, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17598, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17599, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17600, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17601, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17602, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17603, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17604, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17605, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17606, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17607, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17608, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17609, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17610, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17611, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17612, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17613, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17614, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17615, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17724, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17725, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17726, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17727, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17737, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17738, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17739, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17740, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17741, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17742, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17743, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17744, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17745, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17746, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17747, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17748, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17749, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17750, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17751, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17761, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17762, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17763, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17773, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17774, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17775, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17776, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17777, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17778, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17779, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17780, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17781, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17782, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17783, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17784, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17785, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17786, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17787, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17788, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17789, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7755 + } + ] + }, + "minecraft:moving_piston": { + "definition": { + "type": "minecraft:moving_piston", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 2309, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 2310, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 2311, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 2312, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 2313, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 2314, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 2315, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 2316, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 2317, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 2318, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 2319, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 2320, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "definition": { + "type": "minecraft:mud", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27922 + } + ] + }, + "minecraft:mud_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13444, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13445, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13446, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13447, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13448, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13449, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mud_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8838, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8839, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8840, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8841, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8842, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8843, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8844, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8845, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8846, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8847, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8848, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8851, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8852, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8853, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8854, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8855, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8856, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8857, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8858, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8859, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8860, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8861, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8862, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8863, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8864, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8865, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8866, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8867, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8868, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8871, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8872, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8873, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8874, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8875, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8876, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8877, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8878, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8879, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8880, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8881, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8882, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8883, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8884, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8885, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8886, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8887, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8888, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8891, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8892, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8893, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8894, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8895, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8896, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8897, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8898, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8899, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8900, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8901, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8902, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8903, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8904, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8905, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8906, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8907, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8908, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8911, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8912, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8913, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8914, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8915, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8916, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18438, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18439, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18440, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18441, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18442, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18443, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18444, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18445, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18446, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18447, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18448, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18449, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18450, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18451, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18452, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18453, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18454, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18455, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18456, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18457, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18458, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18459, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18460, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18461, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18462, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18463, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18464, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18465, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18466, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18467, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18468, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18469, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18470, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18471, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18472, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18473, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18474, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18475, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18476, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18477, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18478, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18479, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18480, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18481, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18482, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18483, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18484, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18485, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18486, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18487, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18488, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18489, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18490, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18491, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18492, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18493, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18494, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18495, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18496, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18497, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18498, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18499, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18500, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18501, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18502, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18503, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18504, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18505, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18506, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18507, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18508, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18509, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18510, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18511, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18512, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18513, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18514, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18515, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18516, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18517, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18518, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18519, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18520, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18521, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18522, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18523, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18524, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18525, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18526, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18527, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18528, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18529, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18530, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18531, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18532, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18533, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18534, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18535, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18536, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18537, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18538, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18539, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18540, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18541, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18542, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18543, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18544, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18545, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18546, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18547, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18548, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18549, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18550, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18551, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18552, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18553, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18554, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18555, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18556, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18557, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18558, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18559, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18560, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18561, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18562, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18563, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18564, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18565, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18566, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18567, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18568, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18569, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18570, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18571, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18572, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18573, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18574, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18575, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18576, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18577, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18578, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18579, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18580, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18581, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18582, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18583, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18584, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18585, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18586, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18587, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18588, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18589, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18590, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18591, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18592, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18593, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18594, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18595, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18596, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18597, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18598, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18599, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18600, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18601, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18602, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18603, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18604, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18605, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18606, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18607, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18608, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18609, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18610, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18611, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18612, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18613, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18614, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18615, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18616, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18617, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18618, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18619, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18620, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18621, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18622, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18623, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18624, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18625, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18626, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18627, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18628, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18629, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18630, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18631, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18632, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18633, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18634, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18635, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18636, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18637, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18638, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18639, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18640, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18641, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18642, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18643, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18644, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18645, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18646, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18647, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18648, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18649, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18650, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18651, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18652, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18653, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18654, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18655, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18656, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18657, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18658, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18659, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18660, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18661, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18662, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18663, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18664, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18665, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18666, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18667, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18668, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18669, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18670, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18671, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18672, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18673, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18674, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18675, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18676, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18677, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18678, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18679, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18680, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18681, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18682, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18683, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18684, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18685, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18686, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18687, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18688, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18689, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18690, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18691, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18692, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18693, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18694, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18695, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18696, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18697, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18698, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18699, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18700, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18701, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18702, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18703, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18704, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18705, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18706, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18707, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18708, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18709, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18710, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18711, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18712, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18713, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18714, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18715, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18716, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18717, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18718, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18719, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18720, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18721, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18722, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18723, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18724, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18725, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18726, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18727, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18728, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18729, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18730, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18731, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18732, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18733, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18734, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18735, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18736, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18737, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18738, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18739, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18740, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18741, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18742, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18743, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18744, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18745, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18746, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18747, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18748, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18749, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18750, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18751, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18752, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18753, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18754, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18755, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18756, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18757, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18758, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18759, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18760, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18761, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mud_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7759 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 165, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 166, + "properties": { + "axis": "y" + } + }, + { + "id": 167, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7894, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7895, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7896, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7897, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7898, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7899, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7900, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7901, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7902, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7903, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7904, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7905, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7906, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7907, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7908, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7909, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7910, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7911, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7912, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7913, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7914, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7915, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7916, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7917, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7918, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7919, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7920, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7921, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7922, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7923, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7924, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7925, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7926, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7927, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7928, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7929, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7930, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7931, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7932, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7933, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7934, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7935, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7936, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7937, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7938, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7939, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7940, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7941, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7942, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7943, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7944, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7945, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7946, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7947, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7948, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7949, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7950, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7951, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7952, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7953, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7954, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7955, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7956, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7957, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "definition": { + "type": "minecraft:mycelium", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8918, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 8919, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9335, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9336, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9337, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9338, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9339, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9340, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9341, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9342, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9343, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9344, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9345, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9346, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9347, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9348, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9349, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9350, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9351, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9352, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9353, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9354, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9355, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9356, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9357, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9358, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9359, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9360, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9361, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9362, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9363, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9364, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9365, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9366, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13450, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13451, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13452, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13453, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13454, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13455, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9367, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9368, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9369, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9370, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9371, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9372, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9373, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9374, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9375, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9376, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9380, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9381, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9382, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9383, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9384, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9385, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9387, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9388, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9389, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9390, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9391, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9392, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9393, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9394, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9395, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9396, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9400, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9401, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9402, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9403, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9404, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9405, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9407, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9408, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9409, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9410, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9411, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9412, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9413, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9414, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9415, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9416, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9420, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9421, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9422, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9423, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9424, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9425, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9427, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9428, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9429, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9430, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9431, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9432, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9433, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9434, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9435, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9436, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9440, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9441, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9442, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9443, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9444, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9445, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18762, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18763, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18764, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18765, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18766, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18767, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18768, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18769, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18770, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18771, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18772, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18773, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18774, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18775, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18776, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18777, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18778, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18779, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18780, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18781, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18782, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18783, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18784, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18785, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18786, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18787, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18788, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18789, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18790, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18791, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18792, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18793, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18794, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18795, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18796, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18797, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18798, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18799, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18800, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18801, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18802, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18803, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18804, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18805, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18806, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18807, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18808, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18809, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18810, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18811, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18812, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18813, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18814, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18815, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18816, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18817, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18818, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18819, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18820, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18821, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18822, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18823, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18824, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18825, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18826, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18827, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18828, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18829, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18830, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18831, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18832, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18833, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18834, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18835, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18836, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18837, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18838, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18839, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18840, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18841, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18842, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18843, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18844, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18845, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18846, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18847, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18848, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18849, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18850, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18851, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18852, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18853, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18854, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18855, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18856, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18857, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18858, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18859, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18860, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18861, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18862, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18863, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18864, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18865, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18866, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18867, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18868, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18869, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18870, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18871, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18872, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18873, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18874, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18875, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18876, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18877, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18878, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18879, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18880, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18881, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18882, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18883, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18884, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18885, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18886, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18887, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18888, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18889, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18890, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18891, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18892, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18893, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18894, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18895, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18896, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18897, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18898, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18899, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18900, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18901, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18902, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18903, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18904, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18905, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18906, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18907, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18908, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18909, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18910, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18911, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18912, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18913, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18914, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18915, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18916, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18917, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18918, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18919, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18920, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18921, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18922, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18923, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18924, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18925, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18926, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18927, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18928, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18929, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18930, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18931, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18932, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18933, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18934, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18935, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18936, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18937, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18938, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18939, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18940, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18941, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18942, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18943, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18944, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18945, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18946, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18947, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18948, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18949, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18950, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18951, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18952, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18953, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18954, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18955, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18956, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18957, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18958, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18959, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18960, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18961, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18962, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18963, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18964, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18965, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18966, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18967, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18968, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18969, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18970, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18971, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18972, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18973, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18974, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18975, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18976, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18977, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18978, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18979, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18980, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18981, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18982, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18983, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18984, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18985, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18986, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18987, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18988, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18989, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18990, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18991, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18992, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18993, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18994, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18995, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18996, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18997, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18998, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18999, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19000, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19001, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19002, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19003, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19004, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19005, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19006, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19007, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19008, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19009, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19010, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19011, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19012, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19013, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19014, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19015, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19016, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19017, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19018, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19019, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19020, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19021, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19022, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19023, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19024, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19025, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19026, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19027, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19028, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19029, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19030, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19031, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19032, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19033, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19034, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19035, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19036, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19037, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19038, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19039, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19040, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19041, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19042, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19043, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19044, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19045, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19046, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19047, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19048, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19049, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19050, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19051, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19052, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19053, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19054, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19055, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19056, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19057, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19058, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19059, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19060, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19061, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19062, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19063, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19064, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19065, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19066, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19067, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19068, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19069, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19070, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19071, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19072, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19073, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19074, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19075, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19076, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19077, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19078, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19079, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19080, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19081, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19082, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19083, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19084, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19085, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9334 + } + ] + }, + "minecraft:nether_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 135 + } + ] + }, + "minecraft:nether_portal": { + "definition": { + "type": "minecraft:nether_portal", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "default": true, + "id": 7017, + "properties": { + "axis": "x" + } + }, + { + "id": 7018, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11312 + } + ] + }, + "minecraft:nether_sprouts": { + "definition": { + "type": "minecraft:nether_sprouts", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20961 + } + ] + }, + "minecraft:nether_wart": { + "definition": { + "type": "minecraft:nether_wart", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9447, + "properties": { + "age": "0" + } + }, + { + "id": 9448, + "properties": { + "age": "1" + } + }, + { + "id": 9449, + "properties": { + "age": "2" + } + }, + { + "id": 9450, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14846 + } + ] + }, + "minecraft:netherite_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21818 + } + ] + }, + "minecraft:netherrack": { + "definition": { + "type": "minecraft:netherrack", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6997 + } + ] + }, + "minecraft:note_block": { + "definition": { + "type": "minecraft:note", + "properties": {} + }, + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling", + "trumpet", + "trumpet_exposed", + "trumpet_oxidized", + "trumpet_weathered", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" + ], + "note": [ + "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" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 581, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "true" + } + }, + { + "default": true, + "id": 582, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "false" + } + }, + { + "id": 583, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "true" + } + }, + { + "id": 584, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "false" + } + }, + { + "id": 585, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "true" + } + }, + { + "id": 586, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "false" + } + }, + { + "id": 587, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "true" + } + }, + { + "id": 588, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "false" + } + }, + { + "id": 589, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "true" + } + }, + { + "id": 590, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "false" + } + }, + { + "id": 591, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "true" + } + }, + { + "id": 592, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "false" + } + }, + { + "id": 593, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "true" + } + }, + { + "id": 594, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "false" + } + }, + { + "id": 595, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "true" + } + }, + { + "id": 596, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "false" + } + }, + { + "id": 597, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "true" + } + }, + { + "id": 598, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "false" + } + }, + { + "id": 599, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "true" + } + }, + { + "id": 600, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "false" + } + }, + { + "id": 601, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "true" + } + }, + { + "id": 602, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "false" + } + }, + { + "id": 603, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "true" + } + }, + { + "id": 604, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "false" + } + }, + { + "id": 605, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "true" + } + }, + { + "id": 606, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "false" + } + }, + { + "id": 607, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "true" + } + }, + { + "id": 608, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "false" + } + }, + { + "id": 609, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "true" + } + }, + { + "id": 610, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "false" + } + }, + { + "id": 611, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "true" + } + }, + { + "id": 612, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "false" + } + }, + { + "id": 613, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "true" + } + }, + { + "id": 614, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "false" + } + }, + { + "id": 615, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "true" + } + }, + { + "id": 616, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "false" + } + }, + { + "id": 617, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "true" + } + }, + { + "id": 618, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "false" + } + }, + { + "id": 619, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "true" + } + }, + { + "id": 620, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "false" + } + }, + { + "id": 621, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "true" + } + }, + { + "id": 622, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "false" + } + }, + { + "id": 623, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "true" + } + }, + { + "id": 624, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "false" + } + }, + { + "id": 625, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "true" + } + }, + { + "id": 626, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "false" + } + }, + { + "id": 627, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "true" + } + }, + { + "id": 628, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "false" + } + }, + { + "id": 629, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "true" + } + }, + { + "id": 630, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "false" + } + }, + { + "id": 631, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "true" + } + }, + { + "id": 632, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "false" + } + }, + { + "id": 633, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "true" + } + }, + { + "id": 634, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "false" + } + }, + { + "id": 635, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "true" + } + }, + { + "id": 636, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "false" + } + }, + { + "id": 637, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "true" + } + }, + { + "id": 638, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "false" + } + }, + { + "id": 639, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "true" + } + }, + { + "id": 640, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "false" + } + }, + { + "id": 641, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "true" + } + }, + { + "id": 642, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "false" + } + }, + { + "id": 643, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "true" + } + }, + { + "id": 644, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "false" + } + }, + { + "id": 645, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "true" + } + }, + { + "id": 646, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "false" + } + }, + { + "id": 647, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "true" + } + }, + { + "id": 648, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "false" + } + }, + { + "id": 649, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "true" + } + }, + { + "id": 650, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "false" + } + }, + { + "id": 651, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "true" + } + }, + { + "id": 652, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "false" + } + }, + { + "id": 653, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "true" + } + }, + { + "id": 654, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "false" + } + }, + { + "id": 655, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "true" + } + }, + { + "id": 656, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "false" + } + }, + { + "id": 657, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "true" + } + }, + { + "id": 658, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "false" + } + }, + { + "id": 659, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "true" + } + }, + { + "id": 660, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "false" + } + }, + { + "id": 661, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "true" + } + }, + { + "id": 662, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "false" + } + }, + { + "id": 663, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "true" + } + }, + { + "id": 664, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "false" + } + }, + { + "id": 665, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "true" + } + }, + { + "id": 666, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "false" + } + }, + { + "id": 667, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "true" + } + }, + { + "id": 668, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "false" + } + }, + { + "id": 669, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "true" + } + }, + { + "id": 670, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "false" + } + }, + { + "id": 671, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "true" + } + }, + { + "id": 672, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "false" + } + }, + { + "id": 673, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "true" + } + }, + { + "id": 674, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "false" + } + }, + { + "id": 675, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "true" + } + }, + { + "id": 676, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "false" + } + }, + { + "id": 677, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "true" + } + }, + { + "id": 678, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "false" + } + }, + { + "id": 679, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "true" + } + }, + { + "id": 680, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "false" + } + }, + { + "id": 681, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "true" + } + }, + { + "id": 682, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "false" + } + }, + { + "id": 683, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "true" + } + }, + { + "id": 684, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "false" + } + }, + { + "id": 685, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "true" + } + }, + { + "id": 686, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "false" + } + }, + { + "id": 687, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "true" + } + }, + { + "id": 688, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "false" + } + }, + { + "id": 689, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "true" + } + }, + { + "id": 690, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "false" + } + }, + { + "id": 691, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "true" + } + }, + { + "id": 692, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "false" + } + }, + { + "id": 693, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "true" + } + }, + { + "id": 694, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "false" + } + }, + { + "id": 695, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "true" + } + }, + { + "id": 696, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "false" + } + }, + { + "id": 697, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "true" + } + }, + { + "id": 698, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "false" + } + }, + { + "id": 699, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "true" + } + }, + { + "id": 700, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "false" + } + }, + { + "id": 701, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "true" + } + }, + { + "id": 702, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "false" + } + }, + { + "id": 703, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "true" + } + }, + { + "id": 704, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "false" + } + }, + { + "id": 705, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "true" + } + }, + { + "id": 706, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "false" + } + }, + { + "id": 707, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "true" + } + }, + { + "id": 708, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "false" + } + }, + { + "id": 709, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "true" + } + }, + { + "id": 710, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "false" + } + }, + { + "id": 711, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "true" + } + }, + { + "id": 712, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "false" + } + }, + { + "id": 713, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "true" + } + }, + { + "id": 714, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "false" + } + }, + { + "id": 715, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "true" + } + }, + { + "id": 716, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "false" + } + }, + { + "id": 717, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "true" + } + }, + { + "id": 718, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "false" + } + }, + { + "id": 719, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "true" + } + }, + { + "id": 720, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "false" + } + }, + { + "id": 721, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "true" + } + }, + { + "id": 722, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "false" + } + }, + { + "id": 723, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "true" + } + }, + { + "id": 724, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "false" + } + }, + { + "id": 725, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "true" + } + }, + { + "id": 726, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "false" + } + }, + { + "id": 727, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "true" + } + }, + { + "id": 728, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "false" + } + }, + { + "id": 729, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "true" + } + }, + { + "id": 730, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "false" + } + }, + { + "id": 731, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "true" + } + }, + { + "id": 732, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "false" + } + }, + { + "id": 733, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "true" + } + }, + { + "id": 734, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "false" + } + }, + { + "id": 735, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "true" + } + }, + { + "id": 736, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "false" + } + }, + { + "id": 737, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "true" + } + }, + { + "id": 738, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "false" + } + }, + { + "id": 739, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "true" + } + }, + { + "id": 740, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "false" + } + }, + { + "id": 741, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "true" + } + }, + { + "id": 742, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "false" + } + }, + { + "id": 743, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "true" + } + }, + { + "id": 744, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "false" + } + }, + { + "id": 745, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "true" + } + }, + { + "id": 746, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "false" + } + }, + { + "id": 747, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "true" + } + }, + { + "id": 748, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "false" + } + }, + { + "id": 749, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "true" + } + }, + { + "id": 750, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "false" + } + }, + { + "id": 751, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "true" + } + }, + { + "id": 752, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "false" + } + }, + { + "id": 753, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "true" + } + }, + { + "id": 754, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "false" + } + }, + { + "id": 755, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "true" + } + }, + { + "id": 756, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "false" + } + }, + { + "id": 757, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "true" + } + }, + { + "id": 758, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "false" + } + }, + { + "id": 759, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "true" + } + }, + { + "id": 760, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "false" + } + }, + { + "id": 761, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "true" + } + }, + { + "id": 762, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "false" + } + }, + { + "id": 763, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "true" + } + }, + { + "id": 764, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "false" + } + }, + { + "id": 765, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "true" + } + }, + { + "id": 766, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "false" + } + }, + { + "id": 767, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "true" + } + }, + { + "id": 768, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "false" + } + }, + { + "id": 769, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "true" + } + }, + { + "id": 770, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "false" + } + }, + { + "id": 771, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "true" + } + }, + { + "id": 772, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "false" + } + }, + { + "id": 773, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "true" + } + }, + { + "id": 774, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "false" + } + }, + { + "id": 775, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "true" + } + }, + { + "id": 776, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "false" + } + }, + { + "id": 777, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "true" + } + }, + { + "id": 778, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "false" + } + }, + { + "id": 779, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "true" + } + }, + { + "id": 780, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "false" + } + }, + { + "id": 781, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "true" + } + }, + { + "id": 782, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "false" + } + }, + { + "id": 783, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "true" + } + }, + { + "id": 784, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "false" + } + }, + { + "id": 785, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "true" + } + }, + { + "id": 786, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "false" + } + }, + { + "id": 787, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "true" + } + }, + { + "id": 788, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "false" + } + }, + { + "id": 789, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "true" + } + }, + { + "id": 790, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "false" + } + }, + { + "id": 791, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "true" + } + }, + { + "id": 792, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "false" + } + }, + { + "id": 793, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "true" + } + }, + { + "id": 794, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "false" + } + }, + { + "id": 795, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "true" + } + }, + { + "id": 796, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "false" + } + }, + { + "id": 797, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "true" + } + }, + { + "id": 798, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "false" + } + }, + { + "id": 799, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "true" + } + }, + { + "id": 800, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "false" + } + }, + { + "id": 801, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "true" + } + }, + { + "id": 802, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "false" + } + }, + { + "id": 803, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "true" + } + }, + { + "id": 804, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "false" + } + }, + { + "id": 805, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "true" + } + }, + { + "id": 806, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "false" + } + }, + { + "id": 807, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "true" + } + }, + { + "id": 808, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "false" + } + }, + { + "id": 809, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "true" + } + }, + { + "id": 810, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "false" + } + }, + { + "id": 811, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "true" + } + }, + { + "id": 812, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "false" + } + }, + { + "id": 813, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "true" + } + }, + { + "id": 814, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "false" + } + }, + { + "id": 815, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "true" + } + }, + { + "id": 816, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "false" + } + }, + { + "id": 817, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "true" + } + }, + { + "id": 818, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "false" + } + }, + { + "id": 819, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "true" + } + }, + { + "id": 820, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "false" + } + }, + { + "id": 821, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "true" + } + }, + { + "id": 822, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "false" + } + }, + { + "id": 823, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "true" + } + }, + { + "id": 824, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "false" + } + }, + { + "id": 825, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "true" + } + }, + { + "id": 826, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "false" + } + }, + { + "id": 827, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "true" + } + }, + { + "id": 828, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "false" + } + }, + { + "id": 829, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "true" + } + }, + { + "id": 830, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "false" + } + }, + { + "id": 831, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "true" + } + }, + { + "id": 832, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "false" + } + }, + { + "id": 833, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "true" + } + }, + { + "id": 834, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "false" + } + }, + { + "id": 835, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "true" + } + }, + { + "id": 836, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "false" + } + }, + { + "id": 837, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "true" + } + }, + { + "id": 838, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "false" + } + }, + { + "id": 839, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "true" + } + }, + { + "id": 840, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "false" + } + }, + { + "id": 841, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "true" + } + }, + { + "id": 842, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "false" + } + }, + { + "id": 843, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "true" + } + }, + { + "id": 844, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "false" + } + }, + { + "id": 845, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "true" + } + }, + { + "id": 846, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "false" + } + }, + { + "id": 847, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "true" + } + }, + { + "id": 848, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "false" + } + }, + { + "id": 849, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "true" + } + }, + { + "id": 850, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "false" + } + }, + { + "id": 851, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "true" + } + }, + { + "id": 852, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "false" + } + }, + { + "id": 853, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "true" + } + }, + { + "id": 854, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "false" + } + }, + { + "id": 855, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "true" + } + }, + { + "id": 856, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "false" + } + }, + { + "id": 857, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "true" + } + }, + { + "id": 858, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "false" + } + }, + { + "id": 859, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "true" + } + }, + { + "id": 860, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "false" + } + }, + { + "id": 861, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "true" + } + }, + { + "id": 862, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "false" + } + }, + { + "id": 863, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "true" + } + }, + { + "id": 864, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "false" + } + }, + { + "id": 865, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "true" + } + }, + { + "id": 866, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "false" + } + }, + { + "id": 867, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "true" + } + }, + { + "id": 868, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "false" + } + }, + { + "id": 869, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "true" + } + }, + { + "id": 870, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "false" + } + }, + { + "id": 871, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "true" + } + }, + { + "id": 872, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "false" + } + }, + { + "id": 873, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "true" + } + }, + { + "id": 874, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "false" + } + }, + { + "id": 875, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "true" + } + }, + { + "id": 876, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "false" + } + }, + { + "id": 877, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "true" + } + }, + { + "id": 878, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "false" + } + }, + { + "id": 879, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "true" + } + }, + { + "id": 880, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "false" + } + }, + { + "id": 881, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 882, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 883, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 884, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 885, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 886, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 887, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 888, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 889, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 890, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 891, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 892, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 893, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 894, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 895, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 896, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 897, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 898, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 899, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 900, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 901, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 902, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 903, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 904, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 905, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 906, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 907, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 908, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 909, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 910, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 911, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 912, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 913, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 914, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 915, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 916, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 917, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 918, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 919, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 920, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 921, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 922, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 923, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 924, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 925, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 926, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 927, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 928, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 929, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 930, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 931, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "true" + } + }, + { + "id": 932, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "false" + } + }, + { + "id": 933, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "true" + } + }, + { + "id": 934, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "false" + } + }, + { + "id": 935, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "true" + } + }, + { + "id": 936, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "false" + } + }, + { + "id": 937, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "true" + } + }, + { + "id": 938, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "false" + } + }, + { + "id": 939, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "true" + } + }, + { + "id": 940, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "false" + } + }, + { + "id": 941, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "true" + } + }, + { + "id": 942, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "false" + } + }, + { + "id": 943, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "true" + } + }, + { + "id": 944, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "false" + } + }, + { + "id": 945, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "true" + } + }, + { + "id": 946, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "false" + } + }, + { + "id": 947, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "true" + } + }, + { + "id": 948, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "false" + } + }, + { + "id": 949, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "true" + } + }, + { + "id": 950, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "false" + } + }, + { + "id": 951, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "true" + } + }, + { + "id": 952, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "false" + } + }, + { + "id": 953, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "true" + } + }, + { + "id": 954, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "false" + } + }, + { + "id": 955, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "true" + } + }, + { + "id": 956, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "false" + } + }, + { + "id": 957, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "true" + } + }, + { + "id": 958, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "false" + } + }, + { + "id": 959, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "true" + } + }, + { + "id": 960, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "false" + } + }, + { + "id": 961, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "true" + } + }, + { + "id": 962, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "false" + } + }, + { + "id": 963, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "true" + } + }, + { + "id": 964, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "false" + } + }, + { + "id": 965, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "true" + } + }, + { + "id": 966, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "false" + } + }, + { + "id": 967, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "true" + } + }, + { + "id": 968, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "false" + } + }, + { + "id": 969, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "true" + } + }, + { + "id": 970, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "false" + } + }, + { + "id": 971, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "true" + } + }, + { + "id": 972, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "false" + } + }, + { + "id": 973, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "true" + } + }, + { + "id": 974, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "false" + } + }, + { + "id": 975, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "true" + } + }, + { + "id": 976, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "false" + } + }, + { + "id": 977, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "true" + } + }, + { + "id": 978, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "false" + } + }, + { + "id": 979, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "true" + } + }, + { + "id": 980, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "false" + } + }, + { + "id": 981, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "true" + } + }, + { + "id": 982, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "false" + } + }, + { + "id": 983, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "true" + } + }, + { + "id": 984, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "false" + } + }, + { + "id": 985, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "true" + } + }, + { + "id": 986, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "false" + } + }, + { + "id": 987, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "true" + } + }, + { + "id": 988, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "false" + } + }, + { + "id": 989, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "true" + } + }, + { + "id": 990, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "false" + } + }, + { + "id": 991, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "true" + } + }, + { + "id": 992, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "false" + } + }, + { + "id": 993, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "true" + } + }, + { + "id": 994, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "false" + } + }, + { + "id": 995, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "true" + } + }, + { + "id": 996, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "false" + } + }, + { + "id": 997, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "true" + } + }, + { + "id": 998, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "false" + } + }, + { + "id": 999, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "true" + } + }, + { + "id": 1000, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "false" + } + }, + { + "id": 1001, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "true" + } + }, + { + "id": 1002, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "false" + } + }, + { + "id": 1003, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "true" + } + }, + { + "id": 1004, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "false" + } + }, + { + "id": 1005, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "true" + } + }, + { + "id": 1006, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "false" + } + }, + { + "id": 1007, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "true" + } + }, + { + "id": 1008, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "false" + } + }, + { + "id": 1009, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "true" + } + }, + { + "id": 1010, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "false" + } + }, + { + "id": 1011, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "true" + } + }, + { + "id": 1012, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "false" + } + }, + { + "id": 1013, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "true" + } + }, + { + "id": 1014, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "false" + } + }, + { + "id": 1015, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "true" + } + }, + { + "id": 1016, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "false" + } + }, + { + "id": 1017, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "true" + } + }, + { + "id": 1018, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "false" + } + }, + { + "id": 1019, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "true" + } + }, + { + "id": 1020, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "false" + } + }, + { + "id": 1021, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "true" + } + }, + { + "id": 1022, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "false" + } + }, + { + "id": 1023, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "true" + } + }, + { + "id": 1024, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "false" + } + }, + { + "id": 1025, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "true" + } + }, + { + "id": 1026, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "false" + } + }, + { + "id": 1027, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "true" + } + }, + { + "id": 1028, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "false" + } + }, + { + "id": 1029, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "true" + } + }, + { + "id": 1030, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "false" + } + }, + { + "id": 1031, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1032, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1033, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1034, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1035, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1036, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1037, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1038, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1039, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1040, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1041, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1042, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1043, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1044, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1045, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1046, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1047, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1048, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1049, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1050, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1051, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1052, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1053, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1054, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1055, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1056, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1057, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1058, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1059, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1060, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1061, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1062, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1063, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1064, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1065, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1066, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1067, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1068, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1069, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1070, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1071, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1072, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1073, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1074, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1075, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1076, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1077, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1078, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1079, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1080, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1081, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1082, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1083, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1084, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1085, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1086, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1087, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1088, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1089, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1090, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1091, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1092, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1093, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1094, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1095, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1096, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1097, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1098, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1099, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1100, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1101, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1102, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1103, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1104, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1105, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1106, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1107, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1108, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1109, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1110, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1111, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1112, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1113, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1114, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1115, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1116, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1117, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1118, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1119, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1120, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1121, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1122, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1123, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1124, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1125, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1126, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1127, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1128, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1129, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1130, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1131, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 1132, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 1133, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 1134, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 1135, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 1136, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 1137, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 1138, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 1139, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 1140, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 1141, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 1142, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 1143, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 1144, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 1145, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 1146, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 1147, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 1148, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 1149, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 1150, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 1151, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 1152, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 1153, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 1154, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 1155, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 1156, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 1157, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 1158, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 1159, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 1160, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 1161, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 1162, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 1163, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 1164, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 1165, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 1166, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 1167, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 1168, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 1169, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 1170, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 1171, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 1172, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 1173, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 1174, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 1175, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 1176, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 1177, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 1178, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 1179, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 1180, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 1181, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1182, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1183, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1184, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1185, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1186, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1187, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1188, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1189, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1190, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1191, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1192, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1193, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1194, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1195, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1196, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1197, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1198, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1199, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1200, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1201, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1202, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1203, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1204, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1205, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1206, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1207, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1208, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1209, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1210, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1211, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1212, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1213, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1214, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1215, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1216, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1217, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1218, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1219, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1220, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1221, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1222, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1223, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1224, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1225, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1226, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1227, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1228, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1229, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1230, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1231, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "true" + } + }, + { + "id": 1232, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "false" + } + }, + { + "id": 1233, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "true" + } + }, + { + "id": 1234, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "false" + } + }, + { + "id": 1235, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "true" + } + }, + { + "id": 1236, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "false" + } + }, + { + "id": 1237, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "true" + } + }, + { + "id": 1238, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "false" + } + }, + { + "id": 1239, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "true" + } + }, + { + "id": 1240, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "false" + } + }, + { + "id": 1241, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "true" + } + }, + { + "id": 1242, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "false" + } + }, + { + "id": 1243, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "true" + } + }, + { + "id": 1244, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "false" + } + }, + { + "id": 1245, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "true" + } + }, + { + "id": 1246, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "false" + } + }, + { + "id": 1247, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "true" + } + }, + { + "id": 1248, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "false" + } + }, + { + "id": 1249, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "true" + } + }, + { + "id": 1250, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "false" + } + }, + { + "id": 1251, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "true" + } + }, + { + "id": 1252, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "false" + } + }, + { + "id": 1253, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "true" + } + }, + { + "id": 1254, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "false" + } + }, + { + "id": 1255, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "true" + } + }, + { + "id": 1256, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "false" + } + }, + { + "id": 1257, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "true" + } + }, + { + "id": 1258, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "false" + } + }, + { + "id": 1259, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "true" + } + }, + { + "id": 1260, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "false" + } + }, + { + "id": 1261, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "true" + } + }, + { + "id": 1262, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "false" + } + }, + { + "id": 1263, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "true" + } + }, + { + "id": 1264, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "false" + } + }, + { + "id": 1265, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "true" + } + }, + { + "id": 1266, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "false" + } + }, + { + "id": 1267, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "true" + } + }, + { + "id": 1268, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "false" + } + }, + { + "id": 1269, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "true" + } + }, + { + "id": 1270, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "false" + } + }, + { + "id": 1271, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "true" + } + }, + { + "id": 1272, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "false" + } + }, + { + "id": 1273, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "true" + } + }, + { + "id": 1274, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "false" + } + }, + { + "id": 1275, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "true" + } + }, + { + "id": 1276, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "false" + } + }, + { + "id": 1277, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "true" + } + }, + { + "id": 1278, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "false" + } + }, + { + "id": 1279, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "true" + } + }, + { + "id": 1280, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "false" + } + }, + { + "id": 1281, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1282, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1283, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1284, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1285, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1286, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1287, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1288, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1289, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1290, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1291, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1292, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1293, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1294, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1295, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1296, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1297, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1298, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1299, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1300, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1301, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1302, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1303, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1304, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1305, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1306, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1307, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1308, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1309, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1310, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1311, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1312, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1313, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1314, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1315, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1316, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1317, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1318, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1319, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1320, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1321, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1322, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1323, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1324, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1325, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1326, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1327, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1328, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1329, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1330, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1331, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "true" + } + }, + { + "id": 1332, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "false" + } + }, + { + "id": 1333, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "true" + } + }, + { + "id": 1334, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "false" + } + }, + { + "id": 1335, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "true" + } + }, + { + "id": 1336, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "false" + } + }, + { + "id": 1337, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "true" + } + }, + { + "id": 1338, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "false" + } + }, + { + "id": 1339, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "true" + } + }, + { + "id": 1340, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "false" + } + }, + { + "id": 1341, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "true" + } + }, + { + "id": 1342, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "false" + } + }, + { + "id": 1343, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "true" + } + }, + { + "id": 1344, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "false" + } + }, + { + "id": 1345, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "true" + } + }, + { + "id": 1346, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "false" + } + }, + { + "id": 1347, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "true" + } + }, + { + "id": 1348, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "false" + } + }, + { + "id": 1349, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "true" + } + }, + { + "id": 1350, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "false" + } + }, + { + "id": 1351, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "true" + } + }, + { + "id": 1352, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "false" + } + }, + { + "id": 1353, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "true" + } + }, + { + "id": 1354, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "false" + } + }, + { + "id": 1355, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "true" + } + }, + { + "id": 1356, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "false" + } + }, + { + "id": 1357, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "true" + } + }, + { + "id": 1358, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "false" + } + }, + { + "id": 1359, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "true" + } + }, + { + "id": 1360, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "false" + } + }, + { + "id": 1361, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "true" + } + }, + { + "id": 1362, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "false" + } + }, + { + "id": 1363, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "true" + } + }, + { + "id": 1364, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "false" + } + }, + { + "id": 1365, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "true" + } + }, + { + "id": 1366, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "false" + } + }, + { + "id": 1367, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "true" + } + }, + { + "id": 1368, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "false" + } + }, + { + "id": 1369, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "true" + } + }, + { + "id": 1370, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "false" + } + }, + { + "id": 1371, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "true" + } + }, + { + "id": 1372, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "false" + } + }, + { + "id": 1373, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "true" + } + }, + { + "id": 1374, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "false" + } + }, + { + "id": 1375, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "true" + } + }, + { + "id": 1376, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "false" + } + }, + { + "id": 1377, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { + "id": 1378, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } + }, + { + "id": 1379, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "true" + } + }, + { + "id": 1380, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "false" + } + }, + { + "id": 1381, + "properties": { + "instrument": "trumpet", + "note": "0", + "powered": "true" + } + }, + { + "id": 1382, + "properties": { + "instrument": "trumpet", + "note": "0", + "powered": "false" + } + }, + { + "id": 1383, + "properties": { + "instrument": "trumpet", + "note": "1", + "powered": "true" + } + }, + { + "id": 1384, + "properties": { + "instrument": "trumpet", + "note": "1", + "powered": "false" + } + }, + { + "id": 1385, + "properties": { + "instrument": "trumpet", + "note": "2", + "powered": "true" + } + }, + { + "id": 1386, + "properties": { + "instrument": "trumpet", + "note": "2", + "powered": "false" + } + }, + { + "id": 1387, + "properties": { + "instrument": "trumpet", + "note": "3", + "powered": "true" + } + }, + { + "id": 1388, + "properties": { + "instrument": "trumpet", + "note": "3", + "powered": "false" + } + }, + { + "id": 1389, + "properties": { + "instrument": "trumpet", + "note": "4", + "powered": "true" + } + }, + { + "id": 1390, + "properties": { + "instrument": "trumpet", + "note": "4", + "powered": "false" + } + }, + { + "id": 1391, + "properties": { + "instrument": "trumpet", + "note": "5", + "powered": "true" + } + }, + { + "id": 1392, + "properties": { + "instrument": "trumpet", + "note": "5", + "powered": "false" + } + }, + { + "id": 1393, + "properties": { + "instrument": "trumpet", + "note": "6", + "powered": "true" + } + }, + { + "id": 1394, + "properties": { + "instrument": "trumpet", + "note": "6", + "powered": "false" + } + }, + { + "id": 1395, + "properties": { + "instrument": "trumpet", + "note": "7", + "powered": "true" + } + }, + { + "id": 1396, + "properties": { + "instrument": "trumpet", + "note": "7", + "powered": "false" + } + }, + { + "id": 1397, + "properties": { + "instrument": "trumpet", + "note": "8", + "powered": "true" + } + }, + { + "id": 1398, + "properties": { + "instrument": "trumpet", + "note": "8", + "powered": "false" + } + }, + { + "id": 1399, + "properties": { + "instrument": "trumpet", + "note": "9", + "powered": "true" + } + }, + { + "id": 1400, + "properties": { + "instrument": "trumpet", + "note": "9", + "powered": "false" + } + }, + { + "id": 1401, + "properties": { + "instrument": "trumpet", + "note": "10", + "powered": "true" + } + }, + { + "id": 1402, + "properties": { + "instrument": "trumpet", + "note": "10", + "powered": "false" + } + }, + { + "id": 1403, + "properties": { + "instrument": "trumpet", + "note": "11", + "powered": "true" + } + }, + { + "id": 1404, + "properties": { + "instrument": "trumpet", + "note": "11", + "powered": "false" + } + }, + { + "id": 1405, + "properties": { + "instrument": "trumpet", + "note": "12", + "powered": "true" + } + }, + { + "id": 1406, + "properties": { + "instrument": "trumpet", + "note": "12", + "powered": "false" + } + }, + { + "id": 1407, + "properties": { + "instrument": "trumpet", + "note": "13", + "powered": "true" + } + }, + { + "id": 1408, + "properties": { + "instrument": "trumpet", + "note": "13", + "powered": "false" + } + }, + { + "id": 1409, + "properties": { + "instrument": "trumpet", + "note": "14", + "powered": "true" + } + }, + { + "id": 1410, + "properties": { + "instrument": "trumpet", + "note": "14", + "powered": "false" + } + }, + { + "id": 1411, + "properties": { + "instrument": "trumpet", + "note": "15", + "powered": "true" + } + }, + { + "id": 1412, + "properties": { + "instrument": "trumpet", + "note": "15", + "powered": "false" + } + }, + { + "id": 1413, + "properties": { + "instrument": "trumpet", + "note": "16", + "powered": "true" + } + }, + { + "id": 1414, + "properties": { + "instrument": "trumpet", + "note": "16", + "powered": "false" + } + }, + { + "id": 1415, + "properties": { + "instrument": "trumpet", + "note": "17", + "powered": "true" + } + }, + { + "id": 1416, + "properties": { + "instrument": "trumpet", + "note": "17", + "powered": "false" + } + }, + { + "id": 1417, + "properties": { + "instrument": "trumpet", + "note": "18", + "powered": "true" + } + }, + { + "id": 1418, + "properties": { + "instrument": "trumpet", + "note": "18", + "powered": "false" + } + }, + { + "id": 1419, + "properties": { + "instrument": "trumpet", + "note": "19", + "powered": "true" + } + }, + { + "id": 1420, + "properties": { + "instrument": "trumpet", + "note": "19", + "powered": "false" + } + }, + { + "id": 1421, + "properties": { + "instrument": "trumpet", + "note": "20", + "powered": "true" + } + }, + { + "id": 1422, + "properties": { + "instrument": "trumpet", + "note": "20", + "powered": "false" + } + }, + { + "id": 1423, + "properties": { + "instrument": "trumpet", + "note": "21", + "powered": "true" + } + }, + { + "id": 1424, + "properties": { + "instrument": "trumpet", + "note": "21", + "powered": "false" + } + }, + { + "id": 1425, + "properties": { + "instrument": "trumpet", + "note": "22", + "powered": "true" + } + }, + { + "id": 1426, + "properties": { + "instrument": "trumpet", + "note": "22", + "powered": "false" + } + }, + { + "id": 1427, + "properties": { + "instrument": "trumpet", + "note": "23", + "powered": "true" + } + }, + { + "id": 1428, + "properties": { + "instrument": "trumpet", + "note": "23", + "powered": "false" + } + }, + { + "id": 1429, + "properties": { + "instrument": "trumpet", + "note": "24", + "powered": "true" + } + }, + { + "id": 1430, + "properties": { + "instrument": "trumpet", + "note": "24", + "powered": "false" + } + }, + { + "id": 1431, + "properties": { + "instrument": "trumpet_exposed", + "note": "0", + "powered": "true" + } + }, + { + "id": 1432, + "properties": { + "instrument": "trumpet_exposed", + "note": "0", + "powered": "false" + } + }, + { + "id": 1433, + "properties": { + "instrument": "trumpet_exposed", + "note": "1", + "powered": "true" + } + }, + { + "id": 1434, + "properties": { + "instrument": "trumpet_exposed", + "note": "1", + "powered": "false" + } + }, + { + "id": 1435, + "properties": { + "instrument": "trumpet_exposed", + "note": "2", + "powered": "true" + } + }, + { + "id": 1436, + "properties": { + "instrument": "trumpet_exposed", + "note": "2", + "powered": "false" + } + }, + { + "id": 1437, + "properties": { + "instrument": "trumpet_exposed", + "note": "3", + "powered": "true" + } + }, + { + "id": 1438, + "properties": { + "instrument": "trumpet_exposed", + "note": "3", + "powered": "false" + } + }, + { + "id": 1439, + "properties": { + "instrument": "trumpet_exposed", + "note": "4", + "powered": "true" + } + }, + { + "id": 1440, + "properties": { + "instrument": "trumpet_exposed", + "note": "4", + "powered": "false" + } + }, + { + "id": 1441, + "properties": { + "instrument": "trumpet_exposed", + "note": "5", + "powered": "true" + } + }, + { + "id": 1442, + "properties": { + "instrument": "trumpet_exposed", + "note": "5", + "powered": "false" + } + }, + { + "id": 1443, + "properties": { + "instrument": "trumpet_exposed", + "note": "6", + "powered": "true" + } + }, + { + "id": 1444, + "properties": { + "instrument": "trumpet_exposed", + "note": "6", + "powered": "false" + } + }, + { + "id": 1445, + "properties": { + "instrument": "trumpet_exposed", + "note": "7", + "powered": "true" + } + }, + { + "id": 1446, + "properties": { + "instrument": "trumpet_exposed", + "note": "7", + "powered": "false" + } + }, + { + "id": 1447, + "properties": { + "instrument": "trumpet_exposed", + "note": "8", + "powered": "true" + } + }, + { + "id": 1448, + "properties": { + "instrument": "trumpet_exposed", + "note": "8", + "powered": "false" + } + }, + { + "id": 1449, + "properties": { + "instrument": "trumpet_exposed", + "note": "9", + "powered": "true" + } + }, + { + "id": 1450, + "properties": { + "instrument": "trumpet_exposed", + "note": "9", + "powered": "false" + } + }, + { + "id": 1451, + "properties": { + "instrument": "trumpet_exposed", + "note": "10", + "powered": "true" + } + }, + { + "id": 1452, + "properties": { + "instrument": "trumpet_exposed", + "note": "10", + "powered": "false" + } + }, + { + "id": 1453, + "properties": { + "instrument": "trumpet_exposed", + "note": "11", + "powered": "true" + } + }, + { + "id": 1454, + "properties": { + "instrument": "trumpet_exposed", + "note": "11", + "powered": "false" + } + }, + { + "id": 1455, + "properties": { + "instrument": "trumpet_exposed", + "note": "12", + "powered": "true" + } + }, + { + "id": 1456, + "properties": { + "instrument": "trumpet_exposed", + "note": "12", + "powered": "false" + } + }, + { + "id": 1457, + "properties": { + "instrument": "trumpet_exposed", + "note": "13", + "powered": "true" + } + }, + { + "id": 1458, + "properties": { + "instrument": "trumpet_exposed", + "note": "13", + "powered": "false" + } + }, + { + "id": 1459, + "properties": { + "instrument": "trumpet_exposed", + "note": "14", + "powered": "true" + } + }, + { + "id": 1460, + "properties": { + "instrument": "trumpet_exposed", + "note": "14", + "powered": "false" + } + }, + { + "id": 1461, + "properties": { + "instrument": "trumpet_exposed", + "note": "15", + "powered": "true" + } + }, + { + "id": 1462, + "properties": { + "instrument": "trumpet_exposed", + "note": "15", + "powered": "false" + } + }, + { + "id": 1463, + "properties": { + "instrument": "trumpet_exposed", + "note": "16", + "powered": "true" + } + }, + { + "id": 1464, + "properties": { + "instrument": "trumpet_exposed", + "note": "16", + "powered": "false" + } + }, + { + "id": 1465, + "properties": { + "instrument": "trumpet_exposed", + "note": "17", + "powered": "true" + } + }, + { + "id": 1466, + "properties": { + "instrument": "trumpet_exposed", + "note": "17", + "powered": "false" + } + }, + { + "id": 1467, + "properties": { + "instrument": "trumpet_exposed", + "note": "18", + "powered": "true" + } + }, + { + "id": 1468, + "properties": { + "instrument": "trumpet_exposed", + "note": "18", + "powered": "false" + } + }, + { + "id": 1469, + "properties": { + "instrument": "trumpet_exposed", + "note": "19", + "powered": "true" + } + }, + { + "id": 1470, + "properties": { + "instrument": "trumpet_exposed", + "note": "19", + "powered": "false" + } + }, + { + "id": 1471, + "properties": { + "instrument": "trumpet_exposed", + "note": "20", + "powered": "true" + } + }, + { + "id": 1472, + "properties": { + "instrument": "trumpet_exposed", + "note": "20", + "powered": "false" + } + }, + { + "id": 1473, + "properties": { + "instrument": "trumpet_exposed", + "note": "21", + "powered": "true" + } + }, + { + "id": 1474, + "properties": { + "instrument": "trumpet_exposed", + "note": "21", + "powered": "false" + } + }, + { + "id": 1475, + "properties": { + "instrument": "trumpet_exposed", + "note": "22", + "powered": "true" + } + }, + { + "id": 1476, + "properties": { + "instrument": "trumpet_exposed", + "note": "22", + "powered": "false" + } + }, + { + "id": 1477, + "properties": { + "instrument": "trumpet_exposed", + "note": "23", + "powered": "true" + } + }, + { + "id": 1478, + "properties": { + "instrument": "trumpet_exposed", + "note": "23", + "powered": "false" + } + }, + { + "id": 1479, + "properties": { + "instrument": "trumpet_exposed", + "note": "24", + "powered": "true" + } + }, + { + "id": 1480, + "properties": { + "instrument": "trumpet_exposed", + "note": "24", + "powered": "false" + } + }, + { + "id": 1481, + "properties": { + "instrument": "trumpet_oxidized", + "note": "0", + "powered": "true" + } + }, + { + "id": 1482, + "properties": { + "instrument": "trumpet_oxidized", + "note": "0", + "powered": "false" + } + }, + { + "id": 1483, + "properties": { + "instrument": "trumpet_oxidized", + "note": "1", + "powered": "true" + } + }, + { + "id": 1484, + "properties": { + "instrument": "trumpet_oxidized", + "note": "1", + "powered": "false" + } + }, + { + "id": 1485, + "properties": { + "instrument": "trumpet_oxidized", + "note": "2", + "powered": "true" + } + }, + { + "id": 1486, + "properties": { + "instrument": "trumpet_oxidized", + "note": "2", + "powered": "false" + } + }, + { + "id": 1487, + "properties": { + "instrument": "trumpet_oxidized", + "note": "3", + "powered": "true" + } + }, + { + "id": 1488, + "properties": { + "instrument": "trumpet_oxidized", + "note": "3", + "powered": "false" + } + }, + { + "id": 1489, + "properties": { + "instrument": "trumpet_oxidized", + "note": "4", + "powered": "true" + } + }, + { + "id": 1490, + "properties": { + "instrument": "trumpet_oxidized", + "note": "4", + "powered": "false" + } + }, + { + "id": 1491, + "properties": { + "instrument": "trumpet_oxidized", + "note": "5", + "powered": "true" + } + }, + { + "id": 1492, + "properties": { + "instrument": "trumpet_oxidized", + "note": "5", + "powered": "false" + } + }, + { + "id": 1493, + "properties": { + "instrument": "trumpet_oxidized", + "note": "6", + "powered": "true" + } + }, + { + "id": 1494, + "properties": { + "instrument": "trumpet_oxidized", + "note": "6", + "powered": "false" + } + }, + { + "id": 1495, + "properties": { + "instrument": "trumpet_oxidized", + "note": "7", + "powered": "true" + } + }, + { + "id": 1496, + "properties": { + "instrument": "trumpet_oxidized", + "note": "7", + "powered": "false" + } + }, + { + "id": 1497, + "properties": { + "instrument": "trumpet_oxidized", + "note": "8", + "powered": "true" + } + }, + { + "id": 1498, + "properties": { + "instrument": "trumpet_oxidized", + "note": "8", + "powered": "false" + } + }, + { + "id": 1499, + "properties": { + "instrument": "trumpet_oxidized", + "note": "9", + "powered": "true" + } + }, + { + "id": 1500, + "properties": { + "instrument": "trumpet_oxidized", + "note": "9", + "powered": "false" + } + }, + { + "id": 1501, + "properties": { + "instrument": "trumpet_oxidized", + "note": "10", + "powered": "true" + } + }, + { + "id": 1502, + "properties": { + "instrument": "trumpet_oxidized", + "note": "10", + "powered": "false" + } + }, + { + "id": 1503, + "properties": { + "instrument": "trumpet_oxidized", + "note": "11", + "powered": "true" + } + }, + { + "id": 1504, + "properties": { + "instrument": "trumpet_oxidized", + "note": "11", + "powered": "false" + } + }, + { + "id": 1505, + "properties": { + "instrument": "trumpet_oxidized", + "note": "12", + "powered": "true" + } + }, + { + "id": 1506, + "properties": { + "instrument": "trumpet_oxidized", + "note": "12", + "powered": "false" + } + }, + { + "id": 1507, + "properties": { + "instrument": "trumpet_oxidized", + "note": "13", + "powered": "true" + } + }, + { + "id": 1508, + "properties": { + "instrument": "trumpet_oxidized", + "note": "13", + "powered": "false" + } + }, + { + "id": 1509, + "properties": { + "instrument": "trumpet_oxidized", + "note": "14", + "powered": "true" + } + }, + { + "id": 1510, + "properties": { + "instrument": "trumpet_oxidized", + "note": "14", + "powered": "false" + } + }, + { + "id": 1511, + "properties": { + "instrument": "trumpet_oxidized", + "note": "15", + "powered": "true" + } + }, + { + "id": 1512, + "properties": { + "instrument": "trumpet_oxidized", + "note": "15", + "powered": "false" + } + }, + { + "id": 1513, + "properties": { + "instrument": "trumpet_oxidized", + "note": "16", + "powered": "true" + } + }, + { + "id": 1514, + "properties": { + "instrument": "trumpet_oxidized", + "note": "16", + "powered": "false" + } + }, + { + "id": 1515, + "properties": { + "instrument": "trumpet_oxidized", + "note": "17", + "powered": "true" + } + }, + { + "id": 1516, + "properties": { + "instrument": "trumpet_oxidized", + "note": "17", + "powered": "false" + } + }, + { + "id": 1517, + "properties": { + "instrument": "trumpet_oxidized", + "note": "18", + "powered": "true" + } + }, + { + "id": 1518, + "properties": { + "instrument": "trumpet_oxidized", + "note": "18", + "powered": "false" + } + }, + { + "id": 1519, + "properties": { + "instrument": "trumpet_oxidized", + "note": "19", + "powered": "true" + } + }, + { + "id": 1520, + "properties": { + "instrument": "trumpet_oxidized", + "note": "19", + "powered": "false" + } + }, + { + "id": 1521, + "properties": { + "instrument": "trumpet_oxidized", + "note": "20", + "powered": "true" + } + }, + { + "id": 1522, + "properties": { + "instrument": "trumpet_oxidized", + "note": "20", + "powered": "false" + } + }, + { + "id": 1523, + "properties": { + "instrument": "trumpet_oxidized", + "note": "21", + "powered": "true" + } + }, + { + "id": 1524, + "properties": { + "instrument": "trumpet_oxidized", + "note": "21", + "powered": "false" + } + }, + { + "id": 1525, + "properties": { + "instrument": "trumpet_oxidized", + "note": "22", + "powered": "true" + } + }, + { + "id": 1526, + "properties": { + "instrument": "trumpet_oxidized", + "note": "22", + "powered": "false" + } + }, + { + "id": 1527, + "properties": { + "instrument": "trumpet_oxidized", + "note": "23", + "powered": "true" + } + }, + { + "id": 1528, + "properties": { + "instrument": "trumpet_oxidized", + "note": "23", + "powered": "false" + } + }, + { + "id": 1529, + "properties": { + "instrument": "trumpet_oxidized", + "note": "24", + "powered": "true" + } + }, + { + "id": 1530, + "properties": { + "instrument": "trumpet_oxidized", + "note": "24", + "powered": "false" + } + }, + { + "id": 1531, + "properties": { + "instrument": "trumpet_weathered", + "note": "0", + "powered": "true" + } + }, + { + "id": 1532, + "properties": { + "instrument": "trumpet_weathered", + "note": "0", + "powered": "false" + } + }, + { + "id": 1533, + "properties": { + "instrument": "trumpet_weathered", + "note": "1", + "powered": "true" + } + }, + { + "id": 1534, + "properties": { + "instrument": "trumpet_weathered", + "note": "1", + "powered": "false" + } + }, + { + "id": 1535, + "properties": { + "instrument": "trumpet_weathered", + "note": "2", + "powered": "true" + } + }, + { + "id": 1536, + "properties": { + "instrument": "trumpet_weathered", + "note": "2", + "powered": "false" + } + }, + { + "id": 1537, + "properties": { + "instrument": "trumpet_weathered", + "note": "3", + "powered": "true" + } + }, + { + "id": 1538, + "properties": { + "instrument": "trumpet_weathered", + "note": "3", + "powered": "false" + } + }, + { + "id": 1539, + "properties": { + "instrument": "trumpet_weathered", + "note": "4", + "powered": "true" + } + }, + { + "id": 1540, + "properties": { + "instrument": "trumpet_weathered", + "note": "4", + "powered": "false" + } + }, + { + "id": 1541, + "properties": { + "instrument": "trumpet_weathered", + "note": "5", + "powered": "true" + } + }, + { + "id": 1542, + "properties": { + "instrument": "trumpet_weathered", + "note": "5", + "powered": "false" + } + }, + { + "id": 1543, + "properties": { + "instrument": "trumpet_weathered", + "note": "6", + "powered": "true" + } + }, + { + "id": 1544, + "properties": { + "instrument": "trumpet_weathered", + "note": "6", + "powered": "false" + } + }, + { + "id": 1545, + "properties": { + "instrument": "trumpet_weathered", + "note": "7", + "powered": "true" + } + }, + { + "id": 1546, + "properties": { + "instrument": "trumpet_weathered", + "note": "7", + "powered": "false" + } + }, + { + "id": 1547, + "properties": { + "instrument": "trumpet_weathered", + "note": "8", + "powered": "true" + } + }, + { + "id": 1548, + "properties": { + "instrument": "trumpet_weathered", + "note": "8", + "powered": "false" + } + }, + { + "id": 1549, + "properties": { + "instrument": "trumpet_weathered", + "note": "9", + "powered": "true" + } + }, + { + "id": 1550, + "properties": { + "instrument": "trumpet_weathered", + "note": "9", + "powered": "false" + } + }, + { + "id": 1551, + "properties": { + "instrument": "trumpet_weathered", + "note": "10", + "powered": "true" + } + }, + { + "id": 1552, + "properties": { + "instrument": "trumpet_weathered", + "note": "10", + "powered": "false" + } + }, + { + "id": 1553, + "properties": { + "instrument": "trumpet_weathered", + "note": "11", + "powered": "true" + } + }, + { + "id": 1554, + "properties": { + "instrument": "trumpet_weathered", + "note": "11", + "powered": "false" + } + }, + { + "id": 1555, + "properties": { + "instrument": "trumpet_weathered", + "note": "12", + "powered": "true" + } + }, + { + "id": 1556, + "properties": { + "instrument": "trumpet_weathered", + "note": "12", + "powered": "false" + } + }, + { + "id": 1557, + "properties": { + "instrument": "trumpet_weathered", + "note": "13", + "powered": "true" + } + }, + { + "id": 1558, + "properties": { + "instrument": "trumpet_weathered", + "note": "13", + "powered": "false" + } + }, + { + "id": 1559, + "properties": { + "instrument": "trumpet_weathered", + "note": "14", + "powered": "true" + } + }, + { + "id": 1560, + "properties": { + "instrument": "trumpet_weathered", + "note": "14", + "powered": "false" + } + }, + { + "id": 1561, + "properties": { + "instrument": "trumpet_weathered", + "note": "15", + "powered": "true" + } + }, + { + "id": 1562, + "properties": { + "instrument": "trumpet_weathered", + "note": "15", + "powered": "false" + } + }, + { + "id": 1563, + "properties": { + "instrument": "trumpet_weathered", + "note": "16", + "powered": "true" + } + }, + { + "id": 1564, + "properties": { + "instrument": "trumpet_weathered", + "note": "16", + "powered": "false" + } + }, + { + "id": 1565, + "properties": { + "instrument": "trumpet_weathered", + "note": "17", + "powered": "true" + } + }, + { + "id": 1566, + "properties": { + "instrument": "trumpet_weathered", + "note": "17", + "powered": "false" + } + }, + { + "id": 1567, + "properties": { + "instrument": "trumpet_weathered", + "note": "18", + "powered": "true" + } + }, + { + "id": 1568, + "properties": { + "instrument": "trumpet_weathered", + "note": "18", + "powered": "false" + } + }, + { + "id": 1569, + "properties": { + "instrument": "trumpet_weathered", + "note": "19", + "powered": "true" + } + }, + { + "id": 1570, + "properties": { + "instrument": "trumpet_weathered", + "note": "19", + "powered": "false" + } + }, + { + "id": 1571, + "properties": { + "instrument": "trumpet_weathered", + "note": "20", + "powered": "true" + } + }, + { + "id": 1572, + "properties": { + "instrument": "trumpet_weathered", + "note": "20", + "powered": "false" + } + }, + { + "id": 1573, + "properties": { + "instrument": "trumpet_weathered", + "note": "21", + "powered": "true" + } + }, + { + "id": 1574, + "properties": { + "instrument": "trumpet_weathered", + "note": "21", + "powered": "false" + } + }, + { + "id": 1575, + "properties": { + "instrument": "trumpet_weathered", + "note": "22", + "powered": "true" + } + }, + { + "id": 1576, + "properties": { + "instrument": "trumpet_weathered", + "note": "22", + "powered": "false" + } + }, + { + "id": 1577, + "properties": { + "instrument": "trumpet_weathered", + "note": "23", + "powered": "true" + } + }, + { + "id": 1578, + "properties": { + "instrument": "trumpet_weathered", + "note": "23", + "powered": "false" + } + }, + { + "id": 1579, + "properties": { + "instrument": "trumpet_weathered", + "note": "24", + "powered": "true" + } + }, + { + "id": 1580, + "properties": { + "instrument": "trumpet_weathered", + "note": "24", + "powered": "false" + } + }, + { + "id": 1581, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "true" + } + }, + { + "id": 1582, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "false" + } + }, + { + "id": 1583, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "true" + } + }, + { + "id": 1584, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "false" + } + }, + { + "id": 1585, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "true" + } + }, + { + "id": 1586, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "false" + } + }, + { + "id": 1587, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "true" + } + }, + { + "id": 1588, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "false" + } + }, + { + "id": 1589, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "true" + } + }, + { + "id": 1590, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "false" + } + }, + { + "id": 1591, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "true" + } + }, + { + "id": 1592, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "false" + } + }, + { + "id": 1593, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "true" + } + }, + { + "id": 1594, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "false" + } + }, + { + "id": 1595, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "true" + } + }, + { + "id": 1596, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "false" + } + }, + { + "id": 1597, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "true" + } + }, + { + "id": 1598, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "false" + } + }, + { + "id": 1599, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "true" + } + }, + { + "id": 1600, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "false" + } + }, + { + "id": 1601, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "true" + } + }, + { + "id": 1602, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "false" + } + }, + { + "id": 1603, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "true" + } + }, + { + "id": 1604, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "false" + } + }, + { + "id": 1605, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "true" + } + }, + { + "id": 1606, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "false" + } + }, + { + "id": 1607, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "true" + } + }, + { + "id": 1608, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "false" + } + }, + { + "id": 1609, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "true" + } + }, + { + "id": 1610, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "false" + } + }, + { + "id": 1611, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "true" + } + }, + { + "id": 1612, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "false" + } + }, + { + "id": 1613, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "true" + } + }, + { + "id": 1614, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "false" + } + }, + { + "id": 1615, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "true" + } + }, + { + "id": 1616, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "false" + } + }, + { + "id": 1617, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "true" + } + }, + { + "id": 1618, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "false" + } + }, + { + "id": 1619, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "true" + } + }, + { + "id": 1620, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "false" + } + }, + { + "id": 1621, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "true" + } + }, + { + "id": 1622, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "false" + } + }, + { + "id": 1623, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "true" + } + }, + { + "id": 1624, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "false" + } + }, + { + "id": 1625, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "true" + } + }, + { + "id": 1626, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "false" + } + }, + { + "id": 1627, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "true" + } + }, + { + "id": 1628, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "false" + } + }, + { + "id": 1629, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "true" + } + }, + { + "id": 1630, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "false" + } + }, + { + "id": 1631, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1632, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1633, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1634, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1635, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1636, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1637, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1638, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1639, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1640, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1641, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1642, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1643, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1644, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1645, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1646, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1647, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1648, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1649, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1650, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1651, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1652, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1653, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1654, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1655, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1656, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1657, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1658, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1659, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1660, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1661, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1662, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1663, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1664, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1665, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1666, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1667, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1668, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1669, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1670, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1671, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1672, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1673, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1674, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1675, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1676, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1677, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1678, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1679, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1680, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1681, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "true" + } + }, + { + "id": 1682, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "false" + } + }, + { + "id": 1683, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "true" + } + }, + { + "id": 1684, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "false" + } + }, + { + "id": 1685, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "true" + } + }, + { + "id": 1686, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "false" + } + }, + { + "id": 1687, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "true" + } + }, + { + "id": 1688, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "false" + } + }, + { + "id": 1689, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "true" + } + }, + { + "id": 1690, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "false" + } + }, + { + "id": 1691, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "true" + } + }, + { + "id": 1692, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "false" + } + }, + { + "id": 1693, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "true" + } + }, + { + "id": 1694, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "false" + } + }, + { + "id": 1695, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "true" + } + }, + { + "id": 1696, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "false" + } + }, + { + "id": 1697, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "true" + } + }, + { + "id": 1698, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "false" + } + }, + { + "id": 1699, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "true" + } + }, + { + "id": 1700, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "false" + } + }, + { + "id": 1701, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "true" + } + }, + { + "id": 1702, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "false" + } + }, + { + "id": 1703, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "true" + } + }, + { + "id": 1704, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "false" + } + }, + { + "id": 1705, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "true" + } + }, + { + "id": 1706, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "false" + } + }, + { + "id": 1707, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "true" + } + }, + { + "id": 1708, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "false" + } + }, + { + "id": 1709, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "true" + } + }, + { + "id": 1710, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "false" + } + }, + { + "id": 1711, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "true" + } + }, + { + "id": 1712, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "false" + } + }, + { + "id": 1713, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "true" + } + }, + { + "id": 1714, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "false" + } + }, + { + "id": 1715, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "true" + } + }, + { + "id": 1716, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "false" + } + }, + { + "id": 1717, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "true" + } + }, + { + "id": 1718, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "false" + } + }, + { + "id": 1719, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "true" + } + }, + { + "id": 1720, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "false" + } + }, + { + "id": 1721, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "true" + } + }, + { + "id": 1722, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "false" + } + }, + { + "id": 1723, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "true" + } + }, + { + "id": 1724, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "false" + } + }, + { + "id": 1725, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "true" + } + }, + { + "id": 1726, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "false" + } + }, + { + "id": 1727, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "true" + } + }, + { + "id": 1728, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "false" + } + }, + { + "id": 1729, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "true" + } + }, + { + "id": 1730, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "false" + } + }, + { + "id": 1731, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "true" + } + }, + { + "id": 1732, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "false" + } + }, + { + "id": 1733, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "true" + } + }, + { + "id": 1734, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "false" + } + }, + { + "id": 1735, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "true" + } + }, + { + "id": 1736, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "false" + } + }, + { + "id": 1737, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "true" + } + }, + { + "id": 1738, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "false" + } + }, + { + "id": 1739, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "true" + } + }, + { + "id": 1740, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "false" + } + }, + { + "id": 1741, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "true" + } + }, + { + "id": 1742, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "false" + } + }, + { + "id": 1743, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "true" + } + }, + { + "id": 1744, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "false" + } + }, + { + "id": 1745, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "true" + } + }, + { + "id": 1746, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "false" + } + }, + { + "id": 1747, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "true" + } + }, + { + "id": 1748, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "false" + } + }, + { + "id": 1749, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "true" + } + }, + { + "id": 1750, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "false" + } + }, + { + "id": 1751, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "true" + } + }, + { + "id": 1752, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "false" + } + }, + { + "id": 1753, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "true" + } + }, + { + "id": 1754, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "false" + } + }, + { + "id": 1755, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "true" + } + }, + { + "id": 1756, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "false" + } + }, + { + "id": 1757, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "true" + } + }, + { + "id": 1758, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "false" + } + }, + { + "id": 1759, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "true" + } + }, + { + "id": 1760, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "false" + } + }, + { + "id": 1761, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "true" + } + }, + { + "id": 1762, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "false" + } + }, + { + "id": 1763, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "true" + } + }, + { + "id": 1764, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "false" + } + }, + { + "id": 1765, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "true" + } + }, + { + "id": 1766, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "false" + } + }, + { + "id": 1767, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "true" + } + }, + { + "id": 1768, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "false" + } + }, + { + "id": 1769, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "true" + } + }, + { + "id": 1770, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "false" + } + }, + { + "id": 1771, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "true" + } + }, + { + "id": 1772, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "false" + } + }, + { + "id": 1773, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "true" + } + }, + { + "id": 1774, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "false" + } + }, + { + "id": 1775, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "true" + } + }, + { + "id": 1776, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "false" + } + }, + { + "id": 1777, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "true" + } + }, + { + "id": 1778, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "false" + } + }, + { + "id": 1779, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "true" + } + }, + { + "id": 1780, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "false" + } + }, + { + "id": 1781, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1782, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1783, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1784, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1785, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1786, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1787, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1788, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1789, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1790, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1791, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1792, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1793, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1794, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1795, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1796, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1797, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1798, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1799, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1800, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1801, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1802, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1803, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1804, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1805, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1806, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1807, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1808, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1809, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1810, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1811, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1812, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1813, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1814, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1815, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1816, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1817, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1818, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1819, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1820, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1821, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1822, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1823, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1824, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1825, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1826, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1827, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1828, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1829, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1830, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1831, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "true" + } + }, + { + "id": 1832, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "false" + } + }, + { + "id": 1833, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "true" + } + }, + { + "id": 1834, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "false" + } + }, + { + "id": 1835, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "true" + } + }, + { + "id": 1836, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "false" + } + }, + { + "id": 1837, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "true" + } + }, + { + "id": 1838, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "false" + } + }, + { + "id": 1839, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "true" + } + }, + { + "id": 1840, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "false" + } + }, + { + "id": 1841, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "true" + } + }, + { + "id": 1842, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "false" + } + }, + { + "id": 1843, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "true" + } + }, + { + "id": 1844, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "false" + } + }, + { + "id": 1845, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "true" + } + }, + { + "id": 1846, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "false" + } + }, + { + "id": 1847, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "true" + } + }, + { + "id": 1848, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "false" + } + }, + { + "id": 1849, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "true" + } + }, + { + "id": 1850, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "false" + } + }, + { + "id": 1851, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "true" + } + }, + { + "id": 1852, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "false" + } + }, + { + "id": 1853, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "true" + } + }, + { + "id": 1854, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "false" + } + }, + { + "id": 1855, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "true" + } + }, + { + "id": 1856, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "false" + } + }, + { + "id": 1857, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "true" + } + }, + { + "id": 1858, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "false" + } + }, + { + "id": 1859, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "true" + } + }, + { + "id": 1860, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "false" + } + }, + { + "id": 1861, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "true" + } + }, + { + "id": 1862, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "false" + } + }, + { + "id": 1863, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "true" + } + }, + { + "id": 1864, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "false" + } + }, + { + "id": 1865, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "true" + } + }, + { + "id": 1866, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "false" + } + }, + { + "id": 1867, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "true" + } + }, + { + "id": 1868, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "false" + } + }, + { + "id": 1869, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "true" + } + }, + { + "id": 1870, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "false" + } + }, + { + "id": 1871, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "true" + } + }, + { + "id": 1872, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "false" + } + }, + { + "id": 1873, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "true" + } + }, + { + "id": 1874, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "false" + } + }, + { + "id": 1875, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "true" + } + }, + { + "id": 1876, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "false" + } + }, + { + "id": 1877, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "true" + } + }, + { + "id": 1878, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "false" + } + }, + { + "id": 1879, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "true" + } + }, + { + "id": 1880, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "false" + } + }, + { + "id": 1881, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "true" + } + }, + { + "id": 1882, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "false" + } + }, + { + "id": 1883, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "true" + } + }, + { + "id": 1884, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "false" + } + }, + { + "id": 1885, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "true" + } + }, + { + "id": 1886, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "false" + } + }, + { + "id": 1887, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "true" + } + }, + { + "id": 1888, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "false" + } + }, + { + "id": 1889, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "true" + } + }, + { + "id": 1890, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "false" + } + }, + { + "id": 1891, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "true" + } + }, + { + "id": 1892, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "false" + } + }, + { + "id": 1893, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "true" + } + }, + { + "id": 1894, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "false" + } + }, + { + "id": 1895, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "true" + } + }, + { + "id": 1896, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "false" + } + }, + { + "id": 1897, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "true" + } + }, + { + "id": 1898, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "false" + } + }, + { + "id": 1899, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "true" + } + }, + { + "id": 1900, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "false" + } + }, + { + "id": 1901, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "true" + } + }, + { + "id": 1902, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "false" + } + }, + { + "id": 1903, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "true" + } + }, + { + "id": 1904, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "false" + } + }, + { + "id": 1905, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "true" + } + }, + { + "id": 1906, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "false" + } + }, + { + "id": 1907, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "true" + } + }, + { + "id": 1908, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "false" + } + }, + { + "id": 1909, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "true" + } + }, + { + "id": 1910, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "false" + } + }, + { + "id": 1911, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "true" + } + }, + { + "id": 1912, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "false" + } + }, + { + "id": 1913, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "true" + } + }, + { + "id": 1914, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "false" + } + }, + { + "id": 1915, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "true" + } + }, + { + "id": 1916, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "false" + } + }, + { + "id": 1917, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "true" + } + }, + { + "id": 1918, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "false" + } + }, + { + "id": 1919, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "true" + } + }, + { + "id": 1920, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "false" + } + }, + { + "id": 1921, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "true" + } + }, + { + "id": 1922, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "false" + } + }, + { + "id": 1923, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "true" + } + }, + { + "id": 1924, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "false" + } + }, + { + "id": 1925, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "true" + } + }, + { + "id": 1926, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1927, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1928, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1929, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1930, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "false" + } + } + ] + }, + "minecraft:oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10675, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10676, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10677, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10678, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10679, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10680, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10681, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10682, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10683, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10684, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10685, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10686, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10687, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10688, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10689, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10690, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10691, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10692, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10693, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10694, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10695, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10696, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10697, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10698, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5660, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5661, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5662, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5668, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5669, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5670, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5676, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5677, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5678, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5684, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5685, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5686, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5700, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5701, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5702, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5716, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5717, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5718, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6965, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6966, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6967, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6968, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6969, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6970, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6971, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6972, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6973, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6974, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6975, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6976, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6977, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6978, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6979, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6980, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6981, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6982, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6983, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6984, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6985, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6986, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6987, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6988, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6989, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6990, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6991, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6992, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6993, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6994, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6995, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8646, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8647, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8648, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8649, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8650, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8651, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8652, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 8653, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8654, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8655, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8656, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8657, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8658, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8659, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8660, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8661, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8662, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8663, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8664, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8665, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8666, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8667, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8668, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8669, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8670, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8671, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8672, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8673, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8674, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8675, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8676, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8677, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5907, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5908, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5909, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5910, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5911, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5912, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5913, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5914, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5915, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5916, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5917, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5918, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5919, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5920, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5921, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5922, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5923, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5924, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5925, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5926, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5927, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5928, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5929, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5930, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5931, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5932, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5933, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5934, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5935, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5936, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5937, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5938, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5939, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5940, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5941, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5942, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5943, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5944, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5945, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5946, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5947, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5948, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5949, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5950, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5951, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5952, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5953, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5954, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5955, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5956, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5957, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5958, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5959, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5960, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5961, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5962, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5963, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5964, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5965, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5966, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5967, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5968, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5969, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5970, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 252, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 253, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 254, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 255, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 256, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 257, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 258, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 259, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 260, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 261, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 262, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 263, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 264, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 265, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 266, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 267, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 268, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 269, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 270, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 271, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 272, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 273, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 274, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 275, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 276, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 277, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 278, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 279, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 136, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 137, + "properties": { + "axis": "y" + } + }, + { + "id": 138, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6861, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6862, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 29, + "properties": { + "stage": "0" + } + }, + { + "id": 30, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3112, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3113, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3114, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3115, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3116, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3117, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3118, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3119, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3120, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3121, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3122, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3123, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3124, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3125, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3126, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3127, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3128, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3129, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3130, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3131, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3132, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3133, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3134, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3135, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3136, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3137, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3138, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3139, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3140, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3141, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3142, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3143, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3144, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3145, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3146, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3147, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3148, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3149, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3150, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3151, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3152, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3153, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3154, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3155, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3156, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3157, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3158, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3159, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3160, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3161, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3162, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3163, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3164, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3165, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3166, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3167, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3168, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3169, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3170, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3171, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3172, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3173, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3174, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3175, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5335, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5336, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5337, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5338, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5339, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5340, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5341, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5342, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5343, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5344, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5345, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5346, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5347, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5348, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5349, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5350, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5351, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5352, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5353, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5354, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5355, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5356, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5357, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5358, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5359, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5360, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5361, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5362, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5363, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5364, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5365, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5366, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13330, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13331, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13332, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13333, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13334, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13335, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3907, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3908, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3909, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3910, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3911, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3912, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3913, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3914, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3915, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3916, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3917, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3927, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3928, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3929, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3930, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3931, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3932, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3933, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3934, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3935, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3936, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3937, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3947, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3948, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3949, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3950, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3951, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3952, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3953, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3954, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3955, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3956, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3957, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3967, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3968, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3969, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3970, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3971, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3972, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3973, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3974, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3975, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3976, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3977, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7114, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7119, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7120, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7121, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7122, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7123, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7124, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7125, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7126, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7127, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7128, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7129, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7130, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7131, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7132, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7133, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7134, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7135, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7136, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7137, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7138, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7139, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7140, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7141, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7142, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7143, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7144, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7145, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7146, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7147, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7148, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7149, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7150, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7151, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7152, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7153, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7154, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7155, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7156, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7157, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7158, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7159, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7160, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7161, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7162, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7163, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7164, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7165, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7166, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7167, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7168, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7169, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7170, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7171, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7172, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7173, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7174, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7175, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7176, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7177, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6675, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6676, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6677, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6678, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6679, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6680, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6681, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6682, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5827, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5828, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5829, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5830, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5831, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5832, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5833, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5834, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 201, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 202, + "properties": { + "axis": "y" + } + }, + { + "id": 203, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "definition": { + "type": "minecraft:observer", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14852, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "id": 14853, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 14854, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 14855, + "properties": { + "facing": "east", + "powered": "false" + } + }, + { + "id": 14856, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "default": true, + "id": 14857, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 14858, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 14859, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 14860, + "properties": { + "facing": "up", + "powered": "true" + } + }, + { + "id": 14861, + "properties": { + "facing": "up", + "powered": "false" + } + }, + { + "id": 14862, + "properties": { + "facing": "down", + "powered": "true" + } + }, + { + "id": 14863, + "properties": { + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3369 + } + ] + }, + "minecraft:ochre_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 29582, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 29583, + "properties": { + "axis": "y" + } + }, + { + "id": 29584, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:open_eyeblossom": { + "definition": { + "type": "minecraft:eyeblossom", + "open": true, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29868 + } + ] + }, + "minecraft:orange_banner": { + "definition": { + "type": "minecraft:banner", + "color": "orange", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12943, + "properties": { + "rotation": "0" + } + }, + { + "id": 12944, + "properties": { + "rotation": "1" + } + }, + { + "id": 12945, + "properties": { + "rotation": "2" + } + }, + { + "id": 12946, + "properties": { + "rotation": "3" + } + }, + { + "id": 12947, + "properties": { + "rotation": "4" + } + }, + { + "id": 12948, + "properties": { + "rotation": "5" + } + }, + { + "id": 12949, + "properties": { + "rotation": "6" + } + }, + { + "id": 12950, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12951, + "properties": { + "rotation": "8" + } + }, + { + "id": 12952, + "properties": { + "rotation": "9" + } + }, + { + "id": 12953, + "properties": { + "rotation": "10" + } + }, + { + "id": 12954, + "properties": { + "rotation": "11" + } + }, + { + "id": 12955, + "properties": { + "rotation": "12" + } + }, + { + "id": 12956, + "properties": { + "rotation": "13" + } + }, + { + "id": 12957, + "properties": { + "rotation": "14" + } + }, + { + "id": 12958, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "definition": { + "type": "minecraft:bed", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1947, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1948, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1949, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1950, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1951, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1952, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1953, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1954, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1955, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1956, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1957, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1958, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1959, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1960, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1961, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1962, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23128, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23129, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23130, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23131, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23132, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23133, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23134, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23135, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23136, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23137, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23138, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23139, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23140, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23141, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23142, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23143, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:orange_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23372, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23373, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12897 + } + ] + }, + "minecraft:orange_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15031 + } + ] + }, + "minecraft:orange_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:orange_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15047 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14970, + "properties": { + "facing": "north" + } + }, + { + "id": 14971, + "properties": { + "facing": "south" + } + }, + { + "id": 14972, + "properties": { + "facing": "west" + } + }, + { + "id": 14973, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14876, + "properties": { + "facing": "north" + } + }, + { + "id": 14877, + "properties": { + "facing": "east" + } + }, + { + "id": 14878, + "properties": { + "facing": "south" + } + }, + { + "id": 14879, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14880, + "properties": { + "facing": "up" + } + }, + { + "id": 14881, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7099 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "orange", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11492, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11493, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11494, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11495, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11496, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11497, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11498, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11499, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11500, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11501, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11502, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11503, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11504, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11505, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11506, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11507, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11508, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11509, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11510, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11511, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11512, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11513, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11514, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11515, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11516, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11517, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11518, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11519, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11520, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11521, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11522, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11523, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11445 + } + ] + }, + "minecraft:orange_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2329 + } + ] + }, + "minecraft:orange_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13187, + "properties": { + "facing": "north" + } + }, + { + "id": 13188, + "properties": { + "facing": "south" + } + }, + { + "id": 13189, + "properties": { + "facing": "west" + } + }, + { + "id": 13190, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2294 + } + ] + }, + "minecraft:oxeye_daisy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:regeneration" + } + ] + }, + "states": [ + { + "default": true, + "id": 2332 + } + ] + }, + "minecraft:oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 25319 + } + ] + }, + "minecraft:oxidized_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 25312 + } + ] + }, + "minecraft:oxidized_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8086, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8087, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8088, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8089, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8090, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8091, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8092, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8093, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8094, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8095, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8096, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8097, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8098, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8099, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8100, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8101, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8102, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8103, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8104, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8105, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8106, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8107, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8108, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8109, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8110, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8111, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8112, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8113, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8114, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8115, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8116, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8117, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oxidized_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27075, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27076, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27077, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27078, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8270, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8271, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8272, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8273, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8274, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8275, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest_oxidized.close", + "open_sound": "minecraft:block.copper_chest_oxidized.open", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27167, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27168, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27169, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27170, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27171, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27172, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27173, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27174, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27175, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27176, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27177, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27178, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27179, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27180, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27181, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27182, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27183, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27184, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27185, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27186, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27187, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27188, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27189, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27190, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26151, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26152, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26153, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26154, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26155, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26156, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26157, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26158, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26159, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26160, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26161, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26162, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26163, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26164, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26165, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26166, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26167, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26168, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26169, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26170, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26171, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26172, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26173, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26174, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26175, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26176, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26177, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26178, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26179, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26180, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26181, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26182, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26183, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26184, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26185, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26186, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26187, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26188, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26189, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26190, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26191, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26192, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26193, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26194, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26195, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26196, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26197, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26198, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26199, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26200, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26201, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26202, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26203, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26204, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26205, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26206, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26207, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26208, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26209, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26210, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26211, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26212, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26213, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26214, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27383, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27384, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27385, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27386, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27387, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27388, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27389, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27390, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27391, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27392, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27393, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27394, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27395, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27396, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27397, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27398, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27399, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27400, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27401, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27402, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27403, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27404, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27405, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27406, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27407, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27408, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27409, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27410, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27411, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27412, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27413, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27414, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27053, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27054, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20857, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20858, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20859, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20860, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26663, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26664, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26665, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26666, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26667, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26668, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26669, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26670, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26671, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26672, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26673, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26674, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26675, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26676, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26677, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26678, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26679, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26680, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26681, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26682, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26683, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26684, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26685, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26686, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26687, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26688, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26689, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26690, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26691, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26692, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26693, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26694, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26695, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26696, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26697, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26698, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26699, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26700, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26701, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26702, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26703, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26704, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26705, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26706, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26707, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26708, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26709, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26710, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26711, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26712, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26713, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26714, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26715, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26716, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26717, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26718, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26719, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26720, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26721, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26722, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26723, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26724, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26725, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26726, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 25315 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25647, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25648, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25649, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25650, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25651, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25652, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:oxidized_cut_copper" + }, + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25327, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25328, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25329, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25330, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25331, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25332, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25333, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25334, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25335, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25336, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25337, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25339, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25340, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25341, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25342, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25343, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25344, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25345, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25346, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25347, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25348, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25349, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25350, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25351, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25352, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25353, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25354, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25355, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25356, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25357, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25359, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25360, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25361, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25362, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25363, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25364, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25365, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25367, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25368, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25369, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25370, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25371, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25372, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25373, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25374, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25375, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25376, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25377, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25379, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25380, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25381, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25382, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25383, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25384, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25385, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25387, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25388, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25389, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25390, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25391, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25392, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25393, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25394, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25395, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25396, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25397, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25399, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25400, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25401, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25402, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25403, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25404, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25405, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27615, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27616, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27617, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27618, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27619, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27620, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27621, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27622, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27623, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27624, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27625, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27626, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27627, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27628, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27629, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27630, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27631, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27632, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27633, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27634, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27635, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27636, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27637, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27638, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12914 + } + ] + }, + "minecraft:packed_mud": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7758 + } + ] + }, + "minecraft:pale_hanging_moss": { + "definition": { + "type": "minecraft:hanging_moss", + "properties": {} + }, + "properties": { + "tip": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 29866, + "properties": { + "tip": "true" + } + }, + { + "id": 29867, + "properties": { + "tip": "false" + } + } + ] + }, + "minecraft:pale_moss_block": { + "definition": { + "type": "minecraft:bonemealable_feature_placer", + "feature": "minecraft:pale_moss_patch_bonemeal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29703 + } + ] + }, + "minecraft:pale_moss_carpet": { + "definition": { + "type": "minecraft:mossy_carpet", + "properties": {} + }, + "properties": { + "bottom": [ + "true", + "false" + ], + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "default": true, + "id": 29704, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29705, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29706, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29707, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29708, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29709, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29710, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29711, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29712, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29713, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29714, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29715, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29716, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29717, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29718, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29719, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29720, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29721, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29722, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29723, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29724, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29725, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29726, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29727, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29728, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29729, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29730, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29731, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29732, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29733, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29734, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29735, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29736, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29737, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29738, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29739, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29740, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29741, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29742, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29743, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29744, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29745, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29746, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29747, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29748, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29749, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29750, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29751, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29752, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29753, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29754, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29755, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29756, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29757, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29758, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29759, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29760, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29761, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29762, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29763, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29764, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29765, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29766, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29767, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29768, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29769, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29770, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29771, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29772, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29773, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29774, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29775, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29776, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29777, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29778, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29779, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29780, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29781, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29782, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29783, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29784, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29785, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29786, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29787, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29788, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29789, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29790, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29791, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29792, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29793, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29794, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29795, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29796, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29797, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29798, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29799, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29800, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29801, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29802, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29803, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29804, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29805, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29806, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29807, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29808, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29809, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29810, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29811, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29812, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29813, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29814, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29815, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29816, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29817, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29818, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29819, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29820, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29821, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29822, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29823, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29824, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29825, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29826, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29827, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29828, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29829, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29830, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29831, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29832, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29833, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29834, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29835, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29836, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29837, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29838, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29839, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 29840, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 29841, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 29842, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 29843, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 29844, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 29845, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 29846, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 29847, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29848, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 29849, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 29850, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 29851, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 29852, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 29853, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 29854, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 29855, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 29856, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 29857, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 29858, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 29859, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 29860, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 29861, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 29862, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 29863, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 29864, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 29865, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "tall" + } + } + ] + }, + "minecraft:pale_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "pale_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10843, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10844, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10845, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10846, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10847, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10848, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10849, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10850, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10851, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10852, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10853, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10854, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10855, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10856, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10857, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10858, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10859, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10860, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10861, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10862, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10863, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10864, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10865, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10866, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14444, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14445, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14446, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14447, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14448, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14449, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14450, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14451, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14452, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14453, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14454, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14455, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14456, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14457, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14458, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14459, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14460, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14461, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14462, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14463, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14464, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14465, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14466, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14467, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14468, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14469, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14470, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14471, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14472, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14473, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14474, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14475, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14476, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14477, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14478, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14479, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14480, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14481, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14482, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14483, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14484, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14485, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14486, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14487, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14488, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14489, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14490, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14491, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14492, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14493, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14494, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14495, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14496, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14497, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14498, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14499, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14500, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14501, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14502, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14503, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14504, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14505, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14506, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14507, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13964, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13965, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13966, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13967, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13968, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13969, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13970, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13971, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13972, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13973, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13974, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13975, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13976, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13977, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13978, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13979, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13980, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13981, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13982, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13983, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13984, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13985, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13986, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13987, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13988, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13989, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13990, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13991, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13992, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13993, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13994, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13995, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pale_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13676, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13677, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13678, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13679, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13680, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13681, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13682, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13683, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13684, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13685, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13686, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13687, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13688, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13689, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13690, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13691, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13692, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13693, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13694, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13695, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13696, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13697, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13698, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13699, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13700, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13701, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13702, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13703, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13704, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13705, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13706, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13707, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6355, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6356, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6357, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6358, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6359, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6360, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6361, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6362, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6363, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6364, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6365, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6366, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6367, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6368, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6369, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6370, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6371, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6372, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6373, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6374, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6375, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6376, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6377, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6378, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6379, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6380, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6381, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6382, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6383, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6384, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6385, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6386, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6387, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6388, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6389, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6390, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6391, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6392, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6393, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6394, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6395, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6396, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6397, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6398, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6399, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6400, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6401, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6402, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6403, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6404, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6405, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6406, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6407, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6408, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6409, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6410, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6411, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6412, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6413, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6414, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6415, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6416, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6417, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6418, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:pale_oak_leaves" + }, + "leaf_particle_chance": 0.02, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 448, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 449, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 450, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 451, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 452, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 453, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 454, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 455, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 456, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 457, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 458, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 459, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 460, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 461, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 462, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 463, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 464, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 465, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 466, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 467, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 468, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 469, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 470, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 471, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 472, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 473, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 474, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 475, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 157, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 158, + "properties": { + "axis": "y" + } + }, + { + "id": 159, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:pale_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25 + } + ] + }, + "minecraft:pale_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6875, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6876, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "pale_oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 43, + "properties": { + "stage": "0" + } + }, + { + "id": 44, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:pale_oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3176, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3177, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3178, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3179, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3180, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3181, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3182, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3183, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3184, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3185, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3186, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3187, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3188, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3189, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3190, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3191, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3192, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3193, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3194, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3195, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3196, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3197, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3198, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3199, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3200, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3201, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3202, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3203, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3204, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3205, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3206, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3207, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3208, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3209, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3210, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3211, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3212, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3213, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3214, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3215, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3216, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3217, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3218, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3219, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3220, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3221, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3222, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3223, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3224, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3225, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3226, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3227, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3228, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3229, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3230, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3231, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3232, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3233, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3234, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3235, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3236, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3237, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3238, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3239, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5559, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5560, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5561, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5562, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5563, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5564, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5565, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5566, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5567, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5568, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5569, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5570, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5571, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5572, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5573, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5574, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5575, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5576, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5577, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5578, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5579, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5580, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5581, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5582, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5583, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5584, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5585, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5586, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5587, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5588, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5589, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5590, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13372, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13373, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13374, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13375, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13376, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13377, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:pale_oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12212, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12213, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12214, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12215, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12216, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12217, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12218, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12219, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12220, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12221, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12222, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12223, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12224, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12225, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12226, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12227, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12228, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12229, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12230, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12231, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12232, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12233, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12234, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12235, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12236, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12237, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12238, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12239, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12240, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12241, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12242, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12243, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12244, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12245, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12246, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12247, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12248, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12249, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12250, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12251, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12252, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12253, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12254, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12255, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12256, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12257, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12258, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12259, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12260, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12261, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12262, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12263, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12264, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12265, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12266, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12267, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12268, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12269, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12270, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12271, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12272, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12273, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12274, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12275, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12276, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12277, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12278, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12279, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12280, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12281, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12282, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12283, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12284, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12285, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12286, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12287, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12288, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12289, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12290, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12291, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7562, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7563, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7564, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7565, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7566, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7567, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7568, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7569, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7570, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7571, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7572, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7573, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7574, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7575, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7576, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7577, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7578, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7579, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7580, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7581, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7582, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7583, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7584, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7585, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7586, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7587, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7588, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7589, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7590, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7591, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7592, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7593, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7594, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7595, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7596, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7597, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7598, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7599, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7600, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7601, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7602, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7603, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7604, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7605, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7606, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7607, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7608, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7609, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7610, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7611, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7612, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7613, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7614, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7615, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7616, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7617, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7618, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7619, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7620, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7621, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7622, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7623, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7624, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7625, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6731, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6732, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6733, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6734, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6735, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6736, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6737, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6738, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5883, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5884, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5885, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5886, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5887, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5888, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5889, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5890, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 22, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 23, + "properties": { + "axis": "y" + } + }, + { + "id": 24, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:pearlescent_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 29588, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 29589, + "properties": { + "axis": "y" + } + }, + { + "id": 29590, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12921, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12922, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13420, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13421, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13422, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13423, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13424, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13425, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:piglin_head": { + "definition": { + "type": "minecraft:skull", + "kind": "piglin", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11155, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11156, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11157, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11158, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11159, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11160, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11161, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11162, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11163, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11164, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11165, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11166, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11167, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11168, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11169, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11170, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11171, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11172, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11173, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11174, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11175, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11176, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11177, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11178, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11179, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11180, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11181, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11182, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11183, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11184, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11185, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11186, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:piglin_wall_head": { + "definition": { + "type": "minecraft:piglinwallskull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11187, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11188, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11189, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11190, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11191, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11192, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11193, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11194, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:pink_banner": { + "definition": { + "type": "minecraft:banner", + "color": "pink", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13023, + "properties": { + "rotation": "0" + } + }, + { + "id": 13024, + "properties": { + "rotation": "1" + } + }, + { + "id": 13025, + "properties": { + "rotation": "2" + } + }, + { + "id": 13026, + "properties": { + "rotation": "3" + } + }, + { + "id": 13027, + "properties": { + "rotation": "4" + } + }, + { + "id": 13028, + "properties": { + "rotation": "5" + } + }, + { + "id": 13029, + "properties": { + "rotation": "6" + } + }, + { + "id": 13030, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13031, + "properties": { + "rotation": "8" + } + }, + { + "id": 13032, + "properties": { + "rotation": "9" + } + }, + { + "id": 13033, + "properties": { + "rotation": "10" + } + }, + { + "id": 13034, + "properties": { + "rotation": "11" + } + }, + { + "id": 13035, + "properties": { + "rotation": "12" + } + }, + { + "id": 13036, + "properties": { + "rotation": "13" + } + }, + { + "id": 13037, + "properties": { + "rotation": "14" + } + }, + { + "id": 13038, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "definition": { + "type": "minecraft:bed", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2027, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2028, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2029, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2030, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2031, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2032, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2033, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2034, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2035, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2036, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2037, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2038, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2039, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2040, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2041, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2042, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23208, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23209, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23210, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23211, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23212, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23213, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23214, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23215, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23216, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23217, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23218, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23219, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23220, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23221, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23222, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23223, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:pink_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23382, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23383, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12902 + } + ] + }, + "minecraft:pink_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15036 + } + ] + }, + "minecraft:pink_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:pink_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15052 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14990, + "properties": { + "facing": "north" + } + }, + { + "id": 14991, + "properties": { + "facing": "south" + } + }, + { + "id": 14992, + "properties": { + "facing": "west" + } + }, + { + "id": 14993, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_petals": { + "definition": { + "type": "minecraft:flower_bed", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 27814, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 27815, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 27816, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 27817, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 27818, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 27819, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 27820, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 27821, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 27822, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 27823, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 27824, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 27825, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 27826, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 27827, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 27828, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 27829, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14906, + "properties": { + "facing": "north" + } + }, + { + "id": 14907, + "properties": { + "facing": "east" + } + }, + { + "id": 14908, + "properties": { + "facing": "south" + } + }, + { + "id": 14909, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14910, + "properties": { + "facing": "up" + } + }, + { + "id": 14911, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7104 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "pink", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11652, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11653, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11654, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11655, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11656, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11657, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11658, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11659, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11660, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11661, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11662, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11663, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11664, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11665, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11666, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11667, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11668, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11669, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11670, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11671, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11672, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11673, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11674, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11675, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11676, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11677, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11678, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11679, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11680, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11681, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11682, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11683, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11450 + } + ] + }, + "minecraft:pink_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2331 + } + ] + }, + "minecraft:pink_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13207, + "properties": { + "facing": "north" + } + }, + { + "id": 13208, + "properties": { + "facing": "south" + } + }, + { + "id": 13209, + "properties": { + "facing": "west" + } + }, + { + "id": 13210, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2299 + } + ] + }, + "minecraft:piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": false + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2257, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2258, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2259, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2260, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2261, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2262, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2263, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2264, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2265, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2266, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2267, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2268, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "definition": { + "type": "minecraft:piston_head", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2269, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" + } + }, + { + "id": 2270, + "properties": { + "type": "sticky", + "facing": "north", + "short": "true" + } + }, + { + "default": true, + "id": 2271, + "properties": { + "type": "normal", + "facing": "north", + "short": "false" + } + }, + { + "id": 2272, + "properties": { + "type": "sticky", + "facing": "north", + "short": "false" + } + }, + { + "id": 2273, + "properties": { + "type": "normal", + "facing": "east", + "short": "true" + } + }, + { + "id": 2274, + "properties": { + "type": "sticky", + "facing": "east", + "short": "true" + } + }, + { + "id": 2275, + "properties": { + "type": "normal", + "facing": "east", + "short": "false" + } + }, + { + "id": 2276, + "properties": { + "type": "sticky", + "facing": "east", + "short": "false" + } + }, + { + "id": 2277, + "properties": { + "type": "normal", + "facing": "south", + "short": "true" + } + }, + { + "id": 2278, + "properties": { + "type": "sticky", + "facing": "south", + "short": "true" + } + }, + { + "id": 2279, + "properties": { + "type": "normal", + "facing": "south", + "short": "false" + } + }, + { + "id": 2280, + "properties": { + "type": "sticky", + "facing": "south", + "short": "false" + } + }, + { + "id": 2281, + "properties": { + "type": "normal", + "facing": "west", + "short": "true" + } + }, + { + "id": 2282, + "properties": { + "type": "sticky", + "facing": "west", + "short": "true" + } + }, + { + "id": 2283, + "properties": { + "type": "normal", + "facing": "west", + "short": "false" + } + }, + { + "id": 2284, + "properties": { + "type": "sticky", + "facing": "west", + "short": "false" + } + }, + { + "id": 2285, + "properties": { + "type": "normal", + "facing": "up", + "short": "true" + } + }, + { + "id": 2286, + "properties": { + "type": "sticky", + "facing": "up", + "short": "true" + } + }, + { + "id": 2287, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 2288, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2289, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2290, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 2291, + "properties": { + "type": "normal", + "facing": "down", + "short": "false" + } + }, + { + "id": 2292, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "definition": { + "type": "minecraft:pitcher_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 14799, + "properties": { + "age": "0", + "half": "upper" + } + }, + { + "default": true, + "id": 14800, + "properties": { + "age": "0", + "half": "lower" + } + }, + { + "id": 14801, + "properties": { + "age": "1", + "half": "upper" + } + }, + { + "id": 14802, + "properties": { + "age": "1", + "half": "lower" + } + }, + { + "id": 14803, + "properties": { + "age": "2", + "half": "upper" + } + }, + { + "id": 14804, + "properties": { + "age": "2", + "half": "lower" + } + }, + { + "id": 14805, + "properties": { + "age": "3", + "half": "upper" + } + }, + { + "id": 14806, + "properties": { + "age": "3", + "half": "lower" + } + }, + { + "id": 14807, + "properties": { + "age": "4", + "half": "upper" + } + }, + { + "id": 14808, + "properties": { + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 14809, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 14810, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:player_head": { + "definition": { + "type": "minecraft:player_head", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11035, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11036, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11037, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11038, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11039, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11040, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11041, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11042, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11043, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11044, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11045, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11046, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11047, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11048, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11049, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11050, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11051, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11052, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11053, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11054, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11055, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11056, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11057, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11058, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11059, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11060, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11061, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11062, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11063, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11064, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11065, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11066, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "definition": { + "type": "minecraft:player_wall_head", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11067, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11068, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11069, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11070, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11071, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11072, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11073, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11074, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:podzol": { + "definition": { + "type": "minecraft:snowy_dirt", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 13, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "definition": { + "type": "minecraft:pointed_dripstone", + "properties": {} + }, + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27735, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 27736, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 27737, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 27738, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 27739, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27740, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 27741, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 27742, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 27743, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 27744, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 27745, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 27746, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 27747, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 27748, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 27749, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 27750, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 27751, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 27752, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 27753, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 27754, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16482, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16483, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16484, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16485, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16486, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16487, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16256, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16257, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16258, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16259, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16260, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16261, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16262, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16263, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16264, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16265, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16270, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16271, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16272, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16273, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16274, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16275, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16276, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16277, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16278, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16279, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16280, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16281, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16282, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16283, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16284, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16285, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16290, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16291, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16292, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16293, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16294, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16295, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16296, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16297, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16298, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16299, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16300, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16301, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16302, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16303, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16304, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16305, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16310, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16311, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16312, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16313, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16314, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16315, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16316, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16317, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16318, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16319, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16320, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16321, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16322, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16323, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16324, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16325, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16330, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16331, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16332, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16333, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16334, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16335, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 7003, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 7004, + "properties": { + "axis": "y" + } + }, + { + "id": 7005, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22242 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22246, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22247, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22248, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22249, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22250, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22251, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22252, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22253, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22254, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22255, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22256, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22257, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22258, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22259, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22260, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22261, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22262, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22263, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22264, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22265, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22270, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22271, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22272, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22273, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22274, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22275, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22276, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22277, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22278, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22279, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22280, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22281, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22282, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22283, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22284, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22285, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22290, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22291, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22292, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22293, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22294, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22295, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22296, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22297, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22298, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22299, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22300, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22301, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22302, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22303, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22304, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22305, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22310, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22311, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22312, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22313, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22314, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22315, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22316, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22317, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22318, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22319, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22320, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22321, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22322, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22323, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22324, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22325, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22330, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22331, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 22332, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22333, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22334, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 22335, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22336, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22337, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22338, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22339, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22340, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22341, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22342, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22343, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22344, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22345, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22346, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22347, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22348, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22349, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22350, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22351, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22352, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22353, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22354, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22355, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22356, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22357, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22358, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22359, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22360, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22361, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22362, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22363, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22364, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22365, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22366, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22367, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22368, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22369, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22370, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22371, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22372, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22373, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22374, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22375, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22376, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22377, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22378, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22379, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22380, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22381, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22382, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22383, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22384, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22385, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22386, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22387, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22388, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22389, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22390, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22391, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22392, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22393, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22394, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22395, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22396, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22397, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22398, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22399, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22400, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22401, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22402, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22403, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22404, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22405, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22406, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22407, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22408, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22409, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22410, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22411, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22412, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22413, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22414, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22415, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22416, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22417, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22418, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22419, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22420, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22421, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22422, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22423, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22424, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22425, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22426, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22427, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22428, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22429, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22430, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22431, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22432, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22433, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22434, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22435, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22436, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22437, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22438, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22439, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22440, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22441, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22442, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22443, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22444, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22445, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22446, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22447, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22448, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22449, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22450, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22451, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22452, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22453, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22454, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22455, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22456, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22457, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22458, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22459, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22460, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22461, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22462, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22463, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22464, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22465, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22466, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22467, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22468, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22469, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22470, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22471, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22472, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22473, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22474, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22475, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22476, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22477, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22478, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22479, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22480, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22481, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22482, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22483, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22484, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22485, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22486, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22487, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22488, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22489, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22490, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22491, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22492, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22493, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22494, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22495, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22496, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22497, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22498, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22499, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22500, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22501, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22502, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22503, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22504, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22505, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22506, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22507, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22508, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22509, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22510, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22511, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22512, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22513, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22514, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22515, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22516, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22517, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22518, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22519, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22520, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22521, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22522, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22523, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22524, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22525, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22526, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22527, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22528, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22529, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22530, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22531, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22532, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22533, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22534, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22535, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22536, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22537, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22538, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22539, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22540, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22541, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22542, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22543, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22544, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22545, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22546, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22547, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22548, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22549, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22550, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22551, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22552, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22553, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22554, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22555, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22556, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22557, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22558, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22559, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22560, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22561, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22562, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22563, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22564, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22565, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22566, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22567, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22568, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22569, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22570, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22571, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22572, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22573, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22574, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22575, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22576, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22577, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22578, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22579, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22580, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22581, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22582, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22583, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22584, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22585, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22586, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22587, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22588, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22589, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22590, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22591, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22592, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22593, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22594, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22595, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22596, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22597, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22598, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22599, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22600, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22601, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22602, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22603, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22604, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22605, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22606, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22607, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22608, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22609, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22610, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22611, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22612, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22613, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22614, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22615, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22616, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22617, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22618, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22619, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22620, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22621, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22622, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22623, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22624, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22625, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22626, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22627, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22628, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22629, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22630, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22631, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22632, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22633, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22634, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22635, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22636, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22637, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22638, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22639, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22640, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22641, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22642, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22643, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22644, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22645, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22646, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22647, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22648, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22649, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22650, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22651, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22652, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22653, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22654, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22655, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22243 + } + ] + }, + "minecraft:polished_blackstone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22745, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 22746, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22747, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22748, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22749, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22750, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22751, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22752, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 22753, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 22754, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22755, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22756, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22757, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22758, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22759, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22760, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 22761, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 22762, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22763, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22764, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22765, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22766, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22767, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22768, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "polished_blackstone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22743, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 22744, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22737, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22738, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22739, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22740, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22741, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22742, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22657, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22658, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22659, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22660, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22661, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22662, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22663, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22664, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22665, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22666, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22667, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22668, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22669, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22670, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22671, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22672, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22673, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22674, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22675, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22676, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22677, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22678, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22679, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22680, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22681, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22682, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22683, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22684, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22685, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22686, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22687, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22688, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22689, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22690, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22691, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22692, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22693, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22694, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22695, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22696, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22697, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22698, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22699, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22700, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22701, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22702, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22703, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22704, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22705, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22706, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22707, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22708, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22709, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22710, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22711, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22712, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22713, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22714, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22715, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22716, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22717, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22718, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22719, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22720, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22721, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22722, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22723, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22724, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22725, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22726, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22727, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22728, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22729, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22730, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22731, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22732, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22733, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22734, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22735, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22736, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 22769, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22770, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22771, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 22772, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22773, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22774, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22775, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22776, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22777, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22778, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22779, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22781, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22782, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22783, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22784, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22785, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22786, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22787, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22788, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22789, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22790, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22791, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22793, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22794, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22795, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22796, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22797, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22798, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22799, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22800, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22801, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22802, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22803, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22805, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22806, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22807, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22808, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22809, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22810, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22811, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22812, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22813, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22814, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22815, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22817, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22818, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22819, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22820, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22821, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22822, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22823, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22824, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22825, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22826, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22827, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22829, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22830, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22831, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22832, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22833, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22834, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22835, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22836, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22837, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22838, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22839, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22841, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22842, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22843, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22844, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22845, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22846, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22847, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22848, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22849, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22850, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22851, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22853, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22854, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22855, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22856, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22857, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22858, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22859, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22860, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22861, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22862, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22863, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22865, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22866, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22867, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22868, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22869, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22870, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22871, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22872, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22873, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22874, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22877, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22878, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22879, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22880, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22881, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22882, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22883, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22884, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22885, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22886, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22887, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22889, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22890, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22891, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22892, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22893, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22894, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22895, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22896, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22897, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22898, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22899, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22901, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22902, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22903, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22904, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22905, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22906, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22907, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22908, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22909, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22910, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22911, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22913, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22914, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22915, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22916, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22917, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22918, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22919, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22920, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22921, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22922, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22923, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22925, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22926, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22927, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22928, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22929, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22930, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22931, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22932, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22933, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22934, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22935, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22937, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22938, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22939, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22940, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22941, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22942, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22943, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22944, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22945, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22946, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22947, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22949, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22950, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22951, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22952, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22953, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22954, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22955, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22956, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22957, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22958, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22959, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22961, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22962, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22963, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22964, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22965, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22966, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22967, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22968, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22969, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22970, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22971, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22973, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22974, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22975, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22976, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22977, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22978, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22979, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22980, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22981, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22982, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22985, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22986, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22987, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22988, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22989, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22990, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22991, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22992, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22993, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22994, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22995, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22997, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22998, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22999, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23000, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23001, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23002, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23003, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23004, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23005, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23006, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23007, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23009, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23010, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23011, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23012, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23013, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23014, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23015, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23016, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23017, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23018, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23021, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23022, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23023, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23024, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23025, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23026, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23027, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23028, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23029, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23030, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23031, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23033, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23034, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23035, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23036, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23037, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23038, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23039, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23040, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23041, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23042, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23043, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23045, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23046, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23047, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23048, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23049, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23050, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23051, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23052, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23053, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23054, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23057, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23058, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23059, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23060, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23061, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23062, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23063, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23064, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23065, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23066, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23067, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23069, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23070, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23071, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23072, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23073, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23074, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23075, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23076, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23077, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23078, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23081, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23082, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23083, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23084, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23085, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23086, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23087, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23088, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23089, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23090, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 28337 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28418, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28419, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28420, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28421, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28422, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28423, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28338, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28339, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28340, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28341, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28342, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28343, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28344, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28345, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28346, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28347, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28348, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28349, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28350, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28351, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28352, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28353, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28354, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28356, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28357, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28358, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28359, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28360, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28361, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28362, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28363, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28364, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28365, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28366, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28367, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28368, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28369, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28370, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28371, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28372, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28373, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28374, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28376, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28377, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28378, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28379, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28380, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28381, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28382, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28383, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28384, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28385, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28386, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28387, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28388, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28389, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28390, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28391, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28392, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28393, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28394, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28396, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28397, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28398, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28399, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28400, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28401, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28402, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28403, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28404, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28405, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28406, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28407, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28408, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28409, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28410, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28411, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28412, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28413, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28414, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28416, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28417, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 28424, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28425, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28426, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 28427, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28428, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28429, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28430, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28431, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28432, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28433, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28434, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28435, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28436, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28437, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28438, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28439, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28440, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28441, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28442, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28443, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28444, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28445, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28446, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28447, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28448, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28449, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28450, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28451, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28452, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28453, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28454, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28455, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28456, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28459, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28460, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28461, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28462, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28463, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28464, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28465, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28466, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28467, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28468, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28469, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28470, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28471, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28472, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28473, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28474, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28475, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28476, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28477, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28478, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28479, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28480, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28481, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28482, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28483, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28484, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28485, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28486, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28487, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28488, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28489, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28490, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28491, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28492, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28495, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28496, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28497, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28498, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28499, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28500, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28501, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28502, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28503, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28504, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28505, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28506, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28507, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28508, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28509, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28510, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28511, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28512, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28513, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28514, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28515, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28516, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28517, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28518, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28519, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28520, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28521, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28522, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28523, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28529, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28530, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28531, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28532, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28533, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28534, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28535, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28536, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28537, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28538, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28539, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28540, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28541, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28542, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28543, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28544, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28545, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28546, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28547, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28548, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28549, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28550, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28551, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28552, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28553, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28554, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28555, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28556, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28557, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28558, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28559, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28560, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28561, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28562, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28563, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28564, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28565, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28566, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28567, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28568, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28569, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28570, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28571, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28572, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28573, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28574, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28575, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28576, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28577, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28578, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28579, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28580, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28581, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28582, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28583, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28584, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28585, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28586, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28587, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28588, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28589, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28590, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28591, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28592, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28593, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28594, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28595, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28596, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28597, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28598, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28599, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28600, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28601, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28602, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28603, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28604, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28605, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28606, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28607, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28608, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28609, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28610, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28611, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28612, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28613, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28614, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28615, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28616, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28617, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28618, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28619, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28620, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28621, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28622, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28623, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28624, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28625, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28626, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28627, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28628, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28629, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28630, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28631, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28637, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28638, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28639, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28640, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28641, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28642, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28643, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28644, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28645, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28646, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28647, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28648, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28649, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28650, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28651, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28652, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28653, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28654, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28655, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28656, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28657, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28658, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28659, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28660, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28664, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28665, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28666, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28667, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28676, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28677, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28678, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28679, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28680, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28681, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28682, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28683, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28684, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28685, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28686, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28687, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28688, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28689, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28690, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28691, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28692, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28693, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28694, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28695, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28696, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28700, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28701, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28702, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28703, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28712, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28713, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28714, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28715, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28716, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28717, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28718, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28719, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28720, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28721, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28722, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28723, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28724, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28725, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28726, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28727, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28736, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28737, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28738, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28739, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 28742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 28743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 28744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 28745, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 28746, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 28747, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16434, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16435, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16436, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16437, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16438, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16439, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15536, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15537, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15538, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15539, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15540, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15541, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15542, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15543, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15544, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15545, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15546, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15547, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15548, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15549, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15550, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15551, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15552, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15553, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15554, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15555, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15556, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15557, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15558, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15559, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15560, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15561, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15562, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15563, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15564, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15565, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15566, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15567, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15568, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15569, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15570, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15571, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15572, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15573, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15574, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15575, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15576, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15577, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15578, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15579, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15580, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15581, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15582, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15583, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15584, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15585, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15586, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15587, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15588, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15589, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15590, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15591, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15592, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15593, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15594, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15595, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15596, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15597, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15598, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15599, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15600, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15601, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15602, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15603, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15604, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15605, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15606, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15607, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15608, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15609, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15610, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15611, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15612, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15613, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15614, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15615, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16416, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16417, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16418, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16419, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16420, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16421, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15296, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15297, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15298, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15299, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15300, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15301, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15302, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15303, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15304, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15305, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15306, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15307, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15308, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15309, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15310, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15311, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15312, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15313, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15314, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15315, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15316, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15317, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15318, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15319, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15320, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15321, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15322, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15323, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15324, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15325, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15326, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15327, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15328, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15329, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15330, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15331, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15332, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15333, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15334, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15335, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15336, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15337, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15338, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15339, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15340, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15341, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15342, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15343, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15344, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15345, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15346, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15347, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15348, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15349, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15350, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15351, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15352, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15353, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15354, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15355, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15356, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15357, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15358, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15359, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15360, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15361, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15362, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15363, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15364, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15365, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15366, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15367, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15368, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15369, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15370, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15371, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15372, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15373, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15374, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23863 + } + ] + }, + "minecraft:polished_tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23864, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23865, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23866, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23867, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23868, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23869, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23870, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23871, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23872, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23873, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23874, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23875, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23876, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23877, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23878, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23879, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23880, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23881, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23882, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23883, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23890, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23891, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23892, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23893, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23894, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23895, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23896, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23897, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23898, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23899, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23900, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23901, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23902, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23903, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23910, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23911, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23912, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23913, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23914, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23915, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23916, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23917, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23918, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23919, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23920, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23921, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23922, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23923, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23930, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23931, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23932, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23933, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23934, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23935, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23936, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23937, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23938, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23939, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23940, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23941, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23942, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23943, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23950, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23951, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23952, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23953, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23954, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23955, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23956, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23957, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23958, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23959, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23960, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23961, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23962, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23963, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23964, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23965, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23966, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23967, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23968, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23969, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23970, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23971, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23972, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23973, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23974, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23975, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23976, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23977, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23978, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23979, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23980, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23981, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23982, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23983, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23984, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23985, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23986, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23987, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23988, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23989, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23990, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23991, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23992, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23993, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23994, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23995, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23996, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23997, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23998, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23999, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24000, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24001, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24002, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24003, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24004, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24005, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24006, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24007, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24008, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24009, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24010, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24011, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24012, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24013, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24014, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24015, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24016, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24017, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24018, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24019, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24020, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24021, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24022, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24023, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24024, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24025, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24026, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24027, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24028, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24029, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24030, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24031, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24032, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24033, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24034, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24035, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24036, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24037, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24038, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24039, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24040, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24041, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24042, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24043, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24044, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24045, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24046, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24047, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24048, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24049, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24050, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24051, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24052, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24053, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24054, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24055, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24056, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24057, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24058, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24059, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24060, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24061, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24062, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24063, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24064, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24065, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24066, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24067, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24068, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24069, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24070, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24071, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24072, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24073, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24074, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24075, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24076, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24077, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24078, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24079, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24080, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24081, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24082, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24083, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24084, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24085, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24086, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24087, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24088, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24089, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24090, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24091, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24092, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24093, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24094, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24095, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24096, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24097, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24098, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24099, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24100, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24101, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24102, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24103, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24104, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24105, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24106, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24107, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24108, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24109, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24110, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24111, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24112, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24113, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24114, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24115, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24116, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24117, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24118, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24119, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24120, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24121, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24122, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24123, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24124, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24125, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24126, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24127, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24128, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24129, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24130, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24131, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24132, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24133, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24134, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24135, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24136, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24137, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24138, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24139, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24140, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24141, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24142, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24143, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24144, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24145, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24146, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24147, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24148, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24149, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24150, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24151, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24152, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24153, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24154, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24155, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24156, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24157, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24158, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24159, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24160, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24161, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24162, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24163, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24164, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24165, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24166, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24167, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24168, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24169, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24170, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24171, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24172, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24173, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24174, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24175, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24176, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24177, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24178, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24179, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24180, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24181, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24182, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24183, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24184, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24185, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24186, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24187, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24188, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24189, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24190, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24191, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24192, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24193, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24194, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24195, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24196, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24197, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24198, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24199, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24200, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24201, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24202, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24203, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24204, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24205, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24206, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24207, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24208, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24209, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24210, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24211, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24212, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24213, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24214, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24215, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24216, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24217, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24218, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24219, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24220, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24221, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24222, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24223, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24224, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24225, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24226, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24227, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24228, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24229, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24230, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24231, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24232, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24233, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24234, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24235, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24236, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24237, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24238, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24239, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24240, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24241, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24242, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24243, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24244, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24245, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24246, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24247, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24248, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24249, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24250, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24251, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24252, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24253, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24254, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24255, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24256, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24257, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24258, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24259, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24260, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24261, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24262, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24263, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24264, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24265, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24266, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24267, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24268, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24269, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24270, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24271, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24272, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24273, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:poppy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2324 + } + ] + }, + "minecraft:potatoes": { + "definition": { + "type": "minecraft:potato", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 10667, + "properties": { + "age": "0" + } + }, + { + "id": 10668, + "properties": { + "age": "1" + } + }, + { + "id": 10669, + "properties": { + "age": "2" + } + }, + { + "id": 10670, + "properties": { + "age": "3" + } + }, + { + "id": 10671, + "properties": { + "age": "4" + } + }, + { + "id": 10672, + "properties": { + "age": "5" + } + }, + { + "id": 10673, + "properties": { + "age": "6" + } + }, + { + "id": 10674, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:acacia_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10635 + } + ] + }, + "minecraft:potted_allium": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:allium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10645 + } + ] + }, + "minecraft:potted_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29580 + } + ] + }, + "minecraft:potted_azure_bluet": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azure_bluet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10646 + } + ] + }, + "minecraft:potted_bamboo": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:bamboo", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15291 + } + ] + }, + "minecraft:potted_birch_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:birch_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10633 + } + ] + }, + "minecraft:potted_blue_orchid": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:blue_orchid", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10644 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10656 + } + ] + }, + "minecraft:potted_cactus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cactus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10658 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cherry_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10636 + } + ] + }, + "minecraft:potted_closed_eyeblossom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:closed_eyeblossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29871 + } + ] + }, + "minecraft:potted_cornflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cornflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10652 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21826 + } + ] + }, + "minecraft:potted_crimson_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21828 + } + ] + }, + "minecraft:potted_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dandelion", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10641 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dark_oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10637 + } + ] + }, + "minecraft:potted_dead_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dead_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10657 + } + ] + }, + "minecraft:potted_fern": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:fern", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10640 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:flowering_azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29581 + } + ] + }, + "minecraft:potted_golden_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:golden_dandelion", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10642 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:jungle_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10634 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:lily_of_the_valley", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10653 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:mangrove_propagule", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10639 + } + ] + }, + "minecraft:potted_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10631 + } + ] + }, + "minecraft:potted_open_eyeblossom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:open_eyeblossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29870 + } + ] + }, + "minecraft:potted_orange_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:orange_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10648 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oxeye_daisy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10651 + } + ] + }, + "minecraft:potted_pale_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pale_oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10638 + } + ] + }, + "minecraft:potted_pink_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pink_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10650 + } + ] + }, + "minecraft:potted_poppy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:poppy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10643 + } + ] + }, + "minecraft:potted_red_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10655 + } + ] + }, + "minecraft:potted_red_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10647 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:spruce_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10632 + } + ] + }, + "minecraft:potted_torchflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:torchflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10630 + } + ] + }, + "minecraft:potted_warped_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21827 + } + ] + }, + "minecraft:potted_warped_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21829 + } + ] + }, + "minecraft:potted_white_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:white_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10649 + } + ] + }, + "minecraft:potted_wither_rose": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:wither_rose", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10654 + } + ] + }, + "minecraft:powder_snow": { + "definition": { + "type": "minecraft:powder_snow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24689 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "powder_snow", + "precipitation": "snow", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9465, + "properties": { + "level": "1" + } + }, + { + "id": 9466, + "properties": { + "level": "2" + } + }, + { + "id": 9467, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2187, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 2188, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2189, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2190, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2191, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2192, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2193, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2194, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2195, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2196, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2197, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2198, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 2199, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2200, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2201, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2202, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2203, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2204, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2205, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2206, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2207, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2208, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2209, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2210, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12631 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12880, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12881, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12882, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12883, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12884, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12885, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12714, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12715, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12716, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12717, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12718, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12719, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12720, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12721, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12722, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12723, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12724, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12725, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12726, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12727, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12728, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12729, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12730, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12731, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12732, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12733, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12734, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12735, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12736, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12737, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12738, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12739, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12740, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12741, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12742, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12743, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12744, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12745, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12746, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12747, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12748, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12749, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12750, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12751, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12752, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12753, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12754, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12755, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12756, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12757, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12758, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12759, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12760, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12761, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12762, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12763, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12764, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12765, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12766, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12767, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12768, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12769, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12770, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12771, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12772, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12773, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12774, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12775, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12776, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12777, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12778, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12779, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12780, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12781, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12782, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12783, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12784, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12785, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12786, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12787, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12788, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12789, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12790, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12791, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12792, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12793, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12632 + } + ] + }, + "minecraft:prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12874, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12875, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12876, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12877, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12878, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12879, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12634, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12635, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12636, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12637, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12638, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12639, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12640, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12641, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12642, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12643, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12644, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12646, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12647, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12648, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12649, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12650, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12651, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12652, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12653, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12654, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12655, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12656, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12657, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12658, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12659, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12660, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12661, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12662, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12663, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12664, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12666, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12667, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12668, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12669, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12670, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12671, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12672, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12673, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12674, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12675, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12676, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12677, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12678, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12679, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12680, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12681, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12682, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12683, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12684, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12686, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12687, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12688, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12689, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12690, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12691, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12692, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12693, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12694, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12695, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12696, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12697, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12698, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12699, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12700, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12701, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12702, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12703, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12704, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12706, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12707, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12708, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12709, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12710, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12711, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12712, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12713, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16820, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16821, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16822, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16823, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16824, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16825, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16826, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16827, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16828, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16829, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16832, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16833, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16834, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16835, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16836, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16837, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16838, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16839, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16840, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16841, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16844, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16845, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16846, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16847, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16848, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16849, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16850, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16851, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16852, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16853, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16856, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16857, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16858, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16859, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16860, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16861, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16862, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16863, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16864, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16865, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16868, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16869, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16870, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16871, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16872, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16873, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16874, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16875, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16876, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16877, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16880, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16881, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16882, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16883, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16884, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16885, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16886, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16887, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16888, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16889, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16890, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16891, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16892, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16893, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16894, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16895, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16896, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16897, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16898, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16899, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16900, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16901, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16902, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16903, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16904, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16905, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16906, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16907, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16908, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16909, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16910, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16911, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16912, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16913, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16914, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16915, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16916, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16917, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16918, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16919, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16920, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16921, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16922, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16923, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16924, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16925, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16926, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16927, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16928, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16929, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16930, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16931, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16932, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16933, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16934, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16935, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16936, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16937, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16938, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16939, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16940, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16941, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16942, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16943, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16944, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16945, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16946, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16947, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16948, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16949, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16950, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16951, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16952, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16953, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16954, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16955, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16956, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16957, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16958, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16959, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16960, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16961, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16962, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16963, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16964, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16965, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16966, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16967, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16968, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16969, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16970, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16971, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16972, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16973, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16974, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16975, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16976, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16977, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16978, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16979, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16980, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16981, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16983, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16984, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16985, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16986, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16987, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16988, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16989, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16990, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16991, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16992, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16993, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16994, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16995, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16996, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16997, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16998, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16999, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17000, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17001, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17002, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17003, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17004, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17005, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17006, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17007, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17017, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17018, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17019, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17020, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17021, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17022, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17023, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17024, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17025, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17026, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17027, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17028, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17029, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17030, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17031, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17032, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17033, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17036, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17037, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17038, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17039, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17040, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17041, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17042, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17043, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17053, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17054, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17055, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17056, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17057, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17060, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17061, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17062, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17063, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17064, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17065, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17066, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17067, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17068, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17069, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17072, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17073, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17074, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17075, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17076, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17077, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17078, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17079, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17089, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17090, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17091, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17092, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17093, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17096, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17097, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17098, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17099, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17100, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17101, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17102, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17103, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17113, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17114, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17115, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17125, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17126, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17127, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17128, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17129, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17132, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17133, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17134, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17135, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17136, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17137, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17138, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17139, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17140, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17141, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "definition": { + "type": "minecraft:pumpkin", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8332 + } + ] + }, + "minecraft:pumpkin_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_pumpkin_stem", + "fruit": "minecraft:pumpkin", + "fruit_support_blocks": "minecraft:supports_pumpkin_stem_fruit", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem_support_blocks": "minecraft:supports_pumpkin_stem" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8342, + "properties": { + "age": "0" + } + }, + { + "id": 8343, + "properties": { + "age": "1" + } + }, + { + "id": 8344, + "properties": { + "age": "2" + } + }, + { + "id": 8345, + "properties": { + "age": "3" + } + }, + { + "id": 8346, + "properties": { + "age": "4" + } + }, + { + "id": 8347, + "properties": { + "age": "5" + } + }, + { + "id": 8348, + "properties": { + "age": "6" + } + }, + { + "id": 8349, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "definition": { + "type": "minecraft:banner", + "color": "purple", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13087, + "properties": { + "rotation": "0" + } + }, + { + "id": 13088, + "properties": { + "rotation": "1" + } + }, + { + "id": 13089, + "properties": { + "rotation": "2" + } + }, + { + "id": 13090, + "properties": { + "rotation": "3" + } + }, + { + "id": 13091, + "properties": { + "rotation": "4" + } + }, + { + "id": 13092, + "properties": { + "rotation": "5" + } + }, + { + "id": 13093, + "properties": { + "rotation": "6" + } + }, + { + "id": 13094, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13095, + "properties": { + "rotation": "8" + } + }, + { + "id": 13096, + "properties": { + "rotation": "9" + } + }, + { + "id": 13097, + "properties": { + "rotation": "10" + } + }, + { + "id": 13098, + "properties": { + "rotation": "11" + } + }, + { + "id": 13099, + "properties": { + "rotation": "12" + } + }, + { + "id": 13100, + "properties": { + "rotation": "13" + } + }, + { + "id": 13101, + "properties": { + "rotation": "14" + } + }, + { + "id": 13102, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "definition": { + "type": "minecraft:bed", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2091, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2092, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2093, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2094, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2095, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2096, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2097, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2098, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2099, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2100, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2101, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2102, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2103, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2104, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2105, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2106, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23272, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23273, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23274, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23275, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23276, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23277, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23278, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23279, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23280, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23281, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23282, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23283, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23284, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23285, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23286, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23287, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:purple_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23390, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23391, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12906 + } + ] + }, + "minecraft:purple_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15040 + } + ] + }, + "minecraft:purple_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:purple_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15056 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15006, + "properties": { + "facing": "north" + } + }, + { + "id": 15007, + "properties": { + "facing": "south" + } + }, + { + "id": 15008, + "properties": { + "facing": "west" + } + }, + { + "id": 15009, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14930, + "properties": { + "facing": "north" + } + }, + { + "id": 14931, + "properties": { + "facing": "east" + } + }, + { + "id": 14932, + "properties": { + "facing": "south" + } + }, + { + "id": 14933, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14934, + "properties": { + "facing": "up" + } + }, + { + "id": 14935, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7108 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "purple", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11783, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11787, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11791, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11795, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11799, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11803, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11807, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11811, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11454 + } + ] + }, + "minecraft:purple_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13223, + "properties": { + "facing": "north" + } + }, + { + "id": 13224, + "properties": { + "facing": "south" + } + }, + { + "id": 13225, + "properties": { + "facing": "west" + } + }, + { + "id": 13226, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2303 + } + ] + }, + "minecraft:purpur_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14712 + } + ] + }, + "minecraft:purpur_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 14713, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 14714, + "properties": { + "axis": "y" + } + }, + { + "id": 14715, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13474, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13475, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13476, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13477, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13478, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13479, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:purpur_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14716, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14717, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14718, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14719, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14720, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14721, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14722, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14723, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14724, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14725, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14726, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14727, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14728, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14729, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14730, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14731, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14732, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14733, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14734, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14735, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14736, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14737, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14738, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14739, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14740, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14741, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14742, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14743, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14744, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14745, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14746, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14747, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14748, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14749, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14750, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14751, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14752, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14753, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14754, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14755, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14756, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14757, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14758, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14759, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14760, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14761, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14762, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14763, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14764, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14765, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14766, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14767, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14768, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14769, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14770, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14771, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14772, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14773, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14774, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14775, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14776, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14777, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14778, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14779, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14780, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14781, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14782, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14783, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14784, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14785, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14786, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14787, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14788, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14789, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14790, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14791, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14792, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14793, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14794, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14795, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11323 + } + ] + }, + "minecraft:quartz_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23095 + } + ] + }, + "minecraft:quartz_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 11325, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 11326, + "properties": { + "axis": "y" + } + }, + { + "id": 11327, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13456, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13457, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13458, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13459, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13460, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13461, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:quartz_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11328, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11339, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11342, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11348, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11349, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11350, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11351, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11352, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11353, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11354, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11355, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11356, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11357, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11359, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11360, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11361, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11362, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11363, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11364, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11365, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11367, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11368, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11369, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11370, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11371, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11372, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11373, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11374, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11375, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11376, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11377, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11379, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11380, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11381, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11382, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11383, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11384, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11385, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11387, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11388, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11389, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11390, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11391, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11392, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11393, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11394, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11395, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11396, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11397, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11399, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11400, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11401, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11402, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11403, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11404, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11405, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11407, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "definition": { + "type": "minecraft:rail", + "properties": {} + }, + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5727, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5728, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 5729, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 5730, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 5731, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 5732, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 5733, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 5734, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 5735, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 5736, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 5737, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 5738, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 5739, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 5740, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 5741, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 5742, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 5743, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 5744, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 5745, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 5746, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29578 + } + ] + }, + "minecraft:raw_gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29579 + } + ] + }, + "minecraft:raw_iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29577 + } + ] + }, + "minecraft:red_banner": { + "definition": { + "type": "minecraft:banner", + "color": "red", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13151, + "properties": { + "rotation": "0" + } + }, + { + "id": 13152, + "properties": { + "rotation": "1" + } + }, + { + "id": 13153, + "properties": { + "rotation": "2" + } + }, + { + "id": 13154, + "properties": { + "rotation": "3" + } + }, + { + "id": 13155, + "properties": { + "rotation": "4" + } + }, + { + "id": 13156, + "properties": { + "rotation": "5" + } + }, + { + "id": 13157, + "properties": { + "rotation": "6" + } + }, + { + "id": 13158, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13159, + "properties": { + "rotation": "8" + } + }, + { + "id": 13160, + "properties": { + "rotation": "9" + } + }, + { + "id": 13161, + "properties": { + "rotation": "10" + } + }, + { + "id": 13162, + "properties": { + "rotation": "11" + } + }, + { + "id": 13163, + "properties": { + "rotation": "12" + } + }, + { + "id": 13164, + "properties": { + "rotation": "13" + } + }, + { + "id": 13165, + "properties": { + "rotation": "14" + } + }, + { + "id": 13166, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "definition": { + "type": "minecraft:bed", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2155, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2156, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2157, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2158, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2159, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2160, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2161, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2162, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2163, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2164, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2165, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2166, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2167, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2168, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2169, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2170, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23336, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23337, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23338, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23339, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23340, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23341, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23342, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23343, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23344, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23345, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23346, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23347, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23348, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23349, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23350, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23351, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:red_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23398, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23399, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12910 + } + ] + }, + "minecraft:red_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15044 + } + ] + }, + "minecraft:red_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:red_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15060 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15022, + "properties": { + "facing": "north" + } + }, + { + "id": 15023, + "properties": { + "facing": "south" + } + }, + { + "id": 15024, + "properties": { + "facing": "west" + } + }, + { + "id": 15025, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2337 + } + ] + }, + "minecraft:red_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7830, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7831, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7832, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7833, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7834, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7835, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7836, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7837, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7838, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7839, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7840, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7841, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7842, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7843, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7844, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7845, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7846, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7847, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7848, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7849, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7850, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7851, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7852, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7853, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7854, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7855, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7856, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7857, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7858, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7859, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7860, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7861, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7862, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7863, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7864, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7865, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7866, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7867, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7868, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7869, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7870, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7871, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7872, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7873, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7874, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7875, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7876, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7877, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7878, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7879, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7880, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7881, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7882, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7883, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7884, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7885, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7886, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7887, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7888, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7889, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7890, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7891, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7892, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7893, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16476, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16477, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16478, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16479, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16480, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16481, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16176, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16177, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16178, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16179, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16180, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16181, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16182, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16183, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16184, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16185, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16186, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16187, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16188, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16189, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16190, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16191, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16192, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16193, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16194, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16195, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16196, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16197, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16198, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16199, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16200, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16201, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16202, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16203, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16204, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16205, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16206, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16207, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16208, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16209, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16210, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16211, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16212, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16213, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16214, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16215, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16216, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16217, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16218, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16219, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16220, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16221, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16222, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16223, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16224, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16225, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16226, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16227, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16228, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16229, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16230, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16231, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16232, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16233, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16234, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16235, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16236, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16237, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16238, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16239, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16240, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16241, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16242, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16243, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16244, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16245, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16246, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16247, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16248, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16249, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16250, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16251, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16252, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16253, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16254, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16255, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19412, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19413, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19414, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19415, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19416, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19417, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19418, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19419, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19420, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19421, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19424, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19425, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19426, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19427, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19428, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19429, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19430, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19431, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19432, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19433, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19436, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19437, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19438, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19439, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19440, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19441, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19442, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19443, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19444, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19445, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19448, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19449, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19450, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19451, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19452, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19453, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19454, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19455, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19456, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19457, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19460, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19461, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19462, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19463, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19464, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19465, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19466, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19467, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19468, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19469, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19472, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19473, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19474, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19475, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19476, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19477, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19478, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19479, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19480, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19481, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19484, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19485, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19486, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19487, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19488, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19489, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19490, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19491, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19492, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19493, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19496, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19497, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19498, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19499, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19500, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19501, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19502, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19503, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19504, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19505, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19508, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19509, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19510, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19511, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19512, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19513, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19514, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19515, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19516, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19517, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19520, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19521, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19522, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19523, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19524, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19525, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19526, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19527, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19528, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19529, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19532, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19533, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19534, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19535, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19536, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19537, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19538, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19539, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19540, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19541, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19544, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19545, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19546, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19547, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19548, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19549, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19550, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19551, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19552, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19553, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19556, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19557, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19558, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19559, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19560, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19561, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19562, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19563, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19564, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19565, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19568, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19569, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19570, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19571, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19572, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19573, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19574, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19575, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19576, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19577, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19580, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19581, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19582, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19583, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19584, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19585, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19586, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19587, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19588, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19589, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19592, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19593, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19594, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19595, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19596, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19597, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19598, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19599, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19600, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19601, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19604, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19605, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19606, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19607, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19608, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19609, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19610, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19611, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19612, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19613, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19616, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19617, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19618, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19619, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19620, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19621, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19622, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19623, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19624, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19625, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19628, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19629, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19630, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19631, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19632, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19633, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19634, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19635, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19636, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19637, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19640, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19641, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19642, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19643, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19644, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19645, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19646, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19647, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19648, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19649, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19652, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19653, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19654, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19655, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19656, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19657, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19658, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19659, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19660, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19661, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19664, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19665, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19666, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19667, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19668, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19669, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19670, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19671, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19672, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19673, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19676, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19677, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19678, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19679, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19680, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19681, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19682, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19683, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19684, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19685, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19688, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19689, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19690, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19691, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19692, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19693, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19694, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19695, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19696, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19697, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19700, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19701, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19702, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19703, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19704, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19705, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19706, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19707, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19708, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19709, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19712, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19713, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19714, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19715, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19716, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19717, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19718, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19719, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19720, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19721, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19724, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19725, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19726, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19727, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19728, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19729, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19730, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19731, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19732, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19733, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14847 + } + ] + }, + "minecraft:red_sand": { + "definition": { + "type": "minecraft:sand", + "falling_dust_color": "#00a95821", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13247 + } + ] + }, + "minecraft:red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13462, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13463, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13464, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13465, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13466, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13467, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13250, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13251, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13252, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13253, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13254, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13255, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13256, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13257, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13258, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13259, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13260, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13261, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13262, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13263, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13264, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13265, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13270, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13271, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13272, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13273, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13274, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13275, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13276, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13277, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13278, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13279, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13280, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13281, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13282, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13283, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13284, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13285, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13290, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13291, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13292, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13293, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13294, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13295, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13296, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13297, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13298, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13299, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13300, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13301, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13302, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13303, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13304, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13305, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13310, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13311, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13312, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13313, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13314, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13315, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13316, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13317, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13318, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13319, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13320, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13321, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13322, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13323, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13324, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13325, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17142, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17143, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17144, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17145, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17146, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17147, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17148, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17149, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17150, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17151, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17152, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17153, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17154, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17155, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17156, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17157, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17158, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17159, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17160, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17161, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17162, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17163, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17164, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17165, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17166, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17167, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17168, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17169, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17170, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17171, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17172, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17173, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17174, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17175, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17176, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17177, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17178, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17179, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17180, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17181, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17182, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17183, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17184, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17185, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17186, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17187, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17188, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17189, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17190, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17191, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17192, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17193, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17194, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17195, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17196, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17197, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17198, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17199, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17200, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17201, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17202, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17203, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17204, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17205, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17206, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17207, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17208, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17209, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17210, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17211, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17212, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17213, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17214, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17215, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17216, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17217, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17218, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17219, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17220, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17221, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17222, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17223, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17224, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17225, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17226, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17227, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17228, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17229, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17230, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17231, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17232, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17233, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17234, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17235, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17236, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17237, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17238, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17239, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17240, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17241, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17242, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17243, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17244, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17245, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17246, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17247, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17248, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17249, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17250, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17251, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17252, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17253, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17254, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17255, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17256, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17257, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17258, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17259, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17260, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17261, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17262, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17263, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17264, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17265, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17266, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17267, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17268, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17269, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17270, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17271, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17272, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17273, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17274, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17275, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17276, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17277, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17278, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17279, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17280, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17281, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17282, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17283, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17284, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17285, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17286, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17287, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17288, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17289, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17290, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17291, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17292, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17293, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17294, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17295, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17296, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17297, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17298, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17299, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17300, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17301, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17302, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17303, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17304, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17305, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17307, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17308, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17309, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17310, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17311, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17312, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17313, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17314, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17315, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17316, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17317, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17318, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17319, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17320, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17321, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17322, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17323, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17324, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17325, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17326, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17327, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17328, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17329, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17330, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17331, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17341, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17342, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17343, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17344, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17345, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17346, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17347, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17348, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17349, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17350, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17351, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17352, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17353, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17354, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17355, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17356, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17357, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17358, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17359, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17360, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17361, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17362, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17363, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17364, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17365, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17366, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17367, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17377, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17378, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17379, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17380, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17381, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17382, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17383, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17384, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17385, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17386, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17387, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17388, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17389, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17390, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17391, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17392, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17393, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17394, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17395, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17396, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17397, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17398, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17399, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17400, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17403, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14954, + "properties": { + "facing": "north" + } + }, + { + "id": 14955, + "properties": { + "facing": "east" + } + }, + { + "id": 14956, + "properties": { + "facing": "south" + } + }, + { + "id": 14957, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14958, + "properties": { + "facing": "up" + } + }, + { + "id": 14959, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7112 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "red", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11908, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11909, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11910, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11911, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11912, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11913, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11914, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11915, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11916, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11917, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11918, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11919, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11920, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11921, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11922, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11923, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11924, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11925, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11926, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11927, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11928, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11929, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11930, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11931, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11932, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11933, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11934, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11935, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11936, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11937, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11938, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11939, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11458 + } + ] + }, + "minecraft:red_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2328 + } + ] + }, + "minecraft:red_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13239, + "properties": { + "facing": "north" + } + }, + { + "id": 13240, + "properties": { + "facing": "south" + } + }, + { + "id": 13241, + "properties": { + "facing": "west" + } + }, + { + "id": 13242, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2307 + } + ] + }, + "minecraft:redstone_block": { + "definition": { + "type": "minecraft:powered", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11311 + } + ] + }, + "minecraft:redstone_lamp": { + "definition": { + "type": "minecraft:redstone_lamp", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9479, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 9480, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6881, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 6882, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "definition": { + "type": "minecraft:redstone_torch", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6885, + "properties": { + "lit": "true" + } + }, + { + "id": 6886, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "definition": { + "type": "minecraft:redstone_wall_torch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6887, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 6888, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 6889, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 6890, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 6891, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 6892, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 6893, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 6894, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "definition": { + "type": "minecraft:redstone_wire", + "properties": {} + }, + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 4011, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4012, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4013, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4014, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4015, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4016, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4017, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4018, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4019, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4020, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4021, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4022, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4023, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4024, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4025, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4026, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4027, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4028, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4029, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4030, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4031, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4032, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4033, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4034, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4035, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4036, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4037, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4038, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4039, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4040, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4041, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4042, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4043, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4044, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4045, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4046, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4047, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4048, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4049, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4050, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4051, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4052, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4053, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4054, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4055, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4056, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4057, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4058, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4059, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4060, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4061, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4062, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4063, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4064, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4065, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4066, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4067, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4068, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4069, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4070, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4071, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4072, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4073, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4074, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4075, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4076, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4077, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4078, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4079, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4080, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4081, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4082, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4083, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4084, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4085, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4086, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4087, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4088, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4089, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4090, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4091, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4092, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4093, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4094, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4095, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4096, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4097, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4098, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4099, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4100, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4101, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4102, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4103, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4104, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4105, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4106, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4107, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4108, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4109, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4110, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4111, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4112, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4113, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4114, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4115, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4116, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4117, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4118, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4119, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4120, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4121, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4122, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4123, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4124, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4125, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4126, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4127, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4128, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4129, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4130, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4131, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4132, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4133, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4134, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4135, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4136, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4137, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4138, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4139, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4140, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4141, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4142, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4143, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4144, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4145, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4146, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4147, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4148, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4149, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4150, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4151, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4152, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4153, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4154, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4155, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4156, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4157, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4158, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4159, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4160, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4161, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4162, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4163, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4164, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4165, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4166, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4167, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4168, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4169, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4170, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4171, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4172, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4173, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4174, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4175, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4176, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4177, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4178, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4179, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4180, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4181, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4182, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4183, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4184, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4185, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4186, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4187, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4188, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4189, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4190, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4191, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4192, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4193, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4194, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4195, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4196, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4197, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4198, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4199, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4200, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4201, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4202, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4203, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4204, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4205, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4206, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4207, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4208, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4209, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4210, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4211, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4212, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4213, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4214, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4215, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4216, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4217, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4218, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4219, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4220, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4221, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4222, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4223, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4224, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4225, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4226, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4227, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4228, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4229, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4230, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4231, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4232, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4233, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4234, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4235, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4236, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4237, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4238, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4239, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4240, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4241, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4242, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4243, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4244, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4245, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4246, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4247, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4248, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4249, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4250, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4251, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4252, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4253, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4254, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4255, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4256, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4257, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4258, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4259, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4260, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4261, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4262, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4263, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4264, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4265, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4266, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4267, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4268, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4269, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4270, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4271, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4272, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4273, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4274, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4275, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4276, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4277, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4278, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4279, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4280, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4281, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4282, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4283, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4284, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4285, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4286, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4287, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4288, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4289, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4290, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4291, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4292, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4293, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4294, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4295, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4296, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4297, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4298, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4299, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4300, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4301, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4302, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4303, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4304, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4305, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4306, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4307, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4308, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4309, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4310, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4311, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4312, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4313, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4314, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4315, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4316, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4317, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4318, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4319, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4320, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4321, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4322, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4323, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4324, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4325, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4326, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4327, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4328, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4329, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4330, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4331, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4332, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4333, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4334, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4335, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4336, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4337, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4338, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4339, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4340, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4341, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4342, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4343, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4344, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4345, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4346, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4347, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4348, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4349, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4350, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4351, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4352, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4353, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4354, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4355, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4356, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4357, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4358, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4359, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4360, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4361, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4362, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4363, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4364, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4365, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4366, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4367, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4368, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4369, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4370, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4371, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4372, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4373, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4374, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4375, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4376, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4377, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4378, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4379, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4380, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4381, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4382, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4383, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4384, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4385, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4386, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4387, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4388, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4389, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4390, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4391, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4392, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4393, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4394, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4395, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4396, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4397, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4398, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4399, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4400, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4401, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4402, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4403, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4404, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4405, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4406, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4407, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4408, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4409, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4410, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4411, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4412, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4413, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4414, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4415, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4416, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4417, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4418, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4419, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4420, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4421, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4422, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4423, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4424, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4425, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4426, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4427, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4428, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4429, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4430, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4431, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4432, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4433, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4434, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4435, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4436, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4437, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4438, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4439, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4440, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4441, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4442, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4443, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4444, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4445, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4446, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4447, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4448, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4449, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4450, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4451, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4452, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4453, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4454, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4455, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4456, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4457, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4458, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4459, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4460, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4461, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4462, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4463, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4464, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4465, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4466, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4467, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4468, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4469, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4470, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4471, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4472, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4473, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4474, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4475, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4476, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4477, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4478, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4479, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4480, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4481, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4482, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4483, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4484, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4485, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4486, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4487, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4488, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4489, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4490, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4491, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4492, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4493, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4494, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4495, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4496, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4497, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4498, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4499, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4500, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4501, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4502, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4503, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4504, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4505, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4506, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4507, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4508, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4509, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4510, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4511, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4512, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4513, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4514, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4515, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4516, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4517, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4518, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4519, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4520, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4521, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4522, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4523, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4524, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4525, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4526, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4527, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4528, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4529, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4530, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4531, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4532, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4533, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4534, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4535, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4536, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4537, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4538, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4539, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4540, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4541, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4542, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4543, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4544, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4545, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4546, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4547, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4548, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4549, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4550, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4551, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4552, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4553, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4554, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4555, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4556, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4557, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4558, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4559, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4560, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4561, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4562, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4563, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4564, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4565, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4566, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4567, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4568, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4569, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4570, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4571, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4572, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4573, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4574, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4575, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4576, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4577, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4578, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4579, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4580, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4581, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4582, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4583, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4584, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4585, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4586, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4587, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4588, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4589, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4590, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4591, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4592, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4593, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4594, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4595, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4596, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4597, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4598, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4599, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4600, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4601, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4602, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4603, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4604, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4605, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4606, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4607, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4608, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4609, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4610, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4611, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4612, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4613, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4614, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4615, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4616, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4617, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4618, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4619, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4620, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4621, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4622, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4623, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4624, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4625, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4626, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4627, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4628, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4629, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4630, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4631, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4632, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4633, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4634, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4635, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4636, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4637, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4638, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4639, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4640, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4641, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4642, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4643, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4644, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4645, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4646, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4647, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4648, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4649, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4650, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4651, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4652, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4653, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4654, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4655, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4656, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4657, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4658, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4659, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4660, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4661, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4662, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4663, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4664, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4665, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4666, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4667, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4668, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4669, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4670, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4671, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4672, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4673, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4674, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4675, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4676, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4677, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4678, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4679, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4680, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4681, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4682, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4683, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4684, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4685, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4686, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4687, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4688, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4689, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4690, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4691, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4692, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4693, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4694, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4695, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4696, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4697, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4698, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4699, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4700, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4701, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4702, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4703, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4704, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4705, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4706, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4707, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4708, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4709, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4710, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4711, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4712, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4713, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4714, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4715, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4716, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4717, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4718, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4719, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4720, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4721, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4722, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4723, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4724, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4725, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4726, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4727, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4728, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4729, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4730, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4731, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4732, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4733, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4734, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4735, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4736, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4737, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4738, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4739, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4740, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4741, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4742, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4743, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4744, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4745, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4746, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4747, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4748, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4749, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4750, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4751, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4752, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4753, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4754, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4755, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4756, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4757, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4758, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4759, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4760, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4761, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4762, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4763, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4764, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4765, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4766, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4767, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4768, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4769, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4770, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4771, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4772, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4773, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4774, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4775, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4776, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4777, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4778, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4779, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4780, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4781, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4782, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4783, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4784, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4785, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4786, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4787, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4788, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4789, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4790, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4791, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4792, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4793, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4794, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4795, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4796, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4797, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4798, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4799, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4800, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4801, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4802, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4803, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4804, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4805, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4806, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4807, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4808, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4809, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4810, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4811, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4812, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4813, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4814, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4815, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4816, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4817, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4818, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4819, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4820, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4821, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4822, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4823, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4824, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4825, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4826, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4827, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4828, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4829, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4830, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4831, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4832, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4833, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4834, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4835, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4836, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4837, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4838, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4839, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4840, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4841, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4842, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4843, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4844, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4845, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4846, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4847, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4848, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4849, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4850, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4851, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4852, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4853, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4854, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4855, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4856, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4857, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4858, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4859, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4860, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4861, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4862, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4863, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4864, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4865, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4866, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4867, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4868, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4869, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4870, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4871, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4872, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4873, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4874, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4875, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4876, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4877, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4878, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4879, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4880, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4881, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4882, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4883, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4884, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4885, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4886, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4887, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4888, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4889, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4890, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4891, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4892, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4893, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4894, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4895, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4896, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4897, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4898, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4899, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4900, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4901, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4902, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4903, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4904, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4905, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4906, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4907, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4908, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4909, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4910, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4911, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4912, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4913, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4914, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4915, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4916, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4917, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4918, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4919, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4920, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4921, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4922, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4923, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4924, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4925, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4926, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4927, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4928, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4929, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4930, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4931, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4932, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4933, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4934, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4935, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4936, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4937, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4938, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4939, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4940, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4941, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4942, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4943, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4944, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4945, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4946, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4947, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4948, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4949, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4950, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4951, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4952, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4953, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4954, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4955, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4956, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4957, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4958, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4959, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4960, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4961, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4962, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4963, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4964, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4965, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4966, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4967, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4968, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4969, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4970, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4971, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4972, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4973, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4974, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4975, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4976, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4977, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4978, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4979, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4980, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4981, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4982, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4983, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4984, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4985, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4986, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4987, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4988, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4989, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4990, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4991, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4992, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4993, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4994, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4995, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4996, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4997, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4998, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4999, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5000, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5001, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5002, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5003, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5004, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5005, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5006, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5007, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5008, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5009, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5010, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5011, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5012, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5013, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5014, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5015, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5016, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5017, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5018, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 5019, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 5020, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 5021, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 5022, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 5023, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 5024, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 5025, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 5026, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 5027, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 5028, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 5029, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 5030, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 5031, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 5032, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 5033, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 5034, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 5035, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 5036, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 5037, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 5038, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 5039, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 5040, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 5041, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 5042, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 5043, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 5044, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 5045, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 5046, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 5047, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 5048, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 5049, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 5050, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 5051, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 5052, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 5053, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 5054, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 5055, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 5056, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 5057, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 5058, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 5059, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 5060, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 5061, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 5062, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 5063, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 5064, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 5065, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 5066, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 5067, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 5068, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 5069, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 5070, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 5071, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 5072, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 5073, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 5074, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 5075, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 5076, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 5077, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 5078, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 5079, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 5080, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 5081, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 5082, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 5083, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 5084, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 5085, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 5086, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 5087, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 5088, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 5089, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 5090, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 5091, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 5092, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 5093, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 5094, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 5095, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 5096, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 5097, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 5098, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 5099, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 5100, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 5101, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 5102, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 5103, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 5104, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 5105, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 5106, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 5107, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 5108, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 5109, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 5110, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 5111, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 5112, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 5113, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 5114, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 5115, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 5116, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 5117, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 5118, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 5119, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 5120, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 5121, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 5122, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 5123, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 5124, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 5125, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 5126, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 5127, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 5128, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 5129, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 5130, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 5131, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 5132, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 5133, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 5134, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 5135, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 5136, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 5137, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 5138, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 5139, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 5140, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 5141, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 5142, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 5143, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5144, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5145, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5146, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5147, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5148, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5149, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5150, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5151, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5152, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5153, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5154, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5155, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5156, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5157, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5158, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5159, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5160, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5161, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5162, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 5163, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 5164, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 5165, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 5166, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 5167, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 5168, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 5169, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 5170, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "default": true, + "id": 5171, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 5172, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 5173, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 5174, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 5175, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 5176, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 5177, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 5178, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 5179, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 5180, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 5181, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 5182, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 5183, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 5184, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 5185, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 5186, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 5187, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 5188, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 5189, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 5190, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 5191, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 5192, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 5193, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 5194, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 5195, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 5196, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 5197, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 5198, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 5199, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 5200, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 5201, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 5202, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 5203, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 5204, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 5205, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 5206, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 5207, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 5208, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 5209, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 5210, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 5211, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 5212, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 5213, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 5214, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 5215, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 5216, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 5217, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 5218, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 5219, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 5220, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 5221, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 5222, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 5223, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 5224, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 5225, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 5226, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 5227, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 5228, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 5229, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 5230, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 5231, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 5232, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 5233, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 5234, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 5235, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 5236, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 5237, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 5238, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 5239, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 5240, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 5241, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 5242, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 5243, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 5244, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 5245, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 5246, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 5247, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 5248, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 5249, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 5250, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 5251, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 5252, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 5253, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 5254, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 5255, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 5256, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 5257, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 5258, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 5259, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 5260, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 5261, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 5262, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 5263, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 5264, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 5265, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 5266, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 5267, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 5268, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 5269, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 5270, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 5271, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 5272, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 5273, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 5274, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 5275, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 5276, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 5277, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 5278, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 5279, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 5280, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 5281, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 5282, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 5283, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 5284, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 5285, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 5286, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 5287, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5288, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5289, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5290, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5291, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5292, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5293, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5294, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5295, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5296, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5297, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5298, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5299, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5300, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5301, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5302, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5303, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5304, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5305, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5306, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29592 + } + ] + }, + "minecraft:repeater": { + "definition": { + "type": "minecraft:repeater", + "properties": {} + }, + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7034, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7035, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7036, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 7037, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7038, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7039, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7040, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7041, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7042, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7043, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7044, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7045, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7046, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7047, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7048, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7049, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7050, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7051, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7052, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7053, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7054, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7055, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7056, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7057, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7058, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7059, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7060, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7061, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7062, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7063, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7064, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7065, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7066, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7067, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7068, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7069, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7070, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7071, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7072, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7073, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7074, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7075, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7076, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7077, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7078, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7079, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7080, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7081, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7082, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7083, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7084, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7085, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7086, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7087, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7088, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7089, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7090, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7091, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7092, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7093, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7094, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7095, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7096, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7097, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14817, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 14818, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 14819, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 14820, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 14821, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 14822, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 14823, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 14824, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 14825, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 14826, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 14827, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 14828, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:resin_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8921 + } + ] + }, + "minecraft:resin_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9003, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9004, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9005, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9006, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9007, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9008, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:resin_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:resin_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8923, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8924, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8925, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8926, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8927, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8928, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8929, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8930, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8931, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8932, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8939, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8940, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8941, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8942, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8943, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8944, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8945, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8946, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8947, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8948, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8949, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8950, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8951, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8952, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8959, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8960, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8961, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8962, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8963, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8964, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8965, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8966, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8967, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8968, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8969, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8970, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8971, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8972, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8979, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8980, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8983, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8984, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8985, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8986, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8987, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8988, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8989, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8990, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8991, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8992, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9002, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:resin_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 9009, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9010, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9011, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 9012, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9013, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9014, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9015, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9021, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9022, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9023, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9024, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9025, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9026, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9027, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9033, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9034, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9035, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9036, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9037, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9038, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9039, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9045, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9046, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9047, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9048, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9049, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9050, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9051, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9057, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9058, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9059, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9060, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9061, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9062, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9063, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9069, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9070, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9071, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9072, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9073, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9074, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9075, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9081, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9082, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9083, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9084, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9085, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9086, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9087, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9093, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9094, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9095, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9096, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9097, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9098, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9099, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9105, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9106, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9107, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9108, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9109, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9110, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9111, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9117, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9118, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9119, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9120, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9121, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9122, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9123, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9129, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9130, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9131, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9132, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9133, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9134, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9135, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9141, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9142, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9143, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9144, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9145, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9146, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9147, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9153, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9154, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9155, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9156, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9157, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9158, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9159, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9165, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9166, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9167, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9168, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9169, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9170, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9171, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9177, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9178, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9179, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9180, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9181, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9182, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9183, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9189, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9190, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9191, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9192, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9193, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9194, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9195, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9201, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9202, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9203, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9204, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9205, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9206, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9207, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9213, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9214, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9215, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9216, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9217, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9218, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9219, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9225, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9226, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9227, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9228, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9229, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9230, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9231, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9237, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9238, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9239, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9240, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9241, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9242, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9243, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9249, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9250, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9251, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9252, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9253, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9254, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9255, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9261, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9262, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9263, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9264, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9265, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9266, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9267, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9273, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9274, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9275, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9276, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9277, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9278, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9279, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9285, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9286, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9287, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9288, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9289, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9290, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9291, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9297, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9298, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9299, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9300, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9301, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9302, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9303, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9309, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9310, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9311, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9312, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9313, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9314, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9315, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9321, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9322, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9323, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9324, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9325, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9326, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9327, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:resin_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8922 + } + ] + }, + "minecraft:resin_clump": { + "definition": { + "type": "minecraft:multiface", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8518, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8519, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8520, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8521, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8522, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8523, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8524, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8525, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8526, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8527, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8528, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8529, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8530, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8531, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8532, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8533, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8534, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8535, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8536, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8537, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8538, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8539, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8540, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8541, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8542, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8543, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8544, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8545, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8546, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8547, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8548, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8549, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8550, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8551, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8552, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8553, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8554, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8555, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8556, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8557, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8558, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8559, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8560, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8561, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8562, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8563, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8564, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8565, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8566, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8567, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8568, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8569, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8570, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8571, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8572, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8573, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8574, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8575, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8576, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8577, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8578, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8579, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8580, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8581, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8582, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8583, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8584, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8585, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8586, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8587, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8588, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8589, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8590, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8591, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8592, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8593, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8594, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8595, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8596, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8597, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8598, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8599, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8600, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8601, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8602, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8603, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8604, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8605, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8606, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8607, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8608, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8609, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8610, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8611, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8612, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8613, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8614, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8615, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8616, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8617, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8618, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8619, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8620, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8621, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8622, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8623, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8624, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8625, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8626, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8627, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8628, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8629, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8630, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8631, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8632, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8633, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8634, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8635, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8636, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8637, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8638, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8639, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8640, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8641, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8642, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8643, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8644, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8645, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:respawn_anchor": { + "definition": { + "type": "minecraft:respawn_anchor", + "properties": {} + }, + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 21821, + "properties": { + "charges": "0" + } + }, + { + "id": 21822, + "properties": { + "charges": "1" + } + }, + { + "id": 21823, + "properties": { + "charges": "2" + } + }, + { + "id": 21824, + "properties": { + "charges": "3" + } + }, + { + "id": 21825, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "definition": { + "type": "minecraft:rooted_dirt", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27921 + } + ] + }, + "minecraft:rose_bush": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12919, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12920, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "definition": { + "type": "minecraft:sand", + "falling_dust_color": "#00dbd3a0", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 118 + } + ] + }, + "minecraft:sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 578 + } + ] + }, + "minecraft:sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13408, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13409, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13410, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13411, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13412, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13413, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9493, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9494, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9495, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9496, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9497, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9498, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9499, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9500, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9501, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9502, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9503, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9504, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9505, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9506, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9507, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9508, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9509, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9510, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9511, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9512, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9513, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9514, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9515, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9516, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9517, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9518, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9519, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9520, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9521, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9522, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9523, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9524, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9525, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9526, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9527, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9528, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9533, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9534, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9535, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9536, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9537, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9538, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9539, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9540, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9541, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9542, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9543, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9544, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9545, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9546, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9547, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9548, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9553, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9554, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9555, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9556, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9557, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9558, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9559, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9560, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9561, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9562, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9563, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9564, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9565, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9566, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9567, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9568, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9572, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19734, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19735, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19736, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19737, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19738, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19739, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19740, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19741, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19742, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19743, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19744, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19745, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19746, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19747, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19748, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19749, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19750, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19751, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19752, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19753, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19754, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19755, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19756, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19757, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19758, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19759, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19760, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19761, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19762, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19763, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19764, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19765, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19766, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19767, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19768, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19769, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19770, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19771, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19772, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19773, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19774, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19775, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19776, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19777, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19778, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19779, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19780, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19781, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19782, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19783, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19784, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19785, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19786, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19787, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19788, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19789, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19790, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19791, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19792, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19793, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19794, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19795, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19796, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19797, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19798, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19799, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19800, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19801, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19802, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19803, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19804, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19805, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19806, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19807, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19808, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19809, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19810, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19811, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19812, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19813, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19814, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19815, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19816, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19817, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19818, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19819, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19820, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19821, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19822, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19823, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19824, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19825, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19826, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19827, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19828, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19829, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19830, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19831, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19832, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19833, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19834, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19835, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19836, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19837, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19838, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19839, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19840, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19841, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19842, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19843, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19844, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19845, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19846, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19847, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19848, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19849, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19850, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19851, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19852, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19853, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19854, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19855, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19856, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19857, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19858, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19859, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19860, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19861, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19862, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19863, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19864, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19865, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19866, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19867, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19868, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19869, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19870, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19871, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19872, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19873, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19874, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19875, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19876, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19877, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19878, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19879, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19880, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19881, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19882, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19883, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19884, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19885, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19886, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19887, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19888, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19889, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19890, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19891, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19892, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19893, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19894, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19895, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19896, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19897, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19898, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19899, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19900, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19901, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19902, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19903, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19904, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19905, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19906, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19907, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19908, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19909, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19910, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19911, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19912, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19913, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19914, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19915, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19916, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19917, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19918, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19919, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19920, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19921, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19922, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19923, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19924, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19925, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19926, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19927, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19928, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19929, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19930, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19931, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19932, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19933, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19934, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19935, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19936, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19937, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19938, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19939, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19940, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19941, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19942, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19943, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19944, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19945, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19946, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19947, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19948, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19949, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19950, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19951, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19952, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19953, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19954, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19955, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19956, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19957, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19958, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19959, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19960, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19961, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19962, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19963, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19964, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19965, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19966, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19967, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19968, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19969, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19970, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19971, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19972, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19973, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19974, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19975, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19976, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19977, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19978, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19979, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19980, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19981, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19982, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19983, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19984, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19985, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19986, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19987, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19988, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19989, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19990, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19991, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19992, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19993, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19994, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19995, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19996, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19997, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19998, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19999, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20000, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20001, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20002, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20003, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20004, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20005, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20006, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20007, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20008, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20009, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20010, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20011, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20012, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20013, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20014, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20015, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20016, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20017, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20018, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20019, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20020, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20021, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20022, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20023, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20024, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20025, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20026, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20027, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20028, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20029, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20030, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20031, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20032, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20033, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20034, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20035, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20036, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20037, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20038, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20039, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20040, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20041, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20042, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20043, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20044, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20045, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20046, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20047, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20048, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20049, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20050, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20051, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20052, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20053, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20054, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20055, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20056, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20057, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "definition": { + "type": "minecraft:scaffolding", + "properties": {} + }, + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20706, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 20707, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 20708, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 20709, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 20710, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 20711, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 20712, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 20713, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 20714, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 20715, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 20716, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 20717, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 20718, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 20719, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 20720, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 20721, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 20722, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 20723, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 20724, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 20725, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 20726, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 20727, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 20728, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 20729, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 20730, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 20731, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 20732, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 20733, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 20734, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 20735, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 20736, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20737, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "definition": { + "type": "minecraft:sculk", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25170 + } + ] + }, + "minecraft:sculk_catalyst": { + "definition": { + "type": "minecraft:sculk_catalyst", + "properties": {} + }, + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25299, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 25300, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "definition": { + "type": "minecraft:sculk_sensor", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24690, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24691, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24692, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24693, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24694, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24695, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24696, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24697, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24698, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24699, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24700, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24701, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24702, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24703, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24704, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24705, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24706, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24707, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24708, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24709, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24710, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24711, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24712, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24713, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24714, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24715, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24716, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24717, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24718, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24719, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24720, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24721, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24722, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24723, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24724, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24725, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24726, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24727, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24728, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24729, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24730, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24731, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24732, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24733, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24734, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24735, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24736, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24737, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24738, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24739, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24740, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24741, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24742, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24743, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24744, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24745, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24746, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24747, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24748, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24749, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24750, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24751, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24752, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24753, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24754, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24755, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24756, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24757, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24758, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24759, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24760, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24761, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24762, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24763, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24764, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24765, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24766, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24767, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24768, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24769, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24770, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24771, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24772, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24773, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24774, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24775, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24776, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24777, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24778, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24779, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 24780, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 24781, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 24782, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 24783, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 24784, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 24785, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "definition": { + "type": "minecraft:sculk_shrieker", + "properties": {} + }, + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25301, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 25302, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 25303, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 25304, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 25305, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 25306, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 25307, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25308, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "definition": { + "type": "minecraft:sculk_vein", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25171, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25172, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25173, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25174, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25175, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25176, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25177, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25178, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25179, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25180, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25181, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25182, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25183, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25184, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25185, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25186, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25187, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25188, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25189, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25190, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25191, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25192, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25193, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25194, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25195, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25196, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25197, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25198, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25199, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25200, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25201, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25202, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25203, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25204, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25205, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25206, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25207, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25208, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25209, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25210, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25211, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25212, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25213, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25214, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25215, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25216, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25217, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25218, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25219, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25220, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25221, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25222, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25223, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25224, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25225, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25226, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25227, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25228, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25229, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25230, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25231, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25232, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25233, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25234, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25235, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25236, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25237, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25238, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25239, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25240, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25241, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25242, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25243, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25244, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25245, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25246, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25247, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25248, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25249, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25250, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25251, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25252, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25253, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25254, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25255, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25256, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25257, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25258, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25259, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25260, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25261, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25262, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25263, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25264, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25265, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25266, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25267, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25268, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25269, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25270, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25271, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25272, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25273, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25274, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25275, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25276, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25277, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25278, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25279, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25280, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25281, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25282, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25283, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25284, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25285, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25286, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25287, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25288, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25289, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25290, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25291, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25292, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25293, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 25294, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 25295, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 25296, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 25297, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 25298, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12892 + } + ] + }, + "minecraft:sea_pickle": { + "definition": { + "type": "minecraft:sea_pickle", + "properties": {} + }, + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15267, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 15268, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 15269, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 15270, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 15271, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 15272, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 15273, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 15274, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "definition": { + "type": "minecraft:seagrass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2254 + } + ] + }, + "minecraft:short_dry_grass": { + "definition": { + "type": "minecraft:short_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2252 + } + ] + }, + "minecraft:short_grass": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2248 + } + ] + }, + "minecraft:shroomlight": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20976 + } + ] + }, + "minecraft:shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14864, + "properties": { + "facing": "north" + } + }, + { + "id": 14865, + "properties": { + "facing": "east" + } + }, + { + "id": 14866, + "properties": { + "facing": "south" + } + }, + { + "id": 14867, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14868, + "properties": { + "facing": "up" + } + }, + { + "id": 14869, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "definition": { + "type": "minecraft:skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10915, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10916, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10917, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10918, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10919, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 10920, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 10921, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 10922, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 10923, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 10924, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 10925, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 10926, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 10927, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 10928, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 10929, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 10930, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 10931, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 10932, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 10933, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 10934, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 10935, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 10936, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 10937, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 10938, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 10939, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 10940, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 10941, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 10942, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 10943, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 10944, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 10945, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 10946, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10947, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10948, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 10949, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 10950, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 10951, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 10952, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 10953, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 10954, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:slime_block": { + "definition": { + "type": "minecraft:slime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12532 + } + ] + }, + "minecraft:small_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 3.0, + "properties": {}, + "width": 8.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23440, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23441, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23442, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23443, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23444, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23445, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23446, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23447, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23448, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23449, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23450, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23451, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "definition": { + "type": "minecraft:small_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27903, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 27904, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 27905, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27906, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 27907, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 27908, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 27909, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 27910, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 27911, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 27912, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 27913, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 27914, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 27915, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 27916, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 27917, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 27918, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "definition": { + "type": "minecraft:smithing_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20800 + } + ] + }, + "minecraft:smoker": { + "definition": { + "type": "minecraft:smoker", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20754, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 20755, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 20756, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 20757, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 20758, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 20759, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 20760, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 20761, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 29576 + } + ] + }, + "minecraft:smooth_quartz": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13482 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16458, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16459, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16460, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16461, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16462, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16463, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_quartz" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15936, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15937, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15938, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15939, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15940, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15941, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15942, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15943, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15944, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15945, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15946, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15947, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15948, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15949, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15953, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15954, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15955, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15956, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15957, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15958, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15959, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15960, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15961, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15962, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15963, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15964, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15965, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15966, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15967, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15968, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15969, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15976, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15977, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15978, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15979, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15980, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15981, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15982, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15983, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15984, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15985, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15986, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15987, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15988, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15989, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15996, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15997, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15998, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15999, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16000, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16001, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16002, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16003, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16004, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16005, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16007, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13483 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16422, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16423, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16424, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16425, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16426, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16427, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15376, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15377, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15378, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15379, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15380, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15381, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15382, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15383, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15384, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15385, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15387, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15388, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15389, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15390, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15391, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15392, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15393, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15394, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15395, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15396, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15397, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15398, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15399, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15400, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15401, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15402, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15403, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15404, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15405, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15407, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15408, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15409, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15410, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15412, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15413, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15414, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15415, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15416, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15417, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15418, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15419, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15420, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15421, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15422, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15423, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15424, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15425, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15427, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15428, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15429, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15430, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15431, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15432, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15433, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15434, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15435, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15436, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15437, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15438, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15439, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15440, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15441, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15442, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15443, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15444, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15445, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15447, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15448, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15449, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15450, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15451, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15452, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15453, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15454, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15455, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13481 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16452, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16453, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16454, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16455, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16456, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16457, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15856, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15857, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15858, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15859, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15860, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15861, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15862, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15863, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15864, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15865, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15866, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15867, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15868, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15869, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15870, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15871, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15872, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15873, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15874, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15875, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15876, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15877, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15878, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15879, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15880, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15881, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15882, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15883, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15884, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15885, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15886, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15887, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15888, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15889, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15890, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15891, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15892, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15893, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15894, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15895, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15896, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15897, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15898, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15899, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15900, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15901, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15902, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15903, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15904, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15905, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15906, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15907, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15908, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15909, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15910, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15911, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15912, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15913, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15914, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15915, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15916, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15917, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15918, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15919, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15920, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15921, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15922, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15923, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15924, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15925, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15926, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15927, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15928, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15929, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15930, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15931, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15932, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15933, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15934, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15935, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13480 + } + ] + }, + "minecraft:smooth_stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13402, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13403, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13404, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13405, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13406, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13407, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sniffer_egg": { + "definition": { + "type": "minecraft:sniffer_egg", + "properties": {} + }, + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 15102, + "properties": { + "hatch": "0" + } + }, + { + "id": 15103, + "properties": { + "hatch": "1" + } + }, + { + "id": 15104, + "properties": { + "hatch": "2" + } + } + ] + }, + "minecraft:snow": { + "definition": { + "type": "minecraft:snow_layer", + "properties": {} + }, + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 6919, + "properties": { + "layers": "1" + } + }, + { + "id": 6920, + "properties": { + "layers": "2" + } + }, + { + "id": 6921, + "properties": { + "layers": "3" + } + }, + { + "id": 6922, + "properties": { + "layers": "4" + } + }, + { + "id": 6923, + "properties": { + "layers": "5" + } + }, + { + "id": 6924, + "properties": { + "layers": "6" + } + }, + { + "id": 6925, + "properties": { + "layers": "7" + } + }, + { + "id": 6926, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6928 + } + ] + }, + "minecraft:soul_campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 2, + "properties": {}, + "spawn_particles": false + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20909, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20910, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20911, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20912, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20913, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20914, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20915, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20916, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20917, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20918, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20919, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20920, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20921, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20922, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20923, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20924, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20925, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20926, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20927, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20928, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20929, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20930, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20931, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20932, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20933, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20934, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20935, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20936, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20937, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20938, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20939, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20940, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_fire": { + "definition": { + "type": "minecraft:soul_fire", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3887 + } + ] + }, + "minecraft:soul_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20841, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20842, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20843, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20844, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "definition": { + "type": "minecraft:soul_sand", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6998 + } + ] + }, + "minecraft:soul_soil": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6999 + } + ] + }, + "minecraft:soul_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7006 + } + ] + }, + "minecraft:soul_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7007, + "properties": { + "facing": "north" + } + }, + { + "id": 7008, + "properties": { + "facing": "south" + } + }, + { + "id": 7009, + "properties": { + "facing": "west" + } + }, + { + "id": 7010, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "definition": { + "type": "minecraft:spawner", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3888 + } + ] + }, + "minecraft:sponge": { + "definition": { + "type": "minecraft:sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 560 + } + ] + }, + "minecraft:spore_blossom": { + "definition": { + "type": "minecraft:spore_blossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27810 + } + ] + }, + "minecraft:spruce_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "spruce", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10699, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10700, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10701, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10702, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10703, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10704, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10705, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10706, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10707, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10708, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10709, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10710, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10711, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10712, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10713, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10714, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10715, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10716, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10717, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10718, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10719, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10720, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10721, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10722, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14060, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14061, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14062, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14063, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14064, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14065, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14066, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14067, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14068, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14069, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14070, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14071, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14072, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14073, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14074, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14075, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14076, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14077, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14078, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14079, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14080, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14081, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14082, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14083, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14084, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14085, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14086, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14087, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14088, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14089, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14090, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14091, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14092, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14093, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14094, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14095, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14096, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14097, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14098, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14099, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14100, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14101, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14102, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14103, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14104, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14105, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14106, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14107, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14108, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14109, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14110, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14111, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14112, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14113, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14114, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14115, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14116, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14117, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14118, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14119, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14120, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14121, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14122, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14123, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13772, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13773, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13774, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13775, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13776, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13777, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13778, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13779, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13780, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13781, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13782, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13783, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13784, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13785, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13786, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13787, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13788, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13789, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13790, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13791, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13792, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13793, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13794, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13795, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13796, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13797, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13798, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13799, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13800, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13801, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13802, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13803, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13484, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13485, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13486, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13487, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13488, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13489, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13490, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13491, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13492, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13493, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13494, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13495, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13496, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13497, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13498, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13499, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13500, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13501, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13502, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13503, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13504, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13505, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13506, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13507, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13508, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13509, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13510, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13511, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13512, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13513, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13514, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13515, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5971, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5972, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5973, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5974, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5975, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5976, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5977, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5978, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5979, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5980, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5981, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5982, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5983, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5984, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5985, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5986, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5987, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5988, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5989, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5990, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5991, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5992, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5993, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5994, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5995, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5996, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5997, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5998, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5999, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6000, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6001, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6002, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6003, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6004, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6005, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6006, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6007, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6008, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6009, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6010, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6011, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6012, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6013, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6014, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6015, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6016, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6017, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6018, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6019, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6020, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6021, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6022, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6023, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6024, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6025, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6026, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6027, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6028, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6029, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6030, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6031, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6032, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6033, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6034, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 280, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 281, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 282, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 283, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 284, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 285, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 286, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 287, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 288, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 289, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 290, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 291, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 292, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 293, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 294, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 295, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 296, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 297, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 298, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 299, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 300, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 301, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 302, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 303, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 304, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 305, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 306, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 307, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 139, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 140, + "properties": { + "axis": "y" + } + }, + { + "id": 141, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6863, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6864, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "spruce" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 31, + "properties": { + "stage": "0" + } + }, + { + "id": 32, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3240, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3241, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3242, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3243, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3244, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3245, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3246, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3247, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3248, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3249, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3250, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3251, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3252, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3253, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3254, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3255, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3256, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3257, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3258, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3259, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3260, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3261, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3262, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3263, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3264, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3265, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3266, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3267, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3268, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3269, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3270, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3271, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3272, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3273, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3274, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3275, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3276, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3277, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3278, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3279, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3280, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3281, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3282, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3283, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3284, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3285, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3286, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3287, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3288, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3289, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3290, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3291, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3292, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3293, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3294, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3295, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3296, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3297, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3298, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3299, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3300, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3301, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3302, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3303, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5367, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5368, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5369, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5370, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5371, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5372, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5373, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5374, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5375, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5376, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5377, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5378, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5379, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5380, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5381, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5382, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5383, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5384, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5385, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5386, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5387, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5388, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5389, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5390, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5391, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5392, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5393, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5394, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5395, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5396, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5397, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5398, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13336, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13337, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13338, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13339, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13340, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13341, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:spruce_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9728, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9729, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9730, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9731, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9732, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9733, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9734, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9735, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9736, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9737, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9738, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9739, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9740, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9741, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9742, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9748, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9749, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9750, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9751, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9752, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9753, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9754, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9755, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9756, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9757, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9758, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9759, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9768, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9769, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9770, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9771, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9774, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9775, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9778, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9779, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9788, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9789, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9790, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9791, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9794, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9795, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9798, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9799, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7178, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7179, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7180, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7181, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7182, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7183, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7184, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7185, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7186, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7187, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7188, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7189, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7190, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7191, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7192, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7193, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7194, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7195, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7196, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7197, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7198, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7199, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7200, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7201, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7202, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7203, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7204, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7205, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7206, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7207, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7208, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7209, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7210, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7211, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7212, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7213, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7214, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7215, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7216, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7217, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7218, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7219, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7220, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7221, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7222, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7223, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7224, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7225, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7226, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7227, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7228, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7229, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7230, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7231, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7232, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7233, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7234, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7235, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7236, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7237, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7238, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7239, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7240, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7241, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6683, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6684, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6685, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6686, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6687, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6688, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6689, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6690, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5835, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5836, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5837, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5838, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5839, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5840, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5841, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5842, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 204, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 205, + "properties": { + "axis": "y" + } + }, + { + "id": 206, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": true + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2235, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2236, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2237, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2238, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2239, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2240, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2241, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2242, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2243, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2244, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2245, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2246, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13438, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13439, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13440, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13441, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13442, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13443, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8758, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8759, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8760, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8761, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8762, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8763, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8764, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8765, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8766, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8767, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8768, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8769, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8770, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8771, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8775, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8776, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8777, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8778, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8779, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8780, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8781, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8782, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8783, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8784, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8785, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8786, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8787, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8788, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8789, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8790, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8791, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8795, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8796, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8797, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8798, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8799, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8800, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8801, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8802, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8803, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8804, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8805, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8806, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8807, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8808, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8809, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8810, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8811, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8815, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8816, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8817, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8818, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8819, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8820, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8821, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8822, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8823, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8824, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8825, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8826, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8827, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8828, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8829, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8830, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8831, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8835, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8836, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8837, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18114, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18115, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18116, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18117, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18118, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18119, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18120, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18121, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18122, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18123, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18124, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18125, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18126, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18127, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18128, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18129, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18130, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18131, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18132, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18133, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18134, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18135, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18136, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18137, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18138, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18139, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18140, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18141, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18142, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18143, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18144, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18145, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18146, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18147, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18148, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18149, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18150, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18151, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18152, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18153, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18154, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18155, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18156, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18157, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18158, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18159, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18160, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18161, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18162, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18163, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18164, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18165, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18166, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18167, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18168, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18169, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18170, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18171, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18172, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18173, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18174, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18175, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18176, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18177, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18178, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18179, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18180, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18181, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18182, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18183, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18184, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18185, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18186, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18187, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18188, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18189, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18190, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18191, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18192, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18193, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18194, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18195, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18196, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18197, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18198, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18199, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18200, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18201, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18202, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18203, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18204, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18205, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18206, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18207, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18208, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18209, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18210, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18211, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18212, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18213, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18214, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18215, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18216, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18217, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18218, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18219, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18220, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18221, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18222, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18223, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18224, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18225, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18226, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18227, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18228, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18229, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18230, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18231, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18232, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18233, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18234, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18235, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18236, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18237, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18238, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18239, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18240, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18241, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18242, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18243, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18244, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18245, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18246, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18247, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18248, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18249, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18250, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18251, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18252, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18253, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18254, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18255, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18256, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18257, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18258, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18259, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18260, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18261, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18262, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18263, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18264, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18265, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18266, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18267, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18268, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18269, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18270, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18271, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18272, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18273, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18274, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18275, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18276, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18277, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18278, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18279, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18280, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18281, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18282, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18283, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18284, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18285, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18286, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18287, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18288, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18289, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18290, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18291, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18292, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18293, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18294, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18295, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18296, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18297, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18298, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18299, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18300, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18301, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18302, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18303, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18304, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18305, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18306, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18307, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18308, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18309, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18310, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18311, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18312, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18313, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18314, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18315, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18316, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18317, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18318, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18319, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18320, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18321, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18322, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18323, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18324, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18325, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18326, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18327, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18328, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18329, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18330, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18331, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18332, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18333, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18334, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18335, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18336, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18337, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18338, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18339, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18340, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18341, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18342, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18343, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18344, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18345, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18346, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18347, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18348, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18349, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18350, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18351, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18352, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18353, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18354, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18355, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18356, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18357, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18358, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18359, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18360, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18361, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18362, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18363, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18364, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18365, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18366, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18367, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18368, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18369, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18370, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18371, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18372, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18373, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18374, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18375, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18376, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18377, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18378, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18379, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18380, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18381, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18382, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18383, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18384, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18385, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18386, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18387, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18388, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18389, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18390, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18391, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18392, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18393, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18394, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18395, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18396, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18397, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18398, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18399, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18400, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18401, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18402, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18403, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18404, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18405, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18406, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18407, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18408, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18409, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18410, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18411, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18412, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18413, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18414, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18415, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18416, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18417, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18418, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18419, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18420, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18421, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18422, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18423, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18424, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18425, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18426, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18427, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18428, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18429, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18430, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18431, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18432, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18433, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18434, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18435, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18436, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18437, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7754 + } + ] + }, + "minecraft:stone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6895, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6896, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6897, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6898, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6899, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6900, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6901, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6902, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6903, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6904, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6905, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6906, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6907, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6908, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6909, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6910, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6911, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6912, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6913, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6914, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6915, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6916, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6917, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6918, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "stone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6795, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6796, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13396, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13397, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13398, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13399, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13400, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13401, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15776, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15777, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15778, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15779, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15780, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15781, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15782, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15783, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15784, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15785, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15786, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15787, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15788, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15789, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15790, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15791, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15792, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15793, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15794, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15795, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15796, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15797, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15798, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15799, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15800, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15801, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15802, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15803, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15804, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15805, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15806, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15807, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15808, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15809, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15810, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15811, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15812, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15813, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15814, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15815, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15816, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15817, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15818, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15819, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15820, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15821, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15822, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15823, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15824, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15825, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15826, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15827, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15828, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15829, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15830, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15831, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15832, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15833, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15834, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15835, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15836, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15837, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15838, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15839, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15840, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15841, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15842, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15843, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15844, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15845, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15846, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15847, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15848, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15849, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15850, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15851, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15852, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15853, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15854, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15855, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "definition": { + "type": "minecraft:stonecutter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 20801, + "properties": { + "facing": "north" + } + }, + { + "id": 20802, + "properties": { + "facing": "south" + } + }, + { + "id": 20803, + "properties": { + "facing": "west" + } + }, + { + "id": 20804, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 180, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 181, + "properties": { + "axis": "y" + } + }, + { + "id": 182, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 237, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 238, + "properties": { + "axis": "y" + } + }, + { + "id": 239, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 198, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 199, + "properties": { + "axis": "y" + } + }, + { + "id": 200, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 174, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 175, + "properties": { + "axis": "y" + } + }, + { + "id": 176, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 231, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 232, + "properties": { + "axis": "y" + } + }, + { + "id": 233, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 183, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 184, + "properties": { + "axis": "y" + } + }, + { + "id": 185, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 240, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 241, + "properties": { + "axis": "y" + } + }, + { + "id": 242, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20971, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20972, + "properties": { + "axis": "y" + } + }, + { + "id": 20973, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20965, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20966, + "properties": { + "axis": "y" + } + }, + { + "id": 20967, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 186, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 187, + "properties": { + "axis": "y" + } + }, + { + "id": 188, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 243, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 244, + "properties": { + "axis": "y" + } + }, + { + "id": 245, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 177, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 178, + "properties": { + "axis": "y" + } + }, + { + "id": 179, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 235, + "properties": { + "axis": "y" + } + }, + { + "id": 236, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 195, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 196, + "properties": { + "axis": "y" + } + }, + { + "id": 197, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 249, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 250, + "properties": { + "axis": "y" + } + }, + { + "id": 251, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 192, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 193, + "properties": { + "axis": "y" + } + }, + { + "id": 194, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 225, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 226, + "properties": { + "axis": "y" + } + }, + { + "id": 227, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_pale_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 189, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 190, + "properties": { + "axis": "y" + } + }, + { + "id": 191, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_pale_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 246, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 247, + "properties": { + "axis": "y" + } + }, + { + "id": 248, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 171, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 172, + "properties": { + "axis": "y" + } + }, + { + "id": 173, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 228, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 229, + "properties": { + "axis": "y" + } + }, + { + "id": 230, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20954, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20955, + "properties": { + "axis": "y" + } + }, + { + "id": 20956, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20948, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20949, + "properties": { + "axis": "y" + } + }, + { + "id": 20950, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "definition": { + "type": "minecraft:structure", + "properties": {} + }, + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "id": 21722, + "properties": { + "mode": "save" + } + }, + { + "default": true, + "id": 21723, + "properties": { + "mode": "load" + } + }, + { + "id": 21724, + "properties": { + "mode": "corner" + } + }, + { + "id": 21725, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "definition": { + "type": "minecraft:structure_void", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14851 + } + ] + }, + "minecraft:sugar_cane": { + "definition": { + "type": "minecraft:sugar_cane", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 6947, + "properties": { + "age": "0" + } + }, + { + "id": 6948, + "properties": { + "age": "1" + } + }, + { + "id": 6949, + "properties": { + "age": "2" + } + }, + { + "id": 6950, + "properties": { + "age": "3" + } + }, + { + "id": 6951, + "properties": { + "age": "4" + } + }, + { + "id": 6952, + "properties": { + "age": "5" + } + }, + { + "id": 6953, + "properties": { + "age": "6" + } + }, + { + "id": 6954, + "properties": { + "age": "7" + } + }, + { + "id": 6955, + "properties": { + "age": "8" + } + }, + { + "id": 6956, + "properties": { + "age": "9" + } + }, + { + "id": 6957, + "properties": { + "age": "10" + } + }, + { + "id": 6958, + "properties": { + "age": "11" + } + }, + { + "id": 6959, + "properties": { + "age": "12" + } + }, + { + "id": 6960, + "properties": { + "age": "13" + } + }, + { + "id": 6961, + "properties": { + "age": "14" + } + }, + { + "id": 6962, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:sunflower": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12915, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12916, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:suspicious_gravel": { + "definition": { + "type": "minecraft:brushable", + "brush_completed_sound": "minecraft:item.brush.brushing.gravel", + "brush_sound": "minecraft:item.brush.brushing.gravel", + "properties": {}, + "turns_into": "minecraft:gravel" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 125, + "properties": { + "dusted": "0" + } + }, + { + "id": 126, + "properties": { + "dusted": "1" + } + }, + { + "id": 127, + "properties": { + "dusted": "2" + } + }, + { + "id": 128, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:suspicious_sand": { + "definition": { + "type": "minecraft:brushable", + "brush_completed_sound": "minecraft:item.brush.brushing.sand", + "brush_sound": "minecraft:item.brush.brushing.sand", + "properties": {}, + "turns_into": "minecraft:sand" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 119, + "properties": { + "dusted": "0" + } + }, + { + "id": 120, + "properties": { + "dusted": "1" + } + }, + { + "id": 121, + "properties": { + "dusted": "2" + } + }, + { + "id": 122, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "definition": { + "type": "minecraft:sweet_berry_bush", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 20941, + "properties": { + "age": "0" + } + }, + { + "id": 20942, + "properties": { + "age": "1" + } + }, + { + "id": 20943, + "properties": { + "age": "2" + } + }, + { + "id": 20944, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:tall_dry_grass": { + "definition": { + "type": "minecraft:tall_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2253 + } + ] + }, + "minecraft:tall_grass": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12923, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12924, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "definition": { + "type": "minecraft:tall_seagrass", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 2255, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 2256, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "definition": { + "type": "minecraft:target", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 21752, + "properties": { + "power": "0" + } + }, + { + "id": 21753, + "properties": { + "power": "1" + } + }, + { + "id": 21754, + "properties": { + "power": "2" + } + }, + { + "id": 21755, + "properties": { + "power": "3" + } + }, + { + "id": 21756, + "properties": { + "power": "4" + } + }, + { + "id": 21757, + "properties": { + "power": "5" + } + }, + { + "id": 21758, + "properties": { + "power": "6" + } + }, + { + "id": 21759, + "properties": { + "power": "7" + } + }, + { + "id": 21760, + "properties": { + "power": "8" + } + }, + { + "id": 21761, + "properties": { + "power": "9" + } + }, + { + "id": 21762, + "properties": { + "power": "10" + } + }, + { + "id": 21763, + "properties": { + "power": "11" + } + }, + { + "id": 21764, + "properties": { + "power": "12" + } + }, + { + "id": 21765, + "properties": { + "power": "13" + } + }, + { + "id": 21766, + "properties": { + "power": "14" + } + }, + { + "id": 21767, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12912 + } + ] + }, + "minecraft:test_block": { + "definition": { + "type": "minecraft:test", + "properties": {} + }, + "properties": { + "mode": [ + "start", + "log", + "fail", + "accept" + ] + }, + "states": [ + { + "default": true, + "id": 21738, + "properties": { + "mode": "start" + } + }, + { + "id": 21739, + "properties": { + "mode": "log" + } + }, + { + "id": 21740, + "properties": { + "mode": "fail" + } + }, + { + "id": 21741, + "properties": { + "mode": "accept" + } + } + ] + }, + "minecraft:test_instance_block": { + "definition": { + "type": "minecraft:test_instance", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21742 + } + ] + }, + "minecraft:tinted_glass": { + "definition": { + "type": "minecraft:tinted_glass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24688 + } + ] + }, + "minecraft:tnt": { + "definition": { + "type": "minecraft:tnt", + "properties": {} + }, + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2341, + "properties": { + "unstable": "true" + } + }, + { + "default": true, + "id": 2342, + "properties": { + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3370 + } + ] + }, + "minecraft:torchflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2323 + } + ] + }, + "minecraft:torchflower_crop": { + "definition": { + "type": "minecraft:torchflower_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 14797, + "properties": { + "age": "0" + } + }, + { + "id": 14798, + "properties": { + "age": "1" + } + } + ] + }, + "minecraft:trapped_chest": { + "definition": { + "type": "minecraft:trapped_chest", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11207, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11208, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11209, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 11210, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11211, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 11212, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11213, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11214, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11215, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11216, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11217, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11218, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11219, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11220, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11221, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11222, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11223, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11224, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11225, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11226, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 11227, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11228, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 11229, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11230, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:trial_spawner": { + "definition": { + "type": "minecraft:trial_spawner", + "properties": {} + }, + "properties": { + "ominous": [ + "true", + "false" + ], + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + }, + "states": [ + { + "id": 29657, + "properties": { + "ominous": "true", + "trial_spawner_state": "inactive" + } + }, + { + "id": 29658, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 29659, + "properties": { + "ominous": "true", + "trial_spawner_state": "active" + } + }, + { + "id": 29660, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 29661, + "properties": { + "ominous": "true", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 29662, + "properties": { + "ominous": "true", + "trial_spawner_state": "cooldown" + } + }, + { + "default": true, + "id": 29663, + "properties": { + "ominous": "false", + "trial_spawner_state": "inactive" + } + }, + { + "id": 29664, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 29665, + "properties": { + "ominous": "false", + "trial_spawner_state": "active" + } + }, + { + "id": 29666, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 29667, + "properties": { + "ominous": "false", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 29668, + "properties": { + "ominous": "false", + "trial_spawner_state": "cooldown" + } + } + ] + }, + "minecraft:tripwire": { + "definition": { + "type": "minecraft:tripwire", + "hook": "minecraft:tripwire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9599, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9600, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9601, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9602, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9603, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9604, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9605, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9606, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9607, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9608, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9609, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9610, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9611, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9612, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9613, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9614, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9615, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9616, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9617, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9618, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9619, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9620, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9621, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9622, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9623, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9624, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9625, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9626, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9627, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9628, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9629, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9630, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9631, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9632, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9633, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9634, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9635, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9636, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9637, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9638, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9639, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9640, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9641, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9642, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9643, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9644, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9645, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9646, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9647, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9648, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9649, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9650, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9651, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9652, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9653, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9654, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9655, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9656, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9657, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9658, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9659, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9660, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9661, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9662, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9663, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9664, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9665, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9666, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9667, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9668, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9669, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9670, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9671, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9672, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9673, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9674, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9675, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9676, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9677, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9678, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9679, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9680, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9681, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9682, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9683, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9684, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9685, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9686, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9687, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9688, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9689, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9690, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9691, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9692, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9693, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9694, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9695, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9696, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9697, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9698, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9699, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9700, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9701, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9702, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9703, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9704, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9705, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9706, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9707, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9708, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9709, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9710, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9711, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9712, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9713, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9714, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9715, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9716, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9717, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9718, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9719, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9720, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9721, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9722, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9723, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9724, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9725, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9726, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "definition": { + "type": "minecraft:trip_wire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9583, + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9584, + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9585, + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9586, + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9587, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9588, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9589, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9590, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9591, + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9592, + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9593, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9594, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9595, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9596, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9597, + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9598, + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_tube_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15157, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15158, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_tube_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15142 + } + ] + }, + "minecraft:tube_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_tube_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15177, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15178, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_tube_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15227, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15228, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15229, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15230, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15231, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15232, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15233, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15234, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23452 + } + ] + }, + "minecraft:tuff_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24282, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24283, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24284, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24285, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24293, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24302, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24303, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24304, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24305, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24308, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24309, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24313, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24322, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24323, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24324, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24325, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24328, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24329, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24333, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24342, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24343, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24344, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24345, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24348, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24349, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24362, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24363, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24364, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24365, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24366, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24367, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24368, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24369, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24370, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24371, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24372, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24373, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24374, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24375, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24376, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24377, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24378, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24379, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24380, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24381, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24382, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24383, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24384, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24385, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24386, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24387, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24388, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24389, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24390, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24391, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24392, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24393, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24394, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24395, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24396, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24397, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24398, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24399, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24400, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24401, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24402, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24403, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24404, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24405, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24406, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24407, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24408, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24409, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24410, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24411, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24412, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24413, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24414, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24415, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24416, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24417, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24418, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24419, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24420, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24421, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24422, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24423, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24424, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24425, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24426, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24427, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24428, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24429, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24430, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24431, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24432, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24433, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24434, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24435, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24436, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24437, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24438, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24439, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24440, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24441, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24442, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24443, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24444, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24445, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24446, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24447, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24448, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24449, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24450, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24451, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24452, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24453, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24454, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24455, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24456, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24457, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24458, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24459, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24460, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24461, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24462, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24463, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24464, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24465, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24466, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24467, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24468, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24469, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24470, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24471, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24472, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24473, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24474, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24475, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24476, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24477, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24478, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24479, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24480, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24481, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24482, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24483, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24484, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24485, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24486, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24487, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24488, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24489, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24490, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24491, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24492, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24493, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24494, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24495, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24496, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24497, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24498, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24499, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24500, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24501, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24502, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24503, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24504, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24505, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24506, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24507, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24508, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24509, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24510, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24511, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24512, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24513, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24514, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24515, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24516, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24517, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24518, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24519, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24520, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24521, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24522, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24523, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24524, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24525, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24526, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24527, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24528, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24529, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24530, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24531, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24532, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24533, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24534, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24535, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24536, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24537, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24538, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24539, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24540, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24541, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24542, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24543, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24544, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24545, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24546, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24547, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24548, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24549, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24550, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24551, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24552, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24553, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24554, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24555, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24556, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24557, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24558, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24559, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24560, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24561, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24562, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24563, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24564, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24565, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24566, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24567, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24568, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24569, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24570, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24571, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24572, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24573, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24574, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24575, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24576, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24577, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24578, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24579, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24580, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24581, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24582, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24583, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24584, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24585, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24586, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24587, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24588, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24589, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24590, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24591, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24592, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24593, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24594, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24595, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24596, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24597, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24598, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24599, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24600, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24601, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24602, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24603, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24604, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24605, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24606, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24607, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24608, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24609, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24610, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24611, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24612, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24613, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24614, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24615, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24616, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24617, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24618, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24619, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24620, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24621, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24622, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24623, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24624, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24625, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24626, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24627, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24628, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24629, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24630, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24631, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24632, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24633, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24634, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24635, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24636, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24637, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24638, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24639, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24640, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24641, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24642, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24643, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24644, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24645, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24646, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24647, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24648, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24649, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24650, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24651, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24652, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24653, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24654, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24655, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24656, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24657, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24658, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24659, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24660, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24661, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24662, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24663, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24664, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24665, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24666, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24667, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24668, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24669, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24670, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24671, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24672, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24673, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24674, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24675, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24676, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24677, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24678, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24679, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24680, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24681, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24682, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24683, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24684, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24685, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24275 + } + ] + }, + "minecraft:tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23453, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23454, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23455, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23456, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23457, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23458, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23459, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23460, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23461, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23462, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23463, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23464, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23465, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23466, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23467, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23468, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23479, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23480, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23481, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23482, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23483, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23484, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23485, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23486, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23487, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23488, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23499, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23500, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23501, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23502, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23503, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23504, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23505, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23506, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23507, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23508, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23519, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23520, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23521, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23522, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23523, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23524, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23525, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23526, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23527, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23528, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23539, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23540, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23541, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23542, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23543, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23544, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23545, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23546, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23547, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23548, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23551, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23552, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23553, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23554, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23555, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23556, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23557, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23558, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23559, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23560, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23563, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23564, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23565, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23566, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23567, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23568, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23569, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23570, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23571, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23572, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23575, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23576, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23577, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23578, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23579, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23580, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23581, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23582, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23583, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23584, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23587, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23588, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23589, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23590, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23591, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23592, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23593, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23594, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23595, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23596, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23599, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23600, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23601, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23602, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23603, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23604, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23605, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23606, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23607, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23608, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23611, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23612, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23613, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23614, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23615, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23616, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23617, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23618, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23619, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23620, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23621, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23622, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23623, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23624, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23625, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23626, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23627, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23628, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23629, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23630, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23631, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23632, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23633, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23634, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23635, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23636, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23637, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23638, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23639, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23640, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23641, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23642, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23643, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23644, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23645, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23646, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23647, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23648, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23649, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23650, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23651, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23652, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23653, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23654, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23655, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23656, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23657, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23658, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23659, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23660, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23661, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23662, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23663, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23664, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23665, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23666, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23667, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23668, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23669, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23670, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23671, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23672, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23673, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23674, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23675, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23676, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23677, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23678, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23679, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23680, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23681, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23682, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23683, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23684, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23685, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23686, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23687, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23688, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23689, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23690, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23691, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23692, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23693, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23694, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23695, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23696, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23697, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23698, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23699, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23700, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23701, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23702, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23703, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23704, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23705, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23706, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23707, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23708, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23709, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23710, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23711, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23712, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23713, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23714, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23715, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23716, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23717, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23718, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23719, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23720, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23721, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23722, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23723, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23724, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23725, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23726, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23727, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23728, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23729, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23730, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23731, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23732, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23733, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23734, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23735, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23736, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23737, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23738, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23739, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23740, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23741, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23742, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23743, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23744, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23745, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23746, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23747, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23748, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23749, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23750, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23751, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23752, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23753, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23754, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23755, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23756, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23757, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23758, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23759, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23760, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23761, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23762, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23763, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23764, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23767, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23768, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23769, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23770, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23771, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23772, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23773, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23774, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23775, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23776, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23779, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23780, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23781, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23782, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23783, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23784, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23785, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23786, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23787, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23788, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23791, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23792, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23793, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23794, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23795, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23796, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23797, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23798, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23799, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23800, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23803, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23804, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23805, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23806, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23807, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23808, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23809, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23810, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23811, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23812, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23815, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23816, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23817, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23818, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23819, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23820, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23821, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23822, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23823, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23824, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23827, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23828, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23829, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23830, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23831, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23832, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23833, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23834, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23835, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23836, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23839, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23840, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23841, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23842, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23843, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23844, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23845, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23846, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23847, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23848, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23851, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23852, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23853, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23854, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23855, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23856, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23857, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23858, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23859, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23860, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:turtle_egg": { + "definition": { + "type": "minecraft:turtle_egg", + "properties": {} + }, + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 15090, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 15091, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 15092, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 15093, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 15094, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 15095, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 15096, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 15097, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 15098, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 15099, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 15100, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 15101, + "properties": { + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "definition": { + "type": "minecraft:twisting_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 21004, + "properties": { + "age": "0" + } + }, + { + "id": 21005, + "properties": { + "age": "1" + } + }, + { + "id": 21006, + "properties": { + "age": "2" + } + }, + { + "id": 21007, + "properties": { + "age": "3" + } + }, + { + "id": 21008, + "properties": { + "age": "4" + } + }, + { + "id": 21009, + "properties": { + "age": "5" + } + }, + { + "id": 21010, + "properties": { + "age": "6" + } + }, + { + "id": 21011, + "properties": { + "age": "7" + } + }, + { + "id": 21012, + "properties": { + "age": "8" + } + }, + { + "id": 21013, + "properties": { + "age": "9" + } + }, + { + "id": 21014, + "properties": { + "age": "10" + } + }, + { + "id": 21015, + "properties": { + "age": "11" + } + }, + { + "id": 21016, + "properties": { + "age": "12" + } + }, + { + "id": 21017, + "properties": { + "age": "13" + } + }, + { + "id": 21018, + "properties": { + "age": "14" + } + }, + { + "id": 21019, + "properties": { + "age": "15" + } + }, + { + "id": 21020, + "properties": { + "age": "16" + } + }, + { + "id": 21021, + "properties": { + "age": "17" + } + }, + { + "id": 21022, + "properties": { + "age": "18" + } + }, + { + "id": 21023, + "properties": { + "age": "19" + } + }, + { + "id": 21024, + "properties": { + "age": "20" + } + }, + { + "id": 21025, + "properties": { + "age": "21" + } + }, + { + "id": 21026, + "properties": { + "age": "22" + } + }, + { + "id": 21027, + "properties": { + "age": "23" + } + }, + { + "id": 21028, + "properties": { + "age": "24" + } + }, + { + "id": 21029, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "definition": { + "type": "minecraft:twisting_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21030 + } + ] + }, + "minecraft:vault": { + "definition": { + "type": "minecraft:vault", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "ominous": [ + "true", + "false" + ], + "vault_state": [ + "inactive", + "active", + "unlocking", + "ejecting" + ] + }, + "states": [ + { + "id": 29669, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 29670, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 29671, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 29672, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "default": true, + "id": 29673, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 29674, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 29675, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 29676, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 29677, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 29678, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 29679, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 29680, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 29681, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 29682, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 29683, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 29684, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 29685, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 29686, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 29687, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 29688, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 29689, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 29690, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 29691, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 29692, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 29693, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 29694, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 29695, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 29696, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 29697, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 29698, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 29699, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 29700, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "ejecting" + } + } + ] + }, + "minecraft:verdant_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 29585, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 29586, + "properties": { + "axis": "y" + } + }, + { + "id": 29587, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "definition": { + "type": "minecraft:vine", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8358, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8359, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8360, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8361, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8362, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8363, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8364, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8365, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8366, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8367, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8368, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8369, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8370, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8371, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8372, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8373, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8374, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8375, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8376, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8377, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8378, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8379, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8380, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8381, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8382, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8383, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8384, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8385, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8386, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8387, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8388, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8389, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15292 + } + ] + }, + "minecraft:wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 3371, + "properties": { + "facing": "north" + } + }, + { + "id": 3372, + "properties": { + "facing": "south" + } + }, + { + "id": 3373, + "properties": { + "facing": "west" + } + }, + { + "id": 3374, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:warped_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "warped", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21490, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21491, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21492, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21493, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21494, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21495, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21496, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21497, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21498, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 21499, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21500, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21501, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21502, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21503, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21504, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21505, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21506, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21507, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21508, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21509, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21510, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21511, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21512, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21513, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:warped_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21578, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21579, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21580, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21581, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21582, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21583, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21584, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21585, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21586, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21587, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21588, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21589, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21590, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21591, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21592, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21593, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21594, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21595, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21596, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21597, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21598, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21599, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21600, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21601, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21602, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21603, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21604, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21605, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21606, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21607, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21608, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21609, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21610, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21611, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21612, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21613, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21614, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21615, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21616, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21617, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21618, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21619, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21620, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21621, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21622, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21623, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21624, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21625, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21626, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21627, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21628, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21629, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21630, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21631, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21632, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21633, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21634, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21635, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21636, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21637, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21638, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21639, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21640, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21641, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21082, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21083, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21084, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21085, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21086, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21087, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21088, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21089, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21090, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21091, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21092, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21093, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21094, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21095, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21096, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21097, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21098, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21099, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21100, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21101, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21102, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21103, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21104, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21105, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21106, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21107, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21108, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21109, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21110, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21111, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21112, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 21113, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21274, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21275, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21276, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21277, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21278, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21279, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21280, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21281, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21282, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21283, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21284, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21285, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21286, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21287, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21288, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21289, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21290, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21291, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21292, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21293, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21294, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21295, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21296, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21297, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21298, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21299, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21300, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21301, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21302, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21303, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21304, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21305, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "definition": { + "type": "minecraft:nether_fungus", + "feature": "minecraft:warped_fungus_planted", + "grows_on": "minecraft:warped_nylium", + "properties": {}, + "support_blocks": "minecraft:supports_warped_fungus" + }, + "states": [ + { + "default": true, + "id": 20958 + } + ] + }, + "minecraft:warped_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6483, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6484, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6485, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6486, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6487, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6488, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6489, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6490, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6491, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6492, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6493, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6494, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6495, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6496, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6497, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6498, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6499, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6500, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6501, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6502, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6503, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6504, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6505, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6506, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6507, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6508, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6509, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6510, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6511, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6512, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6513, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6514, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6515, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6516, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6517, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6518, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6519, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6520, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6521, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6522, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6523, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6524, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6525, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6526, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6527, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6528, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6529, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6530, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6531, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6532, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6533, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6534, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6535, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6536, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6537, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6538, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6539, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6540, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6541, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6542, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6543, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6544, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6545, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6546, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20951, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20952, + "properties": { + "axis": "y" + } + }, + { + "id": 20953, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20957 + } + ] + }, + "minecraft:warped_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21033 + } + ] + }, + "minecraft:warped_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21048, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 21049, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "definition": { + "type": "minecraft:nether_roots", + "properties": {}, + "support_blocks": "minecraft:supports_warped_roots" + }, + "states": [ + { + "default": true, + "id": 20960 + } + ] + }, + "minecraft:warped_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3304, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3305, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3306, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3307, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3308, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3309, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3310, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3311, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3312, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3313, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3314, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3315, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3316, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3317, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3318, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3319, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3320, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3321, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3322, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3323, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3324, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3325, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3326, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3327, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3328, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3329, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3330, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3331, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3332, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3333, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3334, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3335, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3336, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3337, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3338, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3339, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3340, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3341, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3342, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3343, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3344, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3345, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3346, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3347, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3348, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3349, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3350, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3351, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3352, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3353, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3354, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3355, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3356, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3357, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3358, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3359, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3360, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3361, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3362, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3363, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3364, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3365, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3366, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3367, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21674, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 21675, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 21676, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 21677, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 21678, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 21679, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 21680, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 21681, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 21682, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 21683, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 21684, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 21685, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 21686, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 21687, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 21688, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 21689, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 21690, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21691, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 21692, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 21693, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 21694, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 21695, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 21696, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 21697, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 21698, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 21699, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 21700, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 21701, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 21702, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 21703, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 21704, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 21705, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21040, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21041, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21042, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21043, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21044, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21045, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:warped_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21386, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21387, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21388, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21389, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21390, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21391, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21392, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21393, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21394, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21395, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21396, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21397, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21398, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21399, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21400, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21401, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21402, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21403, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21404, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21405, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21406, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21407, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21408, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21409, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21410, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21411, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21412, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21413, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21414, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21415, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21416, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21417, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21419, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21420, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21421, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21422, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21423, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21424, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21425, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21426, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21427, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21428, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21429, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21430, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21431, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21432, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21433, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21434, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21435, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21436, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21437, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21438, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21439, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21440, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21441, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21442, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21443, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21444, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21445, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21446, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21447, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21448, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21449, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21450, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21451, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21452, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21453, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21454, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21455, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21456, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21457, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21459, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21460, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21461, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21462, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21463, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21464, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21465, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20945, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20946, + "properties": { + "axis": "y" + } + }, + { + "id": 20947, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21178, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21179, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21180, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21181, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21182, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21183, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21184, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21185, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21186, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21187, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21188, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21189, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21190, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21191, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21192, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21193, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21194, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21195, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21196, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21197, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21198, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21199, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21200, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21201, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21202, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21203, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21204, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21205, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21206, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21207, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21208, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21209, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21210, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21211, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21212, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21213, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21214, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21215, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21216, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21217, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21218, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21219, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21220, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21221, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21222, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21223, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21224, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21225, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21226, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21227, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21228, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21229, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21230, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21231, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21232, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21233, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21234, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21235, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21236, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21237, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21238, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21239, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21240, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21241, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6755, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6756, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6757, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6758, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6759, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6760, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6761, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6762, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21714, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21715, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21716, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21717, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21718, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21719, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21720, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21721, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20959 + } + ] + }, + "minecraft:water": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:water", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 86, + "properties": { + "level": "0" + } + }, + { + "id": 87, + "properties": { + "level": "1" + } + }, + { + "id": 88, + "properties": { + "level": "2" + } + }, + { + "id": 89, + "properties": { + "level": "3" + } + }, + { + "id": 90, + "properties": { + "level": "4" + } + }, + { + "id": 91, + "properties": { + "level": "5" + } + }, + { + "id": 92, + "properties": { + "level": "6" + } + }, + { + "id": 93, + "properties": { + "level": "7" + } + }, + { + "id": 94, + "properties": { + "level": "8" + } + }, + { + "id": 95, + "properties": { + "level": "9" + } + }, + { + "id": 96, + "properties": { + "level": "10" + } + }, + { + "id": 97, + "properties": { + "level": "11" + } + }, + { + "id": 98, + "properties": { + "level": "12" + } + }, + { + "id": 99, + "properties": { + "level": "13" + } + }, + { + "id": 100, + "properties": { + "level": "14" + } + }, + { + "id": 101, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:water_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "water", + "precipitation": "rain", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9461, + "properties": { + "level": "1" + } + }, + { + "id": 9462, + "properties": { + "level": "2" + } + }, + { + "id": 9463, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:waxed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25326 + } + ] + }, + "minecraft:waxed_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8118, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8119, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8120, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8121, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8122, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8123, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8124, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8125, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8126, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8127, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8128, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8129, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8130, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8131, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8132, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8133, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8134, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8135, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8136, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8137, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8138, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8139, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8140, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8141, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8142, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8143, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8144, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8145, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8146, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8147, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8148, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8149, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25671 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27079, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27080, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27081, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27082, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8276, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8277, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8278, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8279, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8280, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8281, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27191, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27192, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27193, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27194, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27195, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27196, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27197, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27198, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27199, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27200, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27201, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27202, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27203, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27204, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27205, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27206, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27207, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27208, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27209, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27210, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27211, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27212, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27213, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27214, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26279, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26280, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26281, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26282, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26283, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26284, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26285, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26286, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26287, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26288, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26289, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26290, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26291, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26292, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26293, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26294, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26295, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26296, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26297, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26298, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26299, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26300, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26301, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26302, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26303, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26304, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26305, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26306, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26307, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26308, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26309, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26310, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26311, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26312, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26313, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26314, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26315, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26316, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26317, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26318, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26319, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26320, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26321, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26322, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26323, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26324, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26325, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26326, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26327, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26328, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26329, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26330, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26331, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26332, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26333, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26334, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26335, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26336, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26337, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26338, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26339, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26340, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26341, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26342, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27415, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27416, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27417, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27418, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27419, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27420, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27421, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27422, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27423, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27424, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27425, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27426, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27427, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27428, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27429, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27430, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27431, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27432, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27433, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27434, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27435, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27436, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27437, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27438, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27439, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27440, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27441, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27442, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27443, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27444, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27445, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27446, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27055, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27056, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20861, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20862, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20863, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20864, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26791, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26792, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26793, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26794, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26795, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26796, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26797, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26798, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26799, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26800, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26801, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26802, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26803, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26804, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26805, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26806, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26807, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26808, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26809, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26810, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26811, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26812, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26813, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26814, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26815, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26816, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26817, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26818, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26819, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26820, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26821, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26822, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26823, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26824, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26825, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26826, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26827, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26828, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26829, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26830, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26831, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26832, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26833, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26834, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26835, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26836, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26837, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26838, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26839, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26840, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26841, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26842, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26843, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26844, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26845, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26846, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26847, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26848, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26849, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26850, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26851, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26852, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26853, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26854, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25678 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26017, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26018, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26019, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26020, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26021, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26022, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25919, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25920, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25921, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25922, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25923, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25924, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25925, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25926, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25927, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25928, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25929, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25930, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25931, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25932, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25939, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25940, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25941, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25942, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25943, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25944, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25945, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25946, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25947, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25948, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25949, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25950, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25951, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25952, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25959, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25960, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25961, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25962, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25963, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25964, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25965, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25966, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25967, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25968, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25969, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25970, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25971, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25972, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25979, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25980, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25981, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25982, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25983, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25984, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25985, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25986, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25987, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25988, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25989, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25990, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25991, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25992, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25325 + } + ] + }, + "minecraft:waxed_exposed_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25673 + } + ] + }, + "minecraft:waxed_exposed_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8150, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8151, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8152, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8153, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8154, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8155, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8156, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8157, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8158, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8159, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8160, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8161, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8162, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8163, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8164, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8165, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8166, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8167, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8168, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8169, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8170, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8171, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8172, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8173, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8174, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8175, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8176, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8177, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8178, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8179, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8180, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8181, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27083, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27084, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27085, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27086, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8282, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8283, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8284, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8285, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8286, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8287, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27215, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27216, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27217, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27218, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27219, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27220, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27221, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27222, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27223, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27224, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27225, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27226, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27227, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27228, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27229, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27230, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27231, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27232, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27233, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27234, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27235, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27236, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27237, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27238, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26343, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26344, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26345, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26346, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26347, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26348, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26349, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26350, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26351, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26352, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26353, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26354, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26355, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26356, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26357, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26358, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26359, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26360, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26361, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26362, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26363, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26364, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26365, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26366, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26367, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26368, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26369, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26370, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26371, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26372, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26373, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26374, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26375, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26376, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26377, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26378, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26379, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26380, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26381, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26382, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26383, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26384, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26385, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26386, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26387, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26388, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26389, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26390, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26391, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26392, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26393, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26394, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26395, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26396, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26397, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26398, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26399, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26400, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26401, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26402, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26403, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26404, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26405, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26406, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27447, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27448, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27449, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27450, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27451, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27452, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27453, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27454, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27455, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27456, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27457, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27458, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27459, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27460, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27461, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27462, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27463, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27464, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27465, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27466, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27467, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27468, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27469, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27470, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27471, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27472, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27473, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27474, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27475, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27476, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27477, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27478, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27057, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27058, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20865, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20866, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20867, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20868, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26855, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26856, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26857, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26858, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26859, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26860, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26861, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26862, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26863, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26864, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26865, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26866, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26867, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26868, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26869, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26870, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26871, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26872, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26873, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26874, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26875, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26876, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26877, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26878, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26879, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26880, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26881, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26882, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26883, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26884, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26885, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26886, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26887, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26888, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26889, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26890, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26891, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26892, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26893, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26894, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26895, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26896, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26897, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26898, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26899, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26900, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26901, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26902, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26903, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26904, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26905, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26906, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26907, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26908, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26909, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26910, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26911, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26912, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26913, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26914, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26915, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26916, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26917, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26918, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25677 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26011, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26012, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26013, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26014, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26015, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26016, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_exposed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25839, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25840, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25841, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25842, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25843, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25844, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25845, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25846, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25847, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25848, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25851, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25852, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25853, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25854, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25855, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25856, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25857, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25858, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25859, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25860, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25861, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25862, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25863, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25864, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25865, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25866, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25867, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25868, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25871, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25872, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25873, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25874, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25875, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25876, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25877, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25878, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25879, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25880, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25881, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25882, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25883, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25884, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25885, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25886, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25887, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25888, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25891, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25892, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25893, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25894, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25895, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25896, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25897, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25898, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25899, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25900, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25901, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25902, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25903, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25904, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25905, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25906, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25907, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25908, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25911, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25912, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25913, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25914, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25915, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25916, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25918, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27663, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27664, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27665, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27666, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27667, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27668, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27669, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27670, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27671, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27672, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27673, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27674, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27675, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27676, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27677, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27678, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27679, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27680, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27681, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27682, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27683, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27684, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27685, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27686, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27639, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27640, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27641, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27642, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27643, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27644, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27645, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27646, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27647, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27648, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27649, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27650, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27651, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27652, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27653, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27654, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27655, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27656, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27657, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27658, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27659, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27660, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27661, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27662, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25323 + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25674 + } + ] + }, + "minecraft:waxed_oxidized_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8214, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8215, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8216, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8217, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8218, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8219, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8220, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8221, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8222, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8223, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8224, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8225, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8226, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8227, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8228, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8229, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8230, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8231, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8232, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8233, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8234, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8235, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8236, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8237, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8238, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8239, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8240, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8241, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8242, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8243, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8244, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8245, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27091, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27092, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27093, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27094, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8294, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8295, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8296, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8297, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8298, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8299, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest_oxidized.close", + "open_sound": "minecraft:block.copper_chest_oxidized.open", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27263, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27264, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27265, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27266, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27267, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27268, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27269, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27270, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27271, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27272, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27273, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27274, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27275, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27276, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27277, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27278, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27279, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27280, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27281, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27282, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27283, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27284, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27285, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27286, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26407, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26408, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26409, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26410, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26411, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26412, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26413, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26414, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26415, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26416, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26417, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26418, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26419, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26420, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26421, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26422, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26423, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26424, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26425, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26426, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26427, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26428, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26429, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26430, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26431, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26432, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26433, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26434, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26435, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26436, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26437, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26438, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26439, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26440, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26441, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26442, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26443, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26444, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26445, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26446, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26447, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26448, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26449, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26450, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26451, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26452, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26453, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26454, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26455, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26456, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26457, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26458, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26459, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26460, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26461, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26462, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26463, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26464, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26465, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26466, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26467, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26468, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26469, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26470, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27511, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27512, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27513, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27514, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27515, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27516, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27517, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27518, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27519, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27520, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27521, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27522, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27523, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27524, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27525, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27526, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27527, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27528, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27529, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27530, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27531, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27532, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27533, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27534, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27535, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27536, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27537, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27538, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27539, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27540, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27541, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27542, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27061, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27062, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20873, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20874, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20875, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20876, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26919, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26920, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26921, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26922, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26923, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26924, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26925, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26926, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26927, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26928, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26929, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26930, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26931, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26932, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26933, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26934, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26935, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26936, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26937, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26938, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26939, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26940, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26941, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26942, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26943, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26944, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26945, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26946, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26947, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26948, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26949, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26950, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26951, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26952, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26953, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26954, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26955, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26956, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26957, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26958, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26959, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26960, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26961, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26962, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26963, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26964, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26965, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26966, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26967, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26968, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26969, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26970, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26971, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26972, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26973, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26974, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26975, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26976, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26977, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26978, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26979, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26980, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26981, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26982, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25675 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25999, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26000, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26001, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26002, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26003, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26004, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_oxidized_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25679, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25680, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25681, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25682, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25683, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25684, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25685, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25686, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25687, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25688, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25689, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25690, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25691, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25698, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25699, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25700, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25701, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25702, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25703, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25704, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25705, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25706, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25707, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25708, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25709, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25710, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25711, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25718, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25719, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25720, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25721, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25722, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25723, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25724, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25725, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25726, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25727, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25728, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25729, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25730, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25731, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25738, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25739, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25740, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25741, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25742, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25743, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25744, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25745, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25746, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25747, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25748, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25749, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25750, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25751, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25758, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27711, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27712, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27713, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27714, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27715, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27716, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27717, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27718, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27719, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27720, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27721, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27722, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27723, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27724, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27725, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27726, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27727, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27728, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27729, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27730, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27731, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27732, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27733, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27734, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25324 + } + ] + }, + "minecraft:waxed_weathered_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25672 + } + ] + }, + "minecraft:waxed_weathered_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8182, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8183, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8184, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8185, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8186, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8187, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8188, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8189, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8190, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8191, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8192, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8193, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8194, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8195, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8196, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8197, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8198, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8199, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8200, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8201, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8202, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8203, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8204, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8205, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8206, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8207, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8208, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8209, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8210, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8211, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8212, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8213, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27087, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27088, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27089, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27090, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8288, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8289, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8290, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8291, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8292, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8293, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest_weathered.close", + "open_sound": "minecraft:block.copper_chest_weathered.open", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27239, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27240, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27241, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27242, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27243, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27244, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27245, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27246, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27247, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27248, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27249, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27250, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27251, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27252, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27253, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27254, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27255, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27256, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27257, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27258, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27259, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27260, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27261, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27262, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26471, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26472, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26473, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26474, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26475, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26476, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26477, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26478, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26479, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26480, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26481, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26482, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26483, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26484, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26485, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26486, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26487, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26488, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26489, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26490, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26491, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26492, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26493, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26494, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26495, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26496, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26497, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26498, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26499, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26500, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26501, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26502, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26503, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26504, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26505, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26506, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26507, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26508, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26509, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26510, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26511, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26512, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26513, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26514, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26515, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26516, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26517, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26518, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26519, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26520, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26521, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26522, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26523, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26524, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26525, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26526, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26527, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26528, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26529, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26530, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26531, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26532, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26533, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26534, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27479, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27480, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27481, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27482, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27483, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27484, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27485, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27486, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27487, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27488, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27489, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27490, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27491, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27492, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27493, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27494, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27495, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27496, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27497, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27498, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27499, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27500, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27501, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27502, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27503, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27504, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27505, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27506, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27507, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27508, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27509, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27510, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27059, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27060, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20869, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20870, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20871, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20872, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26983, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26984, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26985, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26986, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26987, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26988, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26989, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26990, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26991, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26992, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26993, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26994, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26995, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26996, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26997, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26998, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26999, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27000, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27001, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27002, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27003, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27004, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27005, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27006, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27007, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27008, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27009, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27010, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27011, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27012, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27013, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27014, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27015, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27016, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27017, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27018, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27019, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27020, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27021, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27022, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27023, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27024, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27025, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27026, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27027, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27028, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27029, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27030, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27031, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27032, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27033, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27034, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27035, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27036, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27037, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27038, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27039, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27040, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27041, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27042, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27043, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27044, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27045, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27046, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25676 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26005, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26006, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26007, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26008, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26009, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26010, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_weathered_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25759, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25760, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25761, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25762, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25763, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25764, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25765, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25766, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25767, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25768, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25769, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25770, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25771, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25775, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25776, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25777, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25778, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25779, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25780, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25781, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25782, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25783, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25784, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25785, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25786, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25787, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25788, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25789, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25790, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25791, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25795, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25796, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25797, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25798, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25799, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25800, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25801, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25802, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25803, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25804, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25805, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25806, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25807, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25808, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25809, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25810, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25811, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25815, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25816, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25817, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25818, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25819, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25820, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25821, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25822, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25823, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25824, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25825, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25826, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25827, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25828, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25829, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25830, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25831, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25835, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25836, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25837, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25838, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27687, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27688, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27689, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27690, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27691, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27692, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27693, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27694, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27695, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27696, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27697, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27698, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27699, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27700, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27701, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27702, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27703, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27704, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27705, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27706, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27707, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27708, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27709, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27710, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 25320 + } + ] + }, + "minecraft:weathered_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 25311 + } + ] + }, + "minecraft:weathered_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8054, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8055, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8056, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8057, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8058, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8059, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8060, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8061, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8062, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8063, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8064, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8065, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8066, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8067, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8068, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8069, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8070, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8071, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8072, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8073, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8074, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8075, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8076, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8077, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8078, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8079, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8080, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8081, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8082, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8083, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8084, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8085, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:weathered_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27071, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 27072, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 27073, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 27074, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8264, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8265, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8266, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8267, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8268, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8269, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest_weathered.close", + "open_sound": "minecraft:block.copper_chest_weathered.open", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27143, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27144, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27145, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27146, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27147, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27148, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27149, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27150, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27151, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27152, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27153, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27154, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27155, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27156, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27157, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27158, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27159, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27160, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27161, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27162, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27163, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27164, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27165, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27166, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26215, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26216, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26217, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26218, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26219, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26220, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26221, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26222, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26223, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26224, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26225, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 26226, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26227, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26228, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26229, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26230, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26231, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26232, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26233, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26234, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26235, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26236, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26237, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26238, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26239, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26240, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26241, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26242, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26243, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26244, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26245, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26246, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26247, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26248, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26249, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26250, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26251, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26252, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26253, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26254, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26255, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26256, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26257, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26258, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26259, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26260, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26261, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26262, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26263, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26264, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26265, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26266, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26267, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26268, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26269, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26270, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 26271, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 26272, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 26273, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 26274, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 26275, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 26276, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 26277, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 26278, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27351, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27352, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27353, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27354, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27355, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27356, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27357, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27358, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27359, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27360, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27361, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27362, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27363, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27364, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27365, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27366, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27367, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27368, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27369, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27370, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27371, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27372, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27373, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27374, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 27375, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 27376, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 27377, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 27378, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 27379, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 27380, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 27381, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 27382, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27051, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27052, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20853, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20854, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20855, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20856, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trap_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26727, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26728, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26729, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26730, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26731, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26732, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26733, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26734, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26735, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26736, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26737, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26738, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26739, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26740, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26741, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26742, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26743, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26744, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26745, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26746, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26747, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26748, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26749, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26750, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26751, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26752, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26753, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26754, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26755, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26756, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26757, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26758, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26759, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26760, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26761, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26762, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26763, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26764, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26765, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26766, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26767, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26768, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26769, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26770, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26771, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26772, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26773, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26774, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26775, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26776, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26777, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26778, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26779, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26780, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26781, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26782, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26783, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26784, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26785, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26786, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 26787, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 26788, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 26789, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 26790, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 25316 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25653, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25654, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25655, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25656, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25657, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25658, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:weathered_cut_copper" + }, + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25407, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25408, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25409, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25410, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25411, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25412, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25413, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25414, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25415, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25416, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25417, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25418, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25419, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25420, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25421, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25422, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25423, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25424, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25425, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25426, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25427, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25428, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25429, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25430, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25431, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25432, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25433, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25434, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25435, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25436, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25437, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25438, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25439, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25440, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25441, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25442, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25443, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25444, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25445, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25446, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25447, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25448, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25449, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25450, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25451, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25452, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25453, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25454, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25455, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25456, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25457, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25458, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25459, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25460, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25461, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25462, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25463, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25464, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25465, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25466, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25467, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25468, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25469, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25470, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25471, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25472, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25473, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25474, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25475, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25476, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25477, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25478, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25479, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25480, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25481, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25482, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25483, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25484, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25485, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25486, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27591, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27592, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27593, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27594, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27595, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27596, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27597, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27598, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27599, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27600, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27601, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27602, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27603, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27604, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27605, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27606, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27607, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27608, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27609, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27610, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 27611, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 27612, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 27613, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 27614, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { + "definition": { + "type": "minecraft:weeping_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 20977, + "properties": { + "age": "0" + } + }, + { + "id": 20978, + "properties": { + "age": "1" + } + }, + { + "id": 20979, + "properties": { + "age": "2" + } + }, + { + "id": 20980, + "properties": { + "age": "3" + } + }, + { + "id": 20981, + "properties": { + "age": "4" + } + }, + { + "id": 20982, + "properties": { + "age": "5" + } + }, + { + "id": 20983, + "properties": { + "age": "6" + } + }, + { + "id": 20984, + "properties": { + "age": "7" + } + }, + { + "id": 20985, + "properties": { + "age": "8" + } + }, + { + "id": 20986, + "properties": { + "age": "9" + } + }, + { + "id": 20987, + "properties": { + "age": "10" + } + }, + { + "id": 20988, + "properties": { + "age": "11" + } + }, + { + "id": 20989, + "properties": { + "age": "12" + } + }, + { + "id": 20990, + "properties": { + "age": "13" + } + }, + { + "id": 20991, + "properties": { + "age": "14" + } + }, + { + "id": 20992, + "properties": { + "age": "15" + } + }, + { + "id": 20993, + "properties": { + "age": "16" + } + }, + { + "id": 20994, + "properties": { + "age": "17" + } + }, + { + "id": 20995, + "properties": { + "age": "18" + } + }, + { + "id": 20996, + "properties": { + "age": "19" + } + }, + { + "id": 20997, + "properties": { + "age": "20" + } + }, + { + "id": 20998, + "properties": { + "age": "21" + } + }, + { + "id": 20999, + "properties": { + "age": "22" + } + }, + { + "id": 21000, + "properties": { + "age": "23" + } + }, + { + "id": 21001, + "properties": { + "age": "24" + } + }, + { + "id": 21002, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:weeping_vines_plant": { + "definition": { + "type": "minecraft:weeping_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21003 + } + ] + }, + "minecraft:wet_sponge": { + "definition": { + "type": "minecraft:wet_sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 561 + } + ] + }, + "minecraft:wheat": { + "definition": { + "type": "minecraft:crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5311, + "properties": { + "age": "0" + } + }, + { + "id": 5312, + "properties": { + "age": "1" + } + }, + { + "id": 5313, + "properties": { + "age": "2" + } + }, + { + "id": 5314, + "properties": { + "age": "3" + } + }, + { + "id": 5315, + "properties": { + "age": "4" + } + }, + { + "id": 5316, + "properties": { + "age": "5" + } + }, + { + "id": 5317, + "properties": { + "age": "6" + } + }, + { + "id": 5318, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:white_banner": { + "definition": { + "type": "minecraft:banner", + "color": "white", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12927, + "properties": { + "rotation": "0" + } + }, + { + "id": 12928, + "properties": { + "rotation": "1" + } + }, + { + "id": 12929, + "properties": { + "rotation": "2" + } + }, + { + "id": 12930, + "properties": { + "rotation": "3" + } + }, + { + "id": 12931, + "properties": { + "rotation": "4" + } + }, + { + "id": 12932, + "properties": { + "rotation": "5" + } + }, + { + "id": 12933, + "properties": { + "rotation": "6" + } + }, + { + "id": 12934, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12935, + "properties": { + "rotation": "8" + } + }, + { + "id": 12936, + "properties": { + "rotation": "9" + } + }, + { + "id": 12937, + "properties": { + "rotation": "10" + } + }, + { + "id": 12938, + "properties": { + "rotation": "11" + } + }, + { + "id": 12939, + "properties": { + "rotation": "12" + } + }, + { + "id": 12940, + "properties": { + "rotation": "13" + } + }, + { + "id": 12941, + "properties": { + "rotation": "14" + } + }, + { + "id": 12942, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:white_bed": { + "definition": { + "type": "minecraft:bed", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1931, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1932, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1933, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1934, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1935, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1936, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1937, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1938, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1939, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1940, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1941, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1942, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1943, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1944, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1945, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1946, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23112, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23113, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23114, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23115, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23116, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23117, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23118, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23119, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23120, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23121, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23122, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23123, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23124, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23125, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23126, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23127, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:white_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:white_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23370, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23371, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12896 + } + ] + }, + "minecraft:white_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15030 + } + ] + }, + "minecraft:white_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:white_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15046 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14966, + "properties": { + "facing": "north" + } + }, + { + "id": 14967, + "properties": { + "facing": "south" + } + }, + { + "id": 14968, + "properties": { + "facing": "west" + } + }, + { + "id": 14969, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14870, + "properties": { + "facing": "north" + } + }, + { + "id": 14871, + "properties": { + "facing": "east" + } + }, + { + "id": 14872, + "properties": { + "facing": "south" + } + }, + { + "id": 14873, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14874, + "properties": { + "facing": "up" + } + }, + { + "id": 14875, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:white_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7098 + } + ] + }, + "minecraft:white_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "white", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11460, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11461, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11462, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11463, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11464, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11465, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11466, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11467, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11468, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11469, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11470, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11471, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11472, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11473, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11474, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11475, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11476, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11477, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11478, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11479, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11480, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11481, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11482, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11483, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11484, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11485, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11486, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11487, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11488, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11489, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11490, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11491, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:white_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11444 + } + ] + }, + "minecraft:white_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2330 + } + ] + }, + "minecraft:white_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13183, + "properties": { + "facing": "north" + } + }, + { + "id": 13184, + "properties": { + "facing": "south" + } + }, + { + "id": 13185, + "properties": { + "facing": "west" + } + }, + { + "id": 13186, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2293 + } + ] + }, + "minecraft:wildflowers": { + "definition": { + "type": "minecraft:flower_bed", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 27830, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 27831, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 27832, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 27833, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 27834, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 27835, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 27836, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 27837, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 27838, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 27839, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 27840, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 27841, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 27842, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 27843, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 27844, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 27845, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:wither_rose": { + "definition": { + "type": "minecraft:wither_rose", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:wither" + } + ] + }, + "states": [ + { + "default": true, + "id": 2334 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "definition": { + "type": "minecraft:wither_skull", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10955, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10956, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10957, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10958, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10959, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 10960, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 10961, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 10962, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 10963, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 10964, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 10965, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 10966, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 10967, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 10968, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 10969, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 10970, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 10971, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 10972, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 10973, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 10974, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 10975, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 10976, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 10977, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 10978, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 10979, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 10980, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 10981, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 10982, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 10983, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 10984, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 10985, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 10986, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "definition": { + "type": "minecraft:wither_wall_skull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10987, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10988, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 10989, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 10990, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 10991, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 10992, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 10993, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 10994, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:yellow_banner": { + "definition": { + "type": "minecraft:banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12991, + "properties": { + "rotation": "0" + } + }, + { + "id": 12992, + "properties": { + "rotation": "1" + } + }, + { + "id": 12993, + "properties": { + "rotation": "2" + } + }, + { + "id": 12994, + "properties": { + "rotation": "3" + } + }, + { + "id": 12995, + "properties": { + "rotation": "4" + } + }, + { + "id": 12996, + "properties": { + "rotation": "5" + } + }, + { + "id": 12997, + "properties": { + "rotation": "6" + } + }, + { + "id": 12998, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12999, + "properties": { + "rotation": "8" + } + }, + { + "id": 13000, + "properties": { + "rotation": "9" + } + }, + { + "id": 13001, + "properties": { + "rotation": "10" + } + }, + { + "id": 13002, + "properties": { + "rotation": "11" + } + }, + { + "id": 13003, + "properties": { + "rotation": "12" + } + }, + { + "id": 13004, + "properties": { + "rotation": "13" + } + }, + { + "id": 13005, + "properties": { + "rotation": "14" + } + }, + { + "id": 13006, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { + "definition": { + "type": "minecraft:bed", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1995, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1996, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1997, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1998, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1999, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2000, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2001, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2002, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2003, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2004, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2005, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2006, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2007, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2008, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2009, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2010, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:yellow_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23176, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23177, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23178, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23179, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23180, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23181, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23182, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23183, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23184, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23185, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23186, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23187, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23188, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23189, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23190, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23191, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:yellow_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:yellow_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23378, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23379, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12900 + } + ] + }, + "minecraft:yellow_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15034 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:yellow_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15050 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14982, + "properties": { + "facing": "north" + } + }, + { + "id": 14983, + "properties": { + "facing": "south" + } + }, + { + "id": 14984, + "properties": { + "facing": "west" + } + }, + { + "id": 14985, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14894, + "properties": { + "facing": "north" + } + }, + { + "id": 14895, + "properties": { + "facing": "east" + } + }, + { + "id": 14896, + "properties": { + "facing": "south" + } + }, + { + "id": 14897, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14898, + "properties": { + "facing": "up" + } + }, + { + "id": 14899, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7102 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "yellow", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11588, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11589, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11590, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11591, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11592, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11593, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11594, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11595, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11596, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11597, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11598, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11599, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11600, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11601, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11602, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11603, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11604, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11605, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11606, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11607, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11608, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11609, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11610, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11611, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11612, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11613, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11614, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11615, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11616, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11617, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11618, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11619, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:yellow_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11448 + } + ] + }, + "minecraft:yellow_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13199, + "properties": { + "facing": "north" + } + }, + { + "id": 13200, + "properties": { + "facing": "south" + } + }, + { + "id": 13201, + "properties": { + "facing": "west" + } + }, + { + "id": 13202, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2297 + } + ] + }, + "minecraft:zombie_head": { + "definition": { + "type": "minecraft:skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10995, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10996, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10997, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10998, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10999, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11000, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11001, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11002, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11003, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11004, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11005, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11006, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11007, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11008, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11009, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11010, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11011, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11012, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11013, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11014, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11015, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11016, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11017, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11018, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11019, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11020, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11021, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11022, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11023, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11024, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11025, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11026, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:zombie_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11027, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11028, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11029, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11030, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11031, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11032, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11033, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11034, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/commands.json b/data/generated/V26_1/reports/commands.json new file mode 100644 index 00000000..68915ad1 --- /dev/null +++ b/data/generated/V26_1/reports/commands.json @@ -0,0 +1,13246 @@ +{ + "type": "root", + "children": { + "advancement": { + "type": "literal", + "children": { + "grant": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "everything": { + "type": "literal", + "executable": true + }, + "from": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "only": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "children": { + "criterion": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "through": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "until": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "revoke": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "everything": { + "type": "literal", + "executable": true + }, + "from": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "only": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "children": { + "criterion": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "through": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "until": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "attribute": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "attribute": { + "type": "argument", + "children": { + "base": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true + }, + "reset": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + } + } + } + }, + "get": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true + }, + "modifier": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "value": { + "type": "argument", + "children": { + "add_multiplied_base": { + "type": "literal", + "executable": true + }, + "add_multiplied_total": { + "type": "literal", + "executable": true + }, + "add_value": { + "type": "literal", + "executable": true + } + }, + "parser": "brigadier:double" + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "value": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + } + } + }, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:attribute" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "ban": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "ban-ip": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "banlist": { + "type": "literal", + "children": { + "ips": { + "type": "literal", + "executable": true + }, + "players": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "get": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "executable": true + }, + "players": { + "type": "literal", + "executable": true + }, + "value": { + "type": "literal", + "executable": true + }, + "visible": { + "type": "literal", + "executable": true + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "set": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "color": { + "type": "literal", + "children": { + "blue": { + "type": "literal", + "executable": true + }, + "green": { + "type": "literal", + "executable": true + }, + "pink": { + "type": "literal", + "executable": true + }, + "purple": { + "type": "literal", + "executable": true + }, + "red": { + "type": "literal", + "executable": true + }, + "white": { + "type": "literal", + "executable": true + }, + "yellow": { + "type": "literal", + "executable": true + } + } + }, + "max": { + "type": "literal", + "children": { + "max": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + } + }, + "name": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "players": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "style": { + "type": "literal", + "children": { + "notched_10": { + "type": "literal", + "executable": true + }, + "notched_12": { + "type": "literal", + "executable": true + }, + "notched_20": { + "type": "literal", + "executable": true + }, + "notched_6": { + "type": "literal", + "executable": true + }, + "progress": { + "type": "literal", + "executable": true + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + } + }, + "visible": { + "type": "literal", + "children": { + "visible": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + } + }, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "item": { + "type": "argument", + "children": { + "maxCount": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:item_predicate" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "clone": { + "type": "literal", + "children": { + "begin": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + }, + "to": { + "type": "literal", + "children": { + "targetDimension": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + }, + "from": { + "type": "literal", + "children": { + "sourceDimension": { + "type": "argument", + "children": { + "begin": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + }, + "to": { + "type": "literal", + "children": { + "targetDimension": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "damage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "damageType": { + "type": "argument", + "children": { + "at": { + "type": "literal", + "children": { + "location": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "by": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "cause": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:damage_type" + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "data": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "merge": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "modify": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "remove": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "datapack": { + "type": "literal", + "children": { + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "description": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "disable": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "enable": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "after": { + "type": "literal", + "children": { + "existing": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "before": { + "type": "literal", + "children": { + "existing": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "first": { + "type": "literal", + "executable": true + }, + "last": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "available": { + "type": "literal", + "executable": true + }, + "enabled": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "debug": { + "type": "literal", + "children": { + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:function" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "defaultgamemode": { + "type": "literal", + "children": { + "gamemode": { + "type": "argument", + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "deop": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "dialog": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "show": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "dialog": { + "type": "argument", + "executable": true, + "parser": "minecraft:dialog" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "difficulty": { + "type": "literal", + "children": { + "easy": { + "type": "literal", + "executable": true + }, + "hard": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + }, + "peaceful": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "effect": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "effect": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:mob_effect" + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true + }, + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "effect": { + "type": "argument", + "children": { + "infinite": { + "type": "literal", + "children": { + "amplifier": { + "type": "argument", + "children": { + "hideParticles": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 255, + "min": 0 + } + } + }, + "executable": true + }, + "seconds": { + "type": "argument", + "children": { + "amplifier": { + "type": "argument", + "children": { + "hideParticles": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 255, + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000000, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:mob_effect" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "enchant": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "enchantment": { + "type": "argument", + "children": { + "level": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:enchantment" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "execute": { + "type": "literal", + "children": { + "align": { + "type": "literal", + "children": { + "axes": { + "type": "argument", + "parser": "minecraft:swizzle", + "redirect": [ + "execute" + ] + } + } + }, + "anchored": { + "type": "literal", + "children": { + "anchor": { + "type": "argument", + "parser": "minecraft:entity_anchor", + "redirect": [ + "execute" + ] + } + } + }, + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "at": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "anchor": { + "type": "argument", + "parser": "minecraft:entity_anchor", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + }, + "pos": { + "type": "argument", + "parser": "minecraft:vec3", + "redirect": [ + "execute" + ] + } + } + }, + "if": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + }, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "blocks": { + "type": "literal", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "all": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + }, + "masked": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "data": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "dimension": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "executable": true, + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "parser": "minecraft:function", + "redirect": [ + "execute" + ] + } + } + }, + "items": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "loaded": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos", + "redirect": [ + "execute" + ] + } + } + }, + "predicate": { + "type": "literal", + "children": { + "predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_predicate", + "redirect": [ + "execute" + ] + } + } + }, + "score": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "<": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "<=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "matches": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:int_range", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:float_range", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "in": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "on": { + "type": "literal", + "children": { + "attacker": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "controller": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "leasher": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "origin": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "owner": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "passengers": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "target": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "vehicle": { + "type": "literal", + "redirect": [ + "execute" + ] + } + } + }, + "positioned": { + "type": "literal", + "children": { + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "over": { + "type": "literal", + "children": { + "heightmap": { + "type": "argument", + "parser": "minecraft:heightmap", + "redirect": [ + "execute" + ] + } + } + }, + "pos": { + "type": "argument", + "parser": "minecraft:vec3", + "redirect": [ + "execute" + ] + } + } + }, + "rotated": { + "type": "literal", + "children": { + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "rot": { + "type": "argument", + "parser": "minecraft:rotation", + "redirect": [ + "execute" + ] + } + } + }, + "run": { + "type": "literal" + }, + "store": { + "type": "literal", + "children": { + "result": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "value": { + "type": "literal", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "score": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "success": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "value": { + "type": "literal", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "score": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + } + }, + "summon": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:entity_type" + }, + "redirect": [ + "execute" + ] + } + } + }, + "unless": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + }, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "blocks": { + "type": "literal", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "all": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + }, + "masked": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "data": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "dimension": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "executable": true, + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "parser": "minecraft:function", + "redirect": [ + "execute" + ] + } + } + }, + "items": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "loaded": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos", + "redirect": [ + "execute" + ] + } + } + }, + "predicate": { + "type": "literal", + "children": { + "predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_predicate", + "redirect": [ + "execute" + ] + } + } + }, + "score": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "<": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "<=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "matches": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:int_range", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:float_range", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "experience": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "query": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "single" + } + } + } + }, + "set": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fetchprofile": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "id": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:uuid" + } + } + }, + "name": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fill": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "hollow": { + "type": "literal", + "executable": true + }, + "keep": { + "type": "literal", + "executable": true + }, + "outline": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "hollow": { + "type": "literal", + "executable": true + }, + "outline": { + "type": "literal", + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_state" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fillbiome": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "children": { + "replace": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "forceload": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true, + "parser": "minecraft:column_pos" + } + } + }, + "query": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "all": { + "type": "literal", + "executable": true + }, + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true, + "parser": "minecraft:column_pos" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "arguments": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + }, + "with": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "executable": true, + "parser": "minecraft:function" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "gamemode": { + "type": "literal", + "children": { + "gamemode": { + "type": "argument", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "gamerule": { + "type": "literal", + "children": { + "advance_time": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "advance_weather": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "allow_entering_nether_using_portals": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "block_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "block_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "command_block_output": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "command_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "drowning_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "elytra_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "ender_pearls_vanish_on_death": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "entity_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fall_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fire_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fire_spread_radius_around_player": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": -1 + } + } + }, + "executable": true + }, + "forgive_dead_players": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "freeze_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "global_sound_events": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "immediate_respawn": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "keep_inventory": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "lava_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "limited_crafting": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "locator_bar": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "log_admin_commands": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "max_block_modifications": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "max_command_forks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_command_sequence_length": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_entity_cramming": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_minecart_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000, + "min": 1 + } + } + }, + "executable": true + }, + "max_snow_accumulation_height": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 8, + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:advance_time": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:advance_weather": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:allow_entering_nether_using_portals": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:block_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:block_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:command_block_output": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:command_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:drowning_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:elytra_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:ender_pearls_vanish_on_death": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:entity_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fall_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fire_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fire_spread_radius_around_player": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": -1 + } + } + }, + "executable": true + }, + "minecraft:forgive_dead_players": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:freeze_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:global_sound_events": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:immediate_respawn": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:keep_inventory": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:lava_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:limited_crafting": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:locator_bar": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:log_admin_commands": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:max_block_modifications": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "minecraft:max_command_forks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_command_sequence_length": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_entity_cramming": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_minecart_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000, + "min": 1 + } + } + }, + "executable": true + }, + "minecraft:max_snow_accumulation_height": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 8, + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:mob_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:mob_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:mob_griefing": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:natural_health_regeneration": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:player_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:players_nether_portal_creative_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:players_nether_portal_default_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:players_sleeping_percentage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:projectiles_can_break_blocks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:pvp": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:raids": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:random_tick_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:reduced_debug_info": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:respawn_radius": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:send_command_feedback": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:show_advancement_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:show_death_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_mobs": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_monsters": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_patrols": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_phantoms": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_wandering_traders": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_wardens": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawner_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spectators_generate_chunks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spread_vines": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:tnt_explodes": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:tnt_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:universal_anger": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:water_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_griefing": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "natural_health_regeneration": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "player_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "players_nether_portal_creative_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "players_nether_portal_default_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "players_sleeping_percentage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "projectiles_can_break_blocks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "pvp": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "raids": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "random_tick_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "reduced_debug_info": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "respawn_radius": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "send_command_feedback": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "show_advancement_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "show_death_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_mobs": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_monsters": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_patrols": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_phantoms": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_wandering_traders": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_wardens": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawner_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spectators_generate_chunks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spread_vines": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "tnt_explodes": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "tnt_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "universal_anger": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "water_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "help": { + "type": "literal", + "children": { + "command": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true + }, + "item": { + "type": "literal", + "children": { + "modify": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "replace": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + } + }, + "with": { + "type": "literal", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 99, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + } + }, + "with": { + "type": "literal", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 99, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "jfr": { + "type": "literal", + "children": { + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "kick": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "kill": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "list": { + "type": "literal", + "children": { + "uuids": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "locate": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + } + }, + "poi": { + "type": "literal", + "children": { + "poi": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:point_of_interest_type" + } + } + } + }, + "structure": { + "type": "literal", + "children": { + "structure": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag_key", + "properties": { + "registry": "minecraft:worldgen/structure" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "loot": { + "type": "literal", + "children": { + "give": { + "type": "literal", + "children": { + "players": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "replace": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "spawn": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:vec3" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "me": { + "type": "literal", + "children": { + "action": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + } + }, + "msg": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "op": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "pardon": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "pardon-ip": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "particle": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "delta": { + "type": "argument", + "children": { + "speed": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "children": { + "viewers": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "normal": { + "type": "literal", + "children": { + "viewers": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:particle" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "perf": { + "type": "literal", + "children": { + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "place": { + "type": "literal", + "children": { + "feature": { + "type": "literal", + "children": { + "feature": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/configured_feature" + } + } + } + }, + "jigsaw": { + "type": "literal", + "children": { + "pool": { + "type": "argument", + "children": { + "target": { + "type": "argument", + "children": { + "max_depth": { + "type": "argument", + "children": { + "position": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 20, + "min": 1 + } + } + }, + "parser": "minecraft:resource_location" + } + }, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/template_pool" + } + } + } + }, + "structure": { + "type": "literal", + "children": { + "structure": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/structure" + } + } + } + }, + "template": { + "type": "literal", + "children": { + "template": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "children": { + "mirror": { + "type": "argument", + "children": { + "integrity": { + "type": "argument", + "children": { + "seed": { + "type": "argument", + "children": { + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:template_mirror" + } + }, + "executable": true, + "parser": "minecraft:template_rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "playsound": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "children": { + "ambient": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "block": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "hostile": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "master": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "music": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "neutral": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "player": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "record": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "ui": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "voice": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "weather": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "publish": { + "type": "literal", + "children": { + "allowCommands": { + "type": "argument", + "children": { + "gamemode": { + "type": "argument", + "children": { + "port": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 65535, + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "random": { + "type": "literal", + "children": { + "reset": { + "type": "literal", + "children": { + "*": { + "type": "literal", + "children": { + "seed": { + "type": "argument", + "children": { + "includeWorldSeed": { + "type": "argument", + "children": { + "includeSequenceId": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true + }, + "sequence": { + "type": "argument", + "children": { + "seed": { + "type": "argument", + "children": { + "includeWorldSeed": { + "type": "argument", + "children": { + "includeSequenceId": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "roll": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "children": { + "sequence": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + } + }, + "executable": true, + "parser": "minecraft:int_range" + } + } + }, + "value": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "children": { + "sequence": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + } + }, + "executable": true, + "parser": "minecraft:int_range" + } + } + } + } + }, + "recipe": { + "type": "literal", + "children": { + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "executable": true + }, + "recipe": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:recipe" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "take": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "executable": true + }, + "recipe": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:recipe" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "reload": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "return": { + "type": "literal", + "children": { + "fail": { + "type": "literal", + "executable": true + }, + "run": { + "type": "literal" + }, + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "ride": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "dismount": { + "type": "literal", + "executable": true + }, + "mount": { + "type": "literal", + "children": { + "vehicle": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "rotate": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "facingEntity": { + "type": "argument", + "children": { + "facingAnchor": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity_anchor" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "facingLocation": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "save-all": { + "type": "literal", + "children": { + "flush": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "save-off": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "save-on": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "say": { + "type": "literal", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "schedule": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "function": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + } + }, + "function": { + "type": "literal", + "children": { + "function": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:function" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "scoreboard": { + "type": "literal", + "children": { + "objectives": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "criteria": { + "type": "argument", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "minecraft:objective_criteria" + } + }, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "displayautoupdate": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "displayname": { + "type": "literal", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "numberformat": { + "type": "literal", + "children": { + "blank": { + "type": "literal", + "executable": true + }, + "fixed": { + "type": "literal", + "children": { + "contents": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "styled": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:style" + } + } + } + }, + "executable": true + }, + "rendertype": { + "type": "literal", + "children": { + "hearts": { + "type": "literal", + "executable": true + }, + "integer": { + "type": "literal", + "executable": true + } + } + } + }, + "parser": "minecraft:objective" + } + } + }, + "remove": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + } + }, + "setdisplay": { + "type": "literal", + "children": { + "slot": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "executable": true, + "parser": "minecraft:scoreboard_slot" + } + } + } + } + }, + "players": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "display": { + "type": "literal", + "children": { + "name": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "numberformat": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "blank": { + "type": "literal", + "executable": true + }, + "fixed": { + "type": "literal", + "children": { + "contents": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "styled": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:style" + } + } + } + }, + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + } + } + }, + "enable": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "get": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + }, + "executable": true + }, + "operation": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "operation": { + "type": "argument", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + }, + "parser": "minecraft:operation" + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "remove": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "reset": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "set": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "seed": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "setblock": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "keep": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_state" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "setidletimeout": { + "type": "literal", + "children": { + "minutes": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "setworldspawn": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spawnpoint": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spectate": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "player": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "single" + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spreadplayers": { + "type": "literal", + "children": { + "center": { + "type": "argument", + "children": { + "spreadDistance": { + "type": "argument", + "children": { + "maxRange": { + "type": "argument", + "children": { + "respectTeams": { + "type": "argument", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "parser": "brigadier:bool" + }, + "under": { + "type": "literal", + "children": { + "maxHeight": { + "type": "argument", + "children": { + "respectTeams": { + "type": "argument", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "parser": "brigadier:bool" + } + }, + "parser": "brigadier:integer" + } + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 1.0 + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:vec2" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "stop": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "stopsound": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "ambient": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "block": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "hostile": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "master": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "music": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "neutral": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "player": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "record": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "ui": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "voice": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "weather": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "query": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "restart": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "summon": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:entity_type" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "swing": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tag": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "team": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "empty": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + } + }, + "join": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "members": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "minecraft:team" + } + } + }, + "leave": { + "type": "literal", + "children": { + "members": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + }, + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "collisionRule": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + }, + "pushOtherTeams": { + "type": "literal", + "executable": true + }, + "pushOwnTeam": { + "type": "literal", + "executable": true + } + } + }, + "color": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:color" + } + } + }, + "deathMessageVisibility": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "hideForOtherTeams": { + "type": "literal", + "executable": true + }, + "hideForOwnTeam": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + } + } + }, + "displayName": { + "type": "literal", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "friendlyFire": { + "type": "literal", + "children": { + "allowed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "nametagVisibility": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "hideForOtherTeams": { + "type": "literal", + "executable": true + }, + "hideForOwnTeam": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + } + } + }, + "prefix": { + "type": "literal", + "children": { + "prefix": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "seeFriendlyInvisibles": { + "type": "literal", + "children": { + "allowed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "suffix": { + "type": "literal", + "children": { + "suffix": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + } + }, + "parser": "minecraft:team" + } + } + }, + "remove": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "teammsg": { + "type": "literal", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + } + }, + "teleport": { + "type": "literal", + "children": { + "destination": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + }, + "location": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + }, + "targets": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + }, + "location": { + "type": "argument", + "children": { + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "facingEntity": { + "type": "argument", + "children": { + "facingAnchor": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity_anchor" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "facingLocation": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tell": { + "type": "literal", + "redirect": [ + "msg" + ] + }, + "tellraw": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "test": { + "type": "literal", + "children": { + "clearall": { + "type": "literal", + "children": { + "radius": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true + }, + "clearthat": { + "type": "literal", + "executable": true + }, + "clearthese": { + "type": "literal", + "executable": true + }, + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "width": { + "type": "argument", + "children": { + "height": { + "type": "argument", + "children": { + "depth": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "locate": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "pos": { + "type": "literal", + "children": { + "var": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "executable": true + }, + "resetclosest": { + "type": "literal", + "executable": true + }, + "resetthat": { + "type": "literal", + "executable": true + }, + "resetthese": { + "type": "literal", + "executable": true + }, + "run": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "runclosest": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "runfailed": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "onlyRequiredTests": { + "type": "argument", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "runmultiple": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "runthat": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "runthese": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + }, + "verify": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tick": { + "type": "literal", + "children": { + "freeze": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "executable": true + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 10000.0, + "min": 1.0 + } + } + } + }, + "sprint": { + "type": "literal", + "children": { + "stop": { + "type": "literal", + "executable": true + }, + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + } + }, + "step": { + "type": "literal", + "children": { + "stop": { + "type": "literal", + "executable": true + }, + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "unfreeze": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "time": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": -2147483648 + } + } + } + }, + "of": { + "type": "literal", + "children": { + "clock": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": -2147483648 + } + } + } + }, + "pause": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "children": { + "time": { + "type": "literal", + "executable": true + }, + "timeline": { + "type": "argument", + "children": { + "repetition": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:timeline" + } + } + } + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1000.0, + "min": 1.0E-5 + } + } + } + }, + "resume": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + }, + "timemarker": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:world_clock" + } + } + } + }, + "pause": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "children": { + "gametime": { + "type": "literal", + "executable": true + }, + "time": { + "type": "literal", + "executable": true + }, + "timeline": { + "type": "argument", + "children": { + "repetition": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:timeline" + } + } + } + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1000.0, + "min": 1.0E-5 + } + } + } + }, + "resume": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + }, + "timemarker": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "title": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "actionbar": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "clear": { + "type": "literal", + "executable": true + }, + "reset": { + "type": "literal", + "executable": true + }, + "subtitle": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "times": { + "type": "literal", + "children": { + "fadeIn": { + "type": "argument", + "children": { + "stay": { + "type": "argument", + "children": { + "fadeOut": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + } + }, + "title": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tm": { + "type": "literal", + "redirect": [ + "teammsg" + ] + }, + "tp": { + "type": "literal", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + }, + "redirect": [ + "teleport" + ] + }, + "transfer": { + "type": "literal", + "children": { + "hostname": { + "type": "argument", + "children": { + "port": { + "type": "argument", + "children": { + "players": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 65535, + "min": 1 + } + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "trigger": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + } + }, + "set": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + } + } + }, + "executable": true, + "parser": "minecraft:objective" + } + } + }, + "version": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "w": { + "type": "literal", + "redirect": [ + "msg" + ] + }, + "waypoint": { + "type": "literal", + "children": { + "list": { + "type": "literal", + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "waypoint": { + "type": "argument", + "children": { + "color": { + "type": "literal", + "children": { + "color": { + "type": "argument", + "executable": true, + "parser": "minecraft:color" + }, + "hex": { + "type": "literal", + "children": { + "color": { + "type": "argument", + "executable": true, + "parser": "minecraft:hex_color" + } + } + }, + "reset": { + "type": "literal", + "executable": true + } + } + }, + "style": { + "type": "literal", + "children": { + "reset": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "weather": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "rain": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "thunder": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "whitelist": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "off": { + "type": "literal", + "executable": true + }, + "on": { + "type": "literal", + "executable": true + }, + "reload": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "worldborder": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:double", + "properties": { + "max": 5.9999968E7, + "min": -5.9999968E7 + } + } + } + }, + "center": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec2" + } + } + }, + "damage": { + "type": "literal", + "children": { + "amount": { + "type": "literal", + "children": { + "damagePerBlock": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + } + }, + "buffer": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + } + } + } + }, + "get": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:double", + "properties": { + "max": 5.9999968E7, + "min": -5.9999968E7 + } + } + } + }, + "warning": { + "type": "literal", + "children": { + "distance": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + } + }, + "time": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "xp": { + "type": "literal", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + }, + "redirect": [ + "experience" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/datapack.json b/data/generated/V26_1/reports/datapack.json new file mode 100644 index 00000000..e361a592 --- /dev/null +++ b/data/generated/V26_1/reports/datapack.json @@ -0,0 +1,748 @@ +{ + "others": { + "function": { + "elements": true, + "format": "mcfunction", + "stable": true, + "tags": true + }, + "structure": { + "elements": true, + "format": "structure", + "stable": true, + "tags": false + } + }, + "registries": { + "minecraft:activity": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:advancement": { + "elements": true, + "stable": true, + "tags": false + }, + "minecraft:attribute": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:attribute_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:banner_pattern": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:block": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_entity_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:cat_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:cat_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chat_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chicken_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chicken_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chunk_status": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:command_argument_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:consume_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:cow_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:cow_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:creative_mode_tab": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:custom_stat": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:damage_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:data_component_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:data_component_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:debug_subscription": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:decorated_pot_pattern": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:dialog_action_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog_body_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dimension": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:dimension_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment_effect_component_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_entity_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_level_based_value_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_location_based_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_provider": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_value_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:entity_sub_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:entity_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:environment_attribute": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:float_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:fluid": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:frog_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:game_event": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:game_rule": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:height_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:incoming_rpc_methods": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:input_control_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:instrument": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:int_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:item": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:item_modifier": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:jukebox_song": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:loot_condition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_function_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_nbt_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_number_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_pool_entry_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_score_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_table": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:map_decoration_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:memory_module_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:menu": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:mob_effect": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:number_format_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:outgoing_rpc_methods": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:painting_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:particle_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:permission_check_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:permission_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:pig_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:pig_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:point_of_interest_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:pos_rule_test": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:position_source_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:potion": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:predicate": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:recipe": { + "elements": true, + "stable": true, + "tags": false + }, + "minecraft:recipe_book_category": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_display": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_serializer": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:rule_block_entity_modifier": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:rule_test": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:sensor_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:slot_display": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:slot_source_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:sound_event": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:spawn_condition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:stat_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:test_environment": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:test_environment_definition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:test_function": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:test_instance": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:test_instance_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:ticket_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:timeline": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trade_set": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trial_spawner": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trigger_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:trim_material": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trim_pattern": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:villager_profession": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:villager_trade": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:villager_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:wolf_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:wolf_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:world_clock": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/biome": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/biome_source": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/block_state_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/carver": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/chunk_generator": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/configured_carver": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/configured_feature": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/density_function": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/density_function_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/feature": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/feature_size_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/flat_level_generator_preset": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/foliage_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/material_condition": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/material_rule": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/multi_noise_biome_source_parameter_list": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/noise": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/noise_settings": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/placed_feature": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/placement_modifier_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/pool_alias_binding": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/processor_list": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/root_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/structure_piece": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_placement": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_pool_element": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_processor": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_set": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/structure_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/template_pool": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/tree_decorator_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/trunk_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/world_preset": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:zombie_nautilus_variant": { + "elements": true, + "stable": false, + "tags": true + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/json-rpc-api-schema.json b/data/generated/V26_1/reports/json-rpc-api-schema.json new file mode 100644 index 00000000..1b5a9474 --- /dev/null +++ b/data/generated/V26_1/reports/json-rpc-api-schema.json @@ -0,0 +1,1543 @@ +{ + "components": { + "schemas": { + "difficulty": { + "type": "string", + "enum": [ + "peaceful", + "easy", + "normal", + "hard" + ] + }, + "game_type": { + "type": "string", + "enum": [ + "survival", + "creative", + "adventure", + "spectator" + ] + }, + "incoming_ip_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "player": { + "$ref": "#/components/schemas/player" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "ip_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "kick_player": { + "type": "object", + "properties": { + "message": { + "$ref": "#/components/schemas/message" + }, + "player": { + "$ref": "#/components/schemas/player" + } + } + }, + "message": { + "type": "object", + "properties": { + "literal": { + "type": "string" + }, + "translatable": { + "type": "string" + }, + "translatableParams": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "operator": { + "type": "object", + "properties": { + "bypassesPlayerLimit": { + "type": "boolean" + }, + "permissionLevel": { + "type": "integer" + }, + "player": { + "$ref": "#/components/schemas/player" + } + } + }, + "player": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + } + }, + "server_state": { + "type": "object", + "properties": { + "players": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + }, + "started": { + "type": "boolean" + }, + "version": { + "$ref": "#/components/schemas/version" + } + } + }, + "system_message": { + "type": "object", + "properties": { + "message": { + "$ref": "#/components/schemas/message" + }, + "overlay": { + "type": "boolean" + }, + "receivingPlayers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + "typed_game_rule": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "integer", + "boolean" + ] + }, + "key": { + "type": "string" + }, + "value": { + "type": [ + "boolean", + "integer" + ] + } + } + }, + "untyped_game_rule": { + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "value": { + "type": [ + "boolean", + "integer" + ] + } + } + }, + "user_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "player": { + "$ref": "#/components/schemas/player" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "version": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "protocol": { + "type": "integer" + } + } + } + } + }, + "info": { + "title": "Minecraft Server JSON-RPC", + "version": "2.0.0" + }, + "methods": [ + { + "description": "Get the allowlist", + "name": "minecraft:allowlist", + "params": [], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Set the allowlist", + "name": "minecraft:allowlist/set", + "params": [ + { + "name": "players", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Add players to allowlist", + "name": "minecraft:allowlist/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Remove players from allowlist", + "name": "minecraft:allowlist/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Clear all players in allowlist", + "name": "minecraft:allowlist/clear", + "params": [], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Get the ban list", + "name": "minecraft:bans", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Set the banlist", + "name": "minecraft:bans/set", + "params": [ + { + "name": "bans", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Add players to ban list", + "name": "minecraft:bans/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Remove players from ban list", + "name": "minecraft:bans/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Clear all players in ban list", + "name": "minecraft:bans/clear", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Get the ip ban list", + "name": "minecraft:ip_bans", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Set the ip banlist", + "name": "minecraft:ip_bans/set", + "params": [ + { + "name": "banlist", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Add ip to ban list", + "name": "minecraft:ip_bans/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/incoming_ip_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Remove ip from ban list", + "name": "minecraft:ip_bans/remove", + "params": [ + { + "name": "ip", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Clear all ips in ban list", + "name": "minecraft:ip_bans/clear", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Get all connected players", + "name": "minecraft:players", + "params": [], + "result": { + "name": "players", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Kick players", + "name": "minecraft:players/kick", + "params": [ + { + "name": "kick", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/kick_player" + } + } + } + ], + "result": { + "name": "kicked", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Get all oped players", + "name": "minecraft:operators", + "params": [], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Set all oped players", + "name": "minecraft:operators/set", + "params": [ + { + "name": "operators", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Op players", + "name": "minecraft:operators/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Deop players", + "name": "minecraft:operators/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Deop all players", + "name": "minecraft:operators/clear", + "params": [], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Get server status", + "name": "minecraft:server/status", + "params": [], + "result": { + "name": "status", + "schema": { + "$ref": "#/components/schemas/server_state" + } + } + }, + { + "description": "Save server state", + "name": "minecraft:server/save", + "params": [ + { + "name": "flush", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "saving", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Stop server", + "name": "minecraft:server/stop", + "params": [], + "result": { + "name": "stopping", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Send a system message", + "name": "minecraft:server/system_message", + "params": [ + { + "name": "message", + "required": true, + "schema": { + "$ref": "#/components/schemas/system_message" + } + } + ], + "result": { + "name": "sent", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether automatic world saving is enabled on the server", + "name": "minecraft:serversettings/autosave", + "params": [], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable automatic world saving on the server", + "name": "minecraft:serversettings/autosave/set", + "params": [ + { + "name": "enable", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the current difficulty level of the server", + "name": "minecraft:serversettings/difficulty", + "params": [], + "result": { + "name": "difficulty", + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + }, + { + "description": "Set the difficulty level of the server", + "name": "minecraft:serversettings/difficulty/set", + "params": [ + { + "name": "difficulty", + "required": true, + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + ], + "result": { + "name": "difficulty", + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + }, + { + "description": "Get whether allowlist enforcement is enabled (kicks players immediately when removed from allowlist)", + "name": "minecraft:serversettings/enforce_allowlist", + "params": [], + "result": { + "name": "enforced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable allowlist enforcement (when enabled, players are kicked immediately upon removal from allowlist)", + "name": "minecraft:serversettings/enforce_allowlist/set", + "params": [ + { + "name": "enforce", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enforced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether the allowlist is enabled on the server", + "name": "minecraft:serversettings/use_allowlist", + "params": [], + "result": { + "name": "used", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable the allowlist on the server (controls whether only allowlisted players can join)", + "name": "minecraft:serversettings/use_allowlist/set", + "params": [ + { + "name": "use", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "used", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the maximum number of players allowed to connect to the server", + "name": "minecraft:serversettings/max_players", + "params": [], + "result": { + "name": "max", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the maximum number of players allowed to connect to the server", + "name": "minecraft:serversettings/max_players/set", + "params": [ + { + "name": "max", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "max", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the number of seconds before the game is automatically paused when no players are online", + "name": "minecraft:serversettings/pause_when_empty_seconds", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the number of seconds before the game is automatically paused when no players are online", + "name": "minecraft:serversettings/pause_when_empty_seconds/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the number of seconds before idle players are automatically kicked from the server", + "name": "minecraft:serversettings/player_idle_timeout", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the number of seconds before idle players are automatically kicked from the server", + "name": "minecraft:serversettings/player_idle_timeout/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether flight is allowed for players in Survival mode", + "name": "minecraft:serversettings/allow_flight", + "params": [], + "result": { + "name": "allowed", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Allow or disallow flight for players in Survival mode", + "name": "minecraft:serversettings/allow_flight/set", + "params": [ + { + "name": "allow", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "allowed", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the server's message of the day displayed to players", + "name": "minecraft:serversettings/motd", + "params": [], + "result": { + "name": "message", + "schema": { + "type": "string" + } + } + }, + { + "description": "Set the server's message of the day displayed to players", + "name": "minecraft:serversettings/motd/set", + "params": [ + { + "name": "message", + "required": true, + "schema": { + "type": "string" + } + } + ], + "result": { + "name": "message", + "schema": { + "type": "string" + } + } + }, + { + "description": "Get the spawn protection radius in blocks (only operators can edit within this area)", + "name": "minecraft:serversettings/spawn_protection_radius", + "params": [], + "result": { + "name": "radius", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the spawn protection radius in blocks (only operators can edit within this area)", + "name": "minecraft:serversettings/spawn_protection_radius/set", + "params": [ + { + "name": "radius", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "radius", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether players are forced to use the server's default game mode", + "name": "minecraft:serversettings/force_game_mode", + "params": [], + "result": { + "name": "forced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable forcing players to use the server's default game mode", + "name": "minecraft:serversettings/force_game_mode/set", + "params": [ + { + "name": "force", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "forced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the server's default game mode", + "name": "minecraft:serversettings/game_mode", + "params": [], + "result": { + "name": "mode", + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + }, + { + "description": "Set the server's default game mode", + "name": "minecraft:serversettings/game_mode/set", + "params": [ + { + "name": "mode", + "required": true, + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + ], + "result": { + "name": "mode", + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + }, + { + "description": "Get the server's view distance in chunks", + "name": "minecraft:serversettings/view_distance", + "params": [], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the server's view distance in chunks", + "name": "minecraft:serversettings/view_distance/set", + "params": [ + { + "name": "distance", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the server's simulation distance in chunks", + "name": "minecraft:serversettings/simulation_distance", + "params": [], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the server's simulation distance in chunks", + "name": "minecraft:serversettings/simulation_distance/set", + "params": [ + { + "name": "distance", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether the server accepts player transfers from other servers", + "name": "minecraft:serversettings/accept_transfers", + "params": [], + "result": { + "name": "accepted", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable accepting player transfers from other servers", + "name": "minecraft:serversettings/accept_transfers/set", + "params": [ + { + "name": "accept", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "accepted", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the interval in seconds between server status heartbeats", + "name": "minecraft:serversettings/status_heartbeat_interval", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the interval in seconds between server status heartbeats", + "name": "minecraft:serversettings/status_heartbeat_interval/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get default operator permission level", + "name": "minecraft:serversettings/operator_user_permission_level", + "params": [], + "result": { + "name": "level", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set default operator permission level", + "name": "minecraft:serversettings/operator_user_permission_level/set", + "params": [ + { + "name": "level", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "level", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether the server hides online player information from status queries", + "name": "minecraft:serversettings/hide_online_players", + "params": [], + "result": { + "name": "hidden", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable hiding online player information from status queries", + "name": "minecraft:serversettings/hide_online_players/set", + "params": [ + { + "name": "hide", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "hidden", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether the server responds to connection status requests", + "name": "minecraft:serversettings/status_replies", + "params": [], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable the server responding to connection status requests", + "name": "minecraft:serversettings/status_replies/set", + "params": [ + { + "name": "enable", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the entity broadcast range as a percentage", + "name": "minecraft:serversettings/entity_broadcast_range", + "params": [], + "result": { + "name": "percentage_points", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the entity broadcast range as a percentage", + "name": "minecraft:serversettings/entity_broadcast_range/set", + "params": [ + { + "name": "percentage_points", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "percentage_points", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the available game rule keys and their current values", + "name": "minecraft:gamerules", + "params": [], + "result": { + "name": "gamerules", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + } + }, + { + "description": "Update game rule value", + "name": "minecraft:gamerules/update", + "params": [ + { + "name": "gamerule", + "required": true, + "schema": { + "$ref": "#/components/schemas/untyped_game_rule" + } + } + ], + "result": { + "name": "gamerule", + "schema": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + }, + { + "description": "Server started", + "name": "minecraft:notification/server/started", + "params": [] + }, + { + "description": "Server shutting down", + "name": "minecraft:notification/server/stopping", + "params": [] + }, + { + "description": "Server save started", + "name": "minecraft:notification/server/saving", + "params": [] + }, + { + "description": "Server save completed", + "name": "minecraft:notification/server/saved", + "params": [] + }, + { + "description": "Server activity occurred. Rate limited to 1 notification per 30 seconds", + "name": "minecraft:notification/server/activity", + "params": [] + }, + { + "description": "Player joined", + "name": "minecraft:notification/players/joined", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player left", + "name": "minecraft:notification/players/left", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player was oped", + "name": "minecraft:notification/operators/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/operator" + } + } + ] + }, + { + "description": "Player was deoped", + "name": "minecraft:notification/operators/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/operator" + } + } + ] + }, + { + "description": "Player was added to allowlist", + "name": "minecraft:notification/allowlist/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player was removed from allowlist", + "name": "minecraft:notification/allowlist/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Ip was added to ip ban list", + "name": "minecraft:notification/ip_bans/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/ip_ban" + } + } + ] + }, + { + "description": "Ip was removed from ip ban list", + "name": "minecraft:notification/ip_bans/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "type": "string" + } + } + ] + }, + { + "description": "Player was added to ban list", + "name": "minecraft:notification/bans/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/user_ban" + } + } + ] + }, + { + "description": "Player was removed from ban list", + "name": "minecraft:notification/bans/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Gamerule was changed", + "name": "minecraft:notification/gamerules/updated", + "params": [ + { + "name": "gamerule", + "required": true, + "schema": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + ] + }, + { + "description": "Server status heartbeat", + "name": "minecraft:notification/server/status", + "params": [ + { + "name": "status", + "required": true, + "schema": { + "$ref": "#/components/schemas/server_state" + } + } + ] + } + ], + "openrpc": "1.3.2" +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_boat.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_boat.json new file mode 100644 index 00000000..bb3ab271 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_boat", + "minecraft:item_name": { + "translate": "item.minecraft.acacia_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_button.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_button.json new file mode 100644 index 00000000..d50d8a02 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_button", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_chest_boat.json new file mode 100644 index 00000000..ae14d203 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.acacia_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_door.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_door.json new file mode 100644 index 00000000..52503765 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_door", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_fence.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_fence.json new file mode 100644 index 00000000..4333a724 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_fence", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_fence_gate.json new file mode 100644 index 00000000..98d377e4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_hanging_sign.json new file mode 100644 index 00000000..91f9526b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_leaves.json new file mode 100644 index 00000000..dcf706cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_log.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_log.json new file mode 100644 index 00000000..a6d6ee99 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_log", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_planks.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_planks.json new file mode 100644 index 00000000..0e5a5409 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_planks", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_pressure_plate.json new file mode 100644 index 00000000..d03d9bf9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_sapling.json new file mode 100644 index 00000000..8c489eae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_shelf.json new file mode 100644 index 00000000..d189e5c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_sign.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_sign.json new file mode 100644 index 00000000..9bd2adc7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_sign", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_slab.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_slab.json new file mode 100644 index 00000000..b27f7c9a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_slab", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_stairs.json new file mode 100644 index 00000000..98206d7d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_trapdoor.json new file mode 100644 index 00000000..39014819 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/acacia_wood.json b/data/generated/V26_1/reports/minecraft/components/item/acacia_wood.json new file mode 100644 index 00000000..03dda0c2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/acacia_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_wood", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/activator_rail.json b/data/generated/V26_1/reports/minecraft/components/item/activator_rail.json new file mode 100644 index 00000000..f595f18b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/activator_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:activator_rail", + "minecraft:item_name": { + "translate": "block.minecraft.activator_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/air.json b/data/generated/V26_1/reports/minecraft/components/item/air.json new file mode 100644 index 00000000..3b4e0f74 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/air.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:air", + "minecraft:item_name": { + "translate": "block.minecraft.air" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/allay_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/allay_spawn_egg.json new file mode 100644 index 00000000..2f3a0cc5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/allay_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:allay" + }, + "minecraft:item_model": "minecraft:allay_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.allay_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/allium.json b/data/generated/V26_1/reports/minecraft/components/item/allium.json new file mode 100644 index 00000000..f2538a69 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/allium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:allium", + "minecraft:item_name": { + "translate": "block.minecraft.allium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/amethyst_block.json b/data/generated/V26_1/reports/minecraft/components/item/amethyst_block.json new file mode 100644 index 00000000..9f6b7ea2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/amethyst_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_block", + "minecraft:item_name": { + "translate": "block.minecraft.amethyst_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/amethyst_cluster.json b/data/generated/V26_1/reports/minecraft/components/item/amethyst_cluster.json new file mode 100644 index 00000000..2e0907a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/amethyst_cluster.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_cluster", + "minecraft:item_name": { + "translate": "block.minecraft.amethyst_cluster" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/amethyst_shard.json b/data/generated/V26_1/reports/minecraft/components/item/amethyst_shard.json new file mode 100644 index 00000000..99376c87 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/amethyst_shard.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_shard", + "minecraft:item_name": { + "translate": "item.minecraft.amethyst_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:amethyst", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ancient_debris.json b/data/generated/V26_1/reports/minecraft/components/item/ancient_debris.json new file mode 100644 index 00000000..84bd45cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ancient_debris.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ancient_debris", + "minecraft:item_name": { + "translate": "block.minecraft.ancient_debris" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/andesite.json b/data/generated/V26_1/reports/minecraft/components/item/andesite.json new file mode 100644 index 00000000..19d4e768 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/andesite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite", + "minecraft:item_name": { + "translate": "block.minecraft.andesite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/andesite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/andesite_slab.json new file mode 100644 index 00000000..29cb734e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/andesite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/andesite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/andesite_stairs.json new file mode 100644 index 00000000..9f5034d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/andesite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/andesite_wall.json b/data/generated/V26_1/reports/minecraft/components/item/andesite_wall.json new file mode 100644 index 00000000..626d335c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/andesite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/angler_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/angler_pottery_sherd.json new file mode 100644 index 00000000..68f1c7d5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/angler_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:angler_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.angler_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/anvil.json b/data/generated/V26_1/reports/minecraft/components/item/anvil.json new file mode 100644 index 00000000..35149369 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:anvil", + "minecraft:item_name": { + "translate": "block.minecraft.anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/apple.json b/data/generated/V26_1/reports/minecraft/components/item/apple.json new file mode 100644 index 00000000..170f55ac --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/apple.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 4, + "saturation": 2.4 + }, + "minecraft:item_model": "minecraft:apple", + "minecraft:item_name": { + "translate": "item.minecraft.apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/archer_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/archer_pottery_sherd.json new file mode 100644 index 00000000..932c169d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/archer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:archer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.archer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/armadillo_scute.json b/data/generated/V26_1/reports/minecraft/components/item/armadillo_scute.json new file mode 100644 index 00000000..97e20a56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/armadillo_scute.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:armadillo_scute", + "minecraft:item_name": { + "translate": "item.minecraft.armadillo_scute" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/armadillo_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/armadillo_spawn_egg.json new file mode 100644 index 00000000..eeeda2dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/armadillo_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:armadillo" + }, + "minecraft:item_model": "minecraft:armadillo_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.armadillo_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/armor_stand.json b/data/generated/V26_1/reports/minecraft/components/item/armor_stand.json new file mode 100644 index 00000000..45412099 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/armor_stand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:armor_stand", + "minecraft:item_name": { + "translate": "item.minecraft.armor_stand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/arms_up_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/arms_up_pottery_sherd.json new file mode 100644 index 00000000..96ca2b35 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/arms_up_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:arms_up_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.arms_up_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/arrow.json b/data/generated/V26_1/reports/minecraft/components/item/arrow.json new file mode 100644 index 00000000..724423df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/arrow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:arrow", + "minecraft:item_name": { + "translate": "item.minecraft.arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/axolotl_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/axolotl_bucket.json new file mode 100644 index 00000000..610508a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/axolotl_bucket.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:axolotl_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.axolotl_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/axolotl_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/axolotl_spawn_egg.json new file mode 100644 index 00000000..0e957313 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/axolotl_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:axolotl" + }, + "minecraft:item_model": "minecraft:axolotl_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.axolotl_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/azalea.json b/data/generated/V26_1/reports/minecraft/components/item/azalea.json new file mode 100644 index 00000000..852283b3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/azalea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azalea", + "minecraft:item_name": { + "translate": "block.minecraft.azalea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/azalea_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/azalea_leaves.json new file mode 100644 index 00000000..9e470b12 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/azalea_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azalea_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.azalea_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/azure_bluet.json b/data/generated/V26_1/reports/minecraft/components/item/azure_bluet.json new file mode 100644 index 00000000..83863213 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/azure_bluet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azure_bluet", + "minecraft:item_name": { + "translate": "block.minecraft.azure_bluet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/baked_potato.json b/data/generated/V26_1/reports/minecraft/components/item/baked_potato.json new file mode 100644 index 00000000..51025383 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/baked_potato.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:baked_potato", + "minecraft:item_name": { + "translate": "item.minecraft.baked_potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo.json new file mode 100644 index 00000000..8b998f48 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_block.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_block.json new file mode 100644 index 00000000..f10ea1ea --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_block", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_button.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_button.json new file mode 100644 index 00000000..67df99be --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_button", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_chest_raft.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_chest_raft.json new file mode 100644 index 00000000..004960c5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_chest_raft.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_chest_raft", + "minecraft:item_name": { + "translate": "item.minecraft.bamboo_chest_raft" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_door.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_door.json new file mode 100644 index 00000000..e04bd0f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_door", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence.json new file mode 100644 index 00000000..e8ac2a50 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_fence", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence_gate.json new file mode 100644 index 00000000..8ffd703a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_hanging_sign.json new file mode 100644 index 00000000..85e42cfb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic.json new file mode 100644 index 00000000..cd5713aa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_slab.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_slab.json new file mode 100644 index 00000000..9a7eff8a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic_slab", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..1286c778 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_mosaic_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_planks.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_planks.json new file mode 100644 index 00000000..58d917cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_planks", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_pressure_plate.json new file mode 100644 index 00000000..69a01b17 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_raft.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_raft.json new file mode 100644 index 00000000..49f70180 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_raft.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_raft", + "minecraft:item_name": { + "translate": "item.minecraft.bamboo_raft" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_shelf.json new file mode 100644 index 00000000..9c0712c7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_sign.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_sign.json new file mode 100644 index 00000000..f0e303d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_sign", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_slab.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_slab.json new file mode 100644 index 00000000..9b78761a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_slab", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_stairs.json new file mode 100644 index 00000000..65969294 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bamboo_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/bamboo_trapdoor.json new file mode 100644 index 00000000..f1fd8779 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bamboo_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/barrel.json b/data/generated/V26_1/reports/minecraft/components/item/barrel.json new file mode 100644 index 00000000..36a7c971 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/barrel.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:barrel", + "minecraft:item_name": { + "translate": "block.minecraft.barrel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/barrier.json b/data/generated/V26_1/reports/minecraft/components/item/barrier.json new file mode 100644 index 00000000..6e51b455 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/barrier.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:barrier", + "minecraft:item_name": { + "translate": "block.minecraft.barrier" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/basalt.json b/data/generated/V26_1/reports/minecraft/components/item/basalt.json new file mode 100644 index 00000000..5b255dca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:basalt", + "minecraft:item_name": { + "translate": "block.minecraft.basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bat_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/bat_spawn_egg.json new file mode 100644 index 00000000..c7be8c75 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bat" + }, + "minecraft:item_model": "minecraft:bat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beacon.json b/data/generated/V26_1/reports/minecraft/components/item/beacon.json new file mode 100644 index 00000000..4820d6a2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beacon.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beacon", + "minecraft:item_name": { + "translate": "block.minecraft.beacon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bedrock.json b/data/generated/V26_1/reports/minecraft/components/item/bedrock.json new file mode 100644 index 00000000..501cf471 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bedrock.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bedrock", + "minecraft:item_name": { + "translate": "block.minecraft.bedrock" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bee_nest.json b/data/generated/V26_1/reports/minecraft/components/item/bee_nest.json new file mode 100644 index 00000000..afd9e9a4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bee_nest.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:bees": [], + "minecraft:block_state": { + "honey_level": "0" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bee_nest", + "minecraft:item_name": { + "translate": "block.minecraft.bee_nest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bee_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/bee_spawn_egg.json new file mode 100644 index 00000000..2d79827b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bee_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bee" + }, + "minecraft:item_model": "minecraft:bee_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bee_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beef.json b/data/generated/V26_1/reports/minecraft/components/item/beef.json new file mode 100644 index 00000000..b641fcad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beef.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:beef", + "minecraft:item_name": { + "translate": "item.minecraft.beef" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beehive.json b/data/generated/V26_1/reports/minecraft/components/item/beehive.json new file mode 100644 index 00000000..9d094cda --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beehive.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:bees": [], + "minecraft:block_state": { + "honey_level": "0" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beehive", + "minecraft:item_name": { + "translate": "block.minecraft.beehive" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beetroot.json b/data/generated/V26_1/reports/minecraft/components/item/beetroot.json new file mode 100644 index 00000000..501f79c4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beetroot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:beetroot", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beetroot_seeds.json b/data/generated/V26_1/reports/minecraft/components/item/beetroot_seeds.json new file mode 100644 index 00000000..7f4771a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beetroot_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beetroot_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/beetroot_soup.json b/data/generated/V26_1/reports/minecraft/components/item/beetroot_soup.json new file mode 100644 index 00000000..3e289d15 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/beetroot_soup.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:beetroot_soup", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot_soup" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bell.json b/data/generated/V26_1/reports/minecraft/components/item/bell.json new file mode 100644 index 00000000..395f497d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bell", + "minecraft:item_name": { + "translate": "block.minecraft.bell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/big_dripleaf.json b/data/generated/V26_1/reports/minecraft/components/item/big_dripleaf.json new file mode 100644 index 00000000..343b5684 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/big_dripleaf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:big_dripleaf", + "minecraft:item_name": { + "translate": "block.minecraft.big_dripleaf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_boat.json b/data/generated/V26_1/reports/minecraft/components/item/birch_boat.json new file mode 100644 index 00000000..3590e3df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_boat", + "minecraft:item_name": { + "translate": "item.minecraft.birch_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_button.json b/data/generated/V26_1/reports/minecraft/components/item/birch_button.json new file mode 100644 index 00000000..6ae9dbe5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_button", + "minecraft:item_name": { + "translate": "block.minecraft.birch_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/birch_chest_boat.json new file mode 100644 index 00000000..fb7cd7c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.birch_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_door.json b/data/generated/V26_1/reports/minecraft/components/item/birch_door.json new file mode 100644 index 00000000..2b21a34a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_door", + "minecraft:item_name": { + "translate": "block.minecraft.birch_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_fence.json b/data/generated/V26_1/reports/minecraft/components/item/birch_fence.json new file mode 100644 index 00000000..6262097e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_fence", + "minecraft:item_name": { + "translate": "block.minecraft.birch_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/birch_fence_gate.json new file mode 100644 index 00000000..b1526453 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.birch_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/birch_hanging_sign.json new file mode 100644 index 00000000..66cab3c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.birch_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/birch_leaves.json new file mode 100644 index 00000000..775cfe27 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.birch_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_log.json b/data/generated/V26_1/reports/minecraft/components/item/birch_log.json new file mode 100644 index 00000000..14854a22 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_log", + "minecraft:item_name": { + "translate": "block.minecraft.birch_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_planks.json b/data/generated/V26_1/reports/minecraft/components/item/birch_planks.json new file mode 100644 index 00000000..30c6b4e7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_planks", + "minecraft:item_name": { + "translate": "block.minecraft.birch_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/birch_pressure_plate.json new file mode 100644 index 00000000..55959ea4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.birch_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/birch_sapling.json new file mode 100644 index 00000000..3a3ee018 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.birch_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/birch_shelf.json new file mode 100644 index 00000000..036915b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.birch_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_sign.json b/data/generated/V26_1/reports/minecraft/components/item/birch_sign.json new file mode 100644 index 00000000..a453f651 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_sign", + "minecraft:item_name": { + "translate": "block.minecraft.birch_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_slab.json b/data/generated/V26_1/reports/minecraft/components/item/birch_slab.json new file mode 100644 index 00000000..24aeaaa2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_slab", + "minecraft:item_name": { + "translate": "block.minecraft.birch_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/birch_stairs.json new file mode 100644 index 00000000..d739b8cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.birch_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/birch_trapdoor.json new file mode 100644 index 00000000..85df4f2a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.birch_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/birch_wood.json b/data/generated/V26_1/reports/minecraft/components/item/birch_wood.json new file mode 100644 index 00000000..0bc049b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/birch_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_wood", + "minecraft:item_name": { + "translate": "block.minecraft.birch_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_banner.json b/data/generated/V26_1/reports/minecraft/components/item/black_banner.json new file mode 100644 index 00000000..c5b687fd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_banner", + "minecraft:item_name": { + "translate": "block.minecraft.black_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_bed.json b/data/generated/V26_1/reports/minecraft/components/item/black_bed.json new file mode 100644 index 00000000..507e6259 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_bed", + "minecraft:item_name": { + "translate": "block.minecraft.black_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/black_bundle.json new file mode 100644 index 00000000..5ca84cf3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.black_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_candle.json b/data/generated/V26_1/reports/minecraft/components/item/black_candle.json new file mode 100644 index 00000000..39a96ed1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_candle", + "minecraft:item_name": { + "translate": "block.minecraft.black_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/black_carpet.json new file mode 100644 index 00000000..3b3ea655 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:black_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:black_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.black_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/black_concrete.json new file mode 100644 index 00000000..4f281fdb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.black_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/black_concrete_powder.json new file mode 100644 index 00000000..557e8ebb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.black_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_dye.json b/data/generated/V26_1/reports/minecraft/components/item/black_dye.json new file mode 100644 index 00000000..40ec03ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "black", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_dye", + "minecraft:item_name": { + "translate": "item.minecraft.black_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/black_glazed_terracotta.json new file mode 100644 index 00000000..ef798e0c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.black_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_harness.json b/data/generated/V26_1/reports/minecraft/components/item/black_harness.json new file mode 100644 index 00000000..661357ad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:black_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:black_harness", + "minecraft:item_name": { + "translate": "item.minecraft.black_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/black_shulker_box.json new file mode 100644 index 00000000..11fc9e93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.black_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass.json new file mode 100644 index 00000000..05ed001a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.black_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass_pane.json new file mode 100644 index 00000000..7c469062 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.black_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/black_terracotta.json new file mode 100644 index 00000000..dabc3e8e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.black_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/black_wool.json b/data/generated/V26_1/reports/minecraft/components/item/black_wool.json new file mode 100644 index 00000000..5e6f288d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/black_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_wool", + "minecraft:item_name": { + "translate": "block.minecraft.black_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blackstone.json b/data/generated/V26_1/reports/minecraft/components/item/blackstone.json new file mode 100644 index 00000000..5e8e9f91 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blackstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/blackstone_slab.json new file mode 100644 index 00000000..97fd9afa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blackstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blackstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/blackstone_stairs.json new file mode 100644 index 00000000..1eb0d61b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blackstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blackstone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/blackstone_wall.json new file mode 100644 index 00000000..031e0de3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blackstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blade_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/blade_pottery_sherd.json new file mode 100644 index 00000000..b78bcd6c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blade_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blade_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.blade_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blast_furnace.json b/data/generated/V26_1/reports/minecraft/components/item/blast_furnace.json new file mode 100644 index 00000000..5ecd404d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blast_furnace.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blast_furnace", + "minecraft:item_name": { + "translate": "block.minecraft.blast_furnace" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blaze_powder.json b/data/generated/V26_1/reports/minecraft/components/item/blaze_powder.json new file mode 100644 index 00000000..2ef8e4fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blaze_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blaze_powder", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blaze_rod.json b/data/generated/V26_1/reports/minecraft/components/item/blaze_rod.json new file mode 100644 index 00000000..d4dc26a9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blaze_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blaze_rod", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blaze_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/blaze_spawn_egg.json new file mode 100644 index 00000000..68d33b57 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blaze_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:blaze" + }, + "minecraft:item_model": "minecraft:blaze_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_banner.json b/data/generated/V26_1/reports/minecraft/components/item/blue_banner.json new file mode 100644 index 00000000..fe9a703d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_banner", + "minecraft:item_name": { + "translate": "block.minecraft.blue_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_bed.json b/data/generated/V26_1/reports/minecraft/components/item/blue_bed.json new file mode 100644 index 00000000..d7e09103 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_bed", + "minecraft:item_name": { + "translate": "block.minecraft.blue_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/blue_bundle.json new file mode 100644 index 00000000..851b5239 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.blue_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_candle.json b/data/generated/V26_1/reports/minecraft/components/item/blue_candle.json new file mode 100644 index 00000000..7bc66d14 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_candle", + "minecraft:item_name": { + "translate": "block.minecraft.blue_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/blue_carpet.json new file mode 100644 index 00000000..c3ac3cf0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:blue_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:blue_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.blue_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/blue_concrete.json new file mode 100644 index 00000000..c4034f01 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.blue_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/blue_concrete_powder.json new file mode 100644 index 00000000..4e7bb19f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.blue_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_dye.json b/data/generated/V26_1/reports/minecraft/components/item/blue_dye.json new file mode 100644 index 00000000..7843ea3a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "blue", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_dye", + "minecraft:item_name": { + "translate": "item.minecraft.blue_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_egg.json b/data/generated/V26_1/reports/minecraft/components/item/blue_egg.json new file mode 100644 index 00000000..9d9077b9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:cold", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_egg", + "minecraft:item_name": { + "translate": "item.minecraft.blue_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/blue_glazed_terracotta.json new file mode 100644 index 00000000..1696f616 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.blue_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_harness.json b/data/generated/V26_1/reports/minecraft/components/item/blue_harness.json new file mode 100644 index 00000000..6b5e8af6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:blue_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:blue_harness", + "minecraft:item_name": { + "translate": "item.minecraft.blue_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_ice.json b/data/generated/V26_1/reports/minecraft/components/item/blue_ice.json new file mode 100644 index 00000000..6f1cc66f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_ice", + "minecraft:item_name": { + "translate": "block.minecraft.blue_ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_orchid.json b/data/generated/V26_1/reports/minecraft/components/item/blue_orchid.json new file mode 100644 index 00000000..ef9fb3bc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_orchid.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_orchid", + "minecraft:item_name": { + "translate": "block.minecraft.blue_orchid" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/blue_shulker_box.json new file mode 100644 index 00000000..87ba4705 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.blue_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass.json new file mode 100644 index 00000000..3beca555 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.blue_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass_pane.json new file mode 100644 index 00000000..0f2c2f15 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.blue_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/blue_terracotta.json new file mode 100644 index 00000000..161527fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.blue_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/blue_wool.json b/data/generated/V26_1/reports/minecraft/components/item/blue_wool.json new file mode 100644 index 00000000..24aba645 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/blue_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_wool", + "minecraft:item_name": { + "translate": "block.minecraft.blue_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bogged_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/bogged_spawn_egg.json new file mode 100644 index 00000000..0630b166 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bogged_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bogged" + }, + "minecraft:item_model": "minecraft:bogged_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bogged_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..c038550b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bolt_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.bolt_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bone.json b/data/generated/V26_1/reports/minecraft/components/item/bone.json new file mode 100644 index 00000000..031239da --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone", + "minecraft:item_name": { + "translate": "item.minecraft.bone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bone_block.json b/data/generated/V26_1/reports/minecraft/components/item/bone_block.json new file mode 100644 index 00000000..1e684124 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone_block", + "minecraft:item_name": { + "translate": "block.minecraft.bone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bone_meal.json b/data/generated/V26_1/reports/minecraft/components/item/bone_meal.json new file mode 100644 index 00000000..4224e05b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bone_meal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone_meal", + "minecraft:item_name": { + "translate": "item.minecraft.bone_meal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/book.json b/data/generated/V26_1/reports/minecraft/components/item/book.json new file mode 100644 index 00000000..3d39acaf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/book.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:book", + "minecraft:item_name": { + "translate": "item.minecraft.book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bookshelf.json b/data/generated/V26_1/reports/minecraft/components/item/bookshelf.json new file mode 100644 index 00000000..57305c27 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bookshelf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bookshelf", + "minecraft:item_name": { + "translate": "block.minecraft.bookshelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bordure_indented_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..edc98b4d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bordure_indented_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bordure_indented_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.bordure_indented_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/bordure_indented", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bow.json b/data/generated/V26_1/reports/minecraft/components/item/bow.json new file mode 100644 index 00000000..66702520 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bow.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bow", + "minecraft:item_name": { + "translate": "item.minecraft.bow" + }, + "minecraft:lore": [], + "minecraft:max_damage": 384, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bowl.json b/data/generated/V26_1/reports/minecraft/components/item/bowl.json new file mode 100644 index 00000000..4174e5ab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bowl.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bowl", + "minecraft:item_name": { + "translate": "item.minecraft.bowl" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brain_coral.json b/data/generated/V26_1/reports/minecraft/components/item/brain_coral.json new file mode 100644 index 00000000..375fcaef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brain_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brain_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/brain_coral_block.json new file mode 100644 index 00000000..0fecbd9f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brain_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brain_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/brain_coral_fan.json new file mode 100644 index 00000000..d252e206 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brain_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bread.json b/data/generated/V26_1/reports/minecraft/components/item/bread.json new file mode 100644 index 00000000..ef19e6fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bread.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:bread", + "minecraft:item_name": { + "translate": "item.minecraft.bread" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/breeze_rod.json b/data/generated/V26_1/reports/minecraft/components/item/breeze_rod.json new file mode 100644 index 00000000..0d0eb4fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/breeze_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:breeze_rod", + "minecraft:item_name": { + "translate": "item.minecraft.breeze_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/breeze_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/breeze_spawn_egg.json new file mode 100644 index 00000000..8a3fc6d4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/breeze_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:breeze" + }, + "minecraft:item_model": "minecraft:breeze_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.breeze_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brewer_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/brewer_pottery_sherd.json new file mode 100644 index 00000000..f0c5024a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brewer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brewer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.brewer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brewing_stand.json b/data/generated/V26_1/reports/minecraft/components/item/brewing_stand.json new file mode 100644 index 00000000..5e88cc77 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brewing_stand.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brewing_stand", + "minecraft:item_name": { + "translate": "block.minecraft.brewing_stand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brick.json b/data/generated/V26_1/reports/minecraft/components/item/brick.json new file mode 100644 index 00000000..90e0b27b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick", + "minecraft:item_name": { + "translate": "item.minecraft.brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/brick_slab.json new file mode 100644 index 00000000..461c4079 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/brick_stairs.json new file mode 100644 index 00000000..55bb3834 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/brick_wall.json new file mode 100644 index 00000000..f6528a03 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bricks.json b/data/generated/V26_1/reports/minecraft/components/item/bricks.json new file mode 100644 index 00000000..6e2ce023 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bricks", + "minecraft:item_name": { + "translate": "block.minecraft.bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_banner.json b/data/generated/V26_1/reports/minecraft/components/item/brown_banner.json new file mode 100644 index 00000000..fb1e0a6a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_banner", + "minecraft:item_name": { + "translate": "block.minecraft.brown_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_bed.json b/data/generated/V26_1/reports/minecraft/components/item/brown_bed.json new file mode 100644 index 00000000..783b915b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_bed", + "minecraft:item_name": { + "translate": "block.minecraft.brown_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/brown_bundle.json new file mode 100644 index 00000000..0ee27105 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.brown_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_candle.json b/data/generated/V26_1/reports/minecraft/components/item/brown_candle.json new file mode 100644 index 00000000..0670279e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_candle", + "minecraft:item_name": { + "translate": "block.minecraft.brown_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/brown_carpet.json new file mode 100644 index 00000000..b7dca398 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:brown_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:brown_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.brown_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/brown_concrete.json new file mode 100644 index 00000000..a62fda3c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.brown_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/brown_concrete_powder.json new file mode 100644 index 00000000..fc146eb3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.brown_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_dye.json b/data/generated/V26_1/reports/minecraft/components/item/brown_dye.json new file mode 100644 index 00000000..02520630 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "brown", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_dye", + "minecraft:item_name": { + "translate": "item.minecraft.brown_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_egg.json b/data/generated/V26_1/reports/minecraft/components/item/brown_egg.json new file mode 100644 index 00000000..570ff735 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:warm", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_egg", + "minecraft:item_name": { + "translate": "item.minecraft.brown_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/brown_glazed_terracotta.json new file mode 100644 index 00000000..4b81f715 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.brown_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_harness.json b/data/generated/V26_1/reports/minecraft/components/item/brown_harness.json new file mode 100644 index 00000000..389beb82 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:brown_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:brown_harness", + "minecraft:item_name": { + "translate": "item.minecraft.brown_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom.json b/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom.json new file mode 100644 index 00000000..37c8d2ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_mushroom", + "minecraft:item_name": { + "translate": "block.minecraft.brown_mushroom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom_block.json b/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom_block.json new file mode 100644 index 00000000..effa0a35 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_mushroom_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_mushroom_block", + "minecraft:item_name": { + "translate": "block.minecraft.brown_mushroom_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/brown_shulker_box.json new file mode 100644 index 00000000..aabd531d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.brown_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass.json new file mode 100644 index 00000000..277b3c96 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.brown_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass_pane.json new file mode 100644 index 00000000..84c19d9f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.brown_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/brown_terracotta.json new file mode 100644 index 00000000..fe39ffa0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.brown_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brown_wool.json b/data/generated/V26_1/reports/minecraft/components/item/brown_wool.json new file mode 100644 index 00000000..0b77c750 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brown_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_wool", + "minecraft:item_name": { + "translate": "block.minecraft.brown_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/brush.json b/data/generated/V26_1/reports/minecraft/components/item/brush.json new file mode 100644 index 00000000..eccac433 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/brush.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brush", + "minecraft:item_name": { + "translate": "item.minecraft.brush" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bubble_coral.json b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral.json new file mode 100644 index 00000000..53768f3a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_block.json new file mode 100644 index 00000000..45a50d56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_fan.json new file mode 100644 index 00000000..702d9a52 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bubble_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bucket.json b/data/generated/V26_1/reports/minecraft/components/item/bucket.json new file mode 100644 index 00000000..f7f8b1fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bucket", + "minecraft:item_name": { + "translate": "item.minecraft.bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/budding_amethyst.json b/data/generated/V26_1/reports/minecraft/components/item/budding_amethyst.json new file mode 100644 index 00000000..d789a6bc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/budding_amethyst.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:budding_amethyst", + "minecraft:item_name": { + "translate": "block.minecraft.budding_amethyst" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bundle.json b/data/generated/V26_1/reports/minecraft/components/item/bundle.json new file mode 100644 index 00000000..e99702b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bundle", + "minecraft:item_name": { + "translate": "item.minecraft.bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/burn_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/burn_pottery_sherd.json new file mode 100644 index 00000000..cb9775d3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/burn_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:burn_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.burn_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/bush.json b/data/generated/V26_1/reports/minecraft/components/item/bush.json new file mode 100644 index 00000000..8bce5461 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bush", + "minecraft:item_name": { + "translate": "block.minecraft.bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cactus.json b/data/generated/V26_1/reports/minecraft/components/item/cactus.json new file mode 100644 index 00000000..2a37acd3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cactus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cactus", + "minecraft:item_name": { + "translate": "block.minecraft.cactus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cactus_flower.json b/data/generated/V26_1/reports/minecraft/components/item/cactus_flower.json new file mode 100644 index 00000000..61b10f28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cactus_flower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cactus_flower", + "minecraft:item_name": { + "translate": "block.minecraft.cactus_flower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cake.json b/data/generated/V26_1/reports/minecraft/components/item/cake.json new file mode 100644 index 00000000..7893f3c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cake.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cake", + "minecraft:item_name": { + "translate": "block.minecraft.cake" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/calcite.json b/data/generated/V26_1/reports/minecraft/components/item/calcite.json new file mode 100644 index 00000000..91232ffb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/calcite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:calcite", + "minecraft:item_name": { + "translate": "block.minecraft.calcite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/calibrated_sculk_sensor.json b/data/generated/V26_1/reports/minecraft/components/item/calibrated_sculk_sensor.json new file mode 100644 index 00000000..bc4823e6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/calibrated_sculk_sensor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:calibrated_sculk_sensor", + "minecraft:item_name": { + "translate": "block.minecraft.calibrated_sculk_sensor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/camel_husk_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/camel_husk_spawn_egg.json new file mode 100644 index 00000000..08e384cb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/camel_husk_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:camel_husk" + }, + "minecraft:item_model": "minecraft:camel_husk_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.camel_husk_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/camel_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/camel_spawn_egg.json new file mode 100644 index 00000000..f8d25d2f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/camel_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:camel" + }, + "minecraft:item_model": "minecraft:camel_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.camel_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/campfire.json b/data/generated/V26_1/reports/minecraft/components/item/campfire.json new file mode 100644 index 00000000..a1ceebcb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/campfire.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:campfire", + "minecraft:item_name": { + "translate": "block.minecraft.campfire" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/candle.json b/data/generated/V26_1/reports/minecraft/components/item/candle.json new file mode 100644 index 00000000..41b991ed --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:candle", + "minecraft:item_name": { + "translate": "block.minecraft.candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/carrot.json b/data/generated/V26_1/reports/minecraft/components/item/carrot.json new file mode 100644 index 00000000..0f31509a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/carrot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 3.6000001 + }, + "minecraft:item_model": "minecraft:carrot", + "minecraft:item_name": { + "translate": "item.minecraft.carrot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/carrot_on_a_stick.json b/data/generated/V26_1/reports/minecraft/components/item/carrot_on_a_stick.json new file mode 100644 index 00000000..56df973c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/carrot_on_a_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:carrot_on_a_stick", + "minecraft:item_name": { + "translate": "item.minecraft.carrot_on_a_stick" + }, + "minecraft:lore": [], + "minecraft:max_damage": 25, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cartography_table.json b/data/generated/V26_1/reports/minecraft/components/item/cartography_table.json new file mode 100644 index 00000000..98a1b1e2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cartography_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cartography_table", + "minecraft:item_name": { + "translate": "block.minecraft.cartography_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/carved_pumpkin.json b/data/generated/V26_1/reports/minecraft/components/item/carved_pumpkin.json new file mode 100644 index 00000000..c1de669a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/carved_pumpkin.json @@ -0,0 +1,34 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "camera_overlay": "minecraft:misc/pumpkinblur", + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:carved_pumpkin", + "minecraft:item_name": { + "translate": "block.minecraft.carved_pumpkin" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cat_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/cat_spawn_egg.json new file mode 100644 index 00000000..f5e4d1ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cat" + }, + "minecraft:item_model": "minecraft:cat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cauldron.json b/data/generated/V26_1/reports/minecraft/components/item/cauldron.json new file mode 100644 index 00000000..86867fb3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cauldron.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cauldron", + "minecraft:item_name": { + "translate": "block.minecraft.cauldron" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cave_spider_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/cave_spider_spawn_egg.json new file mode 100644 index 00000000..db80973d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cave_spider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cave_spider" + }, + "minecraft:item_model": "minecraft:cave_spider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cave_spider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chain_command_block.json b/data/generated/V26_1/reports/minecraft/components/item/chain_command_block.json new file mode 100644 index 00000000..23ee4a1e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chain_command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chain_command_block", + "minecraft:item_name": { + "translate": "block.minecraft.chain_command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chainmail_boots.json b/data/generated/V26_1/reports/minecraft/components/item/chainmail_boots.json new file mode 100644 index 00000000..0c9fcc25 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chainmail_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:chainmail_boots", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 195, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chainmail_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/chainmail_chestplate.json new file mode 100644 index 00000000..af401174 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chainmail_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:chainmail_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 240, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chainmail_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/chainmail_helmet.json new file mode 100644 index 00000000..fd482cad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chainmail_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "head" + }, + "minecraft:item_model": "minecraft:chainmail_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chainmail_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/chainmail_leggings.json new file mode 100644 index 00000000..1f085a16 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chainmail_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:chainmail_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 225, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/charcoal.json b/data/generated/V26_1/reports/minecraft/components/item/charcoal.json new file mode 100644 index 00000000..bf43f68b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/charcoal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:charcoal", + "minecraft:item_name": { + "translate": "item.minecraft.charcoal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_boat.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_boat.json new file mode 100644 index 00000000..d49b88b0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_boat", + "minecraft:item_name": { + "translate": "item.minecraft.cherry_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_button.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_button.json new file mode 100644 index 00000000..05bc454b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_button", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_chest_boat.json new file mode 100644 index 00000000..68435580 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.cherry_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_door.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_door.json new file mode 100644 index 00000000..0b62e945 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_door", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_fence.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_fence.json new file mode 100644 index 00000000..bb77eb35 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_fence", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_fence_gate.json new file mode 100644 index 00000000..68f07e44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_hanging_sign.json new file mode 100644 index 00000000..28db2acd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_leaves.json new file mode 100644 index 00000000..d055cbb0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_log.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_log.json new file mode 100644 index 00000000..fa1d1843 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_log", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_planks.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_planks.json new file mode 100644 index 00000000..f5002e4a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_planks", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_pressure_plate.json new file mode 100644 index 00000000..82f37335 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_sapling.json new file mode 100644 index 00000000..48adef17 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_shelf.json new file mode 100644 index 00000000..cda5e532 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_sign.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_sign.json new file mode 100644 index 00000000..3a66778d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_sign", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_slab.json new file mode 100644 index 00000000..aebe7e01 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_stairs.json new file mode 100644 index 00000000..ed191e96 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_trapdoor.json new file mode 100644 index 00000000..955a452f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cherry_wood.json b/data/generated/V26_1/reports/minecraft/components/item/cherry_wood.json new file mode 100644 index 00000000..a66dcc63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cherry_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_wood", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chest.json b/data/generated/V26_1/reports/minecraft/components/item/chest.json new file mode 100644 index 00000000..a3035efc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chest.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chest", + "minecraft:item_name": { + "translate": "block.minecraft.chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chest_minecart.json b/data/generated/V26_1/reports/minecraft/components/item/chest_minecart.json new file mode 100644 index 00000000..86305ec4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chest_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chest_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.chest_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chicken.json b/data/generated/V26_1/reports/minecraft/components/item/chicken.json new file mode 100644 index 00000000..2b0367ca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chicken.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 600, + "id": "minecraft:hunger", + "show_icon": true + } + ], + "probability": 0.3 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:chicken", + "minecraft:item_name": { + "translate": "item.minecraft.chicken" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chicken_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/chicken_spawn_egg.json new file mode 100644 index 00000000..8f493556 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chicken_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:chicken" + }, + "minecraft:item_model": "minecraft:chicken_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.chicken_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chipped_anvil.json b/data/generated/V26_1/reports/minecraft/components/item/chipped_anvil.json new file mode 100644 index 00000000..01f8ade2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chipped_anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chipped_anvil", + "minecraft:item_name": { + "translate": "block.minecraft.chipped_anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_bookshelf.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_bookshelf.json new file mode 100644 index 00000000..598dadd7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_bookshelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_bookshelf", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_bookshelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_copper.json new file mode 100644 index 00000000..ce9e1bb0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_deepslate.json new file mode 100644 index 00000000..c0d00d8b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_nether_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_nether_bricks.json new file mode 100644 index 00000000..cc75a487 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_polished_blackstone.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_polished_blackstone.json new file mode 100644 index 00000000..2c099e1c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_polished_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_polished_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_polished_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_quartz_block.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_quartz_block.json new file mode 100644 index 00000000..2b599e83 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_quartz_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_quartz_block", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_quartz_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_red_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_red_sandstone.json new file mode 100644 index 00000000..3a6c9404 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_resin_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_resin_bricks.json new file mode 100644 index 00000000..b6fb4586 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_resin_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_resin_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_resin_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_sandstone.json new file mode 100644 index 00000000..ce3d81da --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_stone_bricks.json new file mode 100644 index 00000000..77ebe858 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff.json new file mode 100644 index 00000000..75ad3c1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_tuff", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff_bricks.json new file mode 100644 index 00000000..cf9d0edd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chiseled_tuff_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_tuff_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_tuff_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chorus_flower.json b/data/generated/V26_1/reports/minecraft/components/item/chorus_flower.json new file mode 100644 index 00000000..eaa87b43 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chorus_flower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chorus_flower", + "minecraft:item_name": { + "translate": "block.minecraft.chorus_flower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chorus_fruit.json b/data/generated/V26_1/reports/minecraft/components/item/chorus_fruit.json new file mode 100644 index 00000000..c828e42b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chorus_fruit.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:teleport_randomly" + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 2.4 + }, + "minecraft:item_model": "minecraft:chorus_fruit", + "minecraft:item_name": { + "translate": "item.minecraft.chorus_fruit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 1.0 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/chorus_plant.json b/data/generated/V26_1/reports/minecraft/components/item/chorus_plant.json new file mode 100644 index 00000000..4d268e7e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/chorus_plant.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chorus_plant", + "minecraft:item_name": { + "translate": "block.minecraft.chorus_plant" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/clay.json b/data/generated/V26_1/reports/minecraft/components/item/clay.json new file mode 100644 index 00000000..7256223e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/clay.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clay", + "minecraft:item_name": { + "translate": "block.minecraft.clay" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/clay_ball.json b/data/generated/V26_1/reports/minecraft/components/item/clay_ball.json new file mode 100644 index 00000000..4dbe00e3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/clay_ball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clay_ball", + "minecraft:item_name": { + "translate": "item.minecraft.clay_ball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/clock.json b/data/generated/V26_1/reports/minecraft/components/item/clock.json new file mode 100644 index 00000000..3d890538 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/clock.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clock", + "minecraft:item_name": { + "translate": "item.minecraft.clock" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/closed_eyeblossom.json b/data/generated/V26_1/reports/minecraft/components/item/closed_eyeblossom.json new file mode 100644 index 00000000..71105fed --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/closed_eyeblossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:closed_eyeblossom", + "minecraft:item_name": { + "translate": "block.minecraft.closed_eyeblossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/coal.json b/data/generated/V26_1/reports/minecraft/components/item/coal.json new file mode 100644 index 00000000..74139cab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/coal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal", + "minecraft:item_name": { + "translate": "item.minecraft.coal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/coal_block.json b/data/generated/V26_1/reports/minecraft/components/item/coal_block.json new file mode 100644 index 00000000..4afb4084 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/coal_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal_block", + "minecraft:item_name": { + "translate": "block.minecraft.coal_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/coal_ore.json b/data/generated/V26_1/reports/minecraft/components/item/coal_ore.json new file mode 100644 index 00000000..be6b079f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/coal_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal_ore", + "minecraft:item_name": { + "translate": "block.minecraft.coal_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/coarse_dirt.json b/data/generated/V26_1/reports/minecraft/components/item/coarse_dirt.json new file mode 100644 index 00000000..c5a73815 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/coarse_dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coarse_dirt", + "minecraft:item_name": { + "translate": "block.minecraft.coarse_dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/coast_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..922a85bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/coast_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coast_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.coast_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate.json new file mode 100644 index 00000000..9fe7bcff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_slab.json new file mode 100644 index 00000000..9fa8649a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..3010a9dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_wall.json b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_wall.json new file mode 100644 index 00000000..c934d6e2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobbled_deepslate_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobblestone.json b/data/generated/V26_1/reports/minecraft/components/item/cobblestone.json new file mode 100644 index 00000000..2197553e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobblestone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_slab.json new file mode 100644 index 00000000..2c7d4e10 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobblestone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_stairs.json new file mode 100644 index 00000000..fe0c5f3d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobblestone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_wall.json new file mode 100644 index 00000000..207d7215 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobblestone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cobweb.json b/data/generated/V26_1/reports/minecraft/components/item/cobweb.json new file mode 100644 index 00000000..b8537954 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cobweb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobweb", + "minecraft:item_name": { + "translate": "block.minecraft.cobweb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cocoa_beans.json b/data/generated/V26_1/reports/minecraft/components/item/cocoa_beans.json new file mode 100644 index 00000000..2b8e0b5e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cocoa_beans.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cocoa_beans", + "minecraft:item_name": { + "translate": "item.minecraft.cocoa_beans" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cod.json b/data/generated/V26_1/reports/minecraft/components/item/cod.json new file mode 100644 index 00000000..6bdcfbc4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cod", + "minecraft:item_name": { + "translate": "item.minecraft.cod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cod_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/cod_bucket.json new file mode 100644 index 00000000..05bb48a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cod_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cod_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.cod_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cod_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/cod_spawn_egg.json new file mode 100644 index 00000000..79a786fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cod_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cod" + }, + "minecraft:item_model": "minecraft:cod_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cod_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/command_block.json b/data/generated/V26_1/reports/minecraft/components/item/command_block.json new file mode 100644 index 00000000..f88693a3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:command_block", + "minecraft:item_name": { + "translate": "block.minecraft.command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/command_block_minecart.json b/data/generated/V26_1/reports/minecraft/components/item/command_block_minecart.json new file mode 100644 index 00000000..8a70a9f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/command_block_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:command_block_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.command_block_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/comparator.json b/data/generated/V26_1/reports/minecraft/components/item/comparator.json new file mode 100644 index 00000000..ccce4143 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/comparator.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:comparator", + "minecraft:item_name": { + "translate": "block.minecraft.comparator" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/compass.json b/data/generated/V26_1/reports/minecraft/components/item/compass.json new file mode 100644 index 00000000..a9dacec4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/compass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:compass", + "minecraft:item_name": { + "translate": "item.minecraft.compass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/composter.json b/data/generated/V26_1/reports/minecraft/components/item/composter.json new file mode 100644 index 00000000..20295be1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/composter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:composter", + "minecraft:item_name": { + "translate": "block.minecraft.composter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/conduit.json b/data/generated/V26_1/reports/minecraft/components/item/conduit.json new file mode 100644 index 00000000..6bc974c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/conduit.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:conduit", + "minecraft:item_name": { + "translate": "block.minecraft.conduit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_beef.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_beef.json new file mode 100644 index 00000000..b8daafea --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_beef.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 12.8 + }, + "minecraft:item_model": "minecraft:cooked_beef", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_beef" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_chicken.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_chicken.json new file mode 100644 index 00000000..2f6c77dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_chicken.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:cooked_chicken", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_chicken" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_cod.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_cod.json new file mode 100644 index 00000000..560f7905 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_cod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:cooked_cod", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_cod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_mutton.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_mutton.json new file mode 100644 index 00000000..5f9fc2d5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_mutton.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:cooked_mutton", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_mutton" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_porkchop.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_porkchop.json new file mode 100644 index 00000000..6bc2645f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_porkchop.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 12.8 + }, + "minecraft:item_model": "minecraft:cooked_porkchop", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_porkchop" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_rabbit.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_rabbit.json new file mode 100644 index 00000000..137c5fce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_rabbit.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:cooked_rabbit", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_rabbit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cooked_salmon.json b/data/generated/V26_1/reports/minecraft/components/item/cooked_salmon.json new file mode 100644 index 00000000..847ad2c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cooked_salmon.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:cooked_salmon", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_salmon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cookie.json b/data/generated/V26_1/reports/minecraft/components/item/cookie.json new file mode 100644 index 00000000..ee93de90 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cookie.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cookie", + "minecraft:item_name": { + "translate": "item.minecraft.cookie" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_axe.json b/data/generated/V26_1/reports/minecraft/components/item/copper_axe.json new file mode 100644 index 00000000..9ff77368 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_axe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/copper_bars.json new file mode 100644 index 00000000..4c92bccb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_block.json b/data/generated/V26_1/reports/minecraft/components/item/copper_block.json new file mode 100644 index 00000000..da719abf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_boots.json b/data/generated/V26_1/reports/minecraft/components/item/copper_boots.json new file mode 100644 index 00000000..fa57b2c0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:copper_boots", + "minecraft:item_name": { + "translate": "item.minecraft.copper_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 143, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/copper_bulb.json new file mode 100644 index 00000000..bc875424 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/copper_chain.json new file mode 100644 index 00000000..d4f55648 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/copper_chest.json new file mode 100644 index 00000000..7e269681 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/copper_chestplate.json new file mode 100644 index 00000000..84ca47b9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:copper_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.copper_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 176, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/copper_door.json new file mode 100644 index 00000000..b6fe7b29 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_golem_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/copper_golem_spawn_egg.json new file mode 100644 index 00000000..c55bdfe3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:copper_golem" + }, + "minecraft:item_model": "minecraft:copper_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.copper_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/copper_golem_statue.json new file mode 100644 index 00000000..6e76a2d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/copper_grate.json new file mode 100644 index 00000000..cd157670 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/copper_helmet.json new file mode 100644 index 00000000..c7cad45c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "head" + }, + "minecraft:item_model": "minecraft:copper_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.copper_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 121, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/copper_hoe.json new file mode 100644 index 00000000..5b44742b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/copper_horse_armor.json new file mode 100644 index 00000000..845babed --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:copper", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:copper_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.copper_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_ingot.json b/data/generated/V26_1/reports/minecraft/components/item/copper_ingot.json new file mode 100644 index 00000000..ce1521fa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.copper_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:copper", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/copper_lantern.json new file mode 100644 index 00000000..d045f94a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/copper_leggings.json new file mode 100644 index 00000000..4a4952f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:copper_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.copper_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_nautilus_armor.json b/data/generated/V26_1/reports/minecraft/components/item/copper_nautilus_armor.json new file mode 100644 index 00000000..4619765c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:copper", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:copper_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.copper_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_nugget.json b/data/generated/V26_1/reports/minecraft/components/item/copper_nugget.json new file mode 100644 index 00000000..d26d82ab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.copper_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_ore.json b/data/generated/V26_1/reports/minecraft/components/item/copper_ore.json new file mode 100644 index 00000000..d729d36d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_ore", + "minecraft:item_name": { + "translate": "block.minecraft.copper_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/copper_pickaxe.json new file mode 100644 index 00000000..3bc33757 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/copper_shovel.json new file mode 100644 index 00000000..3e883e8c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.copper_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_spear.json b/data/generated/V26_1/reports/minecraft/components/item/copper_spear.json new file mode 100644 index 00000000..33af7e9e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.8235294818878174, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_spear", + "minecraft:item_name": { + "translate": "item.minecraft.copper_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 250, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.82, + "delay_ticks": 13, + "dismount_conditions": { + "max_duration_ticks": 80, + "min_speed": 12.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 165, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 17 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_sword.json b/data/generated/V26_1/reports/minecraft/components/item/copper_sword.json new file mode 100644 index 00000000..2e95d9d3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_sword", + "minecraft:item_name": { + "translate": "item.minecraft.copper_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_torch.json b/data/generated/V26_1/reports/minecraft/components/item/copper_torch.json new file mode 100644 index 00000000..65ef1c9a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_torch", + "minecraft:item_name": { + "translate": "block.minecraft.copper_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/copper_trapdoor.json new file mode 100644 index 00000000..d2fccd5c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cornflower.json b/data/generated/V26_1/reports/minecraft/components/item/cornflower.json new file mode 100644 index 00000000..5b93a1fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cornflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cornflower", + "minecraft:item_name": { + "translate": "block.minecraft.cornflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cow_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/cow_spawn_egg.json new file mode 100644 index 00000000..f5cad2cf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cow_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cow" + }, + "minecraft:item_model": "minecraft:cow_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cow_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_bricks.json new file mode 100644 index 00000000..67f58be4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_deepslate_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_deepslate_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_tiles.json b/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_tiles.json new file mode 100644 index 00000000..bab1d599 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cracked_deepslate_tiles.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_deepslate_tiles", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_deepslate_tiles" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cracked_nether_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/cracked_nether_bricks.json new file mode 100644 index 00000000..c449432b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cracked_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..0370c623 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_polished_blackstone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_polished_blackstone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cracked_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/cracked_stone_bricks.json new file mode 100644 index 00000000..b2f741de --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cracked_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crafter.json b/data/generated/V26_1/reports/minecraft/components/item/crafter.json new file mode 100644 index 00000000..0ca32488 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crafter.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crafter", + "minecraft:item_name": { + "translate": "block.minecraft.crafter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crafting_table.json b/data/generated/V26_1/reports/minecraft/components/item/crafting_table.json new file mode 100644 index 00000000..88112121 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crafting_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crafting_table", + "minecraft:item_name": { + "translate": "block.minecraft.crafting_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/creaking_heart.json b/data/generated/V26_1/reports/minecraft/components/item/creaking_heart.json new file mode 100644 index 00000000..0a63942e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/creaking_heart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:creaking_heart", + "minecraft:item_name": { + "translate": "block.minecraft.creaking_heart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/creaking_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/creaking_spawn_egg.json new file mode 100644 index 00000000..d50cb296 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/creaking_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:creaking" + }, + "minecraft:item_model": "minecraft:creaking_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.creaking_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/creeper_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/creeper_banner_pattern.json new file mode 100644 index 00000000..2ecfce74 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/creeper_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:creeper_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.creeper_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/creeper", + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/creeper_head.json b/data/generated/V26_1/reports/minecraft/components/item/creeper_head.json new file mode 100644 index 00000000..02e6f53e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/creeper_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:creeper_head", + "minecraft:item_name": { + "translate": "block.minecraft.creeper_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/creeper_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/creeper_spawn_egg.json new file mode 100644 index 00000000..487b6d3d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/creeper_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:creeper" + }, + "minecraft:item_model": "minecraft:creeper_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.creeper_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_button.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_button.json new file mode 100644 index 00000000..0e4a39b7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_button", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_door.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_door.json new file mode 100644 index 00000000..12506bd1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_door", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_fence.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_fence.json new file mode 100644 index 00000000..ec844f0e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fence", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_fence_gate.json new file mode 100644 index 00000000..47975a6f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_fungus.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_fungus.json new file mode 100644 index 00000000..c8979de3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_fungus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fungus", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fungus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_hanging_sign.json new file mode 100644 index 00000000..08875898 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_hyphae.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_hyphae.json new file mode 100644 index 00000000..e31c0703 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_nylium.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_nylium.json new file mode 100644 index 00000000..16ddb042 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_nylium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_nylium", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_nylium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_planks.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_planks.json new file mode 100644 index 00000000..48c14340 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_planks", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_pressure_plate.json new file mode 100644 index 00000000..f83cf98b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_roots.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_roots.json new file mode 100644 index 00000000..c473d1df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_roots", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_shelf.json new file mode 100644 index 00000000..68be267a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_sign.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_sign.json new file mode 100644 index 00000000..2685d53b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_sign", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_slab.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_slab.json new file mode 100644 index 00000000..75b84c1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_slab", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_stairs.json new file mode 100644 index 00000000..eb35600c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_stem.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_stem.json new file mode 100644 index 00000000..bb6d8ad9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_stem", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crimson_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/crimson_trapdoor.json new file mode 100644 index 00000000..0db2f9f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crimson_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crossbow.json b/data/generated/V26_1/reports/minecraft/components/item/crossbow.json new file mode 100644 index 00000000..fb1cada1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crossbow.json @@ -0,0 +1,24 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:charged_projectiles": [], + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crossbow", + "minecraft:item_name": { + "translate": "item.minecraft.crossbow" + }, + "minecraft:lore": [], + "minecraft:max_damage": 465, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/crying_obsidian.json b/data/generated/V26_1/reports/minecraft/components/item/crying_obsidian.json new file mode 100644 index 00000000..edd462b5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/crying_obsidian.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crying_obsidian", + "minecraft:item_name": { + "translate": "block.minecraft.crying_obsidian" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/cut_copper.json new file mode 100644 index 00000000..fb9353cb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cut_copper_slab.json new file mode 100644 index 00000000..1c02bf33 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/cut_copper_stairs.json new file mode 100644 index 00000000..e37d132a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone.json new file mode 100644 index 00000000..9e5194fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.cut_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone_slab.json new file mode 100644 index 00000000..fd01abbf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone.json new file mode 100644 index 00000000..09b30c9c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.cut_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone_slab.json new file mode 100644 index 00000000..6ee999d9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cut_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_banner.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_banner.json new file mode 100644 index 00000000..10d3bce7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_banner", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_bed.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_bed.json new file mode 100644 index 00000000..6d27cb7d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_bed", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_bundle.json new file mode 100644 index 00000000..4eb5d0ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_candle.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_candle.json new file mode 100644 index 00000000..e296ec50 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_candle", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_carpet.json new file mode 100644 index 00000000..730fab60 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:cyan_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:cyan_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete.json new file mode 100644 index 00000000..80b1e0de --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete_powder.json new file mode 100644 index 00000000..6fa4bf7a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_dye.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_dye.json new file mode 100644 index 00000000..a606514e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "cyan", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_dye", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_glazed_terracotta.json new file mode 100644 index 00000000..19db3e47 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_harness.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_harness.json new file mode 100644 index 00000000..c0d11c42 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:cyan_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:cyan_harness", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_shulker_box.json new file mode 100644 index 00000000..f76c322b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass.json new file mode 100644 index 00000000..d43fd554 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass_pane.json new file mode 100644 index 00000000..96977e63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_terracotta.json new file mode 100644 index 00000000..4098f540 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/cyan_wool.json b/data/generated/V26_1/reports/minecraft/components/item/cyan_wool.json new file mode 100644 index 00000000..8ae1cb44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/cyan_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_wool", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/damaged_anvil.json b/data/generated/V26_1/reports/minecraft/components/item/damaged_anvil.json new file mode 100644 index 00000000..420ee1c5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/damaged_anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:damaged_anvil", + "minecraft:item_name": { + "translate": "block.minecraft.damaged_anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dandelion.json b/data/generated/V26_1/reports/minecraft/components/item/dandelion.json new file mode 100644 index 00000000..efc6163a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dandelion.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dandelion", + "minecraft:item_name": { + "translate": "block.minecraft.dandelion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/danger_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/danger_pottery_sherd.json new file mode 100644 index 00000000..15b75a93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/danger_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:danger_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.danger_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_boat.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_boat.json new file mode 100644 index 00000000..d9ac1b63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.dark_oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_button.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_button.json new file mode 100644 index 00000000..e83b2b6a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_chest_boat.json new file mode 100644 index 00000000..2fdb84c1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.dark_oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_door.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_door.json new file mode 100644 index 00000000..4912eafa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence.json new file mode 100644 index 00000000..cb17d0d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence_gate.json new file mode 100644 index 00000000..b63da4f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_hanging_sign.json new file mode 100644 index 00000000..d8d4062b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_leaves.json new file mode 100644 index 00000000..62c61415 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_log.json new file mode 100644 index 00000000..d5e7c739 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_planks.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_planks.json new file mode 100644 index 00000000..b1cb9f90 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_pressure_plate.json new file mode 100644 index 00000000..8a8b393e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sapling.json new file mode 100644 index 00000000..311bba95 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_shelf.json new file mode 100644 index 00000000..46f2cd77 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sign.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sign.json new file mode 100644 index 00000000..3941b031 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_slab.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_slab.json new file mode 100644 index 00000000..46d9dde9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_stairs.json new file mode 100644 index 00000000..5080b6d7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_trapdoor.json new file mode 100644 index 00000000..6cd4bf97 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_wood.json new file mode 100644 index 00000000..8e6d7b13 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine.json b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine.json new file mode 100644 index 00000000..4ae97feb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_slab.json b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_slab.json new file mode 100644 index 00000000..2ee96605 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine_slab", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_stairs.json new file mode 100644 index 00000000..565d9dd1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dark_prismarine_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/daylight_detector.json b/data/generated/V26_1/reports/minecraft/components/item/daylight_detector.json new file mode 100644 index 00000000..35a58af7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/daylight_detector.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:daylight_detector", + "minecraft:item_name": { + "translate": "block.minecraft.daylight_detector" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral.json b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral.json new file mode 100644 index 00000000..faac86fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_block.json new file mode 100644 index 00000000..42d98d18 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_fan.json new file mode 100644 index 00000000..6106beef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_brain_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral.json b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral.json new file mode 100644 index 00000000..a832e5c1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_block.json new file mode 100644 index 00000000..1f51567f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_fan.json new file mode 100644 index 00000000..d88b9e8e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_bubble_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_bush.json b/data/generated/V26_1/reports/minecraft/components/item/dead_bush.json new file mode 100644 index 00000000..3e37d6eb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bush", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral.json b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral.json new file mode 100644 index 00000000..9ab05295 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_block.json new file mode 100644 index 00000000..59652f54 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_fan.json new file mode 100644 index 00000000..c2d364d7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_fire_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral.json b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral.json new file mode 100644 index 00000000..4ec0862d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_block.json new file mode 100644 index 00000000..5c59da54 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_fan.json new file mode 100644 index 00000000..2e5f115b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_horn_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral.json b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral.json new file mode 100644 index 00000000..1c6535e3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_block.json new file mode 100644 index 00000000..92a5b559 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_fan.json new file mode 100644 index 00000000..2c7bd5c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dead_tube_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/debug_stick.json b/data/generated/V26_1/reports/minecraft/components/item/debug_stick.json new file mode 100644 index 00000000..d5fcdfbc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/debug_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:debug_stick_state": {}, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:debug_stick", + "minecraft:item_name": { + "translate": "item.minecraft.debug_stick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/decorated_pot.json b/data/generated/V26_1/reports/minecraft/components/item/decorated_pot.json new file mode 100644 index 00000000..2e2ec8b4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/decorated_pot.json @@ -0,0 +1,25 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:decorated_pot", + "minecraft:item_name": { + "translate": "block.minecraft.decorated_pot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:pot_decorations": [ + "minecraft:brick", + "minecraft:brick", + "minecraft:brick", + "minecraft:brick" + ], + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate.json new file mode 100644 index 00000000..4b186505 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_slab.json new file mode 100644 index 00000000..cd2b0924 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_stairs.json new file mode 100644 index 00000000..88857624 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_wall.json new file mode 100644 index 00000000..902830af --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_bricks.json new file mode 100644 index 00000000..a7327d0e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_coal_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_coal_ore.json new file mode 100644 index 00000000..0d83e4df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_coal_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_coal_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_coal_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_copper_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_copper_ore.json new file mode 100644 index 00000000..244bf048 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_copper_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_copper_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_copper_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_diamond_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_diamond_ore.json new file mode 100644 index 00000000..95c7d120 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_diamond_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_diamond_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_diamond_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_emerald_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_emerald_ore.json new file mode 100644 index 00000000..a6e87d89 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_emerald_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_emerald_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_emerald_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_gold_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_gold_ore.json new file mode 100644 index 00000000..c16dedfa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_iron_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_iron_ore.json new file mode 100644 index 00000000..b7840543 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_iron_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_iron_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_iron_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_lapis_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_lapis_ore.json new file mode 100644 index 00000000..5261d532 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_lapis_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_lapis_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_lapis_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_redstone_ore.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_redstone_ore.json new file mode 100644 index 00000000..ef6c86f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_redstone_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_redstone_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_redstone_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_slab.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_slab.json new file mode 100644 index 00000000..5c784ac4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_slab", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_stairs.json new file mode 100644 index 00000000..1e1b095d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_wall.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_wall.json new file mode 100644 index 00000000..2735b750 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tile_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_wall", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/deepslate_tiles.json b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tiles.json new file mode 100644 index 00000000..b955828d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/deepslate_tiles.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tiles", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tiles" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/detector_rail.json b/data/generated/V26_1/reports/minecraft/components/item/detector_rail.json new file mode 100644 index 00000000..ae5f400a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/detector_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:detector_rail", + "minecraft:item_name": { + "translate": "block.minecraft.detector_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond.json b/data/generated/V26_1/reports/minecraft/components/item/diamond.json new file mode 100644 index 00000000..367cfed6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond", + "minecraft:item_name": { + "translate": "item.minecraft.diamond" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:diamond", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_axe.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_axe.json new file mode 100644 index 00000000..55378ace --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_axe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_block.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_block.json new file mode 100644 index 00000000..4209bb47 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_block", + "minecraft:item_name": { + "translate": "block.minecraft.diamond_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_boots.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_boots.json new file mode 100644 index 00000000..fd5d0386 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:diamond_boots", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 429, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_chestplate.json new file mode 100644 index 00000000..0b272833 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 8.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:diamond_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 528, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_helmet.json new file mode 100644 index 00000000..8cd8a261 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "head" + }, + "minecraft:item_model": "minecraft:diamond_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 363, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_hoe.json new file mode 100644 index 00000000..718e3047 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": 0.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_horse_armor.json new file mode 100644 index 00000000..00bc64ab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:diamond", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:diamond_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_leggings.json new file mode 100644 index 00000000..279bbf15 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:diamond_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 495, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_nautilus_armor.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_nautilus_armor.json new file mode 100644 index 00000000..4eff5958 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:diamond", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:diamond_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_ore.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_ore.json new file mode 100644 index 00000000..dd1a0f72 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_ore", + "minecraft:item_name": { + "translate": "block.minecraft.diamond_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_pickaxe.json new file mode 100644 index 00000000..c88b8e9a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_shovel.json new file mode 100644 index 00000000..c32a66ed --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_spear.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_spear.json new file mode 100644 index 00000000..51a3a73c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0476189851760864, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_spear", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 200, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 1.075, + "delay_ticks": 10, + "dismount_conditions": { + "max_duration_ticks": 60, + "min_speed": 10.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 130, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 21 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diamond_sword.json b/data/generated/V26_1/reports/minecraft/components/item/diamond_sword.json new file mode 100644 index 00000000..41caaef1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diamond_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_sword", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diorite.json b/data/generated/V26_1/reports/minecraft/components/item/diorite.json new file mode 100644 index 00000000..65047d87 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diorite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite", + "minecraft:item_name": { + "translate": "block.minecraft.diorite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diorite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/diorite_slab.json new file mode 100644 index 00000000..87ca35c4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diorite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diorite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/diorite_stairs.json new file mode 100644 index 00000000..e6c452b1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diorite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/diorite_wall.json b/data/generated/V26_1/reports/minecraft/components/item/diorite_wall.json new file mode 100644 index 00000000..693e419f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/diorite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dirt.json b/data/generated/V26_1/reports/minecraft/components/item/dirt.json new file mode 100644 index 00000000..36ccb548 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dirt", + "minecraft:item_name": { + "translate": "block.minecraft.dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dirt_path.json b/data/generated/V26_1/reports/minecraft/components/item/dirt_path.json new file mode 100644 index 00000000..2f9883b2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dirt_path.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dirt_path", + "minecraft:item_name": { + "translate": "block.minecraft.dirt_path" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/disc_fragment_5.json b/data/generated/V26_1/reports/minecraft/components/item/disc_fragment_5.json new file mode 100644 index 00000000..9e05559b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/disc_fragment_5.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:disc_fragment_5", + "minecraft:item_name": { + "translate": "item.minecraft.disc_fragment_5" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dispenser.json b/data/generated/V26_1/reports/minecraft/components/item/dispenser.json new file mode 100644 index 00000000..cc747389 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dispenser.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dispenser", + "minecraft:item_name": { + "translate": "block.minecraft.dispenser" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dolphin_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/dolphin_spawn_egg.json new file mode 100644 index 00000000..5efb6d10 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dolphin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:dolphin" + }, + "minecraft:item_model": "minecraft:dolphin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.dolphin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/donkey_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/donkey_spawn_egg.json new file mode 100644 index 00000000..3b86e4ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/donkey_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:donkey" + }, + "minecraft:item_model": "minecraft:donkey_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.donkey_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dragon_breath.json b/data/generated/V26_1/reports/minecraft/components/item/dragon_breath.json new file mode 100644 index 00000000..8d47ba1c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dragon_breath.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dragon_breath", + "minecraft:item_name": { + "translate": "item.minecraft.dragon_breath" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dragon_egg.json b/data/generated/V26_1/reports/minecraft/components/item/dragon_egg.json new file mode 100644 index 00000000..aa206875 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dragon_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dragon_egg", + "minecraft:item_name": { + "translate": "block.minecraft.dragon_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dragon_head.json b/data/generated/V26_1/reports/minecraft/components/item/dragon_head.json new file mode 100644 index 00000000..ecf3cd1a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dragon_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:dragon_head", + "minecraft:item_name": { + "translate": "block.minecraft.dragon_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dried_ghast.json b/data/generated/V26_1/reports/minecraft/components/item/dried_ghast.json new file mode 100644 index 00000000..8d73fdc0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dried_ghast.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dried_ghast", + "minecraft:item_name": { + "translate": "block.minecraft.dried_ghast" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dried_kelp.json b/data/generated/V26_1/reports/minecraft/components/item/dried_kelp.json new file mode 100644 index 00000000..e4e02db6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dried_kelp.json @@ -0,0 +1,25 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "consume_seconds": 0.8 + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.6 + }, + "minecraft:item_model": "minecraft:dried_kelp", + "minecraft:item_name": { + "translate": "item.minecraft.dried_kelp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dried_kelp_block.json b/data/generated/V26_1/reports/minecraft/components/item/dried_kelp_block.json new file mode 100644 index 00000000..db17624f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dried_kelp_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dried_kelp_block", + "minecraft:item_name": { + "translate": "block.minecraft.dried_kelp_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dripstone_block.json b/data/generated/V26_1/reports/minecraft/components/item/dripstone_block.json new file mode 100644 index 00000000..581e6188 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dripstone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dripstone_block", + "minecraft:item_name": { + "translate": "block.minecraft.dripstone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dropper.json b/data/generated/V26_1/reports/minecraft/components/item/dropper.json new file mode 100644 index 00000000..cb90fa16 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dropper.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dropper", + "minecraft:item_name": { + "translate": "block.minecraft.dropper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/drowned_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/drowned_spawn_egg.json new file mode 100644 index 00000000..a681f248 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/drowned_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:drowned" + }, + "minecraft:item_model": "minecraft:drowned_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.drowned_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/dune_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..92725f74 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/dune_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dune_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.dune_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/echo_shard.json b/data/generated/V26_1/reports/minecraft/components/item/echo_shard.json new file mode 100644 index 00000000..4326007e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/echo_shard.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:echo_shard", + "minecraft:item_name": { + "translate": "item.minecraft.echo_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/egg.json b/data/generated/V26_1/reports/minecraft/components/item/egg.json new file mode 100644 index 00000000..14e6cb86 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:temperate", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:egg", + "minecraft:item_name": { + "translate": "item.minecraft.egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/elder_guardian_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/elder_guardian_spawn_egg.json new file mode 100644 index 00000000..2b85602d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/elder_guardian_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:elder_guardian" + }, + "minecraft:item_model": "minecraft:elder_guardian_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.elder_guardian_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/elytra.json b/data/generated/V26_1/reports/minecraft/components/item/elytra.json new file mode 100644 index 00000000..746b2ba3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/elytra.json @@ -0,0 +1,30 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:elytra", + "damage_on_hurt": false, + "equip_sound": "minecraft:item.armor.equip_elytra", + "slot": "chest" + }, + "minecraft:glider": {}, + "minecraft:item_model": "minecraft:elytra", + "minecraft:item_name": { + "translate": "item.minecraft.elytra" + }, + "minecraft:lore": [], + "minecraft:max_damage": 432, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "minecraft:phantom_membrane" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/emerald.json b/data/generated/V26_1/reports/minecraft/components/item/emerald.json new file mode 100644 index 00000000..54040e30 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/emerald.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald", + "minecraft:item_name": { + "translate": "item.minecraft.emerald" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:emerald", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/emerald_block.json b/data/generated/V26_1/reports/minecraft/components/item/emerald_block.json new file mode 100644 index 00000000..2df1b2e9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/emerald_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald_block", + "minecraft:item_name": { + "translate": "block.minecraft.emerald_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/emerald_ore.json b/data/generated/V26_1/reports/minecraft/components/item/emerald_ore.json new file mode 100644 index 00000000..c10c702e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/emerald_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald_ore", + "minecraft:item_name": { + "translate": "block.minecraft.emerald_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/enchanted_book.json b/data/generated/V26_1/reports/minecraft/components/item/enchanted_book.json new file mode 100644 index 00000000..37037e1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/enchanted_book.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:enchanted_book", + "minecraft:item_name": { + "translate": "item.minecraft.enchanted_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:stored_enchantments": {}, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/enchanted_golden_apple.json b/data/generated/V26_1/reports/minecraft/components/item/enchanted_golden_apple.json new file mode 100644 index 00000000..5e8c9db5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/enchanted_golden_apple.json @@ -0,0 +1,55 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 400, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "duration": 6000, + "id": "minecraft:resistance", + "show_icon": true + }, + { + "duration": 6000, + "id": "minecraft:fire_resistance", + "show_icon": true + }, + { + "amplifier": 3, + "duration": 2400, + "id": "minecraft:absorption", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:enchanted_golden_apple", + "minecraft:item_name": { + "translate": "item.minecraft.enchanted_golden_apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/enchanting_table.json b/data/generated/V26_1/reports/minecraft/components/item/enchanting_table.json new file mode 100644 index 00000000..ca69dd42 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/enchanting_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:enchanting_table", + "minecraft:item_name": { + "translate": "block.minecraft.enchanting_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_crystal.json b/data/generated/V26_1/reports/minecraft/components/item/end_crystal.json new file mode 100644 index 00000000..b20f6cfe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_crystal.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_crystal", + "minecraft:item_name": { + "translate": "item.minecraft.end_crystal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_portal_frame.json b/data/generated/V26_1/reports/minecraft/components/item/end_portal_frame.json new file mode 100644 index 00000000..bf3bcf63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_portal_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_portal_frame", + "minecraft:item_name": { + "translate": "block.minecraft.end_portal_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_rod.json b/data/generated/V26_1/reports/minecraft/components/item/end_rod.json new file mode 100644 index 00000000..4615e78d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_rod", + "minecraft:item_name": { + "translate": "block.minecraft.end_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_stone.json b/data/generated/V26_1/reports/minecraft/components/item/end_stone.json new file mode 100644 index 00000000..0219aef8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_slab.json new file mode 100644 index 00000000..d1584b3f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_stairs.json new file mode 100644 index 00000000..be362263 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_wall.json new file mode 100644 index 00000000..eb51b77b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/end_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/end_stone_bricks.json new file mode 100644 index 00000000..227aa978 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/end_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ender_chest.json b/data/generated/V26_1/reports/minecraft/components/item/ender_chest.json new file mode 100644 index 00000000..9cee909e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ender_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_chest", + "minecraft:item_name": { + "translate": "block.minecraft.ender_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ender_dragon_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/ender_dragon_spawn_egg.json new file mode 100644 index 00000000..9acf36be --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ender_dragon_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ender_dragon" + }, + "minecraft:item_model": "minecraft:ender_dragon_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ender_dragon_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ender_eye.json b/data/generated/V26_1/reports/minecraft/components/item/ender_eye.json new file mode 100644 index 00000000..1e06ced9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ender_eye.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_eye", + "minecraft:item_name": { + "translate": "item.minecraft.ender_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ender_pearl.json b/data/generated/V26_1/reports/minecraft/components/item/ender_pearl.json new file mode 100644 index 00000000..083f6f34 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ender_pearl.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_pearl", + "minecraft:item_name": { + "translate": "item.minecraft.ender_pearl" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 1.0 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/enderman_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/enderman_spawn_egg.json new file mode 100644 index 00000000..8751f59d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/enderman_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:enderman" + }, + "minecraft:item_model": "minecraft:enderman_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.enderman_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/endermite_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/endermite_spawn_egg.json new file mode 100644 index 00000000..60216021 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/endermite_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:endermite" + }, + "minecraft:item_model": "minecraft:endermite_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.endermite_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/evoker_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/evoker_spawn_egg.json new file mode 100644 index 00000000..46c50615 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/evoker_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:evoker" + }, + "minecraft:item_model": "minecraft:evoker_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.evoker_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/experience_bottle.json b/data/generated/V26_1/reports/minecraft/components/item/experience_bottle.json new file mode 100644 index 00000000..4bbdac4d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/experience_bottle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:experience_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.experience_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/explorer_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/explorer_pottery_sherd.json new file mode 100644 index 00000000..ba2e529b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/explorer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:explorer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.explorer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_chiseled_copper.json new file mode 100644 index 00000000..ddaaa054 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper.json new file mode 100644 index 00000000..8f918611 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bars.json new file mode 100644 index 00000000..77b94dfc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bulb.json new file mode 100644 index 00000000..af111efc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chain.json new file mode 100644 index 00000000..98de6b53 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chest.json new file mode 100644 index 00000000..c88dc117 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_door.json new file mode 100644 index 00000000..6c4502a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_golem_statue.json new file mode 100644 index 00000000..0a7aa4b1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_grate.json new file mode 100644 index 00000000..78652f28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_lantern.json new file mode 100644 index 00000000..f7b72cb5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_trapdoor.json new file mode 100644 index 00000000..3e325f47 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper.json new file mode 100644 index 00000000..6a6ebb45 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_slab.json new file mode 100644 index 00000000..9adc09b4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..04547a25 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/exposed_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/exposed_lightning_rod.json new file mode 100644 index 00000000..db19da73 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/exposed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/eye_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..97fc0caa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/eye_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:eye_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.eye_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/farmland.json b/data/generated/V26_1/reports/minecraft/components/item/farmland.json new file mode 100644 index 00000000..6765ea09 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/farmland.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:farmland", + "minecraft:item_name": { + "translate": "block.minecraft.farmland" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/feather.json b/data/generated/V26_1/reports/minecraft/components/item/feather.json new file mode 100644 index 00000000..27052ab1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/feather.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:feather", + "minecraft:item_name": { + "translate": "item.minecraft.feather" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fermented_spider_eye.json b/data/generated/V26_1/reports/minecraft/components/item/fermented_spider_eye.json new file mode 100644 index 00000000..29a1c420 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fermented_spider_eye.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fermented_spider_eye", + "minecraft:item_name": { + "translate": "item.minecraft.fermented_spider_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fern.json b/data/generated/V26_1/reports/minecraft/components/item/fern.json new file mode 100644 index 00000000..87f3d78d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fern", + "minecraft:item_name": { + "translate": "block.minecraft.fern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/field_masoned_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/field_masoned_banner_pattern.json new file mode 100644 index 00000000..301e1415 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/field_masoned_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:field_masoned_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.field_masoned_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/field_masoned", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/filled_map.json b/data/generated/V26_1/reports/minecraft/components/item/filled_map.json new file mode 100644 index 00000000..c7062e94 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/filled_map.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:filled_map", + "minecraft:item_name": { + "translate": "item.minecraft.filled_map" + }, + "minecraft:lore": [], + "minecraft:map_color": 4603950, + "minecraft:map_decorations": {}, + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fire_charge.json b/data/generated/V26_1/reports/minecraft/components/item/fire_charge.json new file mode 100644 index 00000000..64518653 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fire_charge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_charge", + "minecraft:item_name": { + "translate": "item.minecraft.fire_charge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fire_coral.json b/data/generated/V26_1/reports/minecraft/components/item/fire_coral.json new file mode 100644 index 00000000..5486cb73 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fire_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fire_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/fire_coral_block.json new file mode 100644 index 00000000..50fe6beb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fire_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fire_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/fire_coral_fan.json new file mode 100644 index 00000000..855f2ea6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fire_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/firefly_bush.json b/data/generated/V26_1/reports/minecraft/components/item/firefly_bush.json new file mode 100644 index 00000000..247af935 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/firefly_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:firefly_bush", + "minecraft:item_name": { + "translate": "block.minecraft.firefly_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/firework_rocket.json b/data/generated/V26_1/reports/minecraft/components/item/firework_rocket.json new file mode 100644 index 00000000..9d4e6bab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/firework_rocket.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:fireworks": { + "flight_duration": 1 + }, + "minecraft:item_model": "minecraft:firework_rocket", + "minecraft:item_name": { + "translate": "item.minecraft.firework_rocket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/firework_star.json b/data/generated/V26_1/reports/minecraft/components/item/firework_star.json new file mode 100644 index 00000000..4f13e9bf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/firework_star.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:firework_star", + "minecraft:item_name": { + "translate": "item.minecraft.firework_star" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fishing_rod.json b/data/generated/V26_1/reports/minecraft/components/item/fishing_rod.json new file mode 100644 index 00000000..b0a908f3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fishing_rod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fishing_rod", + "minecraft:item_name": { + "translate": "item.minecraft.fishing_rod" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fletching_table.json b/data/generated/V26_1/reports/minecraft/components/item/fletching_table.json new file mode 100644 index 00000000..7c277ce0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fletching_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fletching_table", + "minecraft:item_name": { + "translate": "block.minecraft.fletching_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flint.json b/data/generated/V26_1/reports/minecraft/components/item/flint.json new file mode 100644 index 00000000..adbf864d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flint.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flint", + "minecraft:item_name": { + "translate": "item.minecraft.flint" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flint_and_steel.json b/data/generated/V26_1/reports/minecraft/components/item/flint_and_steel.json new file mode 100644 index 00000000..896e9469 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flint_and_steel.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flint_and_steel", + "minecraft:item_name": { + "translate": "item.minecraft.flint_and_steel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flow_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..c04a6f13 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flow_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.flow_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flow_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/flow_banner_pattern.json new file mode 100644 index 00000000..cc541ad1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flow_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.flow_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/flow", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flow_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/flow_pottery_sherd.json new file mode 100644 index 00000000..89f8b4ac --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flow_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.flow_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flower_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/flower_banner_pattern.json new file mode 100644 index 00000000..644042fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flower_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flower_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.flower_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/flower", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flower_pot.json b/data/generated/V26_1/reports/minecraft/components/item/flower_pot.json new file mode 100644 index 00000000..8edb290e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flower_pot.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flower_pot", + "minecraft:item_name": { + "translate": "block.minecraft.flower_pot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea.json b/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea.json new file mode 100644 index 00000000..a540bcf3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flowering_azalea", + "minecraft:item_name": { + "translate": "block.minecraft.flowering_azalea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea_leaves.json new file mode 100644 index 00000000..54e23707 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/flowering_azalea_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flowering_azalea_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.flowering_azalea_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/fox_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/fox_spawn_egg.json new file mode 100644 index 00000000..485eb6c4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/fox_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:fox" + }, + "minecraft:item_model": "minecraft:fox_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.fox_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/friend_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/friend_pottery_sherd.json new file mode 100644 index 00000000..c534da6e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/friend_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:friend_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.friend_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/frog_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/frog_spawn_egg.json new file mode 100644 index 00000000..ad637dc3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/frog_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:frog" + }, + "minecraft:item_model": "minecraft:frog_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.frog_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/frogspawn.json b/data/generated/V26_1/reports/minecraft/components/item/frogspawn.json new file mode 100644 index 00000000..f2f0f923 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/frogspawn.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:frogspawn", + "minecraft:item_name": { + "translate": "block.minecraft.frogspawn" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/furnace.json b/data/generated/V26_1/reports/minecraft/components/item/furnace.json new file mode 100644 index 00000000..af6d7c9d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/furnace.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:furnace", + "minecraft:item_name": { + "translate": "block.minecraft.furnace" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/furnace_minecart.json b/data/generated/V26_1/reports/minecraft/components/item/furnace_minecart.json new file mode 100644 index 00000000..ab54bc0a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/furnace_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:furnace_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.furnace_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ghast_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/ghast_spawn_egg.json new file mode 100644 index 00000000..1864a63e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ghast_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ghast" + }, + "minecraft:item_model": "minecraft:ghast_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ghast_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ghast_tear.json b/data/generated/V26_1/reports/minecraft/components/item/ghast_tear.json new file mode 100644 index 00000000..faf7b43a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ghast_tear.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ghast_tear", + "minecraft:item_name": { + "translate": "item.minecraft.ghast_tear" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gilded_blackstone.json b/data/generated/V26_1/reports/minecraft/components/item/gilded_blackstone.json new file mode 100644 index 00000000..d1c0e327 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gilded_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gilded_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.gilded_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glass.json b/data/generated/V26_1/reports/minecraft/components/item/glass.json new file mode 100644 index 00000000..27de43e3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass", + "minecraft:item_name": { + "translate": "block.minecraft.glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glass_bottle.json b/data/generated/V26_1/reports/minecraft/components/item/glass_bottle.json new file mode 100644 index 00000000..79be6eb4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glass_bottle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.glass_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/glass_pane.json new file mode 100644 index 00000000..4c79192a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glistering_melon_slice.json b/data/generated/V26_1/reports/minecraft/components/item/glistering_melon_slice.json new file mode 100644 index 00000000..3eeee3ae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glistering_melon_slice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glistering_melon_slice", + "minecraft:item_name": { + "translate": "item.minecraft.glistering_melon_slice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/globe_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/globe_banner_pattern.json new file mode 100644 index 00000000..e42ebb44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/globe_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:globe_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.globe_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/globe", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glow_berries.json b/data/generated/V26_1/reports/minecraft/components/item/glow_berries.json new file mode 100644 index 00000000..e01067af --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glow_berries.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:glow_berries", + "minecraft:item_name": { + "translate": "item.minecraft.glow_berries" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glow_ink_sac.json b/data/generated/V26_1/reports/minecraft/components/item/glow_ink_sac.json new file mode 100644 index 00000000..257e5432 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glow_ink_sac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_ink_sac", + "minecraft:item_name": { + "translate": "item.minecraft.glow_ink_sac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glow_item_frame.json b/data/generated/V26_1/reports/minecraft/components/item/glow_item_frame.json new file mode 100644 index 00000000..616076eb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glow_item_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_item_frame", + "minecraft:item_name": { + "translate": "item.minecraft.glow_item_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glow_lichen.json b/data/generated/V26_1/reports/minecraft/components/item/glow_lichen.json new file mode 100644 index 00000000..1ac7c50a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glow_lichen.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_lichen", + "minecraft:item_name": { + "translate": "block.minecraft.glow_lichen" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glow_squid_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/glow_squid_spawn_egg.json new file mode 100644 index 00000000..470fde28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glow_squid_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:glow_squid" + }, + "minecraft:item_model": "minecraft:glow_squid_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.glow_squid_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glowstone.json b/data/generated/V26_1/reports/minecraft/components/item/glowstone.json new file mode 100644 index 00000000..660bf774 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glowstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glowstone", + "minecraft:item_name": { + "translate": "block.minecraft.glowstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/glowstone_dust.json b/data/generated/V26_1/reports/minecraft/components/item/glowstone_dust.json new file mode 100644 index 00000000..a0fca94e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/glowstone_dust.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glowstone_dust", + "minecraft:item_name": { + "translate": "item.minecraft.glowstone_dust" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/goat_horn.json b/data/generated/V26_1/reports/minecraft/components/item/goat_horn.json new file mode 100644 index 00000000..a4120f56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/goat_horn.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:instrument": "minecraft:ponder_goat_horn", + "minecraft:item_model": "minecraft:goat_horn", + "minecraft:item_name": { + "translate": "item.minecraft.goat_horn" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/goat_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/goat_spawn_egg.json new file mode 100644 index 00000000..e2f079e2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/goat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:goat" + }, + "minecraft:item_model": "minecraft:goat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.goat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gold_block.json b/data/generated/V26_1/reports/minecraft/components/item/gold_block.json new file mode 100644 index 00000000..0e6bd63e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gold_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_block", + "minecraft:item_name": { + "translate": "block.minecraft.gold_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gold_ingot.json b/data/generated/V26_1/reports/minecraft/components/item/gold_ingot.json new file mode 100644 index 00000000..401d51a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gold_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.gold_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:gold", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gold_nugget.json b/data/generated/V26_1/reports/minecraft/components/item/gold_nugget.json new file mode 100644 index 00000000..1394341b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gold_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.gold_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gold_ore.json b/data/generated/V26_1/reports/minecraft/components/item/gold_ore.json new file mode 100644 index 00000000..0fae32c7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_apple.json b/data/generated/V26_1/reports/minecraft/components/item/golden_apple.json new file mode 100644 index 00000000..b7887228 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_apple.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 100, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "duration": 2400, + "id": "minecraft:absorption", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:golden_apple", + "minecraft:item_name": { + "translate": "item.minecraft.golden_apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_axe.json b/data/generated/V26_1/reports/minecraft/components/item/golden_axe.json new file mode 100644 index 00000000..a2ad92ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_axe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_boots.json b/data/generated/V26_1/reports/minecraft/components/item/golden_boots.json new file mode 100644 index 00000000..e6c97d33 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:golden_boots", + "minecraft:item_name": { + "translate": "item.minecraft.golden_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 91, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_carrot.json b/data/generated/V26_1/reports/minecraft/components/item/golden_carrot.json new file mode 100644 index 00000000..f0c7a44e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_carrot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 14.400001 + }, + "minecraft:item_model": "minecraft:golden_carrot", + "minecraft:item_name": { + "translate": "item.minecraft.golden_carrot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/golden_chestplate.json new file mode 100644 index 00000000..a5e1ce53 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:golden_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.golden_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 112, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_dandelion.json b/data/generated/V26_1/reports/minecraft/components/item/golden_dandelion.json new file mode 100644 index 00000000..a4102d77 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_dandelion.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_dandelion", + "minecraft:item_name": { + "translate": "block.minecraft.golden_dandelion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/golden_helmet.json new file mode 100644 index 00000000..e9b9bc77 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "head" + }, + "minecraft:item_model": "minecraft:golden_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.golden_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 77, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/golden_hoe.json new file mode 100644 index 00000000..4ca324b3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/golden_horse_armor.json new file mode 100644 index 00000000..d0e5bd32 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 7.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:gold", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:golden_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.golden_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/golden_leggings.json new file mode 100644 index 00000000..970e8791 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:golden_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.golden_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 105, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_nautilus_armor.json b/data/generated/V26_1/reports/minecraft/components/item/golden_nautilus_armor.json new file mode 100644 index 00000000..7618604c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 7.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:gold", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:golden_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.golden_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/golden_pickaxe.json new file mode 100644 index 00000000..bc20ba56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/golden_shovel.json new file mode 100644 index 00000000..738d56f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.golden_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_spear.json b/data/generated/V26_1/reports/minecraft/components/item/golden_spear.json new file mode 100644 index 00000000..4b525893 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9473683834075928, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_spear", + "minecraft:item_name": { + "translate": "item.minecraft.golden_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 275, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.7, + "delay_ticks": 14, + "dismount_conditions": { + "max_duration_ticks": 70, + "min_speed": 13.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 170, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 19 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/golden_sword.json b/data/generated/V26_1/reports/minecraft/components/item/golden_sword.json new file mode 100644 index 00000000..4c2b10b1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/golden_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_sword", + "minecraft:item_name": { + "translate": "item.minecraft.golden_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/granite.json b/data/generated/V26_1/reports/minecraft/components/item/granite.json new file mode 100644 index 00000000..9b764cb2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/granite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite", + "minecraft:item_name": { + "translate": "block.minecraft.granite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/granite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/granite_slab.json new file mode 100644 index 00000000..a9dd16b5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/granite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.granite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/granite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/granite_stairs.json new file mode 100644 index 00000000..ee64f895 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/granite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.granite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/granite_wall.json b/data/generated/V26_1/reports/minecraft/components/item/granite_wall.json new file mode 100644 index 00000000..9698fa1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/granite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.granite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/grass_block.json b/data/generated/V26_1/reports/minecraft/components/item/grass_block.json new file mode 100644 index 00000000..1dac4186 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/grass_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:grass_block", + "minecraft:item_name": { + "translate": "block.minecraft.grass_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gravel.json b/data/generated/V26_1/reports/minecraft/components/item/gravel.json new file mode 100644 index 00000000..7faf6dce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gravel.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gravel", + "minecraft:item_name": { + "translate": "block.minecraft.gravel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_banner.json b/data/generated/V26_1/reports/minecraft/components/item/gray_banner.json new file mode 100644 index 00000000..0b57e8ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_banner", + "minecraft:item_name": { + "translate": "block.minecraft.gray_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_bed.json b/data/generated/V26_1/reports/minecraft/components/item/gray_bed.json new file mode 100644 index 00000000..b164bc59 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_bed", + "minecraft:item_name": { + "translate": "block.minecraft.gray_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/gray_bundle.json new file mode 100644 index 00000000..2505c00e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.gray_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_candle.json b/data/generated/V26_1/reports/minecraft/components/item/gray_candle.json new file mode 100644 index 00000000..91a174f8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_candle", + "minecraft:item_name": { + "translate": "block.minecraft.gray_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/gray_carpet.json new file mode 100644 index 00000000..f32cf989 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:gray_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:gray_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.gray_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/gray_concrete.json new file mode 100644 index 00000000..4e0b3fbf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.gray_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/gray_concrete_powder.json new file mode 100644 index 00000000..7df34ad6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.gray_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_dye.json b/data/generated/V26_1/reports/minecraft/components/item/gray_dye.json new file mode 100644 index 00000000..362869b0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "gray", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_dye", + "minecraft:item_name": { + "translate": "item.minecraft.gray_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/gray_glazed_terracotta.json new file mode 100644 index 00000000..7b303fe5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.gray_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_harness.json b/data/generated/V26_1/reports/minecraft/components/item/gray_harness.json new file mode 100644 index 00000000..f8957b8d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:gray_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:gray_harness", + "minecraft:item_name": { + "translate": "item.minecraft.gray_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/gray_shulker_box.json new file mode 100644 index 00000000..fff01537 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.gray_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass.json new file mode 100644 index 00000000..5f9aae4a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.gray_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass_pane.json new file mode 100644 index 00000000..e0614dcc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.gray_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/gray_terracotta.json new file mode 100644 index 00000000..afba8cab --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.gray_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gray_wool.json b/data/generated/V26_1/reports/minecraft/components/item/gray_wool.json new file mode 100644 index 00000000..9a558f57 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gray_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_wool", + "minecraft:item_name": { + "translate": "block.minecraft.gray_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_banner.json b/data/generated/V26_1/reports/minecraft/components/item/green_banner.json new file mode 100644 index 00000000..e542d66a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_banner", + "minecraft:item_name": { + "translate": "block.minecraft.green_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_bed.json b/data/generated/V26_1/reports/minecraft/components/item/green_bed.json new file mode 100644 index 00000000..149c16a1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_bed", + "minecraft:item_name": { + "translate": "block.minecraft.green_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/green_bundle.json new file mode 100644 index 00000000..f8564c09 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.green_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_candle.json b/data/generated/V26_1/reports/minecraft/components/item/green_candle.json new file mode 100644 index 00000000..86b5203d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_candle", + "minecraft:item_name": { + "translate": "block.minecraft.green_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/green_carpet.json new file mode 100644 index 00000000..fe685cdf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:green_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:green_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.green_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/green_concrete.json new file mode 100644 index 00000000..f1019cd8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.green_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/green_concrete_powder.json new file mode 100644 index 00000000..9894c66f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.green_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_dye.json b/data/generated/V26_1/reports/minecraft/components/item/green_dye.json new file mode 100644 index 00000000..1b91849a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "green", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_dye", + "minecraft:item_name": { + "translate": "item.minecraft.green_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/green_glazed_terracotta.json new file mode 100644 index 00000000..ab288dcf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.green_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_harness.json b/data/generated/V26_1/reports/minecraft/components/item/green_harness.json new file mode 100644 index 00000000..701cfe5e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:green_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:green_harness", + "minecraft:item_name": { + "translate": "item.minecraft.green_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/green_shulker_box.json new file mode 100644 index 00000000..9934e923 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.green_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass.json new file mode 100644 index 00000000..ac00effe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.green_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass_pane.json new file mode 100644 index 00000000..513b7284 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.green_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/green_terracotta.json new file mode 100644 index 00000000..c50af7cf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.green_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/green_wool.json b/data/generated/V26_1/reports/minecraft/components/item/green_wool.json new file mode 100644 index 00000000..9b32e0dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/green_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_wool", + "minecraft:item_name": { + "translate": "block.minecraft.green_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/grindstone.json b/data/generated/V26_1/reports/minecraft/components/item/grindstone.json new file mode 100644 index 00000000..a56b85b5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/grindstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:grindstone", + "minecraft:item_name": { + "translate": "block.minecraft.grindstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/guardian_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/guardian_spawn_egg.json new file mode 100644 index 00000000..eb1a6e92 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/guardian_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:guardian" + }, + "minecraft:item_model": "minecraft:guardian_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.guardian_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/gunpowder.json b/data/generated/V26_1/reports/minecraft/components/item/gunpowder.json new file mode 100644 index 00000000..46286ed5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/gunpowder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gunpowder", + "minecraft:item_name": { + "translate": "item.minecraft.gunpowder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/guster_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/guster_banner_pattern.json new file mode 100644 index 00000000..867130a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/guster_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:guster_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.guster_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/guster", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/guster_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/guster_pottery_sherd.json new file mode 100644 index 00000000..8bd7760c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/guster_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:guster_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.guster_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/hanging_roots.json b/data/generated/V26_1/reports/minecraft/components/item/hanging_roots.json new file mode 100644 index 00000000..812402a4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/hanging_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hanging_roots", + "minecraft:item_name": { + "translate": "block.minecraft.hanging_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/happy_ghast_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/happy_ghast_spawn_egg.json new file mode 100644 index 00000000..94bb585c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/happy_ghast_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:happy_ghast" + }, + "minecraft:item_model": "minecraft:happy_ghast_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.happy_ghast_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/hay_block.json b/data/generated/V26_1/reports/minecraft/components/item/hay_block.json new file mode 100644 index 00000000..cb6810b1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/hay_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hay_block", + "minecraft:item_name": { + "translate": "block.minecraft.hay_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/heart_of_the_sea.json b/data/generated/V26_1/reports/minecraft/components/item/heart_of_the_sea.json new file mode 100644 index 00000000..9294902f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/heart_of_the_sea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heart_of_the_sea", + "minecraft:item_name": { + "translate": "item.minecraft.heart_of_the_sea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/heart_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/heart_pottery_sherd.json new file mode 100644 index 00000000..d6ee6211 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/heart_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heart_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.heart_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/heartbreak_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/heartbreak_pottery_sherd.json new file mode 100644 index 00000000..52c4bcff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/heartbreak_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heartbreak_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.heartbreak_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/heavy_core.json b/data/generated/V26_1/reports/minecraft/components/item/heavy_core.json new file mode 100644 index 00000000..df9ec65e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/heavy_core.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heavy_core", + "minecraft:item_name": { + "translate": "block.minecraft.heavy_core" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/heavy_weighted_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..839d9910 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/heavy_weighted_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heavy_weighted_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.heavy_weighted_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/hoglin_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/hoglin_spawn_egg.json new file mode 100644 index 00000000..9587faa9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/hoglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:hoglin" + }, + "minecraft:item_model": "minecraft:hoglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.hoglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/honey_block.json b/data/generated/V26_1/reports/minecraft/components/item/honey_block.json new file mode 100644 index 00000000..f44d2c67 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/honey_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honey_block", + "minecraft:item_name": { + "translate": "block.minecraft.honey_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/honey_bottle.json b/data/generated/V26_1/reports/minecraft/components/item/honey_bottle.json new file mode 100644 index 00000000..4288ce11 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/honey_bottle.json @@ -0,0 +1,38 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "consume_seconds": 2.0, + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:remove_effects", + "effects": "minecraft:poison" + } + ], + "sound": "minecraft:item.honey_bottle.drink" + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 6, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:honey_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.honey_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:glass_bottle" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/honeycomb.json b/data/generated/V26_1/reports/minecraft/components/item/honeycomb.json new file mode 100644 index 00000000..f406c900 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/honeycomb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honeycomb", + "minecraft:item_name": { + "translate": "item.minecraft.honeycomb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/honeycomb_block.json b/data/generated/V26_1/reports/minecraft/components/item/honeycomb_block.json new file mode 100644 index 00000000..8db12186 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/honeycomb_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honeycomb_block", + "minecraft:item_name": { + "translate": "block.minecraft.honeycomb_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/hopper.json b/data/generated/V26_1/reports/minecraft/components/item/hopper.json new file mode 100644 index 00000000..ee221472 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/hopper.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hopper", + "minecraft:item_name": { + "translate": "block.minecraft.hopper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/hopper_minecart.json b/data/generated/V26_1/reports/minecraft/components/item/hopper_minecart.json new file mode 100644 index 00000000..f8e38ea4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/hopper_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hopper_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.hopper_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/horn_coral.json b/data/generated/V26_1/reports/minecraft/components/item/horn_coral.json new file mode 100644 index 00000000..9066c6bb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/horn_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/horn_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/horn_coral_block.json new file mode 100644 index 00000000..365871d2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/horn_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/horn_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/horn_coral_fan.json new file mode 100644 index 00000000..3bf90eee --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/horn_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/horse_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/horse_spawn_egg.json new file mode 100644 index 00000000..81a02b75 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:horse" + }, + "minecraft:item_model": "minecraft:horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/host_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..f6f33313 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/host_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:host_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.host_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/howl_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/howl_pottery_sherd.json new file mode 100644 index 00000000..672c32fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/howl_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:howl_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.howl_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/husk_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/husk_spawn_egg.json new file mode 100644 index 00000000..96f99767 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/husk_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:husk" + }, + "minecraft:item_model": "minecraft:husk_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.husk_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ice.json b/data/generated/V26_1/reports/minecraft/components/item/ice.json new file mode 100644 index 00000000..137399bc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ice", + "minecraft:item_name": { + "translate": "block.minecraft.ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_chiseled_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/infested_chiseled_stone_bricks.json new file mode 100644 index 00000000..2eb5eb73 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_chiseled_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_chiseled_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_chiseled_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_cobblestone.json b/data/generated/V26_1/reports/minecraft/components/item/infested_cobblestone.json new file mode 100644 index 00000000..0df12fce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.infested_cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_cracked_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/infested_cracked_stone_bricks.json new file mode 100644 index 00000000..016d8ae3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_cracked_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_cracked_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_cracked_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/infested_deepslate.json new file mode 100644 index 00000000..99d81ac7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.infested_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_mossy_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/infested_mossy_stone_bricks.json new file mode 100644 index 00000000..5ae79021 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_mossy_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_mossy_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_mossy_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_stone.json b/data/generated/V26_1/reports/minecraft/components/item/infested_stone.json new file mode 100644 index 00000000..a157744a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_stone", + "minecraft:item_name": { + "translate": "block.minecraft.infested_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/infested_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/infested_stone_bricks.json new file mode 100644 index 00000000..9f9339ea --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/infested_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ink_sac.json b/data/generated/V26_1/reports/minecraft/components/item/ink_sac.json new file mode 100644 index 00000000..96b7b4a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ink_sac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ink_sac", + "minecraft:item_name": { + "translate": "item.minecraft.ink_sac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_axe.json b/data/generated/V26_1/reports/minecraft/components/item/iron_axe.json new file mode 100644 index 00000000..fad4e5fa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0999999046325684, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_axe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_bars.json b/data/generated/V26_1/reports/minecraft/components/item/iron_bars.json new file mode 100644 index 00000000..929ef203 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_bars", + "minecraft:item_name": { + "translate": "block.minecraft.iron_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_block.json b/data/generated/V26_1/reports/minecraft/components/item/iron_block.json new file mode 100644 index 00000000..49b155d9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_block", + "minecraft:item_name": { + "translate": "block.minecraft.iron_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_boots.json b/data/generated/V26_1/reports/minecraft/components/item/iron_boots.json new file mode 100644 index 00000000..46ca43d5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:iron_boots", + "minecraft:item_name": { + "translate": "item.minecraft.iron_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 195, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_chain.json b/data/generated/V26_1/reports/minecraft/components/item/iron_chain.json new file mode 100644 index 00000000..d53370f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_chain", + "minecraft:item_name": { + "translate": "block.minecraft.iron_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/iron_chestplate.json new file mode 100644 index 00000000..0b040e9e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:iron_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.iron_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 240, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_door.json b/data/generated/V26_1/reports/minecraft/components/item/iron_door.json new file mode 100644 index 00000000..ce0129be --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_door", + "minecraft:item_name": { + "translate": "block.minecraft.iron_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_golem_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/iron_golem_spawn_egg.json new file mode 100644 index 00000000..a04c045a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:iron_golem" + }, + "minecraft:item_model": "minecraft:iron_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.iron_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/iron_helmet.json new file mode 100644 index 00000000..427355ca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "head" + }, + "minecraft:item_model": "minecraft:iron_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.iron_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/iron_hoe.json new file mode 100644 index 00000000..1e0474ac --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -1.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/iron_horse_armor.json new file mode 100644 index 00000000..ce5037f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:iron", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:iron_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.iron_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_ingot.json b/data/generated/V26_1/reports/minecraft/components/item/iron_ingot.json new file mode 100644 index 00000000..54389223 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.iron_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:iron", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/iron_leggings.json new file mode 100644 index 00000000..52b43b46 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:iron_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.iron_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 225, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_nautilus_armor.json b/data/generated/V26_1/reports/minecraft/components/item/iron_nautilus_armor.json new file mode 100644 index 00000000..a16c53f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:iron", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:iron_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.iron_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_nugget.json b/data/generated/V26_1/reports/minecraft/components/item/iron_nugget.json new file mode 100644 index 00000000..889646b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.iron_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_ore.json b/data/generated/V26_1/reports/minecraft/components/item/iron_ore.json new file mode 100644 index 00000000..055a556f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_ore", + "minecraft:item_name": { + "translate": "block.minecraft.iron_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/iron_pickaxe.json new file mode 100644 index 00000000..da0dbe13 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/iron_shovel.json new file mode 100644 index 00000000..8dd3674d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.iron_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_spear.json b/data/generated/V26_1/reports/minecraft/components/item/iron_spear.json new file mode 100644 index 00000000..f3f3d186 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9473683834075928, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_spear", + "minecraft:item_name": { + "translate": "item.minecraft.iron_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 225, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.95, + "delay_ticks": 12, + "dismount_conditions": { + "max_duration_ticks": 50, + "min_speed": 11.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 135, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 19 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_sword.json b/data/generated/V26_1/reports/minecraft/components/item/iron_sword.json new file mode 100644 index 00000000..e0bcaeb2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_sword", + "minecraft:item_name": { + "translate": "item.minecraft.iron_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/iron_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/iron_trapdoor.json new file mode 100644 index 00000000..530c49a9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/iron_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.iron_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/item_frame.json b/data/generated/V26_1/reports/minecraft/components/item/item_frame.json new file mode 100644 index 00000000..d209e091 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/item_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:item_frame", + "minecraft:item_name": { + "translate": "item.minecraft.item_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jack_o_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/jack_o_lantern.json new file mode 100644 index 00000000..8f1957fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jack_o_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jack_o_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.jack_o_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jigsaw.json b/data/generated/V26_1/reports/minecraft/components/item/jigsaw.json new file mode 100644 index 00000000..e378ddd8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jigsaw.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jigsaw", + "minecraft:item_name": { + "translate": "block.minecraft.jigsaw" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jukebox.json b/data/generated/V26_1/reports/minecraft/components/item/jukebox.json new file mode 100644 index 00000000..76b8a43f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jukebox.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jukebox", + "minecraft:item_name": { + "translate": "block.minecraft.jukebox" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_boat.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_boat.json new file mode 100644 index 00000000..f2a2bc25 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_boat", + "minecraft:item_name": { + "translate": "item.minecraft.jungle_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_button.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_button.json new file mode 100644 index 00000000..dd6c1732 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_button", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_chest_boat.json new file mode 100644 index 00000000..7b6d128d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.jungle_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_door.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_door.json new file mode 100644 index 00000000..2107023a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_door", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_fence.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_fence.json new file mode 100644 index 00000000..fa1449d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_fence", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_fence_gate.json new file mode 100644 index 00000000..7d3363a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_hanging_sign.json new file mode 100644 index 00000000..c440f554 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_leaves.json new file mode 100644 index 00000000..a1ebd890 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_log.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_log.json new file mode 100644 index 00000000..e50f079b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_log", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_planks.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_planks.json new file mode 100644 index 00000000..17ec6185 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_planks", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_pressure_plate.json new file mode 100644 index 00000000..3f9297bb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_sapling.json new file mode 100644 index 00000000..250a1d14 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_shelf.json new file mode 100644 index 00000000..cae6188a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_sign.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_sign.json new file mode 100644 index 00000000..15704b82 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_sign", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_slab.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_slab.json new file mode 100644 index 00000000..38b90474 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_slab", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_stairs.json new file mode 100644 index 00000000..dadb8bf7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_trapdoor.json new file mode 100644 index 00000000..21d80667 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/jungle_wood.json b/data/generated/V26_1/reports/minecraft/components/item/jungle_wood.json new file mode 100644 index 00000000..8e5678b0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/jungle_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_wood", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/kelp.json b/data/generated/V26_1/reports/minecraft/components/item/kelp.json new file mode 100644 index 00000000..c9d7b23d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/kelp.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:kelp", + "minecraft:item_name": { + "translate": "block.minecraft.kelp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/knowledge_book.json b/data/generated/V26_1/reports/minecraft/components/item/knowledge_book.json new file mode 100644 index 00000000..dda434c6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/knowledge_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:knowledge_book", + "minecraft:item_name": { + "translate": "item.minecraft.knowledge_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:recipes": [], + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ladder.json b/data/generated/V26_1/reports/minecraft/components/item/ladder.json new file mode 100644 index 00000000..22373e38 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ladder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ladder", + "minecraft:item_name": { + "translate": "block.minecraft.ladder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lantern.json b/data/generated/V26_1/reports/minecraft/components/item/lantern.json new file mode 100644 index 00000000..f78eaf5d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lantern", + "minecraft:item_name": { + "translate": "block.minecraft.lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lapis_block.json b/data/generated/V26_1/reports/minecraft/components/item/lapis_block.json new file mode 100644 index 00000000..1c95a0a9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lapis_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_block", + "minecraft:item_name": { + "translate": "block.minecraft.lapis_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lapis_lazuli.json b/data/generated/V26_1/reports/minecraft/components/item/lapis_lazuli.json new file mode 100644 index 00000000..52bac577 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lapis_lazuli.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_lazuli", + "minecraft:item_name": { + "translate": "item.minecraft.lapis_lazuli" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:lapis", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lapis_ore.json b/data/generated/V26_1/reports/minecraft/components/item/lapis_ore.json new file mode 100644 index 00000000..839aa78c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lapis_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_ore", + "minecraft:item_name": { + "translate": "block.minecraft.lapis_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/large_amethyst_bud.json b/data/generated/V26_1/reports/minecraft/components/item/large_amethyst_bud.json new file mode 100644 index 00000000..04b67f7d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/large_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:large_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.large_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/large_fern.json b/data/generated/V26_1/reports/minecraft/components/item/large_fern.json new file mode 100644 index 00000000..5d2d2815 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/large_fern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:large_fern", + "minecraft:item_name": { + "translate": "block.minecraft.large_fern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lava_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/lava_bucket.json new file mode 100644 index 00000000..92843e50 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lava_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lava_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.lava_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lead.json b/data/generated/V26_1/reports/minecraft/components/item/lead.json new file mode 100644 index 00000000..ac8f702a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lead.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lead", + "minecraft:item_name": { + "translate": "item.minecraft.lead" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leaf_litter.json b/data/generated/V26_1/reports/minecraft/components/item/leaf_litter.json new file mode 100644 index 00000000..52c94dd6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leaf_litter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:leaf_litter", + "minecraft:item_name": { + "translate": "block.minecraft.leaf_litter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather.json b/data/generated/V26_1/reports/minecraft/components/item/leather.json new file mode 100644 index 00000000..60bbeafe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:leather", + "minecraft:item_name": { + "translate": "item.minecraft.leather" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather_boots.json b/data/generated/V26_1/reports/minecraft/components/item/leather_boots.json new file mode 100644 index 00000000..1c4bb9d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:leather_boots", + "minecraft:item_name": { + "translate": "item.minecraft.leather_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 65, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/leather_chestplate.json new file mode 100644 index 00000000..a692e6fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:leather_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.leather_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 80, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/leather_helmet.json new file mode 100644 index 00000000..35a77c34 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "head" + }, + "minecraft:item_model": "minecraft:leather_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.leather_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 55, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/leather_horse_armor.json new file mode 100644 index 00000000..42dfcc83 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:leather", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:leather_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.leather_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/leather_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/leather_leggings.json new file mode 100644 index 00000000..019790d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/leather_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:leather_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.leather_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 75, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lectern.json b/data/generated/V26_1/reports/minecraft/components/item/lectern.json new file mode 100644 index 00000000..62e8e219 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lectern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lectern", + "minecraft:item_name": { + "translate": "block.minecraft.lectern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lever.json b/data/generated/V26_1/reports/minecraft/components/item/lever.json new file mode 100644 index 00000000..81cbe9cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lever.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lever", + "minecraft:item_name": { + "translate": "block.minecraft.lever" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light.json b/data/generated/V26_1/reports/minecraft/components/item/light.json new file mode 100644 index 00000000..3493c513 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "level": "15" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light", + "minecraft:item_name": { + "translate": "block.minecraft.light" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_banner.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_banner.json new file mode 100644 index 00000000..932bb85e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_banner", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_bed.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_bed.json new file mode 100644 index 00000000..d0a595a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_bed", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_bundle.json new file mode 100644 index 00000000..c4288dd7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_candle.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_candle.json new file mode 100644 index 00000000..d1b4728f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_candle", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_carpet.json new file mode 100644 index 00000000..551f1758 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:light_blue_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_blue_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete.json new file mode 100644 index 00000000..7dd212a9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete_powder.json new file mode 100644 index 00000000..ee023ee3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_dye.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_dye.json new file mode 100644 index 00000000..7be5f79c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "light_blue", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_dye", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..a7f0c0d2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_harness.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_harness.json new file mode 100644 index 00000000..1d559c24 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:light_blue_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_blue_harness", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_shulker_box.json new file mode 100644 index 00000000..cb282af4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass.json new file mode 100644 index 00000000..29331408 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..d86a9d85 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_terracotta.json new file mode 100644 index 00000000..93464721 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_blue_wool.json b/data/generated/V26_1/reports/minecraft/components/item/light_blue_wool.json new file mode 100644 index 00000000..906610d7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_blue_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_wool", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_banner.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_banner.json new file mode 100644 index 00000000..5507f8a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_banner", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_bed.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_bed.json new file mode 100644 index 00000000..fe8bcd30 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_bed", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_bundle.json new file mode 100644 index 00000000..77df3e64 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_candle.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_candle.json new file mode 100644 index 00000000..3fb60ae7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_candle", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_carpet.json new file mode 100644 index 00000000..40fbf736 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:light_gray_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_gray_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete.json new file mode 100644 index 00000000..7d1175e8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete_powder.json new file mode 100644 index 00000000..75cdfa6f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_dye.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_dye.json new file mode 100644 index 00000000..9dee3b2a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "light_gray", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_dye", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..fafcae8c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_harness.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_harness.json new file mode 100644 index 00000000..65230747 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:light_gray_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_gray_harness", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_shulker_box.json new file mode 100644 index 00000000..2b33e9e2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass.json new file mode 100644 index 00000000..1e14fd09 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..73d6f1f4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_terracotta.json new file mode 100644 index 00000000..31545192 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_gray_wool.json b/data/generated/V26_1/reports/minecraft/components/item/light_gray_wool.json new file mode 100644 index 00000000..6c592ad7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_gray_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_wool", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/light_weighted_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/light_weighted_pressure_plate.json new file mode 100644 index 00000000..6a4ff27c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/light_weighted_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_weighted_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.light_weighted_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/lightning_rod.json new file mode 100644 index 00000000..cd3f0830 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lilac.json b/data/generated/V26_1/reports/minecraft/components/item/lilac.json new file mode 100644 index 00000000..62591206 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lilac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lilac", + "minecraft:item_name": { + "translate": "block.minecraft.lilac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lily_of_the_valley.json b/data/generated/V26_1/reports/minecraft/components/item/lily_of_the_valley.json new file mode 100644 index 00000000..03062ecb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lily_of_the_valley.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lily_of_the_valley", + "minecraft:item_name": { + "translate": "block.minecraft.lily_of_the_valley" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lily_pad.json b/data/generated/V26_1/reports/minecraft/components/item/lily_pad.json new file mode 100644 index 00000000..9535c597 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lily_pad.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lily_pad", + "minecraft:item_name": { + "translate": "block.minecraft.lily_pad" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_banner.json b/data/generated/V26_1/reports/minecraft/components/item/lime_banner.json new file mode 100644 index 00000000..cc8b2cad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_banner", + "minecraft:item_name": { + "translate": "block.minecraft.lime_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_bed.json b/data/generated/V26_1/reports/minecraft/components/item/lime_bed.json new file mode 100644 index 00000000..621c00f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_bed", + "minecraft:item_name": { + "translate": "block.minecraft.lime_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/lime_bundle.json new file mode 100644 index 00000000..e0d1ce15 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.lime_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_candle.json b/data/generated/V26_1/reports/minecraft/components/item/lime_candle.json new file mode 100644 index 00000000..833cc06f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_candle", + "minecraft:item_name": { + "translate": "block.minecraft.lime_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/lime_carpet.json new file mode 100644 index 00000000..000b4a4f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:lime_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:lime_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.lime_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/lime_concrete.json new file mode 100644 index 00000000..e1e61dd6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.lime_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/lime_concrete_powder.json new file mode 100644 index 00000000..5cd4f052 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.lime_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_dye.json b/data/generated/V26_1/reports/minecraft/components/item/lime_dye.json new file mode 100644 index 00000000..4bccf83a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "lime", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_dye", + "minecraft:item_name": { + "translate": "item.minecraft.lime_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/lime_glazed_terracotta.json new file mode 100644 index 00000000..bdb6ae58 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.lime_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_harness.json b/data/generated/V26_1/reports/minecraft/components/item/lime_harness.json new file mode 100644 index 00000000..9585ab4f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:lime_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:lime_harness", + "minecraft:item_name": { + "translate": "item.minecraft.lime_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/lime_shulker_box.json new file mode 100644 index 00000000..2e323d9d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.lime_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass.json new file mode 100644 index 00000000..8e47c9ef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.lime_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass_pane.json new file mode 100644 index 00000000..c06d52e5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.lime_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/lime_terracotta.json new file mode 100644 index 00000000..70633dfd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.lime_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lime_wool.json b/data/generated/V26_1/reports/minecraft/components/item/lime_wool.json new file mode 100644 index 00000000..441db9d2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lime_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_wool", + "minecraft:item_name": { + "translate": "block.minecraft.lime_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lingering_potion.json b/data/generated/V26_1/reports/minecraft/components/item/lingering_potion.json new file mode 100644 index 00000000..704501a6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lingering_potion.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lingering_potion", + "minecraft:item_name": { + "translate": "item.minecraft.lingering_potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:potion_duration_scale": 0.25, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/llama_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/llama_spawn_egg.json new file mode 100644 index 00000000..1529289f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/llama_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:llama" + }, + "minecraft:item_model": "minecraft:llama_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.llama_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/lodestone.json b/data/generated/V26_1/reports/minecraft/components/item/lodestone.json new file mode 100644 index 00000000..ccdf19d0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/lodestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lodestone", + "minecraft:item_name": { + "translate": "block.minecraft.lodestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/loom.json b/data/generated/V26_1/reports/minecraft/components/item/loom.json new file mode 100644 index 00000000..3a7dd4f0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/loom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:loom", + "minecraft:item_name": { + "translate": "block.minecraft.loom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mace.json b/data/generated/V26_1/reports/minecraft/components/item/mace.json new file mode 100644 index 00000000..e8c79181 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mace.json @@ -0,0 +1,47 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mace", + "minecraft:item_name": { + "translate": "item.minecraft.mace" + }, + "minecraft:lore": [], + "minecraft:max_damage": 500, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "minecraft:breeze_rod" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_banner.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_banner.json new file mode 100644 index 00000000..dd867b90 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_banner", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_bed.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_bed.json new file mode 100644 index 00000000..61c8ed4c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_bed", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_bundle.json new file mode 100644 index 00000000..3149d378 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_candle.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_candle.json new file mode 100644 index 00000000..75fe874d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_candle", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_carpet.json new file mode 100644 index 00000000..fffc1d22 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:magenta_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:magenta_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete.json new file mode 100644 index 00000000..ff3fc325 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete_powder.json new file mode 100644 index 00000000..1d92f6d6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_dye.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_dye.json new file mode 100644 index 00000000..848ff43e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "magenta", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_dye", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_glazed_terracotta.json new file mode 100644 index 00000000..8f2c58a3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_harness.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_harness.json new file mode 100644 index 00000000..4e74c925 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:magenta_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:magenta_harness", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_shulker_box.json new file mode 100644 index 00000000..ebdacdff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass.json new file mode 100644 index 00000000..6c23dfa3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass_pane.json new file mode 100644 index 00000000..2fd6ae65 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_terracotta.json new file mode 100644 index 00000000..8599bf64 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magenta_wool.json b/data/generated/V26_1/reports/minecraft/components/item/magenta_wool.json new file mode 100644 index 00000000..8f361285 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magenta_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_wool", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magma_block.json b/data/generated/V26_1/reports/minecraft/components/item/magma_block.json new file mode 100644 index 00000000..2113d54b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magma_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magma_block", + "minecraft:item_name": { + "translate": "block.minecraft.magma_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magma_cream.json b/data/generated/V26_1/reports/minecraft/components/item/magma_cream.json new file mode 100644 index 00000000..71761c9b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magma_cream.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magma_cream", + "minecraft:item_name": { + "translate": "item.minecraft.magma_cream" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/magma_cube_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/magma_cube_spawn_egg.json new file mode 100644 index 00000000..96449b3b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/magma_cube_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:magma_cube" + }, + "minecraft:item_model": "minecraft:magma_cube_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.magma_cube_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_boat.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_boat.json new file mode 100644 index 00000000..49bd97b2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_boat", + "minecraft:item_name": { + "translate": "item.minecraft.mangrove_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_button.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_button.json new file mode 100644 index 00000000..c2eb9ed2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_button", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_chest_boat.json new file mode 100644 index 00000000..e2d3c2a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.mangrove_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_door.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_door.json new file mode 100644 index 00000000..4395b75b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_door", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence.json new file mode 100644 index 00000000..497d8279 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_fence", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence_gate.json new file mode 100644 index 00000000..70380dae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_hanging_sign.json new file mode 100644 index 00000000..01eb2622 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_leaves.json new file mode 100644 index 00000000..baf9352d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_log.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_log.json new file mode 100644 index 00000000..46407df2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_log", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_planks.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_planks.json new file mode 100644 index 00000000..366c2f68 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_planks", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_pressure_plate.json new file mode 100644 index 00000000..692bd728 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_propagule.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_propagule.json new file mode 100644 index 00000000..40d20624 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_propagule.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_propagule", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_propagule" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_roots.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_roots.json new file mode 100644 index 00000000..988894d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_roots", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_shelf.json new file mode 100644 index 00000000..9616922c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_sign.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_sign.json new file mode 100644 index 00000000..f692e830 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_sign", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_slab.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_slab.json new file mode 100644 index 00000000..4cb0aeb2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_stairs.json new file mode 100644 index 00000000..8b3a2c8c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_trapdoor.json new file mode 100644 index 00000000..145f06f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mangrove_wood.json b/data/generated/V26_1/reports/minecraft/components/item/mangrove_wood.json new file mode 100644 index 00000000..7a06bba3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mangrove_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_wood", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/map.json b/data/generated/V26_1/reports/minecraft/components/item/map.json new file mode 100644 index 00000000..dfdfe3f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/map.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:map", + "minecraft:item_name": { + "translate": "item.minecraft.map" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/medium_amethyst_bud.json b/data/generated/V26_1/reports/minecraft/components/item/medium_amethyst_bud.json new file mode 100644 index 00000000..19c4febf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/medium_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:medium_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.medium_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/melon.json b/data/generated/V26_1/reports/minecraft/components/item/melon.json new file mode 100644 index 00000000..3615e2c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/melon.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:melon", + "minecraft:item_name": { + "translate": "block.minecraft.melon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/melon_seeds.json b/data/generated/V26_1/reports/minecraft/components/item/melon_seeds.json new file mode 100644 index 00000000..c62e4ed6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/melon_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:melon_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.melon_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/melon_slice.json b/data/generated/V26_1/reports/minecraft/components/item/melon_slice.json new file mode 100644 index 00000000..42af3104 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/melon_slice.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:melon_slice", + "minecraft:item_name": { + "translate": "item.minecraft.melon_slice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/milk_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/milk_bucket.json new file mode 100644 index 00000000..007a7bb1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/milk_bucket.json @@ -0,0 +1,31 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:clear_all_effects" + } + ], + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:milk_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.milk_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bucket" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/minecart.json b/data/generated/V26_1/reports/minecraft/components/item/minecart.json new file mode 100644 index 00000000..6908a5b7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:minecart", + "minecraft:item_name": { + "translate": "item.minecraft.minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/miner_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/miner_pottery_sherd.json new file mode 100644 index 00000000..b1ff38ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/miner_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:miner_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.miner_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mojang_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/mojang_banner_pattern.json new file mode 100644 index 00000000..8e334bf6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mojang_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mojang_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.mojang_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/mojang", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mooshroom_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/mooshroom_spawn_egg.json new file mode 100644 index 00000000..83bc293d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mooshroom_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:mooshroom" + }, + "minecraft:item_model": "minecraft:mooshroom_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.mooshroom_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/moss_block.json b/data/generated/V26_1/reports/minecraft/components/item/moss_block.json new file mode 100644 index 00000000..6b7ec8cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/moss_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:moss_block", + "minecraft:item_name": { + "translate": "block.minecraft.moss_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/moss_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/moss_carpet.json new file mode 100644 index 00000000..0ee18338 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/moss_carpet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:moss_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.moss_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone.json new file mode 100644 index 00000000..267d1148 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_slab.json new file mode 100644 index 00000000..1ab8b1ec --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..2c58ef51 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_wall.json new file mode 100644 index 00000000..afe6114e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_cobblestone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_slab.json new file mode 100644 index 00000000..b937c2c2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..f3a0aeda --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_wall.json new file mode 100644 index 00000000..5c246c72 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_bricks.json new file mode 100644 index 00000000..e2df710d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mossy_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mourner_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/mourner_pottery_sherd.json new file mode 100644 index 00000000..a3966abc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mourner_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mourner_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.mourner_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mud.json b/data/generated/V26_1/reports/minecraft/components/item/mud.json new file mode 100644 index 00000000..0b8ec342 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud", + "minecraft:item_name": { + "translate": "block.minecraft.mud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mud_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_slab.json new file mode 100644 index 00000000..f8b586ae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mud_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_stairs.json new file mode 100644 index 00000000..5c12a6a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mud_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_wall.json new file mode 100644 index 00000000..e1a48e83 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mud_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mud_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/mud_bricks.json new file mode 100644 index 00000000..58c7e385 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mud_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.mud_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/muddy_mangrove_roots.json b/data/generated/V26_1/reports/minecraft/components/item/muddy_mangrove_roots.json new file mode 100644 index 00000000..7e911e8d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/muddy_mangrove_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:muddy_mangrove_roots", + "minecraft:item_name": { + "translate": "block.minecraft.muddy_mangrove_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mule_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/mule_spawn_egg.json new file mode 100644 index 00000000..ef543d28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mule_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:mule" + }, + "minecraft:item_model": "minecraft:mule_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.mule_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mushroom_stem.json b/data/generated/V26_1/reports/minecraft/components/item/mushroom_stem.json new file mode 100644 index 00000000..a33833bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mushroom_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mushroom_stem", + "minecraft:item_name": { + "translate": "block.minecraft.mushroom_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mushroom_stew.json b/data/generated/V26_1/reports/minecraft/components/item/mushroom_stew.json new file mode 100644 index 00000000..c3a79d8b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mushroom_stew.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:mushroom_stew", + "minecraft:item_name": { + "translate": "item.minecraft.mushroom_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_11.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_11.json new file mode 100644 index 00000000..1d0de02c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_11.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_11", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_11" + }, + "minecraft:jukebox_playable": "minecraft:11", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_13.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_13.json new file mode 100644 index 00000000..72557d8c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_13.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_13", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_13" + }, + "minecraft:jukebox_playable": "minecraft:13", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_5.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_5.json new file mode 100644 index 00000000..5ebc32df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_5.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_5", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_5" + }, + "minecraft:jukebox_playable": "minecraft:5", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_blocks.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_blocks.json new file mode 100644 index 00000000..e5ce2310 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_blocks.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_blocks", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_blocks" + }, + "minecraft:jukebox_playable": "minecraft:blocks", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_cat.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_cat.json new file mode 100644 index 00000000..c850e592 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_cat.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_cat", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_cat" + }, + "minecraft:jukebox_playable": "minecraft:cat", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_chirp.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_chirp.json new file mode 100644 index 00000000..0c51e230 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_chirp.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_chirp", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_chirp" + }, + "minecraft:jukebox_playable": "minecraft:chirp", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator.json new file mode 100644 index 00000000..d4e75a22 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_creator", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_creator" + }, + "minecraft:jukebox_playable": "minecraft:creator", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator_music_box.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator_music_box.json new file mode 100644 index 00000000..873e9bf9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_creator_music_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_creator_music_box", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_creator_music_box" + }, + "minecraft:jukebox_playable": "minecraft:creator_music_box", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_far.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_far.json new file mode 100644 index 00000000..5f77951e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_far.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_far", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_far" + }, + "minecraft:jukebox_playable": "minecraft:far", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_lava_chicken.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_lava_chicken.json new file mode 100644 index 00000000..f1ac74d8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_lava_chicken.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_lava_chicken", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_lava_chicken" + }, + "minecraft:jukebox_playable": "minecraft:lava_chicken", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_mall.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_mall.json new file mode 100644 index 00000000..0cd2cb95 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_mall.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_mall", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_mall" + }, + "minecraft:jukebox_playable": "minecraft:mall", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_mellohi.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_mellohi.json new file mode 100644 index 00000000..f95906dd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_mellohi.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_mellohi", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_mellohi" + }, + "minecraft:jukebox_playable": "minecraft:mellohi", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_otherside.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_otherside.json new file mode 100644 index 00000000..698b4925 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_otherside.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_otherside", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_otherside" + }, + "minecraft:jukebox_playable": "minecraft:otherside", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_pigstep.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_pigstep.json new file mode 100644 index 00000000..5418495b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_pigstep.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_pigstep", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_pigstep" + }, + "minecraft:jukebox_playable": "minecraft:pigstep", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_precipice.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_precipice.json new file mode 100644 index 00000000..f3659acd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_precipice.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_precipice", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_precipice" + }, + "minecraft:jukebox_playable": "minecraft:precipice", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_relic.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_relic.json new file mode 100644 index 00000000..2e567500 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_relic.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_relic", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_relic" + }, + "minecraft:jukebox_playable": "minecraft:relic", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_stal.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_stal.json new file mode 100644 index 00000000..df700401 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_stal.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_stal", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_stal" + }, + "minecraft:jukebox_playable": "minecraft:stal", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_strad.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_strad.json new file mode 100644 index 00000000..dbd3de23 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_strad.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_strad", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_strad" + }, + "minecraft:jukebox_playable": "minecraft:strad", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_tears.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_tears.json new file mode 100644 index 00000000..218c1757 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_tears.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_tears", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_tears" + }, + "minecraft:jukebox_playable": "minecraft:tears", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_wait.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_wait.json new file mode 100644 index 00000000..0ba66b11 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_wait.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_wait", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_wait" + }, + "minecraft:jukebox_playable": "minecraft:wait", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/music_disc_ward.json b/data/generated/V26_1/reports/minecraft/components/item/music_disc_ward.json new file mode 100644 index 00000000..518a336d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/music_disc_ward.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_ward", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_ward" + }, + "minecraft:jukebox_playable": "minecraft:ward", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mutton.json b/data/generated/V26_1/reports/minecraft/components/item/mutton.json new file mode 100644 index 00000000..01f15c42 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mutton.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:mutton", + "minecraft:item_name": { + "translate": "item.minecraft.mutton" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/mycelium.json b/data/generated/V26_1/reports/minecraft/components/item/mycelium.json new file mode 100644 index 00000000..72672b0f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/mycelium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mycelium", + "minecraft:item_name": { + "translate": "block.minecraft.mycelium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/name_tag.json b/data/generated/V26_1/reports/minecraft/components/item/name_tag.json new file mode 100644 index 00000000..480333e6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/name_tag.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:name_tag", + "minecraft:item_name": { + "translate": "item.minecraft.name_tag" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nautilus_shell.json b/data/generated/V26_1/reports/minecraft/components/item/nautilus_shell.json new file mode 100644 index 00000000..441e78b1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nautilus_shell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nautilus_shell", + "minecraft:item_name": { + "translate": "item.minecraft.nautilus_shell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nautilus_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/nautilus_spawn_egg.json new file mode 100644 index 00000000..6888512a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nautilus_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:nautilus" + }, + "minecraft:item_model": "minecraft:nautilus_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.nautilus_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_brick.json b/data/generated/V26_1/reports/minecraft/components/item/nether_brick.json new file mode 100644 index 00000000..b6adfa48 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_brick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick", + "minecraft:item_name": { + "translate": "item.minecraft.nether_brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_brick_fence.json b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_fence.json new file mode 100644 index 00000000..93971870 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_fence", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_slab.json new file mode 100644 index 00000000..4761281a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_stairs.json new file mode 100644 index 00000000..99233f05 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_wall.json new file mode 100644 index 00000000..ab94fa18 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/nether_bricks.json new file mode 100644 index 00000000..41778971 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_gold_ore.json b/data/generated/V26_1/reports/minecraft/components/item/nether_gold_ore.json new file mode 100644 index 00000000..69228ec1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.nether_gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_quartz_ore.json b/data/generated/V26_1/reports/minecraft/components/item/nether_quartz_ore.json new file mode 100644 index 00000000..cdebf9e2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_quartz_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_quartz_ore", + "minecraft:item_name": { + "translate": "block.minecraft.nether_quartz_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_sprouts.json b/data/generated/V26_1/reports/minecraft/components/item/nether_sprouts.json new file mode 100644 index 00000000..360db123 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_sprouts.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_sprouts", + "minecraft:item_name": { + "translate": "block.minecraft.nether_sprouts" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_star.json b/data/generated/V26_1/reports/minecraft/components/item/nether_star.json new file mode 100644 index 00000000..5f6a8b4b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_star.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_explosion" + }, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_star", + "minecraft:item_name": { + "translate": "item.minecraft.nether_star" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_wart.json b/data/generated/V26_1/reports/minecraft/components/item/nether_wart.json new file mode 100644 index 00000000..ac6697a3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_wart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_wart", + "minecraft:item_name": { + "translate": "item.minecraft.nether_wart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/nether_wart_block.json b/data/generated/V26_1/reports/minecraft/components/item/nether_wart_block.json new file mode 100644 index 00000000..ee35fe24 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/nether_wart_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_wart_block", + "minecraft:item_name": { + "translate": "block.minecraft.nether_wart_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_axe.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_axe.json new file mode 100644 index 00000000..f29a67d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_axe.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 9.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_axe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_block.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_block.json new file mode 100644 index 00000000..abcc407e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_block.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_block", + "minecraft:item_name": { + "translate": "block.minecraft.netherite_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_boots.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_boots.json new file mode 100644 index 00000000..d7161310 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_boots.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:netherite_boots", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 481, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_chestplate.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_chestplate.json new file mode 100644 index 00000000..774d8f98 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_chestplate.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 8.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:netherite_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 592, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_helmet.json new file mode 100644 index 00000000..850389c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_helmet.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "head" + }, + "minecraft:item_model": "minecraft:netherite_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 407, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_hoe.json new file mode 100644 index 00000000..b077a931 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_hoe.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": 0.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_horse_armor.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_horse_armor.json new file mode 100644 index 00000000..2eba719c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_horse_armor.json @@ -0,0 +1,52 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 19.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:netherite", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:netherite_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_ingot.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_ingot.json new file mode 100644 index 00000000..e9eb0a61 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_ingot.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:netherite", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_leggings.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_leggings.json new file mode 100644 index 00000000..42502497 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_leggings.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:netherite_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 555, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_nautilus_armor.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_nautilus_armor.json new file mode 100644 index 00000000..840c8f40 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_nautilus_armor.json @@ -0,0 +1,53 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 19.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:netherite", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:netherite_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_pickaxe.json new file mode 100644 index 00000000..47e869cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_pickaxe.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_scrap.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_scrap.json new file mode 100644 index 00000000..8c82d2f0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_scrap.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_scrap", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_scrap" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_shovel.json new file mode 100644 index 00000000..74b5536f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_shovel.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_spear.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_spear.json new file mode 100644 index 00000000..bf621480 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_spear.json @@ -0,0 +1,85 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.13043475151062, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_spear", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 175, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 1.2, + "delay_ticks": 8, + "dismount_conditions": { + "max_duration_ticks": 50, + "min_speed": 9.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 110, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 23 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_sword.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_sword.json new file mode 100644 index 00000000..89004ca7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_sword.json @@ -0,0 +1,64 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 7.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_sword", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherite_upgrade_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..95597f68 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherite_upgrade_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_upgrade_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_upgrade_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/netherrack.json b/data/generated/V26_1/reports/minecraft/components/item/netherrack.json new file mode 100644 index 00000000..fde9c405 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/netherrack.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherrack", + "minecraft:item_name": { + "translate": "block.minecraft.netherrack" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/note_block.json b/data/generated/V26_1/reports/minecraft/components/item/note_block.json new file mode 100644 index 00000000..aea35abc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/note_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:note_block", + "minecraft:item_name": { + "translate": "block.minecraft.note_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_boat.json b/data/generated/V26_1/reports/minecraft/components/item/oak_boat.json new file mode 100644 index 00000000..10f1df14 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_button.json b/data/generated/V26_1/reports/minecraft/components/item/oak_button.json new file mode 100644 index 00000000..9238ce44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/oak_chest_boat.json new file mode 100644 index 00000000..fcd33444 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_door.json b/data/generated/V26_1/reports/minecraft/components/item/oak_door.json new file mode 100644 index 00000000..c7cb232b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_fence.json b/data/generated/V26_1/reports/minecraft/components/item/oak_fence.json new file mode 100644 index 00000000..077ddf70 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/oak_fence_gate.json new file mode 100644 index 00000000..f8ff60f3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/oak_hanging_sign.json new file mode 100644 index 00000000..db076d00 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/oak_leaves.json new file mode 100644 index 00000000..6273ddc0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/oak_log.json new file mode 100644 index 00000000..6137fda5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_planks.json b/data/generated/V26_1/reports/minecraft/components/item/oak_planks.json new file mode 100644 index 00000000..06be034f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/oak_pressure_plate.json new file mode 100644 index 00000000..7c9f29a6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/oak_sapling.json new file mode 100644 index 00000000..c475c0e5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/oak_shelf.json new file mode 100644 index 00000000..bcb2a001 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_sign.json b/data/generated/V26_1/reports/minecraft/components/item/oak_sign.json new file mode 100644 index 00000000..cff2b564 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_slab.json b/data/generated/V26_1/reports/minecraft/components/item/oak_slab.json new file mode 100644 index 00000000..0202d509 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/oak_stairs.json new file mode 100644 index 00000000..3c06db4e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/oak_trapdoor.json new file mode 100644 index 00000000..05fcf446 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/oak_wood.json new file mode 100644 index 00000000..6cb76ca5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/observer.json b/data/generated/V26_1/reports/minecraft/components/item/observer.json new file mode 100644 index 00000000..cb7d61cd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/observer.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:observer", + "minecraft:item_name": { + "translate": "block.minecraft.observer" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/obsidian.json b/data/generated/V26_1/reports/minecraft/components/item/obsidian.json new file mode 100644 index 00000000..4514dd22 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/obsidian.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:obsidian", + "minecraft:item_name": { + "translate": "block.minecraft.obsidian" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ocelot_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/ocelot_spawn_egg.json new file mode 100644 index 00000000..dcc91059 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ocelot_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ocelot" + }, + "minecraft:item_model": "minecraft:ocelot_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ocelot_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ochre_froglight.json b/data/generated/V26_1/reports/minecraft/components/item/ochre_froglight.json new file mode 100644 index 00000000..73c8ff32 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ochre_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ochre_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.ochre_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ominous_bottle.json b/data/generated/V26_1/reports/minecraft/components/item/ominous_bottle.json new file mode 100644 index 00000000..01805085 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ominous_bottle.json @@ -0,0 +1,30 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:play_sound", + "sound": "minecraft:item.ominous_bottle.dispose" + } + ], + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ominous_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.ominous_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:ominous_bottle_amplifier": 0, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ominous_trial_key.json b/data/generated/V26_1/reports/minecraft/components/item/ominous_trial_key.json new file mode 100644 index 00000000..4a7d2662 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ominous_trial_key.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ominous_trial_key", + "minecraft:item_name": { + "translate": "item.minecraft.ominous_trial_key" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/open_eyeblossom.json b/data/generated/V26_1/reports/minecraft/components/item/open_eyeblossom.json new file mode 100644 index 00000000..49c69395 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/open_eyeblossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:open_eyeblossom", + "minecraft:item_name": { + "translate": "block.minecraft.open_eyeblossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_banner.json b/data/generated/V26_1/reports/minecraft/components/item/orange_banner.json new file mode 100644 index 00000000..41999b93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_banner", + "minecraft:item_name": { + "translate": "block.minecraft.orange_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_bed.json b/data/generated/V26_1/reports/minecraft/components/item/orange_bed.json new file mode 100644 index 00000000..a026d0ee --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_bed", + "minecraft:item_name": { + "translate": "block.minecraft.orange_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/orange_bundle.json new file mode 100644 index 00000000..48835a73 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.orange_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_candle.json b/data/generated/V26_1/reports/minecraft/components/item/orange_candle.json new file mode 100644 index 00000000..cb1bc0a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_candle", + "minecraft:item_name": { + "translate": "block.minecraft.orange_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/orange_carpet.json new file mode 100644 index 00000000..5f98588f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:orange_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:orange_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.orange_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/orange_concrete.json new file mode 100644 index 00000000..6132100e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.orange_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/orange_concrete_powder.json new file mode 100644 index 00000000..2972d2df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.orange_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_dye.json b/data/generated/V26_1/reports/minecraft/components/item/orange_dye.json new file mode 100644 index 00000000..717b6c69 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "orange", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_dye", + "minecraft:item_name": { + "translate": "item.minecraft.orange_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/orange_glazed_terracotta.json new file mode 100644 index 00000000..4437e5da --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.orange_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_harness.json b/data/generated/V26_1/reports/minecraft/components/item/orange_harness.json new file mode 100644 index 00000000..dc6a3cc9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:orange_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:orange_harness", + "minecraft:item_name": { + "translate": "item.minecraft.orange_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/orange_shulker_box.json new file mode 100644 index 00000000..c91ccb3a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.orange_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass.json new file mode 100644 index 00000000..fb906951 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.orange_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass_pane.json new file mode 100644 index 00000000..09f5ea05 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.orange_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/orange_terracotta.json new file mode 100644 index 00000000..7cb859d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.orange_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_tulip.json b/data/generated/V26_1/reports/minecraft/components/item/orange_tulip.json new file mode 100644 index 00000000..e900b9f9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.orange_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/orange_wool.json b/data/generated/V26_1/reports/minecraft/components/item/orange_wool.json new file mode 100644 index 00000000..e8462556 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/orange_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_wool", + "minecraft:item_name": { + "translate": "block.minecraft.orange_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxeye_daisy.json b/data/generated/V26_1/reports/minecraft/components/item/oxeye_daisy.json new file mode 100644 index 00000000..7cb5d6ea --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxeye_daisy.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxeye_daisy", + "minecraft:item_name": { + "translate": "block.minecraft.oxeye_daisy" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_chiseled_copper.json new file mode 100644 index 00000000..c5d2c743 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper.json new file mode 100644 index 00000000..b7d32c31 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bars.json new file mode 100644 index 00000000..37e3a1d0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bulb.json new file mode 100644 index 00000000..6d62bcd3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chain.json new file mode 100644 index 00000000..7d0bd0ad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chest.json new file mode 100644 index 00000000..e284078c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_door.json new file mode 100644 index 00000000..a48edcff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_golem_statue.json new file mode 100644 index 00000000..b0d9ea32 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_grate.json new file mode 100644 index 00000000..b68668f8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_lantern.json new file mode 100644 index 00000000..5ad5141b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_trapdoor.json new file mode 100644 index 00000000..4c8e2a08 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper.json new file mode 100644 index 00000000..6615c39e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..8acdd191 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..0c5220cf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/oxidized_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/oxidized_lightning_rod.json new file mode 100644 index 00000000..143f64a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/oxidized_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/packed_ice.json b/data/generated/V26_1/reports/minecraft/components/item/packed_ice.json new file mode 100644 index 00000000..d2642ac4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/packed_ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:packed_ice", + "minecraft:item_name": { + "translate": "block.minecraft.packed_ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/packed_mud.json b/data/generated/V26_1/reports/minecraft/components/item/packed_mud.json new file mode 100644 index 00000000..b4a31047 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/packed_mud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:packed_mud", + "minecraft:item_name": { + "translate": "block.minecraft.packed_mud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/painting.json b/data/generated/V26_1/reports/minecraft/components/item/painting.json new file mode 100644 index 00000000..7fe45020 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/painting.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:painting", + "minecraft:item_name": { + "translate": "item.minecraft.painting" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_hanging_moss.json b/data/generated/V26_1/reports/minecraft/components/item/pale_hanging_moss.json new file mode 100644 index 00000000..73a21ca4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_hanging_moss.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_hanging_moss", + "minecraft:item_name": { + "translate": "block.minecraft.pale_hanging_moss" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_moss_block.json b/data/generated/V26_1/reports/minecraft/components/item/pale_moss_block.json new file mode 100644 index 00000000..215dc340 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_moss_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_moss_block", + "minecraft:item_name": { + "translate": "block.minecraft.pale_moss_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_moss_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/pale_moss_carpet.json new file mode 100644 index 00000000..ae5aeaa9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_moss_carpet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_moss_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.pale_moss_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_boat.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_boat.json new file mode 100644 index 00000000..de90a924 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.pale_oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_button.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_button.json new file mode 100644 index 00000000..d748081a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_chest_boat.json new file mode 100644 index 00000000..6b63c854 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.pale_oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_door.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_door.json new file mode 100644 index 00000000..3ba87ec7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence.json new file mode 100644 index 00000000..74192c3f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence_gate.json new file mode 100644 index 00000000..73dfbc93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_hanging_sign.json new file mode 100644 index 00000000..81fce508 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_leaves.json new file mode 100644 index 00000000..4d60db39 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_log.json new file mode 100644 index 00000000..c8c1cfac --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_planks.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_planks.json new file mode 100644 index 00000000..be053b9a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_pressure_plate.json new file mode 100644 index 00000000..17590f71 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sapling.json new file mode 100644 index 00000000..251613f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_shelf.json new file mode 100644 index 00000000..38d338bb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sign.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sign.json new file mode 100644 index 00000000..ae1643b4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_slab.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_slab.json new file mode 100644 index 00000000..e85483f9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_stairs.json new file mode 100644 index 00000000..680ac35b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_trapdoor.json new file mode 100644 index 00000000..ad6e73ba --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pale_oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_wood.json new file mode 100644 index 00000000..af8b9047 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pale_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/panda_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/panda_spawn_egg.json new file mode 100644 index 00000000..dc4700c5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/panda_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:panda" + }, + "minecraft:item_model": "minecraft:panda_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.panda_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/paper.json b/data/generated/V26_1/reports/minecraft/components/item/paper.json new file mode 100644 index 00000000..4624462b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/paper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:paper", + "minecraft:item_name": { + "translate": "item.minecraft.paper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/parched_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/parched_spawn_egg.json new file mode 100644 index 00000000..5bbb9874 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/parched_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:parched" + }, + "minecraft:item_model": "minecraft:parched_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.parched_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/parrot_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/parrot_spawn_egg.json new file mode 100644 index 00000000..dc142448 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/parrot_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:parrot" + }, + "minecraft:item_model": "minecraft:parrot_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.parrot_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pearlescent_froglight.json b/data/generated/V26_1/reports/minecraft/components/item/pearlescent_froglight.json new file mode 100644 index 00000000..8da2b38f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pearlescent_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pearlescent_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.pearlescent_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/peony.json b/data/generated/V26_1/reports/minecraft/components/item/peony.json new file mode 100644 index 00000000..f7a375e8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/peony.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:peony", + "minecraft:item_name": { + "translate": "block.minecraft.peony" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/petrified_oak_slab.json b/data/generated/V26_1/reports/minecraft/components/item/petrified_oak_slab.json new file mode 100644 index 00000000..9af291c1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/petrified_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:petrified_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.petrified_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/phantom_membrane.json b/data/generated/V26_1/reports/minecraft/components/item/phantom_membrane.json new file mode 100644 index 00000000..857f5984 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/phantom_membrane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:phantom_membrane", + "minecraft:item_name": { + "translate": "item.minecraft.phantom_membrane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/phantom_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/phantom_spawn_egg.json new file mode 100644 index 00000000..9061eaca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/phantom_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:phantom" + }, + "minecraft:item_model": "minecraft:phantom_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.phantom_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pig_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/pig_spawn_egg.json new file mode 100644 index 00000000..f6ca9e2c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pig_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pig" + }, + "minecraft:item_model": "minecraft:pig_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pig_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/piglin_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/piglin_banner_pattern.json new file mode 100644 index 00000000..eb45ed4e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/piglin_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:piglin_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/piglin", + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/piglin_brute_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/piglin_brute_spawn_egg.json new file mode 100644 index 00000000..8f0777e1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/piglin_brute_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:piglin_brute" + }, + "minecraft:item_model": "minecraft:piglin_brute_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_brute_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/piglin_head.json b/data/generated/V26_1/reports/minecraft/components/item/piglin_head.json new file mode 100644 index 00000000..9be03f39 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/piglin_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:piglin_head", + "minecraft:item_name": { + "translate": "block.minecraft.piglin_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/piglin_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/piglin_spawn_egg.json new file mode 100644 index 00000000..ab01fcaf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/piglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:piglin" + }, + "minecraft:item_model": "minecraft:piglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pillager_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/pillager_spawn_egg.json new file mode 100644 index 00000000..1513fc44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pillager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pillager" + }, + "minecraft:item_model": "minecraft:pillager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pillager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_banner.json b/data/generated/V26_1/reports/minecraft/components/item/pink_banner.json new file mode 100644 index 00000000..1dc70b00 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_banner", + "minecraft:item_name": { + "translate": "block.minecraft.pink_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_bed.json b/data/generated/V26_1/reports/minecraft/components/item/pink_bed.json new file mode 100644 index 00000000..08967ba3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_bed", + "minecraft:item_name": { + "translate": "block.minecraft.pink_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/pink_bundle.json new file mode 100644 index 00000000..c899058e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.pink_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_candle.json b/data/generated/V26_1/reports/minecraft/components/item/pink_candle.json new file mode 100644 index 00000000..0444828e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_candle", + "minecraft:item_name": { + "translate": "block.minecraft.pink_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/pink_carpet.json new file mode 100644 index 00000000..e236b7f7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:pink_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:pink_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.pink_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/pink_concrete.json new file mode 100644 index 00000000..9aa49fdd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.pink_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/pink_concrete_powder.json new file mode 100644 index 00000000..adcd333f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.pink_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_dye.json b/data/generated/V26_1/reports/minecraft/components/item/pink_dye.json new file mode 100644 index 00000000..fd7205a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "pink", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_dye", + "minecraft:item_name": { + "translate": "item.minecraft.pink_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/pink_glazed_terracotta.json new file mode 100644 index 00000000..c5f24929 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.pink_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_harness.json b/data/generated/V26_1/reports/minecraft/components/item/pink_harness.json new file mode 100644 index 00000000..b8c19079 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:pink_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:pink_harness", + "minecraft:item_name": { + "translate": "item.minecraft.pink_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_petals.json b/data/generated/V26_1/reports/minecraft/components/item/pink_petals.json new file mode 100644 index 00000000..484af5d2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_petals.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_petals", + "minecraft:item_name": { + "translate": "block.minecraft.pink_petals" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/pink_shulker_box.json new file mode 100644 index 00000000..3bba7c69 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.pink_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass.json new file mode 100644 index 00000000..6a8fc02f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.pink_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass_pane.json new file mode 100644 index 00000000..a7c06447 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.pink_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/pink_terracotta.json new file mode 100644 index 00000000..3d3e7db6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.pink_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_tulip.json b/data/generated/V26_1/reports/minecraft/components/item/pink_tulip.json new file mode 100644 index 00000000..4e89a887 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.pink_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pink_wool.json b/data/generated/V26_1/reports/minecraft/components/item/pink_wool.json new file mode 100644 index 00000000..1d8b0b62 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pink_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_wool", + "minecraft:item_name": { + "translate": "block.minecraft.pink_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/piston.json b/data/generated/V26_1/reports/minecraft/components/item/piston.json new file mode 100644 index 00000000..2b1ac24b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/piston.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:piston", + "minecraft:item_name": { + "translate": "block.minecraft.piston" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pitcher_plant.json b/data/generated/V26_1/reports/minecraft/components/item/pitcher_plant.json new file mode 100644 index 00000000..a1d8c03b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pitcher_plant.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pitcher_plant", + "minecraft:item_name": { + "translate": "block.minecraft.pitcher_plant" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pitcher_pod.json b/data/generated/V26_1/reports/minecraft/components/item/pitcher_pod.json new file mode 100644 index 00000000..fae7e897 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pitcher_pod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pitcher_pod", + "minecraft:item_name": { + "translate": "item.minecraft.pitcher_pod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/player_head.json b/data/generated/V26_1/reports/minecraft/components/item/player_head.json new file mode 100644 index 00000000..15eccf5b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/player_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:player_head", + "minecraft:item_name": { + "translate": "block.minecraft.player_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/plenty_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/plenty_pottery_sherd.json new file mode 100644 index 00000000..1079878e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/plenty_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:plenty_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.plenty_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/podzol.json b/data/generated/V26_1/reports/minecraft/components/item/podzol.json new file mode 100644 index 00000000..62e6cd30 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/podzol.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:podzol", + "minecraft:item_name": { + "translate": "block.minecraft.podzol" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pointed_dripstone.json b/data/generated/V26_1/reports/minecraft/components/item/pointed_dripstone.json new file mode 100644 index 00000000..53467165 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pointed_dripstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pointed_dripstone", + "minecraft:item_name": { + "translate": "block.minecraft.pointed_dripstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/poisonous_potato.json b/data/generated/V26_1/reports/minecraft/components/item/poisonous_potato.json new file mode 100644 index 00000000..1755136a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/poisonous_potato.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 100, + "id": "minecraft:poison", + "show_icon": true + } + ], + "probability": 0.6 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:poisonous_potato", + "minecraft:item_name": { + "translate": "item.minecraft.poisonous_potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polar_bear_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/polar_bear_spawn_egg.json new file mode 100644 index 00000000..64a9b873 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polar_bear_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:polar_bear" + }, + "minecraft:item_model": "minecraft:polar_bear_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.polar_bear_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_andesite.json b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite.json new file mode 100644 index 00000000..1f5b0f75 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_slab.json new file mode 100644 index 00000000..ed208221 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_stairs.json new file mode 100644 index 00000000..eaa264a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_andesite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_basalt.json b/data/generated/V26_1/reports/minecraft/components/item/polished_basalt.json new file mode 100644 index 00000000..061af1b4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_basalt", + "minecraft:item_name": { + "translate": "block.minecraft.polished_basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone.json new file mode 100644 index 00000000..2312bdda --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..d91ed4b9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..e80168d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..e7e05634 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_bricks.json new file mode 100644 index 00000000..093202dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_button.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_button.json new file mode 100644 index 00000000..3535ff63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_button", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..8eb21f4f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_slab.json new file mode 100644 index 00000000..4fb56d23 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_stairs.json new file mode 100644 index 00000000..10c5f2a6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_wall.json new file mode 100644 index 00000000..557d83b2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_blackstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate.json new file mode 100644 index 00000000..0de1ce40 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_slab.json new file mode 100644 index 00000000..09792271 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_stairs.json new file mode 100644 index 00000000..a8d500a2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_wall.json b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_wall.json new file mode 100644 index 00000000..e0eb182f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_deepslate_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_diorite.json b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite.json new file mode 100644 index 00000000..708d1ce5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_slab.json new file mode 100644 index 00000000..da40dfda --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_stairs.json new file mode 100644 index 00000000..9c9e2b8e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_diorite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_granite.json b/data/generated/V26_1/reports/minecraft/components/item/polished_granite.json new file mode 100644 index 00000000..36c97935 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_granite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_granite_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_granite_slab.json new file mode 100644 index 00000000..fb4db036 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_granite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_granite_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_granite_stairs.json new file mode 100644 index 00000000..41cb6aef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_granite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_tuff.json b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff.json new file mode 100644 index 00000000..22268614 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_slab.json b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_slab.json new file mode 100644 index 00000000..39d40594 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_stairs.json new file mode 100644 index 00000000..9d3767fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_wall.json b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_wall.json new file mode 100644 index 00000000..2220822e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/polished_tuff_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/popped_chorus_fruit.json b/data/generated/V26_1/reports/minecraft/components/item/popped_chorus_fruit.json new file mode 100644 index 00000000..4f1f0a86 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/popped_chorus_fruit.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:popped_chorus_fruit", + "minecraft:item_name": { + "translate": "item.minecraft.popped_chorus_fruit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/poppy.json b/data/generated/V26_1/reports/minecraft/components/item/poppy.json new file mode 100644 index 00000000..11447e1f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/poppy.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:poppy", + "minecraft:item_name": { + "translate": "block.minecraft.poppy" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/porkchop.json b/data/generated/V26_1/reports/minecraft/components/item/porkchop.json new file mode 100644 index 00000000..da3401c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/porkchop.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:porkchop", + "minecraft:item_name": { + "translate": "item.minecraft.porkchop" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/potato.json b/data/generated/V26_1/reports/minecraft/components/item/potato.json new file mode 100644 index 00000000..d00704e6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/potato.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.6 + }, + "minecraft:item_model": "minecraft:potato", + "minecraft:item_name": { + "translate": "item.minecraft.potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/potion.json b/data/generated/V26_1/reports/minecraft/components/item/potion.json new file mode 100644 index 00000000..e6d79cf7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/potion.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:potion", + "minecraft:item_name": { + "translate": "item.minecraft.potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:glass_bottle" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/powder_snow_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/powder_snow_bucket.json new file mode 100644 index 00000000..e9934f80 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/powder_snow_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:powder_snow_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.powder_snow_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/powered_rail.json b/data/generated/V26_1/reports/minecraft/components/item/powered_rail.json new file mode 100644 index 00000000..eb666f13 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/powered_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:powered_rail", + "minecraft:item_name": { + "translate": "block.minecraft.powered_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine.json new file mode 100644 index 00000000..a8a157b3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_slab.json new file mode 100644 index 00000000..e8e418b6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_stairs.json new file mode 100644 index 00000000..4d4a5676 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_bricks.json new file mode 100644 index 00000000..1e3c182f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_crystals.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_crystals.json new file mode 100644 index 00000000..8c769b51 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_crystals.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_crystals", + "minecraft:item_name": { + "translate": "item.minecraft.prismarine_crystals" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_shard.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_shard.json new file mode 100644 index 00000000..ba3221f2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_shard.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_shard", + "minecraft:item_name": { + "translate": "item.minecraft.prismarine_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_slab.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_slab.json new file mode 100644 index 00000000..d73ca58d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_slab", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_stairs.json new file mode 100644 index 00000000..47c5613c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prismarine_wall.json b/data/generated/V26_1/reports/minecraft/components/item/prismarine_wall.json new file mode 100644 index 00000000..0d452299 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prismarine_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_wall", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/prize_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/prize_pottery_sherd.json new file mode 100644 index 00000000..203b344b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/prize_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prize_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.prize_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pufferfish.json b/data/generated/V26_1/reports/minecraft/components/item/pufferfish.json new file mode 100644 index 00000000..05b528da --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pufferfish.json @@ -0,0 +1,48 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 1200, + "id": "minecraft:poison", + "show_icon": true + }, + { + "amplifier": 2, + "duration": 300, + "id": "minecraft:hunger", + "show_icon": true + }, + { + "duration": 300, + "id": "minecraft:nausea", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:pufferfish", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pufferfish_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/pufferfish_bucket.json new file mode 100644 index 00000000..d06408ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pufferfish_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:pufferfish_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pufferfish_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/pufferfish_spawn_egg.json new file mode 100644 index 00000000..32c5a2ca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pufferfish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pufferfish" + }, + "minecraft:item_model": "minecraft:pufferfish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pumpkin.json b/data/generated/V26_1/reports/minecraft/components/item/pumpkin.json new file mode 100644 index 00000000..1f3ac745 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pumpkin.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pumpkin", + "minecraft:item_name": { + "translate": "block.minecraft.pumpkin" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pumpkin_pie.json b/data/generated/V26_1/reports/minecraft/components/item/pumpkin_pie.json new file mode 100644 index 00000000..f8e90e53 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pumpkin_pie.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 4.8 + }, + "minecraft:item_model": "minecraft:pumpkin_pie", + "minecraft:item_name": { + "translate": "item.minecraft.pumpkin_pie" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/pumpkin_seeds.json b/data/generated/V26_1/reports/minecraft/components/item/pumpkin_seeds.json new file mode 100644 index 00000000..0ac27643 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/pumpkin_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pumpkin_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.pumpkin_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_banner.json b/data/generated/V26_1/reports/minecraft/components/item/purple_banner.json new file mode 100644 index 00000000..6aa916b5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_banner", + "minecraft:item_name": { + "translate": "block.minecraft.purple_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_bed.json b/data/generated/V26_1/reports/minecraft/components/item/purple_bed.json new file mode 100644 index 00000000..05fcad42 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_bed", + "minecraft:item_name": { + "translate": "block.minecraft.purple_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/purple_bundle.json new file mode 100644 index 00000000..61dcc8e9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.purple_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_candle.json b/data/generated/V26_1/reports/minecraft/components/item/purple_candle.json new file mode 100644 index 00000000..53420346 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_candle", + "minecraft:item_name": { + "translate": "block.minecraft.purple_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/purple_carpet.json new file mode 100644 index 00000000..ee69a72e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:purple_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:purple_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.purple_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/purple_concrete.json new file mode 100644 index 00000000..3b38f212 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.purple_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/purple_concrete_powder.json new file mode 100644 index 00000000..4e6eef6e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.purple_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_dye.json b/data/generated/V26_1/reports/minecraft/components/item/purple_dye.json new file mode 100644 index 00000000..70503a61 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "purple", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_dye", + "minecraft:item_name": { + "translate": "item.minecraft.purple_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/purple_glazed_terracotta.json new file mode 100644 index 00000000..2dd25da5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.purple_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_harness.json b/data/generated/V26_1/reports/minecraft/components/item/purple_harness.json new file mode 100644 index 00000000..0bca1c28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:purple_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:purple_harness", + "minecraft:item_name": { + "translate": "item.minecraft.purple_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/purple_shulker_box.json new file mode 100644 index 00000000..4c7a053f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.purple_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass.json new file mode 100644 index 00000000..0e4a8886 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.purple_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass_pane.json new file mode 100644 index 00000000..9b612e7d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.purple_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/purple_terracotta.json new file mode 100644 index 00000000..dd9366ae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.purple_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purple_wool.json b/data/generated/V26_1/reports/minecraft/components/item/purple_wool.json new file mode 100644 index 00000000..0ec98a93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purple_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_wool", + "minecraft:item_name": { + "translate": "block.minecraft.purple_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purpur_block.json b/data/generated/V26_1/reports/minecraft/components/item/purpur_block.json new file mode 100644 index 00000000..c14556b0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purpur_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_block", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purpur_pillar.json b/data/generated/V26_1/reports/minecraft/components/item/purpur_pillar.json new file mode 100644 index 00000000..70f2d15b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purpur_pillar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_pillar", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_pillar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purpur_slab.json b/data/generated/V26_1/reports/minecraft/components/item/purpur_slab.json new file mode 100644 index 00000000..64ba7df4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purpur_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_slab", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/purpur_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/purpur_stairs.json new file mode 100644 index 00000000..fc0884fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/purpur_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz.json b/data/generated/V26_1/reports/minecraft/components/item/quartz.json new file mode 100644 index 00000000..fc44e575 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz", + "minecraft:item_name": { + "translate": "item.minecraft.quartz" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:quartz", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz_block.json b/data/generated/V26_1/reports/minecraft/components/item/quartz_block.json new file mode 100644 index 00000000..a53a685c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_block", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/quartz_bricks.json new file mode 100644 index 00000000..edc360ee --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz_pillar.json b/data/generated/V26_1/reports/minecraft/components/item/quartz_pillar.json new file mode 100644 index 00000000..6273e5ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz_pillar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_pillar", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_pillar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz_slab.json b/data/generated/V26_1/reports/minecraft/components/item/quartz_slab.json new file mode 100644 index 00000000..4cc5b39e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_slab", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/quartz_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/quartz_stairs.json new file mode 100644 index 00000000..c0883d44 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/quartz_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rabbit.json b/data/generated/V26_1/reports/minecraft/components/item/rabbit.json new file mode 100644 index 00000000..3db325fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rabbit.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:rabbit", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rabbit_foot.json b/data/generated/V26_1/reports/minecraft/components/item/rabbit_foot.json new file mode 100644 index 00000000..f833e51f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rabbit_foot.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rabbit_foot", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_foot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rabbit_hide.json b/data/generated/V26_1/reports/minecraft/components/item/rabbit_hide.json new file mode 100644 index 00000000..c927daeb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rabbit_hide.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rabbit_hide", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_hide" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rabbit_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/rabbit_spawn_egg.json new file mode 100644 index 00000000..2c8f27fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rabbit_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:rabbit" + }, + "minecraft:item_model": "minecraft:rabbit_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rabbit_stew.json b/data/generated/V26_1/reports/minecraft/components/item/rabbit_stew.json new file mode 100644 index 00000000..0a3847d1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rabbit_stew.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 10, + "saturation": 12.0 + }, + "minecraft:item_model": "minecraft:rabbit_stew", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rail.json b/data/generated/V26_1/reports/minecraft/components/item/rail.json new file mode 100644 index 00000000..78ab7409 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rail", + "minecraft:item_name": { + "translate": "block.minecraft.rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..91483811 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raiser_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.raiser_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ravager_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/ravager_spawn_egg.json new file mode 100644 index 00000000..500213cc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ravager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ravager" + }, + "minecraft:item_model": "minecraft:ravager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ravager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_copper.json b/data/generated/V26_1/reports/minecraft/components/item/raw_copper.json new file mode 100644 index 00000000..024d3c9b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_copper", + "minecraft:item_name": { + "translate": "item.minecraft.raw_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_copper_block.json b/data/generated/V26_1/reports/minecraft/components/item/raw_copper_block.json new file mode 100644 index 00000000..d499874f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_gold.json b/data/generated/V26_1/reports/minecraft/components/item/raw_gold.json new file mode 100644 index 00000000..d6db5d91 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_gold.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_gold", + "minecraft:item_name": { + "translate": "item.minecraft.raw_gold" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_gold_block.json b/data/generated/V26_1/reports/minecraft/components/item/raw_gold_block.json new file mode 100644 index 00000000..c5d69b6f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_gold_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_gold_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_gold_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_iron.json b/data/generated/V26_1/reports/minecraft/components/item/raw_iron.json new file mode 100644 index 00000000..2c40f732 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_iron.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_iron", + "minecraft:item_name": { + "translate": "item.minecraft.raw_iron" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/raw_iron_block.json b/data/generated/V26_1/reports/minecraft/components/item/raw_iron_block.json new file mode 100644 index 00000000..c02513c2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/raw_iron_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_iron_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_iron_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/recovery_compass.json b/data/generated/V26_1/reports/minecraft/components/item/recovery_compass.json new file mode 100644 index 00000000..9e02a5a1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/recovery_compass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:recovery_compass", + "minecraft:item_name": { + "translate": "item.minecraft.recovery_compass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_banner.json b/data/generated/V26_1/reports/minecraft/components/item/red_banner.json new file mode 100644 index 00000000..64ef7b06 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_banner", + "minecraft:item_name": { + "translate": "block.minecraft.red_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_bed.json b/data/generated/V26_1/reports/minecraft/components/item/red_bed.json new file mode 100644 index 00000000..b9d0efb8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_bed", + "minecraft:item_name": { + "translate": "block.minecraft.red_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/red_bundle.json new file mode 100644 index 00000000..610306a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.red_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_candle.json b/data/generated/V26_1/reports/minecraft/components/item/red_candle.json new file mode 100644 index 00000000..0d80237c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_candle", + "minecraft:item_name": { + "translate": "block.minecraft.red_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/red_carpet.json new file mode 100644 index 00000000..a289331e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:red_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:red_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.red_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/red_concrete.json new file mode 100644 index 00000000..a75d849d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.red_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/red_concrete_powder.json new file mode 100644 index 00000000..f207a9a7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.red_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_dye.json b/data/generated/V26_1/reports/minecraft/components/item/red_dye.json new file mode 100644 index 00000000..b35e39d7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "red", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_dye", + "minecraft:item_name": { + "translate": "item.minecraft.red_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/red_glazed_terracotta.json new file mode 100644 index 00000000..3fb0a360 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.red_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_harness.json b/data/generated/V26_1/reports/minecraft/components/item/red_harness.json new file mode 100644 index 00000000..5fa5da95 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:red_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:red_harness", + "minecraft:item_name": { + "translate": "item.minecraft.red_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_mushroom.json b/data/generated/V26_1/reports/minecraft/components/item/red_mushroom.json new file mode 100644 index 00000000..ec6d83b4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_mushroom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_mushroom", + "minecraft:item_name": { + "translate": "block.minecraft.red_mushroom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_mushroom_block.json b/data/generated/V26_1/reports/minecraft/components/item/red_mushroom_block.json new file mode 100644 index 00000000..9fce401a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_mushroom_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_mushroom_block", + "minecraft:item_name": { + "translate": "block.minecraft.red_mushroom_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_slab.json new file mode 100644 index 00000000..ab4be509 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_stairs.json new file mode 100644 index 00000000..540e23dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_wall.json new file mode 100644 index 00000000..6e2b9730 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_nether_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_nether_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/red_nether_bricks.json new file mode 100644 index 00000000..fb3b290c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_sand.json b/data/generated/V26_1/reports/minecraft/components/item/red_sand.json new file mode 100644 index 00000000..b40525bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sand", + "minecraft:item_name": { + "translate": "block.minecraft.red_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone.json new file mode 100644 index 00000000..1bc91e2f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_slab.json new file mode 100644 index 00000000..5bc8c34d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_stairs.json new file mode 100644 index 00000000..4f3a1357 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_wall.json new file mode 100644 index 00000000..cdad4c2d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_sandstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/red_shulker_box.json new file mode 100644 index 00000000..68bacc9a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.red_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass.json new file mode 100644 index 00000000..980a3a25 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.red_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass_pane.json new file mode 100644 index 00000000..ee82b8a5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.red_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/red_terracotta.json new file mode 100644 index 00000000..04002ee2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.red_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_tulip.json b/data/generated/V26_1/reports/minecraft/components/item/red_tulip.json new file mode 100644 index 00000000..3e728135 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.red_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/red_wool.json b/data/generated/V26_1/reports/minecraft/components/item/red_wool.json new file mode 100644 index 00000000..52edcf26 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/red_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_wool", + "minecraft:item_name": { + "translate": "block.minecraft.red_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/redstone.json b/data/generated/V26_1/reports/minecraft/components/item/redstone.json new file mode 100644 index 00000000..bca8feef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/redstone.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone", + "minecraft:item_name": { + "translate": "item.minecraft.redstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:redstone", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/redstone_block.json b/data/generated/V26_1/reports/minecraft/components/item/redstone_block.json new file mode 100644 index 00000000..c4957f63 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/redstone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_block", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/redstone_lamp.json b/data/generated/V26_1/reports/minecraft/components/item/redstone_lamp.json new file mode 100644 index 00000000..cf0a9a1f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/redstone_lamp.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_lamp", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_lamp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/redstone_ore.json b/data/generated/V26_1/reports/minecraft/components/item/redstone_ore.json new file mode 100644 index 00000000..8ac1eea8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/redstone_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_ore", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/redstone_torch.json b/data/generated/V26_1/reports/minecraft/components/item/redstone_torch.json new file mode 100644 index 00000000..5548d1ae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/redstone_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_torch", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/reinforced_deepslate.json b/data/generated/V26_1/reports/minecraft/components/item/reinforced_deepslate.json new file mode 100644 index 00000000..15a4f365 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/reinforced_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:reinforced_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.reinforced_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/repeater.json b/data/generated/V26_1/reports/minecraft/components/item/repeater.json new file mode 100644 index 00000000..445ce220 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/repeater.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:repeater", + "minecraft:item_name": { + "translate": "block.minecraft.repeater" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/repeating_command_block.json b/data/generated/V26_1/reports/minecraft/components/item/repeating_command_block.json new file mode 100644 index 00000000..48a92172 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/repeating_command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:repeating_command_block", + "minecraft:item_name": { + "translate": "block.minecraft.repeating_command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_block.json b/data/generated/V26_1/reports/minecraft/components/item/resin_block.json new file mode 100644 index 00000000..8dbd1e54 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_block", + "minecraft:item_name": { + "translate": "block.minecraft.resin_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_brick.json b/data/generated/V26_1/reports/minecraft/components/item/resin_brick.json new file mode 100644 index 00000000..fdb09daa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_brick.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick", + "minecraft:item_name": { + "translate": "item.minecraft.resin_brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:resin", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_slab.json new file mode 100644 index 00000000..42ac7a93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_stairs.json new file mode 100644 index 00000000..05b99c64 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_wall.json new file mode 100644 index 00000000..6b48bcf9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/resin_bricks.json new file mode 100644 index 00000000..ce0578dd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.resin_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/resin_clump.json b/data/generated/V26_1/reports/minecraft/components/item/resin_clump.json new file mode 100644 index 00000000..78545f81 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/resin_clump.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_clump", + "minecraft:item_name": { + "translate": "item.minecraft.resin_clump" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/respawn_anchor.json b/data/generated/V26_1/reports/minecraft/components/item/respawn_anchor.json new file mode 100644 index 00000000..a0b08ac4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/respawn_anchor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:respawn_anchor", + "minecraft:item_name": { + "translate": "block.minecraft.respawn_anchor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rib_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..c5a3462d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rib_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rib_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.rib_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rooted_dirt.json b/data/generated/V26_1/reports/minecraft/components/item/rooted_dirt.json new file mode 100644 index 00000000..059ab084 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rooted_dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rooted_dirt", + "minecraft:item_name": { + "translate": "block.minecraft.rooted_dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rose_bush.json b/data/generated/V26_1/reports/minecraft/components/item/rose_bush.json new file mode 100644 index 00000000..c87a922b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rose_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rose_bush", + "minecraft:item_name": { + "translate": "block.minecraft.rose_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/rotten_flesh.json b/data/generated/V26_1/reports/minecraft/components/item/rotten_flesh.json new file mode 100644 index 00000000..910a02a6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/rotten_flesh.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 600, + "id": "minecraft:hunger", + "show_icon": true + } + ], + "probability": 0.8 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 4, + "saturation": 0.8 + }, + "minecraft:item_model": "minecraft:rotten_flesh", + "minecraft:item_name": { + "translate": "item.minecraft.rotten_flesh" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/saddle.json b/data/generated/V26_1/reports/minecraft/components/item/saddle.json new file mode 100644 index 00000000..4483a865 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/saddle.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_saddle", + "asset_id": "minecraft:saddle", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.horse.saddle", + "shearing_sound": "minecraft:item.saddle.unequip", + "slot": "saddle" + }, + "minecraft:item_model": "minecraft:saddle", + "minecraft:item_name": { + "translate": "item.minecraft.saddle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/salmon.json b/data/generated/V26_1/reports/minecraft/components/item/salmon.json new file mode 100644 index 00000000..5f26632d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/salmon.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:salmon", + "minecraft:item_name": { + "translate": "item.minecraft.salmon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/salmon_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/salmon_bucket.json new file mode 100644 index 00000000..89f8ab4d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/salmon_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:salmon_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.salmon_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/salmon_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/salmon_spawn_egg.json new file mode 100644 index 00000000..9406e297 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/salmon_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:salmon" + }, + "minecraft:item_model": "minecraft:salmon_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.salmon_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sand.json b/data/generated/V26_1/reports/minecraft/components/item/sand.json new file mode 100644 index 00000000..1a3cb8a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sand", + "minecraft:item_name": { + "translate": "block.minecraft.sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/sandstone.json new file mode 100644 index 00000000..5a6c0290 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/sandstone_slab.json new file mode 100644 index 00000000..855b061b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sandstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/sandstone_stairs.json new file mode 100644 index 00000000..eec1b0c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sandstone_wall.json b/data/generated/V26_1/reports/minecraft/components/item/sandstone_wall.json new file mode 100644 index 00000000..def95d8e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sandstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/scaffolding.json b/data/generated/V26_1/reports/minecraft/components/item/scaffolding.json new file mode 100644 index 00000000..62fadcc5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/scaffolding.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:scaffolding", + "minecraft:item_name": { + "translate": "block.minecraft.scaffolding" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/scrape_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/scrape_pottery_sherd.json new file mode 100644 index 00000000..f2e4cfe6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/scrape_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:scrape_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.scrape_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sculk.json b/data/generated/V26_1/reports/minecraft/components/item/sculk.json new file mode 100644 index 00000000..04c83cbc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sculk.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk", + "minecraft:item_name": { + "translate": "block.minecraft.sculk" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sculk_catalyst.json b/data/generated/V26_1/reports/minecraft/components/item/sculk_catalyst.json new file mode 100644 index 00000000..90b9df71 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sculk_catalyst.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_catalyst", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_catalyst" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sculk_sensor.json b/data/generated/V26_1/reports/minecraft/components/item/sculk_sensor.json new file mode 100644 index 00000000..1ae04298 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sculk_sensor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_sensor", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_sensor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sculk_shrieker.json b/data/generated/V26_1/reports/minecraft/components/item/sculk_shrieker.json new file mode 100644 index 00000000..f49d158c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sculk_shrieker.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_shrieker", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_shrieker" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sculk_vein.json b/data/generated/V26_1/reports/minecraft/components/item/sculk_vein.json new file mode 100644 index 00000000..3b980a97 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sculk_vein.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_vein", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_vein" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sea_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/sea_lantern.json new file mode 100644 index 00000000..f1eb9577 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sea_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sea_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.sea_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sea_pickle.json b/data/generated/V26_1/reports/minecraft/components/item/sea_pickle.json new file mode 100644 index 00000000..8d25119c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sea_pickle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sea_pickle", + "minecraft:item_name": { + "translate": "block.minecraft.sea_pickle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/seagrass.json b/data/generated/V26_1/reports/minecraft/components/item/seagrass.json new file mode 100644 index 00000000..d4fbc852 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/seagrass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:seagrass", + "minecraft:item_name": { + "translate": "block.minecraft.seagrass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..ac56f5a1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sentry_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.sentry_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..3392f9f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shaper_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.shaper_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sheaf_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/sheaf_pottery_sherd.json new file mode 100644 index 00000000..2410387a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sheaf_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sheaf_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.sheaf_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shears.json b/data/generated/V26_1/reports/minecraft/components/item/shears.json new file mode 100644 index 00000000..4ccf65bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shears.json @@ -0,0 +1,44 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shears", + "minecraft:item_name": { + "translate": "item.minecraft.shears" + }, + "minecraft:lore": [], + "minecraft:max_damage": 238, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:leaves", + "speed": 15.0 + }, + { + "blocks": "#minecraft:wool", + "speed": 5.0 + }, + { + "blocks": [ + "minecraft:vine", + "minecraft:glow_lichen" + ], + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sheep_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/sheep_spawn_egg.json new file mode 100644 index 00000000..0ca72bf6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sheep_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:sheep" + }, + "minecraft:item_model": "minecraft:sheep_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.sheep_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shelter_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/shelter_pottery_sherd.json new file mode 100644 index 00000000..ba1a9fa9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shelter_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shelter_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.shelter_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shield.json b/data/generated/V26_1/reports/minecraft/components/item/shield.json new file mode 100644 index 00000000..2d0364b3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shield.json @@ -0,0 +1,39 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:blocks_attacks": { + "block_delay_seconds": 0.25, + "block_sound": "minecraft:item.shield.block", + "bypassed_by": "#minecraft:bypasses_shield", + "disabled_sound": "minecraft:item.shield.break", + "item_damage": { + "base": 1.0, + "factor": 1.0, + "threshold": 3.0 + } + }, + "minecraft:break_sound": "minecraft:item.shield.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "offhand", + "swappable": false + }, + "minecraft:item_model": "minecraft:shield", + "minecraft:item_name": { + "translate": "item.minecraft.shield" + }, + "minecraft:lore": [], + "minecraft:max_damage": 336, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/short_dry_grass.json b/data/generated/V26_1/reports/minecraft/components/item/short_dry_grass.json new file mode 100644 index 00000000..abad1474 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/short_dry_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:short_dry_grass", + "minecraft:item_name": { + "translate": "block.minecraft.short_dry_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/short_grass.json b/data/generated/V26_1/reports/minecraft/components/item/short_grass.json new file mode 100644 index 00000000..24819bf8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/short_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:short_grass", + "minecraft:item_name": { + "translate": "block.minecraft.short_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shroomlight.json b/data/generated/V26_1/reports/minecraft/components/item/shroomlight.json new file mode 100644 index 00000000..a0e99311 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shroomlight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shroomlight", + "minecraft:item_name": { + "translate": "block.minecraft.shroomlight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/shulker_box.json new file mode 100644 index 00000000..fe725ca3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shulker_shell.json b/data/generated/V26_1/reports/minecraft/components/item/shulker_shell.json new file mode 100644 index 00000000..042cf187 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shulker_shell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shulker_shell", + "minecraft:item_name": { + "translate": "item.minecraft.shulker_shell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/shulker_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/shulker_spawn_egg.json new file mode 100644 index 00000000..28b60322 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/shulker_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:shulker" + }, + "minecraft:item_model": "minecraft:shulker_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.shulker_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/silence_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..9047e0ad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/silence_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:silence_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.silence_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/silverfish_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/silverfish_spawn_egg.json new file mode 100644 index 00000000..8eb1d9df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/silverfish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:silverfish" + }, + "minecraft:item_model": "minecraft:silverfish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.silverfish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/skeleton_horse_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/skeleton_horse_spawn_egg.json new file mode 100644 index 00000000..c7e269ca --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/skeleton_horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:skeleton_horse" + }, + "minecraft:item_model": "minecraft:skeleton_horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.skeleton_horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/skeleton_skull.json b/data/generated/V26_1/reports/minecraft/components/item/skeleton_skull.json new file mode 100644 index 00000000..50b8e7db --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/skeleton_skull.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:skeleton_skull", + "minecraft:item_name": { + "translate": "block.minecraft.skeleton_skull" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/skeleton_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/skeleton_spawn_egg.json new file mode 100644 index 00000000..11a7d3ef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/skeleton_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:skeleton" + }, + "minecraft:item_model": "minecraft:skeleton_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.skeleton_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/skull_banner_pattern.json b/data/generated/V26_1/reports/minecraft/components/item/skull_banner_pattern.json new file mode 100644 index 00000000..2a812c5b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/skull_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:skull_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.skull_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/skull", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/skull_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/skull_pottery_sherd.json new file mode 100644 index 00000000..1957e9c8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/skull_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:skull_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.skull_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/slime_ball.json b/data/generated/V26_1/reports/minecraft/components/item/slime_ball.json new file mode 100644 index 00000000..9c893e45 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/slime_ball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:slime_ball", + "minecraft:item_name": { + "translate": "item.minecraft.slime_ball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/slime_block.json b/data/generated/V26_1/reports/minecraft/components/item/slime_block.json new file mode 100644 index 00000000..96f29229 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/slime_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:slime_block", + "minecraft:item_name": { + "translate": "block.minecraft.slime_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/slime_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/slime_spawn_egg.json new file mode 100644 index 00000000..cf1efe06 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/slime_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:slime" + }, + "minecraft:item_model": "minecraft:slime_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.slime_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/small_amethyst_bud.json b/data/generated/V26_1/reports/minecraft/components/item/small_amethyst_bud.json new file mode 100644 index 00000000..fcf80016 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/small_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:small_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.small_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/small_dripleaf.json b/data/generated/V26_1/reports/minecraft/components/item/small_dripleaf.json new file mode 100644 index 00000000..3abc67df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/small_dripleaf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:small_dripleaf", + "minecraft:item_name": { + "translate": "block.minecraft.small_dripleaf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smithing_table.json b/data/generated/V26_1/reports/minecraft/components/item/smithing_table.json new file mode 100644 index 00000000..ebe918d2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smithing_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smithing_table", + "minecraft:item_name": { + "translate": "block.minecraft.smithing_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smoker.json b/data/generated/V26_1/reports/minecraft/components/item/smoker.json new file mode 100644 index 00000000..8c2e9a30 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smoker.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smoker", + "minecraft:item_name": { + "translate": "block.minecraft.smoker" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_basalt.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_basalt.json new file mode 100644 index 00000000..46f10733 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_basalt", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz.json new file mode 100644 index 00000000..74026fbf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_slab.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_slab.json new file mode 100644 index 00000000..47ad1b1c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_stairs.json new file mode 100644 index 00000000..0c9783eb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_quartz_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone.json new file mode 100644 index 00000000..b0ab11f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..5a9af93b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..6ed25687 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_red_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone.json new file mode 100644 index 00000000..757ba014 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_slab.json new file mode 100644 index 00000000..3f7ee846 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_stairs.json new file mode 100644 index 00000000..3bc35760 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_stone.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_stone.json new file mode 100644 index 00000000..371ce094 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_stone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/smooth_stone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/smooth_stone_slab.json new file mode 100644 index 00000000..2388dbbf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/smooth_stone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_stone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_stone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sniffer_egg.json b/data/generated/V26_1/reports/minecraft/components/item/sniffer_egg.json new file mode 100644 index 00000000..71696578 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sniffer_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sniffer_egg", + "minecraft:item_name": { + "translate": "block.minecraft.sniffer_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sniffer_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/sniffer_spawn_egg.json new file mode 100644 index 00000000..9fc6cb85 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sniffer_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:sniffer" + }, + "minecraft:item_model": "minecraft:sniffer_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.sniffer_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snort_pottery_sherd.json b/data/generated/V26_1/reports/minecraft/components/item/snort_pottery_sherd.json new file mode 100644 index 00000000..1d3fba28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snort_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snort_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.snort_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snout_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..a57c1fa2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snout_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snout_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.snout_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snow.json b/data/generated/V26_1/reports/minecraft/components/item/snow.json new file mode 100644 index 00000000..1f53de19 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snow", + "minecraft:item_name": { + "translate": "block.minecraft.snow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snow_block.json b/data/generated/V26_1/reports/minecraft/components/item/snow_block.json new file mode 100644 index 00000000..b7de1f5f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snow_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snow_block", + "minecraft:item_name": { + "translate": "block.minecraft.snow_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snow_golem_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/snow_golem_spawn_egg.json new file mode 100644 index 00000000..5979e785 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snow_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:snow_golem" + }, + "minecraft:item_model": "minecraft:snow_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.snow_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/snowball.json b/data/generated/V26_1/reports/minecraft/components/item/snowball.json new file mode 100644 index 00000000..96fdbfcf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/snowball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snowball", + "minecraft:item_name": { + "translate": "item.minecraft.snowball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/soul_campfire.json b/data/generated/V26_1/reports/minecraft/components/item/soul_campfire.json new file mode 100644 index 00000000..fedd5adc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/soul_campfire.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_campfire", + "minecraft:item_name": { + "translate": "block.minecraft.soul_campfire" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/soul_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/soul_lantern.json new file mode 100644 index 00000000..5dd570c6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/soul_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.soul_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/soul_sand.json b/data/generated/V26_1/reports/minecraft/components/item/soul_sand.json new file mode 100644 index 00000000..4bbb2f83 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/soul_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_sand", + "minecraft:item_name": { + "translate": "block.minecraft.soul_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/soul_soil.json b/data/generated/V26_1/reports/minecraft/components/item/soul_soil.json new file mode 100644 index 00000000..7ef71646 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/soul_soil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_soil", + "minecraft:item_name": { + "translate": "block.minecraft.soul_soil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/soul_torch.json b/data/generated/V26_1/reports/minecraft/components/item/soul_torch.json new file mode 100644 index 00000000..82bd309f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/soul_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_torch", + "minecraft:item_name": { + "translate": "block.minecraft.soul_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spawner.json b/data/generated/V26_1/reports/minecraft/components/item/spawner.json new file mode 100644 index 00000000..74781bf0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spawner.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spawner", + "minecraft:item_name": { + "translate": "block.minecraft.spawner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spectral_arrow.json b/data/generated/V26_1/reports/minecraft/components/item/spectral_arrow.json new file mode 100644 index 00000000..0251174c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spectral_arrow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spectral_arrow", + "minecraft:item_name": { + "translate": "item.minecraft.spectral_arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spider_eye.json b/data/generated/V26_1/reports/minecraft/components/item/spider_eye.json new file mode 100644 index 00000000..2e117332 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spider_eye.json @@ -0,0 +1,36 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 100, + "id": "minecraft:poison", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 3.2 + }, + "minecraft:item_model": "minecraft:spider_eye", + "minecraft:item_name": { + "translate": "item.minecraft.spider_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spider_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/spider_spawn_egg.json new file mode 100644 index 00000000..cc90af1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:spider" + }, + "minecraft:item_model": "minecraft:spider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.spider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spire_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..9018b8fa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spire_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spire_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.spire_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/splash_potion.json b/data/generated/V26_1/reports/minecraft/components/item/splash_potion.json new file mode 100644 index 00000000..b9528b51 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/splash_potion.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:splash_potion", + "minecraft:item_name": { + "translate": "item.minecraft.splash_potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sponge.json b/data/generated/V26_1/reports/minecraft/components/item/sponge.json new file mode 100644 index 00000000..1009b9f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sponge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sponge", + "minecraft:item_name": { + "translate": "block.minecraft.sponge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spore_blossom.json b/data/generated/V26_1/reports/minecraft/components/item/spore_blossom.json new file mode 100644 index 00000000..2d18aa41 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spore_blossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spore_blossom", + "minecraft:item_name": { + "translate": "block.minecraft.spore_blossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_boat.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_boat.json new file mode 100644 index 00000000..cf1669ad --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_boat", + "minecraft:item_name": { + "translate": "item.minecraft.spruce_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_button.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_button.json new file mode 100644 index 00000000..c4b4e622 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_button", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_chest_boat.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_chest_boat.json new file mode 100644 index 00000000..880d874e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.spruce_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_door.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_door.json new file mode 100644 index 00000000..8c83cd53 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_door", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_fence.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_fence.json new file mode 100644 index 00000000..15e1593f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_fence", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_fence_gate.json new file mode 100644 index 00000000..4485bad7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_hanging_sign.json new file mode 100644 index 00000000..60f20cfb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_leaves.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_leaves.json new file mode 100644 index 00000000..382c5844 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_log.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_log.json new file mode 100644 index 00000000..9af0bd2d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_log", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_planks.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_planks.json new file mode 100644 index 00000000..d6744ea8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_planks", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_pressure_plate.json new file mode 100644 index 00000000..fd95166c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_sapling.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_sapling.json new file mode 100644 index 00000000..eb49765a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_shelf.json new file mode 100644 index 00000000..39a04545 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_sign.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_sign.json new file mode 100644 index 00000000..1e6aac59 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_sign", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_slab.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_slab.json new file mode 100644 index 00000000..8b75808c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_slab", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_stairs.json new file mode 100644 index 00000000..f4ec8369 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_trapdoor.json new file mode 100644 index 00000000..852ef641 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spruce_wood.json b/data/generated/V26_1/reports/minecraft/components/item/spruce_wood.json new file mode 100644 index 00000000..945acd06 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spruce_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_wood", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/spyglass.json b/data/generated/V26_1/reports/minecraft/components/item/spyglass.json new file mode 100644 index 00000000..18b92192 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/spyglass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spyglass", + "minecraft:item_name": { + "translate": "item.minecraft.spyglass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/squid_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/squid_spawn_egg.json new file mode 100644 index 00000000..eb5d1672 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/squid_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:squid" + }, + "minecraft:item_model": "minecraft:squid_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.squid_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stick.json b/data/generated/V26_1/reports/minecraft/components/item/stick.json new file mode 100644 index 00000000..196abd93 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stick", + "minecraft:item_name": { + "translate": "item.minecraft.stick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sticky_piston.json b/data/generated/V26_1/reports/minecraft/components/item/sticky_piston.json new file mode 100644 index 00000000..d0a11c56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sticky_piston.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sticky_piston", + "minecraft:item_name": { + "translate": "block.minecraft.sticky_piston" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone.json b/data/generated/V26_1/reports/minecraft/components/item/stone.json new file mode 100644 index 00000000..8b794c94 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone", + "minecraft:item_name": { + "translate": "block.minecraft.stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_axe.json b/data/generated/V26_1/reports/minecraft/components/item/stone_axe.json new file mode 100644 index 00000000..f86ac09b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_axe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_slab.json new file mode 100644 index 00000000..e26de358 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_stairs.json new file mode 100644 index 00000000..06d5c404 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_wall.json new file mode 100644 index 00000000..e6c411df --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/stone_bricks.json new file mode 100644 index 00000000..7b464cba --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_button.json b/data/generated/V26_1/reports/minecraft/components/item/stone_button.json new file mode 100644 index 00000000..bc0c8b00 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_button", + "minecraft:item_name": { + "translate": "block.minecraft.stone_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/stone_hoe.json new file mode 100644 index 00000000..78721576 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/stone_pickaxe.json new file mode 100644 index 00000000..4c82c05f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/stone_pressure_plate.json new file mode 100644 index 00000000..bfc3d754 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.stone_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/stone_shovel.json new file mode 100644 index 00000000..b0e0e3aa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.stone_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_slab.json b/data/generated/V26_1/reports/minecraft/components/item/stone_slab.json new file mode 100644 index 00000000..ceedf5f5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.stone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_spear.json b/data/generated/V26_1/reports/minecraft/components/item/stone_spear.json new file mode 100644 index 00000000..6032ec2b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.666666626930237, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_spear", + "minecraft:item_name": { + "translate": "item.minecraft.stone_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 275, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.82, + "delay_ticks": 14, + "dismount_conditions": { + "max_duration_ticks": 90, + "min_speed": 13.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 180, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 15 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/stone_stairs.json new file mode 100644 index 00000000..7a90b8d9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.stone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stone_sword.json b/data/generated/V26_1/reports/minecraft/components/item/stone_sword.json new file mode 100644 index 00000000..4adda79f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stone_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_sword", + "minecraft:item_name": { + "translate": "item.minecraft.stone_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stonecutter.json b/data/generated/V26_1/reports/minecraft/components/item/stonecutter.json new file mode 100644 index 00000000..14ff1d11 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stonecutter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stonecutter", + "minecraft:item_name": { + "translate": "block.minecraft.stonecutter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stray_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/stray_spawn_egg.json new file mode 100644 index 00000000..be54c269 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stray_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:stray" + }, + "minecraft:item_model": "minecraft:stray_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.stray_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/strider_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/strider_spawn_egg.json new file mode 100644 index 00000000..26f3e726 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/strider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:strider" + }, + "minecraft:item_model": "minecraft:strider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.strider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/string.json b/data/generated/V26_1/reports/minecraft/components/item/string.json new file mode 100644 index 00000000..a7b36889 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/string.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:string", + "minecraft:item_name": { + "translate": "item.minecraft.string" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_log.json new file mode 100644 index 00000000..eeaff3ba --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_acacia_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_acacia_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_wood.json new file mode 100644 index 00000000..d719c162 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_acacia_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_acacia_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_acacia_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_bamboo_block.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_bamboo_block.json new file mode 100644 index 00000000..98a4b5ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_bamboo_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_bamboo_block", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_bamboo_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_log.json new file mode 100644 index 00000000..7fb2df1a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_birch_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_birch_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_wood.json new file mode 100644 index 00000000..b6e49c28 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_birch_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_birch_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_birch_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_log.json new file mode 100644 index 00000000..a4282c4b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_cherry_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_cherry_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_wood.json new file mode 100644 index 00000000..76dac2ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_cherry_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_cherry_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_cherry_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_hyphae.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_hyphae.json new file mode 100644 index 00000000..24b9cceb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_crimson_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_crimson_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_stem.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_stem.json new file mode 100644 index 00000000..28d7d930 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_crimson_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_crimson_stem", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_crimson_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_log.json new file mode 100644 index 00000000..965a6173 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_dark_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_dark_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_wood.json new file mode 100644 index 00000000..85dff1de --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_dark_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_dark_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_dark_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_log.json new file mode 100644 index 00000000..73a217b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_jungle_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_jungle_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_wood.json new file mode 100644 index 00000000..5b46b0e4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_jungle_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_jungle_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_jungle_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_log.json new file mode 100644 index 00000000..2943cdd4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_mangrove_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_mangrove_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_wood.json new file mode 100644 index 00000000..0fd28819 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_mangrove_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_mangrove_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_mangrove_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_log.json new file mode 100644 index 00000000..6b0b6589 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_wood.json new file mode 100644 index 00000000..3f791478 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_log.json new file mode 100644 index 00000000..504f9beb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_pale_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_pale_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_wood.json new file mode 100644 index 00000000..b44de71b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_pale_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_pale_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_pale_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_log.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_log.json new file mode 100644 index 00000000..49c37344 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_spruce_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_spruce_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_wood.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_wood.json new file mode 100644 index 00000000..b2e861f4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_spruce_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_spruce_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_spruce_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_hyphae.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_hyphae.json new file mode 100644 index 00000000..a2ad5309 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_warped_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_warped_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_stem.json b/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_stem.json new file mode 100644 index 00000000..d2dc3964 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/stripped_warped_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_warped_stem", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_warped_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/structure_block.json b/data/generated/V26_1/reports/minecraft/components/item/structure_block.json new file mode 100644 index 00000000..817de00e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/structure_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:structure_block", + "minecraft:item_name": { + "translate": "block.minecraft.structure_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/structure_void.json b/data/generated/V26_1/reports/minecraft/components/item/structure_void.json new file mode 100644 index 00000000..381df4ff --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/structure_void.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:structure_void", + "minecraft:item_name": { + "translate": "block.minecraft.structure_void" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sugar.json b/data/generated/V26_1/reports/minecraft/components/item/sugar.json new file mode 100644 index 00000000..b3e0226e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sugar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sugar", + "minecraft:item_name": { + "translate": "item.minecraft.sugar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sugar_cane.json b/data/generated/V26_1/reports/minecraft/components/item/sugar_cane.json new file mode 100644 index 00000000..d1b3906a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sugar_cane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sugar_cane", + "minecraft:item_name": { + "translate": "block.minecraft.sugar_cane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sunflower.json b/data/generated/V26_1/reports/minecraft/components/item/sunflower.json new file mode 100644 index 00000000..f58ceeb9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sunflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sunflower", + "minecraft:item_name": { + "translate": "block.minecraft.sunflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/suspicious_gravel.json b/data/generated/V26_1/reports/minecraft/components/item/suspicious_gravel.json new file mode 100644 index 00000000..4d668a90 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/suspicious_gravel.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:suspicious_gravel", + "minecraft:item_name": { + "translate": "block.minecraft.suspicious_gravel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/suspicious_sand.json b/data/generated/V26_1/reports/minecraft/components/item/suspicious_sand.json new file mode 100644 index 00000000..8ecdbeae --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/suspicious_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:suspicious_sand", + "minecraft:item_name": { + "translate": "block.minecraft.suspicious_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/suspicious_stew.json b/data/generated/V26_1/reports/minecraft/components/item/suspicious_stew.json new file mode 100644 index 00000000..4cae9f96 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/suspicious_stew.json @@ -0,0 +1,28 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:suspicious_stew", + "minecraft:item_name": { + "translate": "item.minecraft.suspicious_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:suspicious_stew_effects": [], + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/sweet_berries.json b/data/generated/V26_1/reports/minecraft/components/item/sweet_berries.json new file mode 100644 index 00000000..b7a1800a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/sweet_berries.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:sweet_berries", + "minecraft:item_name": { + "translate": "item.minecraft.sweet_berries" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tadpole_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/tadpole_bucket.json new file mode 100644 index 00000000..b1f336cb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tadpole_bucket.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tadpole_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.tadpole_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tadpole_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/tadpole_spawn_egg.json new file mode 100644 index 00000000..3cd21d89 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tadpole_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:tadpole" + }, + "minecraft:item_model": "minecraft:tadpole_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.tadpole_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tall_dry_grass.json b/data/generated/V26_1/reports/minecraft/components/item/tall_dry_grass.json new file mode 100644 index 00000000..ed293bc2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tall_dry_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tall_dry_grass", + "minecraft:item_name": { + "translate": "block.minecraft.tall_dry_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tall_grass.json b/data/generated/V26_1/reports/minecraft/components/item/tall_grass.json new file mode 100644 index 00000000..382988bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tall_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tall_grass", + "minecraft:item_name": { + "translate": "block.minecraft.tall_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/target.json b/data/generated/V26_1/reports/minecraft/components/item/target.json new file mode 100644 index 00000000..829341eb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/target.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:target", + "minecraft:item_name": { + "translate": "block.minecraft.target" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/terracotta.json new file mode 100644 index 00000000..003d55a2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/test_block.json b/data/generated/V26_1/reports/minecraft/components/item/test_block.json new file mode 100644 index 00000000..7cff21fc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/test_block.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "mode": "start" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:test_block", + "minecraft:item_name": { + "translate": "block.minecraft.test_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/test_instance_block.json b/data/generated/V26_1/reports/minecraft/components/item/test_instance_block.json new file mode 100644 index 00000000..10d84031 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/test_instance_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:test_instance_block", + "minecraft:item_name": { + "translate": "block.minecraft.test_instance_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tide_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..ae74a004 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tide_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tide_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.tide_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tinted_glass.json b/data/generated/V26_1/reports/minecraft/components/item/tinted_glass.json new file mode 100644 index 00000000..671b6fe2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tinted_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tinted_glass", + "minecraft:item_name": { + "translate": "block.minecraft.tinted_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tipped_arrow.json b/data/generated/V26_1/reports/minecraft/components/item/tipped_arrow.json new file mode 100644 index 00000000..2d95fdb3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tipped_arrow.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tipped_arrow", + "minecraft:item_name": { + "translate": "item.minecraft.tipped_arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:potion_contents": {}, + "minecraft:potion_duration_scale": 0.125, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tnt.json b/data/generated/V26_1/reports/minecraft/components/item/tnt.json new file mode 100644 index 00000000..938890db --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tnt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tnt", + "minecraft:item_name": { + "translate": "block.minecraft.tnt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tnt_minecart.json b/data/generated/V26_1/reports/minecraft/components/item/tnt_minecart.json new file mode 100644 index 00000000..7b93de74 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tnt_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tnt_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.tnt_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/torch.json b/data/generated/V26_1/reports/minecraft/components/item/torch.json new file mode 100644 index 00000000..e53ec446 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torch", + "minecraft:item_name": { + "translate": "block.minecraft.torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/torchflower.json b/data/generated/V26_1/reports/minecraft/components/item/torchflower.json new file mode 100644 index 00000000..6ec7f672 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/torchflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torchflower", + "minecraft:item_name": { + "translate": "block.minecraft.torchflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/torchflower_seeds.json b/data/generated/V26_1/reports/minecraft/components/item/torchflower_seeds.json new file mode 100644 index 00000000..bf24274e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/torchflower_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torchflower_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.torchflower_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/totem_of_undying.json b/data/generated/V26_1/reports/minecraft/components/item/totem_of_undying.json new file mode 100644 index 00000000..07c9b573 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/totem_of_undying.json @@ -0,0 +1,47 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:death_protection": { + "death_effects": [ + { + "type": "minecraft:clear_all_effects" + }, + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 900, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "amplifier": 1, + "duration": 100, + "id": "minecraft:absorption", + "show_icon": true + }, + { + "duration": 800, + "id": "minecraft:fire_resistance", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:totem_of_undying", + "minecraft:item_name": { + "translate": "item.minecraft.totem_of_undying" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/trader_llama_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/trader_llama_spawn_egg.json new file mode 100644 index 00000000..28e99a49 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/trader_llama_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:trader_llama" + }, + "minecraft:item_model": "minecraft:trader_llama_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.trader_llama_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/trapped_chest.json b/data/generated/V26_1/reports/minecraft/components/item/trapped_chest.json new file mode 100644 index 00000000..609f6cdf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/trapped_chest.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trapped_chest", + "minecraft:item_name": { + "translate": "block.minecraft.trapped_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/trial_key.json b/data/generated/V26_1/reports/minecraft/components/item/trial_key.json new file mode 100644 index 00000000..d23a04f0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/trial_key.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trial_key", + "minecraft:item_name": { + "translate": "item.minecraft.trial_key" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/trial_spawner.json b/data/generated/V26_1/reports/minecraft/components/item/trial_spawner.json new file mode 100644 index 00000000..2c147440 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/trial_spawner.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trial_spawner", + "minecraft:item_name": { + "translate": "block.minecraft.trial_spawner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/trident.json b/data/generated/V26_1/reports/minecraft/components/item/trident.json new file mode 100644 index 00000000..2941dac1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/trident.json @@ -0,0 +1,44 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trident", + "minecraft:item_name": { + "translate": "item.minecraft.trident" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tripwire_hook.json b/data/generated/V26_1/reports/minecraft/components/item/tripwire_hook.json new file mode 100644 index 00000000..d6354a1a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tripwire_hook.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tripwire_hook", + "minecraft:item_name": { + "translate": "block.minecraft.tripwire_hook" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tropical_fish.json b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish.json new file mode 100644 index 00000000..28b14eb5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:tropical_fish", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_bucket.json new file mode 100644 index 00000000..6daaf253 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:tropical_fish_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_spawn_egg.json new file mode 100644 index 00000000..44b92c56 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tropical_fish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:tropical_fish" + }, + "minecraft:item_model": "minecraft:tropical_fish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tube_coral.json b/data/generated/V26_1/reports/minecraft/components/item/tube_coral.json new file mode 100644 index 00000000..4736f1bf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tube_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tube_coral_block.json b/data/generated/V26_1/reports/minecraft/components/item/tube_coral_block.json new file mode 100644 index 00000000..43cbbfdb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tube_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tube_coral_fan.json b/data/generated/V26_1/reports/minecraft/components/item/tube_coral_fan.json new file mode 100644 index 00000000..931fff06 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tube_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff.json b/data/generated/V26_1/reports/minecraft/components/item/tuff.json new file mode 100644 index 00000000..719ce6e3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff", + "minecraft:item_name": { + "translate": "block.minecraft.tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_slab.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_slab.json new file mode 100644 index 00000000..fe4ffff9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_stairs.json new file mode 100644 index 00000000..364cf529 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_wall.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_wall.json new file mode 100644 index 00000000..a52e22a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_bricks.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_bricks.json new file mode 100644 index 00000000..2dee7cd5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_slab.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_slab.json new file mode 100644 index 00000000..19cfac4d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_slab", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_stairs.json new file mode 100644 index 00000000..a676f29f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/tuff_wall.json b/data/generated/V26_1/reports/minecraft/components/item/tuff_wall.json new file mode 100644 index 00000000..55bb156b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/tuff_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_wall", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/turtle_egg.json b/data/generated/V26_1/reports/minecraft/components/item/turtle_egg.json new file mode 100644 index 00000000..b13de47c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/turtle_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:turtle_egg", + "minecraft:item_name": { + "translate": "block.minecraft.turtle_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/turtle_helmet.json b/data/generated/V26_1/reports/minecraft/components/item/turtle_helmet.json new file mode 100644 index 00000000..75dec9bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/turtle_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:turtle_scute", + "equip_sound": "minecraft:item.armor.equip_turtle", + "slot": "head" + }, + "minecraft:item_model": "minecraft:turtle_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 275, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_turtle_helmet" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/turtle_scute.json b/data/generated/V26_1/reports/minecraft/components/item/turtle_scute.json new file mode 100644 index 00000000..ca1f92a8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/turtle_scute.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:turtle_scute", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_scute" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/turtle_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/turtle_spawn_egg.json new file mode 100644 index 00000000..11e22bec --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/turtle_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:turtle" + }, + "minecraft:item_model": "minecraft:turtle_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/twisting_vines.json b/data/generated/V26_1/reports/minecraft/components/item/twisting_vines.json new file mode 100644 index 00000000..c3abf742 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/twisting_vines.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:twisting_vines", + "minecraft:item_name": { + "translate": "block.minecraft.twisting_vines" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/vault.json b/data/generated/V26_1/reports/minecraft/components/item/vault.json new file mode 100644 index 00000000..6a2ff0ef --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/vault.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vault", + "minecraft:item_name": { + "translate": "block.minecraft.vault" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/verdant_froglight.json b/data/generated/V26_1/reports/minecraft/components/item/verdant_froglight.json new file mode 100644 index 00000000..1b1adce8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/verdant_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:verdant_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.verdant_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/vex_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..7109927d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/vex_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vex_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.vex_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/vex_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/vex_spawn_egg.json new file mode 100644 index 00000000..81bd4876 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/vex_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:vex" + }, + "minecraft:item_model": "minecraft:vex_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.vex_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/villager_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/villager_spawn_egg.json new file mode 100644 index 00000000..b9f0f02c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/villager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:villager" + }, + "minecraft:item_model": "minecraft:villager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.villager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/vindicator_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/vindicator_spawn_egg.json new file mode 100644 index 00000000..17607888 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/vindicator_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:vindicator" + }, + "minecraft:item_model": "minecraft:vindicator_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.vindicator_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/vine.json b/data/generated/V26_1/reports/minecraft/components/item/vine.json new file mode 100644 index 00000000..26e42e75 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/vine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vine", + "minecraft:item_name": { + "translate": "block.minecraft.vine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wandering_trader_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/wandering_trader_spawn_egg.json new file mode 100644 index 00000000..70956307 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wandering_trader_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wandering_trader" + }, + "minecraft:item_model": "minecraft:wandering_trader_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wandering_trader_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/ward_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..6b561f4c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/ward_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ward_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.ward_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warden_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/warden_spawn_egg.json new file mode 100644 index 00000000..30c93d78 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warden_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:warden" + }, + "minecraft:item_model": "minecraft:warden_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.warden_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_button.json b/data/generated/V26_1/reports/minecraft/components/item/warped_button.json new file mode 100644 index 00000000..c451efd5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_button", + "minecraft:item_name": { + "translate": "block.minecraft.warped_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_door.json b/data/generated/V26_1/reports/minecraft/components/item/warped_door.json new file mode 100644 index 00000000..3aee0769 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_door", + "minecraft:item_name": { + "translate": "block.minecraft.warped_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_fence.json b/data/generated/V26_1/reports/minecraft/components/item/warped_fence.json new file mode 100644 index 00000000..e9b67a20 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fence", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_fence_gate.json b/data/generated/V26_1/reports/minecraft/components/item/warped_fence_gate.json new file mode 100644 index 00000000..87ac78d0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_fungus.json b/data/generated/V26_1/reports/minecraft/components/item/warped_fungus.json new file mode 100644 index 00000000..36c69b3c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_fungus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fungus", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fungus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_fungus_on_a_stick.json b/data/generated/V26_1/reports/minecraft/components/item/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..0bbe01dc --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_fungus_on_a_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fungus_on_a_stick", + "minecraft:item_name": { + "translate": "item.minecraft.warped_fungus_on_a_stick" + }, + "minecraft:lore": [], + "minecraft:max_damage": 100, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_hanging_sign.json b/data/generated/V26_1/reports/minecraft/components/item/warped_hanging_sign.json new file mode 100644 index 00000000..bc535199 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.warped_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_hyphae.json b/data/generated/V26_1/reports/minecraft/components/item/warped_hyphae.json new file mode 100644 index 00000000..1a493dd9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.warped_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_nylium.json b/data/generated/V26_1/reports/minecraft/components/item/warped_nylium.json new file mode 100644 index 00000000..12c3a196 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_nylium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_nylium", + "minecraft:item_name": { + "translate": "block.minecraft.warped_nylium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_planks.json b/data/generated/V26_1/reports/minecraft/components/item/warped_planks.json new file mode 100644 index 00000000..19de01f3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_planks", + "minecraft:item_name": { + "translate": "block.minecraft.warped_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_pressure_plate.json b/data/generated/V26_1/reports/minecraft/components/item/warped_pressure_plate.json new file mode 100644 index 00000000..f9ad8260 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.warped_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_roots.json b/data/generated/V26_1/reports/minecraft/components/item/warped_roots.json new file mode 100644 index 00000000..3d10eff5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_roots", + "minecraft:item_name": { + "translate": "block.minecraft.warped_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_shelf.json b/data/generated/V26_1/reports/minecraft/components/item/warped_shelf.json new file mode 100644 index 00000000..f0813692 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.warped_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_sign.json b/data/generated/V26_1/reports/minecraft/components/item/warped_sign.json new file mode 100644 index 00000000..f51fda08 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_sign", + "minecraft:item_name": { + "translate": "block.minecraft.warped_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_slab.json b/data/generated/V26_1/reports/minecraft/components/item/warped_slab.json new file mode 100644 index 00000000..59bda21e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_slab", + "minecraft:item_name": { + "translate": "block.minecraft.warped_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/warped_stairs.json new file mode 100644 index 00000000..8aab2dc4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.warped_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_stem.json b/data/generated/V26_1/reports/minecraft/components/item/warped_stem.json new file mode 100644 index 00000000..1df36ec9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_stem", + "minecraft:item_name": { + "translate": "block.minecraft.warped_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/warped_trapdoor.json new file mode 100644 index 00000000..49112b3a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.warped_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/warped_wart_block.json b/data/generated/V26_1/reports/minecraft/components/item/warped_wart_block.json new file mode 100644 index 00000000..55ab055e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/warped_wart_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_wart_block", + "minecraft:item_name": { + "translate": "block.minecraft.warped_wart_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/water_bucket.json b/data/generated/V26_1/reports/minecraft/components/item/water_bucket.json new file mode 100644 index 00000000..f3573fcd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/water_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:water_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.water_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_chiseled_copper.json new file mode 100644 index 00000000..3103ec75 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bars.json new file mode 100644 index 00000000..5ee40b1b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_block.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_block.json new file mode 100644 index 00000000..b2df6a57 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bulb.json new file mode 100644 index 00000000..7745f749 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chain.json new file mode 100644 index 00000000..5360547e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chest.json new file mode 100644 index 00000000..dee2d69b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_door.json new file mode 100644 index 00000000..c6159074 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_golem_statue.json new file mode 100644 index 00000000..1e188ca4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_grate.json new file mode 100644 index 00000000..b29e52fb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_lantern.json new file mode 100644 index 00000000..7344fe0f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_trapdoor.json new file mode 100644 index 00000000..d747ea6c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper.json new file mode 100644 index 00000000..d83177bf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_slab.json new file mode 100644 index 00000000..5fc34d1d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..1fb59423 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..8f917157 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper.json new file mode 100644 index 00000000..d35e6bda --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bars.json new file mode 100644 index 00000000..b07a71e1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..1f9e1ee9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chain.json new file mode 100644 index 00000000..1012aa0d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chest.json new file mode 100644 index 00000000..70a06554 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_door.json new file mode 100644 index 00000000..6f4b3c02 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json new file mode 100644 index 00000000..57d6fcfe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..cdc765ce --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_lantern.json new file mode 100644 index 00000000..6b4290bf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json new file mode 100644 index 00000000..38cab761 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..da78b0b3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..3a8bf686 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..f407d9de --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_lightning_rod.json new file mode 100644 index 00000000..7596723c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_exposed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_lightning_rod.json new file mode 100644 index 00000000..eb6600e1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..bd60b464 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper.json new file mode 100644 index 00000000..71806faf --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bars.json new file mode 100644 index 00000000..1b65a6e5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..db5539f6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chain.json new file mode 100644 index 00000000..35e47c76 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chest.json new file mode 100644 index 00000000..9f129562 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_door.json new file mode 100644 index 00000000..aac59694 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json new file mode 100644 index 00000000..e2155524 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..ffa387b8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json new file mode 100644 index 00000000..f3672435 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 00000000..b895c32c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..26de6413 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..4d29695b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..ace67e73 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json new file mode 100644 index 00000000..27729986 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..fe32fd0b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper.json new file mode 100644 index 00000000..3c793c35 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bars.json new file mode 100644 index 00000000..fbee59e9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..de239e12 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chain.json new file mode 100644 index 00000000..bd8dc000 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chest.json new file mode 100644 index 00000000..fa5a03e8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_door.json new file mode 100644 index 00000000..aa94a896 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json new file mode 100644 index 00000000..3fcdcc18 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..3e53f687 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_lantern.json new file mode 100644 index 00000000..e21583c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json new file mode 100644 index 00000000..b07b9273 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..ff417616 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..cd4653e3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..d6d23a64 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_lightning_rod.json new file mode 100644 index 00000000..ea746cf8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/waxed_weathered_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..3d973d67 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wayfinder_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.wayfinder_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_chiseled_copper.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_chiseled_copper.json new file mode 100644 index 00000000..8d50d93e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper.json new file mode 100644 index 00000000..121c2a8b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bars.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bars.json new file mode 100644 index 00000000..457b7512 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bulb.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bulb.json new file mode 100644 index 00000000..80bc3e9e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chain.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chain.json new file mode 100644 index 00000000..f926200a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chest.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chest.json new file mode 100644 index 00000000..b25544d5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_door.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_door.json new file mode 100644 index 00000000..67f3cad3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_golem_statue.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_golem_statue.json new file mode 100644 index 00000000..1274d45a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_grate.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_grate.json new file mode 100644 index 00000000..15220026 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_lantern.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_lantern.json new file mode 100644 index 00000000..40763818 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_trapdoor.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_trapdoor.json new file mode 100644 index 00000000..8a1df03d --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper.json new file mode 100644 index 00000000..0ce97327 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_slab.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_slab.json new file mode 100644 index 00000000..dc11ce7e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_stairs.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..23cf3fe2 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weathered_lightning_rod.json b/data/generated/V26_1/reports/minecraft/components/item/weathered_lightning_rod.json new file mode 100644 index 00000000..d100c31c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weathered_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/weeping_vines.json b/data/generated/V26_1/reports/minecraft/components/item/weeping_vines.json new file mode 100644 index 00000000..5f31b1fe --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/weeping_vines.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weeping_vines", + "minecraft:item_name": { + "translate": "block.minecraft.weeping_vines" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wet_sponge.json b/data/generated/V26_1/reports/minecraft/components/item/wet_sponge.json new file mode 100644 index 00000000..05afd657 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wet_sponge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wet_sponge", + "minecraft:item_name": { + "translate": "block.minecraft.wet_sponge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wheat.json b/data/generated/V26_1/reports/minecraft/components/item/wheat.json new file mode 100644 index 00000000..6423951c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wheat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wheat", + "minecraft:item_name": { + "translate": "item.minecraft.wheat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wheat_seeds.json b/data/generated/V26_1/reports/minecraft/components/item/wheat_seeds.json new file mode 100644 index 00000000..bf5193c0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wheat_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wheat_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.wheat_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_banner.json b/data/generated/V26_1/reports/minecraft/components/item/white_banner.json new file mode 100644 index 00000000..6f2c34cb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_banner", + "minecraft:item_name": { + "translate": "block.minecraft.white_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_bed.json b/data/generated/V26_1/reports/minecraft/components/item/white_bed.json new file mode 100644 index 00000000..8d185788 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_bed", + "minecraft:item_name": { + "translate": "block.minecraft.white_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/white_bundle.json new file mode 100644 index 00000000..3b31a60b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.white_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_candle.json b/data/generated/V26_1/reports/minecraft/components/item/white_candle.json new file mode 100644 index 00000000..a67bd63e --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_candle", + "minecraft:item_name": { + "translate": "block.minecraft.white_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/white_carpet.json new file mode 100644 index 00000000..ef91672f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:white_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:white_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.white_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/white_concrete.json new file mode 100644 index 00000000..5c42ea19 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.white_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/white_concrete_powder.json new file mode 100644 index 00000000..3d9b7e1b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.white_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_dye.json b/data/generated/V26_1/reports/minecraft/components/item/white_dye.json new file mode 100644 index 00000000..a65c04bd --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "white", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_dye", + "minecraft:item_name": { + "translate": "item.minecraft.white_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/white_glazed_terracotta.json new file mode 100644 index 00000000..009679b6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.white_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_harness.json b/data/generated/V26_1/reports/minecraft/components/item/white_harness.json new file mode 100644 index 00000000..4102c727 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:white_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:white_harness", + "minecraft:item_name": { + "translate": "item.minecraft.white_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/white_shulker_box.json new file mode 100644 index 00000000..b1915ce0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.white_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass.json new file mode 100644 index 00000000..bb57cc58 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.white_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass_pane.json new file mode 100644 index 00000000..38f14be5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.white_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/white_terracotta.json new file mode 100644 index 00000000..bf8768c3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.white_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_tulip.json b/data/generated/V26_1/reports/minecraft/components/item/white_tulip.json new file mode 100644 index 00000000..d04cc392 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.white_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/white_wool.json b/data/generated/V26_1/reports/minecraft/components/item/white_wool.json new file mode 100644 index 00000000..232ae08b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/white_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_wool", + "minecraft:item_name": { + "translate": "block.minecraft.white_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wild_armor_trim_smithing_template.json b/data/generated/V26_1/reports/minecraft/components/item/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..be16fa54 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wild_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wild_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.wild_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wildflowers.json b/data/generated/V26_1/reports/minecraft/components/item/wildflowers.json new file mode 100644 index 00000000..ff656eb8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wildflowers.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wildflowers", + "minecraft:item_name": { + "translate": "block.minecraft.wildflowers" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wind_charge.json b/data/generated/V26_1/reports/minecraft/components/item/wind_charge.json new file mode 100644 index 00000000..f7f649a9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wind_charge.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wind_charge", + "minecraft:item_name": { + "translate": "item.minecraft.wind_charge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 0.5 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/witch_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/witch_spawn_egg.json new file mode 100644 index 00000000..5ca1dea1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/witch_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:witch" + }, + "minecraft:item_model": "minecraft:witch_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.witch_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wither_rose.json b/data/generated/V26_1/reports/minecraft/components/item/wither_rose.json new file mode 100644 index 00000000..7b142da3 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wither_rose.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wither_rose", + "minecraft:item_name": { + "translate": "block.minecraft.wither_rose" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_skull.json b/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_skull.json new file mode 100644 index 00000000..1795e7e4 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_skull.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:wither_skeleton_skull", + "minecraft:item_name": { + "translate": "block.minecraft.wither_skeleton_skull" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_spawn_egg.json new file mode 100644 index 00000000..f3e649d6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wither_skeleton_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wither_skeleton" + }, + "minecraft:item_model": "minecraft:wither_skeleton_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wither_skeleton_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wither_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/wither_spawn_egg.json new file mode 100644 index 00000000..d6a3941f --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wither_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wither" + }, + "minecraft:item_model": "minecraft:wither_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wither_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wolf_armor.json b/data/generated/V26_1/reports/minecraft/components/item/wolf_armor.json new file mode 100644 index 00000000..e6b504f9 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wolf_armor.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:item.wolf_armor.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "minecraft:wolf", + "asset_id": "minecraft:armadillo_scute", + "can_be_sheared": true, + "equip_sound": "minecraft:item.armor.equip_wolf", + "shearing_sound": "minecraft:item.armor.unequip_wolf", + "slot": "body" + }, + "minecraft:item_model": "minecraft:wolf_armor", + "minecraft:item_name": { + "translate": "item.minecraft.wolf_armor" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_wolf_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wolf_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/wolf_spawn_egg.json new file mode 100644 index 00000000..b7927550 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wolf_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wolf" + }, + "minecraft:item_model": "minecraft:wolf_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wolf_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_axe.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_axe.json new file mode 100644 index 00000000..46e1df12 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_axe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_hoe.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_hoe.json new file mode 100644 index 00000000..5adfe528 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_pickaxe.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_pickaxe.json new file mode 100644 index 00000000..375c9274 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_shovel.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_shovel.json new file mode 100644 index 00000000..525d88d6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_spear.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_spear.json new file mode 100644 index 00000000..2140089a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4615384340286255, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_spear", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 300, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.7, + "delay_ticks": 15, + "dismount_conditions": { + "max_duration_ticks": 100, + "min_speed": 14.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear_wood.hit", + "knockback_conditions": { + "max_duration_ticks": 200, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear_wood.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear_wood.hit", + "sound": "minecraft:item.spear_wood.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 13 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/wooden_sword.json b/data/generated/V26_1/reports/minecraft/components/item/wooden_sword.json new file mode 100644 index 00000000..358a2409 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/wooden_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_sword", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/writable_book.json b/data/generated/V26_1/reports/minecraft/components/item/writable_book.json new file mode 100644 index 00000000..746859c5 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/writable_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:writable_book", + "minecraft:item_name": { + "translate": "item.minecraft.writable_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:writable_book_content": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/written_book.json b/data/generated/V26_1/reports/minecraft/components/item/written_book.json new file mode 100644 index 00000000..0703d595 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/written_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:written_book", + "minecraft:item_name": { + "translate": "item.minecraft.written_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_banner.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_banner.json new file mode 100644 index 00000000..7a652ac8 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_banner", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_bed.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_bed.json new file mode 100644 index 00000000..74c47634 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_bed", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_bundle.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_bundle.json new file mode 100644 index 00000000..efd210f0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_candle.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_candle.json new file mode 100644 index 00000000..fe7d49d6 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_candle", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_carpet.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_carpet.json new file mode 100644 index 00000000..fd8b46a1 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:yellow_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:yellow_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete.json new file mode 100644 index 00000000..ccfc246a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete_powder.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete_powder.json new file mode 100644 index 00000000..c2fa02ba --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_dye.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_dye.json new file mode 100644 index 00000000..7c5d69a0 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "yellow", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_dye", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_glazed_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_glazed_terracotta.json new file mode 100644 index 00000000..cd4af12c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_harness.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_harness.json new file mode 100644 index 00000000..5ff38f05 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:yellow_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:yellow_harness", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_shulker_box.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_shulker_box.json new file mode 100644 index 00000000..30ab556c --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass.json new file mode 100644 index 00000000..91653535 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass_pane.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass_pane.json new file mode 100644 index 00000000..bcba1fd7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_terracotta.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_terracotta.json new file mode 100644 index 00000000..6fd6826b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/yellow_wool.json b/data/generated/V26_1/reports/minecraft/components/item/yellow_wool.json new file mode 100644 index 00000000..cca1d741 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/yellow_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_wool", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zoglin_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zoglin_spawn_egg.json new file mode 100644 index 00000000..727e5c6a --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zoglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zoglin" + }, + "minecraft:item_model": "minecraft:zoglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zoglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombie_head.json b/data/generated/V26_1/reports/minecraft/components/item/zombie_head.json new file mode 100644 index 00000000..2999ecbb --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombie_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:zombie_head", + "minecraft:item_name": { + "translate": "block.minecraft.zombie_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombie_horse_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zombie_horse_spawn_egg.json new file mode 100644 index 00000000..0a8df68b --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombie_horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_horse" + }, + "minecraft:item_model": "minecraft:zombie_horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json new file mode 100644 index 00000000..063a0338 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_nautilus" + }, + "minecraft:item_model": "minecraft:zombie_nautilus_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_nautilus_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombie_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zombie_spawn_egg.json new file mode 100644 index 00000000..fe2d69b7 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombie_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie" + }, + "minecraft:item_model": "minecraft:zombie_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombie_villager_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zombie_villager_spawn_egg.json new file mode 100644 index 00000000..cdac9caa --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombie_villager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_villager" + }, + "minecraft:item_model": "minecraft:zombie_villager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_villager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/minecraft/components/item/zombified_piglin_spawn_egg.json b/data/generated/V26_1/reports/minecraft/components/item/zombified_piglin_spawn_egg.json new file mode 100644 index 00000000..3e24a338 --- /dev/null +++ b/data/generated/V26_1/reports/minecraft/components/item/zombified_piglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombified_piglin" + }, + "minecraft:item_model": "minecraft:zombified_piglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombified_piglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/packets.json b/data/generated/V26_1/reports/packets.json new file mode 100644 index 00000000..ccae1f6f --- /dev/null +++ b/data/generated/V26_1/reports/packets.json @@ -0,0 +1,798 @@ +{ + "configuration": { + "clientbound": { + "minecraft:clear_dialog": { + "protocol_id": 17 + }, + "minecraft:code_of_conduct": { + "protocol_id": 19 + }, + "minecraft:cookie_request": { + "protocol_id": 0 + }, + "minecraft:custom_payload": { + "protocol_id": 1 + }, + "minecraft:custom_report_details": { + "protocol_id": 15 + }, + "minecraft:disconnect": { + "protocol_id": 2 + }, + "minecraft:finish_configuration": { + "protocol_id": 3 + }, + "minecraft:keep_alive": { + "protocol_id": 4 + }, + "minecraft:ping": { + "protocol_id": 5 + }, + "minecraft:registry_data": { + "protocol_id": 7 + }, + "minecraft:reset_chat": { + "protocol_id": 6 + }, + "minecraft:resource_pack_pop": { + "protocol_id": 8 + }, + "minecraft:resource_pack_push": { + "protocol_id": 9 + }, + "minecraft:select_known_packs": { + "protocol_id": 14 + }, + "minecraft:server_links": { + "protocol_id": 16 + }, + "minecraft:show_dialog": { + "protocol_id": 18 + }, + "minecraft:store_cookie": { + "protocol_id": 10 + }, + "minecraft:transfer": { + "protocol_id": 11 + }, + "minecraft:update_enabled_features": { + "protocol_id": 12 + }, + "minecraft:update_tags": { + "protocol_id": 13 + } + }, + "serverbound": { + "minecraft:accept_code_of_conduct": { + "protocol_id": 9 + }, + "minecraft:client_information": { + "protocol_id": 0 + }, + "minecraft:cookie_response": { + "protocol_id": 1 + }, + "minecraft:custom_click_action": { + "protocol_id": 8 + }, + "minecraft:custom_payload": { + "protocol_id": 2 + }, + "minecraft:finish_configuration": { + "protocol_id": 3 + }, + "minecraft:keep_alive": { + "protocol_id": 4 + }, + "minecraft:pong": { + "protocol_id": 5 + }, + "minecraft:resource_pack": { + "protocol_id": 6 + }, + "minecraft:select_known_packs": { + "protocol_id": 7 + } + } + }, + "handshake": { + "serverbound": { + "minecraft:intention": { + "protocol_id": 0 + } + } + }, + "login": { + "clientbound": { + "minecraft:cookie_request": { + "protocol_id": 5 + }, + "minecraft:custom_query": { + "protocol_id": 4 + }, + "minecraft:hello": { + "protocol_id": 1 + }, + "minecraft:login_compression": { + "protocol_id": 3 + }, + "minecraft:login_disconnect": { + "protocol_id": 0 + }, + "minecraft:login_finished": { + "protocol_id": 2 + } + }, + "serverbound": { + "minecraft:cookie_response": { + "protocol_id": 4 + }, + "minecraft:custom_query_answer": { + "protocol_id": 2 + }, + "minecraft:hello": { + "protocol_id": 0 + }, + "minecraft:key": { + "protocol_id": 1 + }, + "minecraft:login_acknowledged": { + "protocol_id": 3 + } + } + }, + "play": { + "clientbound": { + "minecraft:add_entity": { + "protocol_id": 1 + }, + "minecraft:animate": { + "protocol_id": 2 + }, + "minecraft:award_stats": { + "protocol_id": 3 + }, + "minecraft:block_changed_ack": { + "protocol_id": 4 + }, + "minecraft:block_destruction": { + "protocol_id": 5 + }, + "minecraft:block_entity_data": { + "protocol_id": 6 + }, + "minecraft:block_event": { + "protocol_id": 7 + }, + "minecraft:block_update": { + "protocol_id": 8 + }, + "minecraft:boss_event": { + "protocol_id": 9 + }, + "minecraft:bundle_delimiter": { + "protocol_id": 0 + }, + "minecraft:change_difficulty": { + "protocol_id": 10 + }, + "minecraft:chunk_batch_finished": { + "protocol_id": 11 + }, + "minecraft:chunk_batch_start": { + "protocol_id": 12 + }, + "minecraft:chunks_biomes": { + "protocol_id": 13 + }, + "minecraft:clear_dialog": { + "protocol_id": 139 + }, + "minecraft:clear_titles": { + "protocol_id": 14 + }, + "minecraft:command_suggestions": { + "protocol_id": 15 + }, + "minecraft:commands": { + "protocol_id": 16 + }, + "minecraft:container_close": { + "protocol_id": 17 + }, + "minecraft:container_set_content": { + "protocol_id": 18 + }, + "minecraft:container_set_data": { + "protocol_id": 19 + }, + "minecraft:container_set_slot": { + "protocol_id": 20 + }, + "minecraft:cookie_request": { + "protocol_id": 21 + }, + "minecraft:cooldown": { + "protocol_id": 22 + }, + "minecraft:custom_chat_completions": { + "protocol_id": 23 + }, + "minecraft:custom_payload": { + "protocol_id": 24 + }, + "minecraft:custom_report_details": { + "protocol_id": 136 + }, + "minecraft:damage_event": { + "protocol_id": 25 + }, + "minecraft:debug/block_value": { + "protocol_id": 26 + }, + "minecraft:debug/chunk_value": { + "protocol_id": 27 + }, + "minecraft:debug/entity_value": { + "protocol_id": 28 + }, + "minecraft:debug/event": { + "protocol_id": 29 + }, + "minecraft:debug_sample": { + "protocol_id": 30 + }, + "minecraft:delete_chat": { + "protocol_id": 31 + }, + "minecraft:disconnect": { + "protocol_id": 32 + }, + "minecraft:disguised_chat": { + "protocol_id": 33 + }, + "minecraft:entity_event": { + "protocol_id": 34 + }, + "minecraft:entity_position_sync": { + "protocol_id": 35 + }, + "minecraft:explode": { + "protocol_id": 36 + }, + "minecraft:forget_level_chunk": { + "protocol_id": 37 + }, + "minecraft:game_event": { + "protocol_id": 38 + }, + "minecraft:game_rule_values": { + "protocol_id": 39 + }, + "minecraft:game_test_highlight_pos": { + "protocol_id": 40 + }, + "minecraft:hurt_animation": { + "protocol_id": 42 + }, + "minecraft:initialize_border": { + "protocol_id": 43 + }, + "minecraft:keep_alive": { + "protocol_id": 44 + }, + "minecraft:level_chunk_with_light": { + "protocol_id": 45 + }, + "minecraft:level_event": { + "protocol_id": 46 + }, + "minecraft:level_particles": { + "protocol_id": 47 + }, + "minecraft:light_update": { + "protocol_id": 48 + }, + "minecraft:login": { + "protocol_id": 49 + }, + "minecraft:low_disk_space_warning": { + "protocol_id": 50 + }, + "minecraft:map_item_data": { + "protocol_id": 51 + }, + "minecraft:merchant_offers": { + "protocol_id": 52 + }, + "minecraft:mount_screen_open": { + "protocol_id": 41 + }, + "minecraft:move_entity_pos": { + "protocol_id": 53 + }, + "minecraft:move_entity_pos_rot": { + "protocol_id": 54 + }, + "minecraft:move_entity_rot": { + "protocol_id": 56 + }, + "minecraft:move_minecart_along_track": { + "protocol_id": 55 + }, + "minecraft:move_vehicle": { + "protocol_id": 57 + }, + "minecraft:open_book": { + "protocol_id": 58 + }, + "minecraft:open_screen": { + "protocol_id": 59 + }, + "minecraft:open_sign_editor": { + "protocol_id": 60 + }, + "minecraft:ping": { + "protocol_id": 61 + }, + "minecraft:place_ghost_recipe": { + "protocol_id": 63 + }, + "minecraft:player_abilities": { + "protocol_id": 64 + }, + "minecraft:player_chat": { + "protocol_id": 65 + }, + "minecraft:player_combat_end": { + "protocol_id": 66 + }, + "minecraft:player_combat_enter": { + "protocol_id": 67 + }, + "minecraft:player_combat_kill": { + "protocol_id": 68 + }, + "minecraft:player_info_remove": { + "protocol_id": 69 + }, + "minecraft:player_info_update": { + "protocol_id": 70 + }, + "minecraft:player_look_at": { + "protocol_id": 71 + }, + "minecraft:player_position": { + "protocol_id": 72 + }, + "minecraft:player_rotation": { + "protocol_id": 73 + }, + "minecraft:pong_response": { + "protocol_id": 62 + }, + "minecraft:projectile_power": { + "protocol_id": 135 + }, + "minecraft:recipe_book_add": { + "protocol_id": 74 + }, + "minecraft:recipe_book_remove": { + "protocol_id": 75 + }, + "minecraft:recipe_book_settings": { + "protocol_id": 76 + }, + "minecraft:remove_entities": { + "protocol_id": 77 + }, + "minecraft:remove_mob_effect": { + "protocol_id": 78 + }, + "minecraft:reset_score": { + "protocol_id": 79 + }, + "minecraft:resource_pack_pop": { + "protocol_id": 80 + }, + "minecraft:resource_pack_push": { + "protocol_id": 81 + }, + "minecraft:respawn": { + "protocol_id": 82 + }, + "minecraft:rotate_head": { + "protocol_id": 83 + }, + "minecraft:section_blocks_update": { + "protocol_id": 84 + }, + "minecraft:select_advancements_tab": { + "protocol_id": 85 + }, + "minecraft:server_data": { + "protocol_id": 86 + }, + "minecraft:server_links": { + "protocol_id": 137 + }, + "minecraft:set_action_bar_text": { + "protocol_id": 87 + }, + "minecraft:set_border_center": { + "protocol_id": 88 + }, + "minecraft:set_border_lerp_size": { + "protocol_id": 89 + }, + "minecraft:set_border_size": { + "protocol_id": 90 + }, + "minecraft:set_border_warning_delay": { + "protocol_id": 91 + }, + "minecraft:set_border_warning_distance": { + "protocol_id": 92 + }, + "minecraft:set_camera": { + "protocol_id": 93 + }, + "minecraft:set_chunk_cache_center": { + "protocol_id": 94 + }, + "minecraft:set_chunk_cache_radius": { + "protocol_id": 95 + }, + "minecraft:set_cursor_item": { + "protocol_id": 96 + }, + "minecraft:set_default_spawn_position": { + "protocol_id": 97 + }, + "minecraft:set_display_objective": { + "protocol_id": 98 + }, + "minecraft:set_entity_data": { + "protocol_id": 99 + }, + "minecraft:set_entity_link": { + "protocol_id": 100 + }, + "minecraft:set_entity_motion": { + "protocol_id": 101 + }, + "minecraft:set_equipment": { + "protocol_id": 102 + }, + "minecraft:set_experience": { + "protocol_id": 103 + }, + "minecraft:set_health": { + "protocol_id": 104 + }, + "minecraft:set_held_slot": { + "protocol_id": 105 + }, + "minecraft:set_objective": { + "protocol_id": 106 + }, + "minecraft:set_passengers": { + "protocol_id": 107 + }, + "minecraft:set_player_inventory": { + "protocol_id": 108 + }, + "minecraft:set_player_team": { + "protocol_id": 109 + }, + "minecraft:set_score": { + "protocol_id": 110 + }, + "minecraft:set_simulation_distance": { + "protocol_id": 111 + }, + "minecraft:set_subtitle_text": { + "protocol_id": 112 + }, + "minecraft:set_time": { + "protocol_id": 113 + }, + "minecraft:set_title_text": { + "protocol_id": 114 + }, + "minecraft:set_titles_animation": { + "protocol_id": 115 + }, + "minecraft:show_dialog": { + "protocol_id": 140 + }, + "minecraft:sound": { + "protocol_id": 117 + }, + "minecraft:sound_entity": { + "protocol_id": 116 + }, + "minecraft:start_configuration": { + "protocol_id": 118 + }, + "minecraft:stop_sound": { + "protocol_id": 119 + }, + "minecraft:store_cookie": { + "protocol_id": 120 + }, + "minecraft:system_chat": { + "protocol_id": 121 + }, + "minecraft:tab_list": { + "protocol_id": 122 + }, + "minecraft:tag_query": { + "protocol_id": 123 + }, + "minecraft:take_item_entity": { + "protocol_id": 124 + }, + "minecraft:teleport_entity": { + "protocol_id": 125 + }, + "minecraft:test_instance_block_status": { + "protocol_id": 126 + }, + "minecraft:ticking_state": { + "protocol_id": 127 + }, + "minecraft:ticking_step": { + "protocol_id": 128 + }, + "minecraft:transfer": { + "protocol_id": 129 + }, + "minecraft:update_advancements": { + "protocol_id": 130 + }, + "minecraft:update_attributes": { + "protocol_id": 131 + }, + "minecraft:update_mob_effect": { + "protocol_id": 132 + }, + "minecraft:update_recipes": { + "protocol_id": 133 + }, + "minecraft:update_tags": { + "protocol_id": 134 + }, + "minecraft:waypoint": { + "protocol_id": 138 + } + }, + "serverbound": { + "minecraft:accept_teleportation": { + "protocol_id": 0 + }, + "minecraft:attack": { + "protocol_id": 1 + }, + "minecraft:block_entity_tag_query": { + "protocol_id": 2 + }, + "minecraft:bundle_item_selected": { + "protocol_id": 3 + }, + "minecraft:change_difficulty": { + "protocol_id": 4 + }, + "minecraft:change_game_mode": { + "protocol_id": 5 + }, + "minecraft:chat": { + "protocol_id": 9 + }, + "minecraft:chat_ack": { + "protocol_id": 6 + }, + "minecraft:chat_command": { + "protocol_id": 7 + }, + "minecraft:chat_command_signed": { + "protocol_id": 8 + }, + "minecraft:chat_session_update": { + "protocol_id": 10 + }, + "minecraft:chunk_batch_received": { + "protocol_id": 11 + }, + "minecraft:client_command": { + "protocol_id": 12 + }, + "minecraft:client_information": { + "protocol_id": 14 + }, + "minecraft:client_tick_end": { + "protocol_id": 13 + }, + "minecraft:command_suggestion": { + "protocol_id": 15 + }, + "minecraft:configuration_acknowledged": { + "protocol_id": 16 + }, + "minecraft:container_button_click": { + "protocol_id": 17 + }, + "minecraft:container_click": { + "protocol_id": 18 + }, + "minecraft:container_close": { + "protocol_id": 19 + }, + "minecraft:container_slot_state_changed": { + "protocol_id": 20 + }, + "minecraft:cookie_response": { + "protocol_id": 21 + }, + "minecraft:custom_click_action": { + "protocol_id": 68 + }, + "minecraft:custom_payload": { + "protocol_id": 22 + }, + "minecraft:debug_subscription_request": { + "protocol_id": 23 + }, + "minecraft:edit_book": { + "protocol_id": 24 + }, + "minecraft:entity_tag_query": { + "protocol_id": 25 + }, + "minecraft:interact": { + "protocol_id": 26 + }, + "minecraft:jigsaw_generate": { + "protocol_id": 27 + }, + "minecraft:keep_alive": { + "protocol_id": 28 + }, + "minecraft:lock_difficulty": { + "protocol_id": 29 + }, + "minecraft:move_player_pos": { + "protocol_id": 30 + }, + "minecraft:move_player_pos_rot": { + "protocol_id": 31 + }, + "minecraft:move_player_rot": { + "protocol_id": 32 + }, + "minecraft:move_player_status_only": { + "protocol_id": 33 + }, + "minecraft:move_vehicle": { + "protocol_id": 34 + }, + "minecraft:paddle_boat": { + "protocol_id": 35 + }, + "minecraft:pick_item_from_block": { + "protocol_id": 36 + }, + "minecraft:pick_item_from_entity": { + "protocol_id": 37 + }, + "minecraft:ping_request": { + "protocol_id": 38 + }, + "minecraft:place_recipe": { + "protocol_id": 39 + }, + "minecraft:player_abilities": { + "protocol_id": 40 + }, + "minecraft:player_action": { + "protocol_id": 41 + }, + "minecraft:player_command": { + "protocol_id": 42 + }, + "minecraft:player_input": { + "protocol_id": 43 + }, + "minecraft:player_loaded": { + "protocol_id": 44 + }, + "minecraft:pong": { + "protocol_id": 45 + }, + "minecraft:recipe_book_change_settings": { + "protocol_id": 46 + }, + "minecraft:recipe_book_seen_recipe": { + "protocol_id": 47 + }, + "minecraft:rename_item": { + "protocol_id": 48 + }, + "minecraft:resource_pack": { + "protocol_id": 49 + }, + "minecraft:seen_advancements": { + "protocol_id": 50 + }, + "minecraft:select_trade": { + "protocol_id": 51 + }, + "minecraft:set_beacon": { + "protocol_id": 52 + }, + "minecraft:set_carried_item": { + "protocol_id": 53 + }, + "minecraft:set_command_block": { + "protocol_id": 54 + }, + "minecraft:set_command_minecart": { + "protocol_id": 55 + }, + "minecraft:set_creative_mode_slot": { + "protocol_id": 56 + }, + "minecraft:set_game_rule": { + "protocol_id": 57 + }, + "minecraft:set_jigsaw_block": { + "protocol_id": 58 + }, + "minecraft:set_structure_block": { + "protocol_id": 59 + }, + "minecraft:set_test_block": { + "protocol_id": 60 + }, + "minecraft:sign_update": { + "protocol_id": 61 + }, + "minecraft:spectate_entity": { + "protocol_id": 62 + }, + "minecraft:swing": { + "protocol_id": 63 + }, + "minecraft:teleport_to_entity": { + "protocol_id": 64 + }, + "minecraft:test_instance_block_action": { + "protocol_id": 65 + }, + "minecraft:use_item": { + "protocol_id": 67 + }, + "minecraft:use_item_on": { + "protocol_id": 66 + } + } + }, + "status": { + "clientbound": { + "minecraft:pong_response": { + "protocol_id": 1 + }, + "minecraft:status_response": { + "protocol_id": 0 + } + }, + "serverbound": { + "minecraft:ping_request": { + "protocol_id": 1 + }, + "minecraft:status_request": { + "protocol_id": 0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_1/reports/registries.json b/data/generated/V26_1/reports/registries.json new file mode 100644 index 00000000..53ab09a6 --- /dev/null +++ b/data/generated/V26_1/reports/registries.json @@ -0,0 +1,20923 @@ +{ + "minecraft:activity": { + "entries": { + "minecraft:admire_item": { + "protocol_id": 12 + }, + "minecraft:avoid": { + "protocol_id": 13 + }, + "minecraft:celebrate": { + "protocol_id": 11 + }, + "minecraft:core": { + "protocol_id": 0 + }, + "minecraft:dig": { + "protocol_id": 25 + }, + "minecraft:emerge": { + "protocol_id": 24 + }, + "minecraft:fight": { + "protocol_id": 10 + }, + "minecraft:hide": { + "protocol_id": 9 + }, + "minecraft:idle": { + "protocol_id": 1 + }, + "minecraft:investigate": { + "protocol_id": 22 + }, + "minecraft:lay_spawn": { + "protocol_id": 20 + }, + "minecraft:long_jump": { + "protocol_id": 16 + }, + "minecraft:meet": { + "protocol_id": 5 + }, + "minecraft:panic": { + "protocol_id": 6 + }, + "minecraft:play": { + "protocol_id": 3 + }, + "minecraft:play_dead": { + "protocol_id": 15 + }, + "minecraft:pre_raid": { + "protocol_id": 8 + }, + "minecraft:raid": { + "protocol_id": 7 + }, + "minecraft:ram": { + "protocol_id": 17 + }, + "minecraft:rest": { + "protocol_id": 4 + }, + "minecraft:ride": { + "protocol_id": 14 + }, + "minecraft:roar": { + "protocol_id": 23 + }, + "minecraft:sniff": { + "protocol_id": 21 + }, + "minecraft:swim": { + "protocol_id": 19 + }, + "minecraft:tongue": { + "protocol_id": 18 + }, + "minecraft:work": { + "protocol_id": 2 + } + }, + "protocol_id": 28 + }, + "minecraft:attribute": { + "entries": { + "minecraft:armor": { + "protocol_id": 0 + }, + "minecraft:armor_toughness": { + "protocol_id": 1 + }, + "minecraft:attack_damage": { + "protocol_id": 2 + }, + "minecraft:attack_knockback": { + "protocol_id": 3 + }, + "minecraft:attack_speed": { + "protocol_id": 4 + }, + "minecraft:block_break_speed": { + "protocol_id": 5 + }, + "minecraft:block_interaction_range": { + "protocol_id": 6 + }, + "minecraft:burning_time": { + "protocol_id": 7 + }, + "minecraft:camera_distance": { + "protocol_id": 8 + }, + "minecraft:entity_interaction_range": { + "protocol_id": 10 + }, + "minecraft:explosion_knockback_resistance": { + "protocol_id": 9 + }, + "minecraft:fall_damage_multiplier": { + "protocol_id": 11 + }, + "minecraft:flying_speed": { + "protocol_id": 12 + }, + "minecraft:follow_range": { + "protocol_id": 13 + }, + "minecraft:gravity": { + "protocol_id": 14 + }, + "minecraft:jump_strength": { + "protocol_id": 15 + }, + "minecraft:knockback_resistance": { + "protocol_id": 16 + }, + "minecraft:luck": { + "protocol_id": 17 + }, + "minecraft:max_absorption": { + "protocol_id": 18 + }, + "minecraft:max_health": { + "protocol_id": 19 + }, + "minecraft:mining_efficiency": { + "protocol_id": 20 + }, + "minecraft:movement_efficiency": { + "protocol_id": 21 + }, + "minecraft:movement_speed": { + "protocol_id": 22 + }, + "minecraft:oxygen_bonus": { + "protocol_id": 23 + }, + "minecraft:safe_fall_distance": { + "protocol_id": 24 + }, + "minecraft:scale": { + "protocol_id": 25 + }, + "minecraft:sneaking_speed": { + "protocol_id": 26 + }, + "minecraft:spawn_reinforcements": { + "protocol_id": 27 + }, + "minecraft:step_height": { + "protocol_id": 28 + }, + "minecraft:submerged_mining_speed": { + "protocol_id": 29 + }, + "minecraft:sweeping_damage_ratio": { + "protocol_id": 30 + }, + "minecraft:tempt_range": { + "protocol_id": 31 + }, + "minecraft:water_movement_efficiency": { + "protocol_id": 32 + }, + "minecraft:waypoint_receive_range": { + "protocol_id": 34 + }, + "minecraft:waypoint_transmit_range": { + "protocol_id": 33 + } + }, + "protocol_id": 19 + }, + "minecraft:attribute_type": { + "entries": { + "minecraft:activity": { + "protocol_id": 8 + }, + "minecraft:ambient_particles": { + "protocol_id": 11 + }, + "minecraft:ambient_sounds": { + "protocol_id": 13 + }, + "minecraft:angle_degrees": { + "protocol_id": 3 + }, + "minecraft:argb_color": { + "protocol_id": 5 + }, + "minecraft:background_music": { + "protocol_id": 12 + }, + "minecraft:bed_rule": { + "protocol_id": 9 + }, + "minecraft:boolean": { + "protocol_id": 0 + }, + "minecraft:float": { + "protocol_id": 2 + }, + "minecraft:integer": { + "protocol_id": 6 + }, + "minecraft:moon_phase": { + "protocol_id": 7 + }, + "minecraft:particle": { + "protocol_id": 10 + }, + "minecraft:rgb_color": { + "protocol_id": 4 + }, + "minecraft:tri_state": { + "protocol_id": 1 + } + }, + "protocol_id": 92 + }, + "minecraft:block": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_button": { + "protocol_id": 447 + }, + "minecraft:acacia_door": { + "protocol_id": 649 + }, + "minecraft:acacia_fence": { + "protocol_id": 640 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 631 + }, + "minecraft:acacia_hanging_sign": { + "protocol_id": 237 + }, + "minecraft:acacia_leaves": { + "protocol_id": 92 + }, + "minecraft:acacia_log": { + "protocol_id": 53 + }, + "minecraft:acacia_planks": { + "protocol_id": 17 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 265 + }, + "minecraft:acacia_sapling": { + "protocol_id": 29 + }, + "minecraft:acacia_shelf": { + "protocol_id": 180 + }, + "minecraft:acacia_sign": { + "protocol_id": 213 + }, + "minecraft:acacia_slab": { + "protocol_id": 603 + }, + "minecraft:acacia_stairs": { + "protocol_id": 516 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 320 + }, + "minecraft:acacia_wall_hanging_sign": { + "protocol_id": 249 + }, + "minecraft:acacia_wall_sign": { + "protocol_id": 227 + }, + "minecraft:acacia_wood": { + "protocol_id": 75 + }, + "minecraft:activator_rail": { + "protocol_id": 482 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allium": { + "protocol_id": 162 + }, + "minecraft:amethyst_block": { + "protocol_id": 978 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 980 + }, + "minecraft:ancient_debris": { + "protocol_id": 916 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 820 + }, + "minecraft:andesite_stairs": { + "protocol_id": 807 + }, + "minecraft:andesite_wall": { + "protocol_id": 832 + }, + "minecraft:anvil": { + "protocol_id": 467 + }, + "minecraft:attached_melon_stem": { + "protocol_id": 363 + }, + "minecraft:attached_pumpkin_stem": { + "protocol_id": 362 + }, + "minecraft:azalea": { + "protocol_id": 1110 + }, + "minecraft:azalea_leaves": { + "protocol_id": 97 + }, + "minecraft:azure_bluet": { + "protocol_id": 163 + }, + "minecraft:bamboo": { + "protocol_id": 792 + }, + "minecraft:bamboo_block": { + "protocol_id": 60 + }, + "minecraft:bamboo_button": { + "protocol_id": 452 + }, + "minecraft:bamboo_door": { + "protocol_id": 654 + }, + "minecraft:bamboo_fence": { + "protocol_id": 645 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 636 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 245 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 24 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 609 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 522 + }, + "minecraft:bamboo_planks": { + "protocol_id": 23 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 270 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 791 + }, + "minecraft:bamboo_shelf": { + "protocol_id": 181 + }, + "minecraft:bamboo_sign": { + "protocol_id": 219 + }, + "minecraft:bamboo_slab": { + "protocol_id": 608 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 521 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 325 + }, + "minecraft:bamboo_wall_hanging_sign": { + "protocol_id": 257 + }, + "minecraft:bamboo_wall_sign": { + "protocol_id": 233 + }, + "minecraft:barrel": { + "protocol_id": 839 + }, + "minecraft:barrier": { + "protocol_id": 524 + }, + "minecraft:basalt": { + "protocol_id": 288 + }, + "minecraft:beacon": { + "protocol_id": 408 + }, + "minecraft:bedrock": { + "protocol_id": 34 + }, + "minecraft:bee_nest": { + "protocol_id": 911 + }, + "minecraft:beehive": { + "protocol_id": 912 + }, + "minecraft:beetroots": { + "protocol_id": 665 + }, + "minecraft:bell": { + "protocol_id": 848 + }, + "minecraft:big_dripleaf": { + "protocol_id": 1117 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 1118 + }, + "minecraft:birch_button": { + "protocol_id": 445 + }, + "minecraft:birch_door": { + "protocol_id": 647 + }, + "minecraft:birch_fence": { + "protocol_id": 638 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 629 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 236 + }, + "minecraft:birch_leaves": { + "protocol_id": 90 + }, + "minecraft:birch_log": { + "protocol_id": 51 + }, + "minecraft:birch_planks": { + "protocol_id": 15 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 263 + }, + "minecraft:birch_sapling": { + "protocol_id": 27 + }, + "minecraft:birch_shelf": { + "protocol_id": 182 + }, + "minecraft:birch_sign": { + "protocol_id": 212 + }, + "minecraft:birch_slab": { + "protocol_id": 601 + }, + "minecraft:birch_stairs": { + "protocol_id": 405 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 318 + }, + "minecraft:birch_wall_hanging_sign": { + "protocol_id": 248 + }, + "minecraft:birch_wall_sign": { + "protocol_id": 226 + }, + "minecraft:birch_wood": { + "protocol_id": 73 + }, + "minecraft:black_banner": { + "protocol_id": 578 + }, + "minecraft:black_bed": { + "protocol_id": 125 + }, + "minecraft:black_candle": { + "protocol_id": 960 + }, + "minecraft:black_candle_cake": { + "protocol_id": 977 + }, + "minecraft:black_carpet": { + "protocol_id": 553 + }, + "minecraft:black_concrete": { + "protocol_id": 725 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 741 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 709 + }, + "minecraft:black_shulker_box": { + "protocol_id": 693 + }, + "minecraft:black_stained_glass": { + "protocol_id": 315 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 515 + }, + "minecraft:black_terracotta": { + "protocol_id": 499 + }, + "minecraft:black_wall_banner": { + "protocol_id": 594 + }, + "minecraft:black_wool": { + "protocol_id": 155 + }, + "minecraft:blackstone": { + "protocol_id": 924 + }, + "minecraft:blackstone_slab": { + "protocol_id": 927 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 925 + }, + "minecraft:blackstone_wall": { + "protocol_id": 926 + }, + "minecraft:blast_furnace": { + "protocol_id": 841 + }, + "minecraft:blue_banner": { + "protocol_id": 574 + }, + "minecraft:blue_bed": { + "protocol_id": 121 + }, + "minecraft:blue_candle": { + "protocol_id": 956 + }, + "minecraft:blue_candle_cake": { + "protocol_id": 973 + }, + "minecraft:blue_carpet": { + "protocol_id": 549 + }, + "minecraft:blue_concrete": { + "protocol_id": 721 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 737 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 705 + }, + "minecraft:blue_ice": { + "protocol_id": 789 + }, + "minecraft:blue_orchid": { + "protocol_id": 161 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 689 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 311 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 511 + }, + "minecraft:blue_terracotta": { + "protocol_id": 495 + }, + "minecraft:blue_wall_banner": { + "protocol_id": 590 + }, + "minecraft:blue_wool": { + "protocol_id": 151 + }, + "minecraft:bone_block": { + "protocol_id": 674 + }, + "minecraft:bookshelf": { + "protocol_id": 178 + }, + "minecraft:brain_coral": { + "protocol_id": 764 + }, + "minecraft:brain_coral_block": { + "protocol_id": 754 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 774 + }, + "minecraft:brain_coral_wall_fan": { + "protocol_id": 784 + }, + "minecraft:brewing_stand": { + "protocol_id": 386 + }, + "minecraft:brick_slab": { + "protocol_id": 616 + }, + "minecraft:brick_stairs": { + "protocol_id": 370 + }, + "minecraft:brick_wall": { + "protocol_id": 824 + }, + "minecraft:bricks": { + "protocol_id": 176 + }, + "minecraft:brown_banner": { + "protocol_id": 575 + }, + "minecraft:brown_bed": { + "protocol_id": 122 + }, + "minecraft:brown_candle": { + "protocol_id": 957 + }, + "minecraft:brown_candle_cake": { + "protocol_id": 974 + }, + "minecraft:brown_carpet": { + "protocol_id": 550 + }, + "minecraft:brown_concrete": { + "protocol_id": 722 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 738 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 706 + }, + "minecraft:brown_mushroom": { + "protocol_id": 172 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 338 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 690 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 312 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 512 + }, + "minecraft:brown_terracotta": { + "protocol_id": 496 + }, + "minecraft:brown_wall_banner": { + "protocol_id": 591 + }, + "minecraft:brown_wool": { + "protocol_id": 152 + }, + "minecraft:bubble_column": { + "protocol_id": 796 + }, + "minecraft:bubble_coral": { + "protocol_id": 765 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 755 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 775 + }, + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 785 + }, + "minecraft:budding_amethyst": { + "protocol_id": 979 + }, + "minecraft:bush": { + "protocol_id": 133 + }, + "minecraft:cactus": { + "protocol_id": 279 + }, + "minecraft:cactus_flower": { + "protocol_id": 280 + }, + "minecraft:cake": { + "protocol_id": 298 + }, + "minecraft:calcite": { + "protocol_id": 998 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 1002 + }, + "minecraft:campfire": { + "protocol_id": 859 + }, + "minecraft:candle": { + "protocol_id": 944 + }, + "minecraft:candle_cake": { + "protocol_id": 961 + }, + "minecraft:carrots": { + "protocol_id": 441 + }, + "minecraft:cartography_table": { + "protocol_id": 842 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 296 + }, + "minecraft:cauldron": { + "protocol_id": 387 + }, + "minecraft:cave_air": { + "protocol_id": 795 + }, + "minecraft:cave_vines": { + "protocol_id": 1107 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 1108 + }, + "minecraft:chain_command_block": { + "protocol_id": 669 + }, + "minecraft:cherry_button": { + "protocol_id": 448 + }, + "minecraft:cherry_door": { + "protocol_id": 650 + }, + "minecraft:cherry_fence": { + "protocol_id": 641 + }, + "minecraft:cherry_fence_gate": { + "protocol_id": 632 + }, + "minecraft:cherry_hanging_sign": { + "protocol_id": 238 + }, + "minecraft:cherry_leaves": { + "protocol_id": 93 + }, + "minecraft:cherry_log": { + "protocol_id": 54 + }, + "minecraft:cherry_planks": { + "protocol_id": 18 + }, + "minecraft:cherry_pressure_plate": { + "protocol_id": 266 + }, + "minecraft:cherry_sapling": { + "protocol_id": 30 + }, + "minecraft:cherry_shelf": { + "protocol_id": 183 + }, + "minecraft:cherry_sign": { + "protocol_id": 214 + }, + "minecraft:cherry_slab": { + "protocol_id": 604 + }, + "minecraft:cherry_stairs": { + "protocol_id": 517 + }, + "minecraft:cherry_trapdoor": { + "protocol_id": 321 + }, + "minecraft:cherry_wall_hanging_sign": { + "protocol_id": 250 + }, + "minecraft:cherry_wall_sign": { + "protocol_id": 228 + }, + "minecraft:cherry_wood": { + "protocol_id": 76 + }, + "minecraft:chest": { + "protocol_id": 201 + }, + "minecraft:chipped_anvil": { + "protocol_id": 468 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 179 + }, + "minecraft:chiseled_copper": { + "protocol_id": 1020 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 1140 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 941 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 931 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 479 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 596 + }, + "minecraft:chiseled_resin_bricks": { + "protocol_id": 380 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 107 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 329 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 992 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 997 + }, + "minecraft:chorus_flower": { + "protocol_id": 657 + }, + "minecraft:chorus_plant": { + "protocol_id": 656 + }, + "minecraft:clay": { + "protocol_id": 281 + }, + "minecraft:closed_eyeblossom": { + "protocol_id": 1164 + }, + "minecraft:coal_block": { + "protocol_id": 555 + }, + "minecraft:coal_ore": { + "protocol_id": 46 + }, + "minecraft:coarse_dirt": { + "protocol_id": 10 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 1124 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 1126 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 1125 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 1127 + }, + "minecraft:cobblestone": { + "protocol_id": 12 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 615 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 223 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 409 + }, + "minecraft:cobweb": { + "protocol_id": 129 + }, + "minecraft:cocoa": { + "protocol_id": 396 + }, + "minecraft:command_block": { + "protocol_id": 407 + }, + "minecraft:comparator": { + "protocol_id": 473 + }, + "minecraft:composter": { + "protocol_id": 909 + }, + "minecraft:conduit": { + "protocol_id": 790 + }, + "minecraft:copper_bars": { + "protocol_id": 342 + }, + "minecraft:copper_block": { + "protocol_id": 1007 + }, + "minecraft:copper_bulb": { + "protocol_id": 1073 + }, + "minecraft:copper_chain": { + "protocol_id": 351 + }, + "minecraft:copper_chest": { + "protocol_id": 1081 + }, + "minecraft:copper_door": { + "protocol_id": 1049 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 1089 + }, + "minecraft:copper_grate": { + "protocol_id": 1065 + }, + "minecraft:copper_lantern": { + "protocol_id": 851 + }, + "minecraft:copper_ore": { + "protocol_id": 1011 + }, + "minecraft:copper_torch": { + "protocol_id": 292 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 1057 + }, + "minecraft:copper_wall_torch": { + "protocol_id": 293 + }, + "minecraft:cornflower": { + "protocol_id": 169 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 1141 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 1142 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 942 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 930 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 328 + }, + "minecraft:crafter": { + "protocol_id": 1156 + }, + "minecraft:crafting_table": { + "protocol_id": 206 + }, + "minecraft:creaking_heart": { + "protocol_id": 199 + }, + "minecraft:creeper_head": { + "protocol_id": 461 + }, + "minecraft:creeper_wall_head": { + "protocol_id": 462 + }, + "minecraft:crimson_button": { + "protocol_id": 897 + }, + "minecraft:crimson_door": { + "protocol_id": 899 + }, + "minecraft:crimson_fence": { + "protocol_id": 889 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 893 + }, + "minecraft:crimson_fungus": { + "protocol_id": 876 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 242 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 873 + }, + "minecraft:crimson_nylium": { + "protocol_id": 875 + }, + "minecraft:crimson_planks": { + "protocol_id": 883 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 887 + }, + "minecraft:crimson_roots": { + "protocol_id": 882 + }, + "minecraft:crimson_shelf": { + "protocol_id": 184 + }, + "minecraft:crimson_sign": { + "protocol_id": 901 + }, + "minecraft:crimson_slab": { + "protocol_id": 885 + }, + "minecraft:crimson_stairs": { + "protocol_id": 895 + }, + "minecraft:crimson_stem": { + "protocol_id": 871 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 891 + }, + "minecraft:crimson_wall_hanging_sign": { + "protocol_id": 255 + }, + "minecraft:crimson_wall_sign": { + "protocol_id": 903 + }, + "minecraft:crying_obsidian": { + "protocol_id": 917 + }, + "minecraft:cut_copper": { + "protocol_id": 1016 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 1032 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 1028 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 597 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 622 + }, + "minecraft:cut_sandstone": { + "protocol_id": 108 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 613 + }, + "minecraft:cyan_banner": { + "protocol_id": 572 + }, + "minecraft:cyan_bed": { + "protocol_id": 119 + }, + "minecraft:cyan_candle": { + "protocol_id": 954 + }, + "minecraft:cyan_candle_cake": { + "protocol_id": 971 + }, + "minecraft:cyan_carpet": { + "protocol_id": 547 + }, + "minecraft:cyan_concrete": { + "protocol_id": 719 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 735 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 703 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 687 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 309 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 509 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 493 + }, + "minecraft:cyan_wall_banner": { + "protocol_id": 588 + }, + "minecraft:cyan_wool": { + "protocol_id": 149 + }, + "minecraft:damaged_anvil": { + "protocol_id": 469 + }, + "minecraft:dandelion": { + "protocol_id": 157 + }, + "minecraft:dark_oak_button": { + "protocol_id": 449 + }, + "minecraft:dark_oak_door": { + "protocol_id": 651 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 642 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 633 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 240 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 94 + }, + "minecraft:dark_oak_log": { + "protocol_id": 55 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 19 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 267 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 31 + }, + "minecraft:dark_oak_shelf": { + "protocol_id": 185 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 216 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 605 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 518 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 322 + }, + "minecraft:dark_oak_wall_hanging_sign": { + "protocol_id": 252 + }, + "minecraft:dark_oak_wall_sign": { + "protocol_id": 230 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 77 + }, + "minecraft:dark_prismarine": { + "protocol_id": 529 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 535 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 532 + }, + "minecraft:daylight_detector": { + "protocol_id": 474 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 759 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 749 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 769 + }, + "minecraft:dead_brain_coral_wall_fan": { + "protocol_id": 779 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 760 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 750 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 770 + }, + "minecraft:dead_bubble_coral_wall_fan": { + "protocol_id": 780 + }, + "minecraft:dead_bush": { + "protocol_id": 132 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 761 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 751 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 771 + }, + "minecraft:dead_fire_coral_wall_fan": { + "protocol_id": 781 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 762 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 752 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 772 + }, + "minecraft:dead_horn_coral_wall_fan": { + "protocol_id": 782 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 758 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 748 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 768 + }, + "minecraft:dead_tube_coral_wall_fan": { + "protocol_id": 778 + }, + "minecraft:decorated_pot": { + "protocol_id": 1155 + }, + "minecraft:deepslate": { + "protocol_id": 1123 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 1138 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 1137 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 1139 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 1136 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 47 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 1012 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 204 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 399 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 43 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 45 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 103 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 272 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 1134 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 1133 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 1135 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 1132 + }, + "minecraft:detector_rail": { + "protocol_id": 127 + }, + "minecraft:diamond_block": { + "protocol_id": 205 + }, + "minecraft:diamond_ore": { + "protocol_id": 203 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 823 + }, + "minecraft:diorite_stairs": { + "protocol_id": 810 + }, + "minecraft:diorite_wall": { + "protocol_id": 836 + }, + "minecraft:dirt": { + "protocol_id": 9 + }, + "minecraft:dirt_path": { + "protocol_id": 666 + }, + "minecraft:dispenser": { + "protocol_id": 105 + }, + "minecraft:dragon_egg": { + "protocol_id": 394 + }, + "minecraft:dragon_head": { + "protocol_id": 463 + }, + "minecraft:dragon_wall_head": { + "protocol_id": 464 + }, + "minecraft:dried_ghast": { + "protocol_id": 747 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 744 + }, + "minecraft:dripstone_block": { + "protocol_id": 1106 + }, + "minecraft:dropper": { + "protocol_id": 483 + }, + "minecraft:emerald_block": { + "protocol_id": 403 + }, + "minecraft:emerald_ore": { + "protocol_id": 398 + }, + "minecraft:enchanting_table": { + "protocol_id": 385 + }, + "minecraft:end_gateway": { + "protocol_id": 667 + }, + "minecraft:end_portal": { + "protocol_id": 391 + }, + "minecraft:end_portal_frame": { + "protocol_id": 392 + }, + "minecraft:end_rod": { + "protocol_id": 655 + }, + "minecraft:end_stone": { + "protocol_id": 393 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 816 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 802 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 835 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 661 + }, + "minecraft:ender_chest": { + "protocol_id": 400 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 1019 + }, + "minecraft:exposed_copper": { + "protocol_id": 1008 + }, + "minecraft:exposed_copper_bars": { + "protocol_id": 343 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1074 + }, + "minecraft:exposed_copper_chain": { + "protocol_id": 352 + }, + "minecraft:exposed_copper_chest": { + "protocol_id": 1082 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 1050 + }, + "minecraft:exposed_copper_golem_statue": { + "protocol_id": 1090 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1066 + }, + "minecraft:exposed_copper_lantern": { + "protocol_id": 852 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 1058 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 1015 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 1031 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 1027 + }, + "minecraft:exposed_lightning_rod": { + "protocol_id": 1098 + }, + "minecraft:farmland": { + "protocol_id": 208 + }, + "minecraft:fern": { + "protocol_id": 131 + }, + "minecraft:fire": { + "protocol_id": 196 + }, + "minecraft:fire_coral": { + "protocol_id": 766 + }, + "minecraft:fire_coral_block": { + "protocol_id": 756 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 776 + }, + "minecraft:fire_coral_wall_fan": { + "protocol_id": 786 + }, + "minecraft:firefly_bush": { + "protocol_id": 1167 + }, + "minecraft:fletching_table": { + "protocol_id": 843 + }, + "minecraft:flower_pot": { + "protocol_id": 411 + }, + "minecraft:flowering_azalea": { + "protocol_id": 1111 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 98 + }, + "minecraft:frogspawn": { + "protocol_id": 1153 + }, + "minecraft:frosted_ice": { + "protocol_id": 670 + }, + "minecraft:furnace": { + "protocol_id": 209 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 935 + }, + "minecraft:glass": { + "protocol_id": 101 + }, + "minecraft:glass_pane": { + "protocol_id": 359 + }, + "minecraft:glow_lichen": { + "protocol_id": 367 + }, + "minecraft:glowstone": { + "protocol_id": 294 + }, + "minecraft:gold_block": { + "protocol_id": 174 + }, + "minecraft:gold_ore": { + "protocol_id": 42 + }, + "minecraft:golden_dandelion": { + "protocol_id": 158 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 819 + }, + "minecraft:granite_stairs": { + "protocol_id": 806 + }, + "minecraft:granite_wall": { + "protocol_id": 828 + }, + "minecraft:grass_block": { + "protocol_id": 8 + }, + "minecraft:gravel": { + "protocol_id": 40 + }, + "minecraft:gray_banner": { + "protocol_id": 570 + }, + "minecraft:gray_bed": { + "protocol_id": 117 + }, + "minecraft:gray_candle": { + "protocol_id": 952 + }, + "minecraft:gray_candle_cake": { + "protocol_id": 969 + }, + "minecraft:gray_carpet": { + "protocol_id": 545 + }, + "minecraft:gray_concrete": { + "protocol_id": 717 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 733 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 701 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 685 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 307 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 507 + }, + "minecraft:gray_terracotta": { + "protocol_id": 491 + }, + "minecraft:gray_wall_banner": { + "protocol_id": 586 + }, + "minecraft:gray_wool": { + "protocol_id": 147 + }, + "minecraft:green_banner": { + "protocol_id": 576 + }, + "minecraft:green_bed": { + "protocol_id": 123 + }, + "minecraft:green_candle": { + "protocol_id": 958 + }, + "minecraft:green_candle_cake": { + "protocol_id": 975 + }, + "minecraft:green_carpet": { + "protocol_id": 551 + }, + "minecraft:green_concrete": { + "protocol_id": 723 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 739 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 707 + }, + "minecraft:green_shulker_box": { + "protocol_id": 691 + }, + "minecraft:green_stained_glass": { + "protocol_id": 313 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 513 + }, + "minecraft:green_terracotta": { + "protocol_id": 497 + }, + "minecraft:green_wall_banner": { + "protocol_id": 592 + }, + "minecraft:green_wool": { + "protocol_id": 153 + }, + "minecraft:grindstone": { + "protocol_id": 844 + }, + "minecraft:hanging_roots": { + "protocol_id": 1120 + }, + "minecraft:hay_block": { + "protocol_id": 537 + }, + "minecraft:heavy_core": { + "protocol_id": 1159 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 472 + }, + "minecraft:honey_block": { + "protocol_id": 913 + }, + "minecraft:honeycomb_block": { + "protocol_id": 914 + }, + "minecraft:hopper": { + "protocol_id": 477 + }, + "minecraft:horn_coral": { + "protocol_id": 767 + }, + "minecraft:horn_coral_block": { + "protocol_id": 757 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 777 + }, + "minecraft:horn_coral_wall_fan": { + "protocol_id": 787 + }, + "minecraft:ice": { + "protocol_id": 277 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 337 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 333 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 336 + }, + "minecraft:infested_deepslate": { + "protocol_id": 1143 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 335 + }, + "minecraft:infested_stone": { + "protocol_id": 332 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 334 + }, + "minecraft:iron_bars": { + "protocol_id": 341 + }, + "minecraft:iron_block": { + "protocol_id": 175 + }, + "minecraft:iron_chain": { + "protocol_id": 350 + }, + "minecraft:iron_door": { + "protocol_id": 260 + }, + "minecraft:iron_ore": { + "protocol_id": 44 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 526 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 297 + }, + "minecraft:jigsaw": { + "protocol_id": 906 + }, + "minecraft:jukebox": { + "protocol_id": 283 + }, + "minecraft:jungle_button": { + "protocol_id": 446 + }, + "minecraft:jungle_door": { + "protocol_id": 648 + }, + "minecraft:jungle_fence": { + "protocol_id": 639 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 630 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 239 + }, + "minecraft:jungle_leaves": { + "protocol_id": 91 + }, + "minecraft:jungle_log": { + "protocol_id": 52 + }, + "minecraft:jungle_planks": { + "protocol_id": 16 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 264 + }, + "minecraft:jungle_sapling": { + "protocol_id": 28 + }, + "minecraft:jungle_shelf": { + "protocol_id": 186 + }, + "minecraft:jungle_sign": { + "protocol_id": 215 + }, + "minecraft:jungle_slab": { + "protocol_id": 602 + }, + "minecraft:jungle_stairs": { + "protocol_id": 406 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 319 + }, + "minecraft:jungle_wall_hanging_sign": { + "protocol_id": 251 + }, + "minecraft:jungle_wall_sign": { + "protocol_id": 229 + }, + "minecraft:jungle_wood": { + "protocol_id": 74 + }, + "minecraft:kelp": { + "protocol_id": 742 + }, + "minecraft:kelp_plant": { + "protocol_id": 743 + }, + "minecraft:ladder": { + "protocol_id": 221 + }, + "minecraft:lantern": { + "protocol_id": 849 + }, + "minecraft:lapis_block": { + "protocol_id": 104 + }, + "minecraft:lapis_ore": { + "protocol_id": 102 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 981 + }, + "minecraft:large_fern": { + "protocol_id": 562 + }, + "minecraft:lava": { + "protocol_id": 36 + }, + "minecraft:lava_cauldron": { + "protocol_id": 389 + }, + "minecraft:leaf_litter": { + "protocol_id": 1115 + }, + "minecraft:lectern": { + "protocol_id": 845 + }, + "minecraft:lever": { + "protocol_id": 258 + }, + "minecraft:light": { + "protocol_id": 525 + }, + "minecraft:light_blue_banner": { + "protocol_id": 566 + }, + "minecraft:light_blue_bed": { + "protocol_id": 113 + }, + "minecraft:light_blue_candle": { + "protocol_id": 948 + }, + "minecraft:light_blue_candle_cake": { + "protocol_id": 965 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 541 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 713 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 729 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 697 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 681 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 303 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 503 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 487 + }, + "minecraft:light_blue_wall_banner": { + "protocol_id": 582 + }, + "minecraft:light_blue_wool": { + "protocol_id": 143 + }, + "minecraft:light_gray_banner": { + "protocol_id": 571 + }, + "minecraft:light_gray_bed": { + "protocol_id": 118 + }, + "minecraft:light_gray_candle": { + "protocol_id": 953 + }, + "minecraft:light_gray_candle_cake": { + "protocol_id": 970 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 546 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 718 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 734 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 702 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 686 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 308 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 508 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 492 + }, + "minecraft:light_gray_wall_banner": { + "protocol_id": 587 + }, + "minecraft:light_gray_wool": { + "protocol_id": 148 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 471 + }, + "minecraft:lightning_rod": { + "protocol_id": 1097 + }, + "minecraft:lilac": { + "protocol_id": 558 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 171 + }, + "minecraft:lily_pad": { + "protocol_id": 374 + }, + "minecraft:lime_banner": { + "protocol_id": 568 + }, + "minecraft:lime_bed": { + "protocol_id": 115 + }, + "minecraft:lime_candle": { + "protocol_id": 950 + }, + "minecraft:lime_candle_cake": { + "protocol_id": 967 + }, + "minecraft:lime_carpet": { + "protocol_id": 543 + }, + "minecraft:lime_concrete": { + "protocol_id": 715 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 731 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 699 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 683 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 305 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 505 + }, + "minecraft:lime_terracotta": { + "protocol_id": 489 + }, + "minecraft:lime_wall_banner": { + "protocol_id": 584 + }, + "minecraft:lime_wool": { + "protocol_id": 145 + }, + "minecraft:lodestone": { + "protocol_id": 923 + }, + "minecraft:loom": { + "protocol_id": 838 + }, + "minecraft:magenta_banner": { + "protocol_id": 565 + }, + "minecraft:magenta_bed": { + "protocol_id": 112 + }, + "minecraft:magenta_candle": { + "protocol_id": 947 + }, + "minecraft:magenta_candle_cake": { + "protocol_id": 964 + }, + "minecraft:magenta_carpet": { + "protocol_id": 540 + }, + "minecraft:magenta_concrete": { + "protocol_id": 712 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 728 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 696 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 680 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 302 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 502 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 486 + }, + "minecraft:magenta_wall_banner": { + "protocol_id": 581 + }, + "minecraft:magenta_wool": { + "protocol_id": 142 + }, + "minecraft:magma_block": { + "protocol_id": 671 + }, + "minecraft:mangrove_button": { + "protocol_id": 451 + }, + "minecraft:mangrove_door": { + "protocol_id": 653 + }, + "minecraft:mangrove_fence": { + "protocol_id": 644 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 635 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 244 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 96 + }, + "minecraft:mangrove_log": { + "protocol_id": 57 + }, + "minecraft:mangrove_planks": { + "protocol_id": 22 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 269 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 33 + }, + "minecraft:mangrove_roots": { + "protocol_id": 58 + }, + "minecraft:mangrove_shelf": { + "protocol_id": 187 + }, + "minecraft:mangrove_sign": { + "protocol_id": 218 + }, + "minecraft:mangrove_slab": { + "protocol_id": 607 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 520 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 324 + }, + "minecraft:mangrove_wall_hanging_sign": { + "protocol_id": 254 + }, + "minecraft:mangrove_wall_sign": { + "protocol_id": 232 + }, + "minecraft:mangrove_wood": { + "protocol_id": 78 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 982 + }, + "minecraft:melon": { + "protocol_id": 361 + }, + "minecraft:melon_stem": { + "protocol_id": 365 + }, + "minecraft:moss_block": { + "protocol_id": 1116 + }, + "minecraft:moss_carpet": { + "protocol_id": 1112 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 192 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 815 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 801 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 410 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 813 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 799 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 827 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 327 + }, + "minecraft:moving_piston": { + "protocol_id": 156 + }, + "minecraft:mud": { + "protocol_id": 1122 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 618 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 372 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 830 + }, + "minecraft:mud_bricks": { + "protocol_id": 331 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 59 + }, + "minecraft:mushroom_stem": { + "protocol_id": 340 + }, + "minecraft:mycelium": { + "protocol_id": 373 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 382 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 619 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 383 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 831 + }, + "minecraft:nether_bricks": { + "protocol_id": 381 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 48 + }, + "minecraft:nether_portal": { + "protocol_id": 295 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 476 + }, + "minecraft:nether_sprouts": { + "protocol_id": 870 + }, + "minecraft:nether_wart": { + "protocol_id": 384 + }, + "minecraft:nether_wart_block": { + "protocol_id": 672 + }, + "minecraft:netherite_block": { + "protocol_id": 915 + }, + "minecraft:netherrack": { + "protocol_id": 285 + }, + "minecraft:note_block": { + "protocol_id": 109 + }, + "minecraft:oak_button": { + "protocol_id": 443 + }, + "minecraft:oak_door": { + "protocol_id": 220 + }, + "minecraft:oak_fence": { + "protocol_id": 284 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 369 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 234 + }, + "minecraft:oak_leaves": { + "protocol_id": 88 + }, + "minecraft:oak_log": { + "protocol_id": 49 + }, + "minecraft:oak_planks": { + "protocol_id": 13 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 261 + }, + "minecraft:oak_sapling": { + "protocol_id": 25 + }, + "minecraft:oak_shelf": { + "protocol_id": 188 + }, + "minecraft:oak_sign": { + "protocol_id": 210 + }, + "minecraft:oak_slab": { + "protocol_id": 599 + }, + "minecraft:oak_stairs": { + "protocol_id": 200 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 316 + }, + "minecraft:oak_wall_hanging_sign": { + "protocol_id": 246 + }, + "minecraft:oak_wall_sign": { + "protocol_id": 224 + }, + "minecraft:oak_wood": { + "protocol_id": 71 + }, + "minecraft:observer": { + "protocol_id": 676 + }, + "minecraft:obsidian": { + "protocol_id": 193 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1150 + }, + "minecraft:open_eyeblossom": { + "protocol_id": 1163 + }, + "minecraft:orange_banner": { + "protocol_id": 564 + }, + "minecraft:orange_bed": { + "protocol_id": 111 + }, + "minecraft:orange_candle": { + "protocol_id": 946 + }, + "minecraft:orange_candle_cake": { + "protocol_id": 963 + }, + "minecraft:orange_carpet": { + "protocol_id": 539 + }, + "minecraft:orange_concrete": { + "protocol_id": 711 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 727 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 695 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 679 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 301 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 501 + }, + "minecraft:orange_terracotta": { + "protocol_id": 485 + }, + "minecraft:orange_tulip": { + "protocol_id": 165 + }, + "minecraft:orange_wall_banner": { + "protocol_id": 580 + }, + "minecraft:orange_wool": { + "protocol_id": 141 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 168 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 1017 + }, + "minecraft:oxidized_copper": { + "protocol_id": 1010 + }, + "minecraft:oxidized_copper_bars": { + "protocol_id": 345 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1076 + }, + "minecraft:oxidized_copper_chain": { + "protocol_id": 354 + }, + "minecraft:oxidized_copper_chest": { + "protocol_id": 1084 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 1051 + }, + "minecraft:oxidized_copper_golem_statue": { + "protocol_id": 1092 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1068 + }, + "minecraft:oxidized_copper_lantern": { + "protocol_id": 854 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 1059 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 1013 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 1029 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 1025 + }, + "minecraft:oxidized_lightning_rod": { + "protocol_id": 1100 + }, + "minecraft:packed_ice": { + "protocol_id": 556 + }, + "minecraft:packed_mud": { + "protocol_id": 330 + }, + "minecraft:pale_hanging_moss": { + "protocol_id": 1162 + }, + "minecraft:pale_moss_block": { + "protocol_id": 1160 + }, + "minecraft:pale_moss_carpet": { + "protocol_id": 1161 + }, + "minecraft:pale_oak_button": { + "protocol_id": 450 + }, + "minecraft:pale_oak_door": { + "protocol_id": 652 + }, + "minecraft:pale_oak_fence": { + "protocol_id": 643 + }, + "minecraft:pale_oak_fence_gate": { + "protocol_id": 634 + }, + "minecraft:pale_oak_hanging_sign": { + "protocol_id": 241 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 95 + }, + "minecraft:pale_oak_log": { + "protocol_id": 56 + }, + "minecraft:pale_oak_planks": { + "protocol_id": 21 + }, + "minecraft:pale_oak_pressure_plate": { + "protocol_id": 268 + }, + "minecraft:pale_oak_sapling": { + "protocol_id": 32 + }, + "minecraft:pale_oak_shelf": { + "protocol_id": 189 + }, + "minecraft:pale_oak_sign": { + "protocol_id": 217 + }, + "minecraft:pale_oak_slab": { + "protocol_id": 606 + }, + "minecraft:pale_oak_stairs": { + "protocol_id": 519 + }, + "minecraft:pale_oak_trapdoor": { + "protocol_id": 323 + }, + "minecraft:pale_oak_wall_hanging_sign": { + "protocol_id": 253 + }, + "minecraft:pale_oak_wall_sign": { + "protocol_id": 231 + }, + "minecraft:pale_oak_wood": { + "protocol_id": 20 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1152 + }, + "minecraft:peony": { + "protocol_id": 560 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 614 + }, + "minecraft:piglin_head": { + "protocol_id": 465 + }, + "minecraft:piglin_wall_head": { + "protocol_id": 466 + }, + "minecraft:pink_banner": { + "protocol_id": 569 + }, + "minecraft:pink_bed": { + "protocol_id": 116 + }, + "minecraft:pink_candle": { + "protocol_id": 951 + }, + "minecraft:pink_candle_cake": { + "protocol_id": 968 + }, + "minecraft:pink_carpet": { + "protocol_id": 544 + }, + "minecraft:pink_concrete": { + "protocol_id": 716 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 732 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 700 + }, + "minecraft:pink_petals": { + "protocol_id": 1113 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 684 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 306 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 506 + }, + "minecraft:pink_terracotta": { + "protocol_id": 490 + }, + "minecraft:pink_tulip": { + "protocol_id": 167 + }, + "minecraft:pink_wall_banner": { + "protocol_id": 585 + }, + "minecraft:pink_wool": { + "protocol_id": 146 + }, + "minecraft:piston": { + "protocol_id": 138 + }, + "minecraft:piston_head": { + "protocol_id": 139 + }, + "minecraft:pitcher_crop": { + "protocol_id": 663 + }, + "minecraft:pitcher_plant": { + "protocol_id": 664 + }, + "minecraft:player_head": { + "protocol_id": 459 + }, + "minecraft:player_wall_head": { + "protocol_id": 460 + }, + "minecraft:podzol": { + "protocol_id": 11 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1105 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 822 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 809 + }, + "minecraft:polished_basalt": { + "protocol_id": 289 + }, + "minecraft:polished_blackstone": { + "protocol_id": 928 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 932 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 933 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 934 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 929 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 939 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 938 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 937 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 936 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 940 + }, + "minecraft:polished_deepslate": { + "protocol_id": 1128 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 1130 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 1129 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 1131 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 814 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 800 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 811 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 797 + }, + "minecraft:polished_tuff": { + "protocol_id": 988 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 989 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 990 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 991 + }, + "minecraft:poppy": { + "protocol_id": 160 + }, + "minecraft:potatoes": { + "protocol_id": 442 + }, + "minecraft:potted_acacia_sapling": { + "protocol_id": 417 + }, + "minecraft:potted_allium": { + "protocol_id": 427 + }, + "minecraft:potted_azalea_bush": { + "protocol_id": 1148 + }, + "minecraft:potted_azure_bluet": { + "protocol_id": 428 + }, + "minecraft:potted_bamboo": { + "protocol_id": 793 + }, + "minecraft:potted_birch_sapling": { + "protocol_id": 415 + }, + "minecraft:potted_blue_orchid": { + "protocol_id": 426 + }, + "minecraft:potted_brown_mushroom": { + "protocol_id": 438 + }, + "minecraft:potted_cactus": { + "protocol_id": 440 + }, + "minecraft:potted_cherry_sapling": { + "protocol_id": 418 + }, + "minecraft:potted_closed_eyeblossom": { + "protocol_id": 1166 + }, + "minecraft:potted_cornflower": { + "protocol_id": 434 + }, + "minecraft:potted_crimson_fungus": { + "protocol_id": 919 + }, + "minecraft:potted_crimson_roots": { + "protocol_id": 921 + }, + "minecraft:potted_dandelion": { + "protocol_id": 423 + }, + "minecraft:potted_dark_oak_sapling": { + "protocol_id": 419 + }, + "minecraft:potted_dead_bush": { + "protocol_id": 439 + }, + "minecraft:potted_fern": { + "protocol_id": 422 + }, + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 1149 + }, + "minecraft:potted_golden_dandelion": { + "protocol_id": 424 + }, + "minecraft:potted_jungle_sapling": { + "protocol_id": 416 + }, + "minecraft:potted_lily_of_the_valley": { + "protocol_id": 435 + }, + "minecraft:potted_mangrove_propagule": { + "protocol_id": 421 + }, + "minecraft:potted_oak_sapling": { + "protocol_id": 413 + }, + "minecraft:potted_open_eyeblossom": { + "protocol_id": 1165 + }, + "minecraft:potted_orange_tulip": { + "protocol_id": 430 + }, + "minecraft:potted_oxeye_daisy": { + "protocol_id": 433 + }, + "minecraft:potted_pale_oak_sapling": { + "protocol_id": 420 + }, + "minecraft:potted_pink_tulip": { + "protocol_id": 432 + }, + "minecraft:potted_poppy": { + "protocol_id": 425 + }, + "minecraft:potted_red_mushroom": { + "protocol_id": 437 + }, + "minecraft:potted_red_tulip": { + "protocol_id": 429 + }, + "minecraft:potted_spruce_sapling": { + "protocol_id": 414 + }, + "minecraft:potted_torchflower": { + "protocol_id": 412 + }, + "minecraft:potted_warped_fungus": { + "protocol_id": 920 + }, + "minecraft:potted_warped_roots": { + "protocol_id": 922 + }, + "minecraft:potted_white_tulip": { + "protocol_id": 431 + }, + "minecraft:potted_wither_rose": { + "protocol_id": 436 + }, + "minecraft:powder_snow": { + "protocol_id": 1000 + }, + "minecraft:powder_snow_cauldron": { + "protocol_id": 390 + }, + "minecraft:powered_rail": { + "protocol_id": 126 + }, + "minecraft:prismarine": { + "protocol_id": 527 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 534 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 531 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 528 + }, + "minecraft:prismarine_slab": { + "protocol_id": 533 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 530 + }, + "minecraft:prismarine_wall": { + "protocol_id": 825 + }, + "minecraft:pumpkin": { + "protocol_id": 360 + }, + "minecraft:pumpkin_stem": { + "protocol_id": 364 + }, + "minecraft:purple_banner": { + "protocol_id": 573 + }, + "minecraft:purple_bed": { + "protocol_id": 120 + }, + "minecraft:purple_candle": { + "protocol_id": 955 + }, + "minecraft:purple_candle_cake": { + "protocol_id": 972 + }, + "minecraft:purple_carpet": { + "protocol_id": 548 + }, + "minecraft:purple_concrete": { + "protocol_id": 720 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 736 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 704 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 688 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 310 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 510 + }, + "minecraft:purple_terracotta": { + "protocol_id": 494 + }, + "minecraft:purple_wall_banner": { + "protocol_id": 589 + }, + "minecraft:purple_wool": { + "protocol_id": 150 + }, + "minecraft:purpur_block": { + "protocol_id": 658 + }, + "minecraft:purpur_pillar": { + "protocol_id": 659 + }, + "minecraft:purpur_slab": { + "protocol_id": 623 + }, + "minecraft:purpur_stairs": { + "protocol_id": 660 + }, + "minecraft:quartz_block": { + "protocol_id": 478 + }, + "minecraft:quartz_bricks": { + "protocol_id": 943 + }, + "minecraft:quartz_pillar": { + "protocol_id": 480 + }, + "minecraft:quartz_slab": { + "protocol_id": 620 + }, + "minecraft:quartz_stairs": { + "protocol_id": 481 + }, + "minecraft:rail": { + "protocol_id": 222 + }, + "minecraft:raw_copper_block": { + "protocol_id": 1146 + }, + "minecraft:raw_gold_block": { + "protocol_id": 1147 + }, + "minecraft:raw_iron_block": { + "protocol_id": 1145 + }, + "minecraft:red_banner": { + "protocol_id": 577 + }, + "minecraft:red_bed": { + "protocol_id": 124 + }, + "minecraft:red_candle": { + "protocol_id": 959 + }, + "minecraft:red_candle_cake": { + "protocol_id": 976 + }, + "minecraft:red_carpet": { + "protocol_id": 552 + }, + "minecraft:red_concrete": { + "protocol_id": 724 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 740 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 708 + }, + "minecraft:red_mushroom": { + "protocol_id": 173 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 339 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 821 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 808 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 833 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 673 + }, + "minecraft:red_sand": { + "protocol_id": 39 + }, + "minecraft:red_sandstone": { + "protocol_id": 595 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 621 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 598 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 826 + }, + "minecraft:red_shulker_box": { + "protocol_id": 692 + }, + "minecraft:red_stained_glass": { + "protocol_id": 314 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 514 + }, + "minecraft:red_terracotta": { + "protocol_id": 498 + }, + "minecraft:red_tulip": { + "protocol_id": 164 + }, + "minecraft:red_wall_banner": { + "protocol_id": 593 + }, + "minecraft:red_wool": { + "protocol_id": 154 + }, + "minecraft:redstone_block": { + "protocol_id": 475 + }, + "minecraft:redstone_lamp": { + "protocol_id": 395 + }, + "minecraft:redstone_ore": { + "protocol_id": 271 + }, + "minecraft:redstone_torch": { + "protocol_id": 273 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 274 + }, + "minecraft:redstone_wire": { + "protocol_id": 202 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 1154 + }, + "minecraft:repeater": { + "protocol_id": 299 + }, + "minecraft:repeating_command_block": { + "protocol_id": 668 + }, + "minecraft:resin_block": { + "protocol_id": 375 + }, + "minecraft:resin_brick_slab": { + "protocol_id": 378 + }, + "minecraft:resin_brick_stairs": { + "protocol_id": 377 + }, + "minecraft:resin_brick_wall": { + "protocol_id": 379 + }, + "minecraft:resin_bricks": { + "protocol_id": 376 + }, + "minecraft:resin_clump": { + "protocol_id": 368 + }, + "minecraft:respawn_anchor": { + "protocol_id": 918 + }, + "minecraft:rooted_dirt": { + "protocol_id": 1121 + }, + "minecraft:rose_bush": { + "protocol_id": 559 + }, + "minecraft:sand": { + "protocol_id": 37 + }, + "minecraft:sandstone": { + "protocol_id": 106 + }, + "minecraft:sandstone_slab": { + "protocol_id": 612 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 397 + }, + "minecraft:sandstone_wall": { + "protocol_id": 834 + }, + "minecraft:scaffolding": { + "protocol_id": 837 + }, + "minecraft:sculk": { + "protocol_id": 1003 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 1005 + }, + "minecraft:sculk_sensor": { + "protocol_id": 1001 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 1006 + }, + "minecraft:sculk_vein": { + "protocol_id": 1004 + }, + "minecraft:sea_lantern": { + "protocol_id": 536 + }, + "minecraft:sea_pickle": { + "protocol_id": 788 + }, + "minecraft:seagrass": { + "protocol_id": 136 + }, + "minecraft:short_dry_grass": { + "protocol_id": 134 + }, + "minecraft:short_grass": { + "protocol_id": 130 + }, + "minecraft:shroomlight": { + "protocol_id": 877 + }, + "minecraft:shulker_box": { + "protocol_id": 677 + }, + "minecraft:skeleton_skull": { + "protocol_id": 453 + }, + "minecraft:skeleton_wall_skull": { + "protocol_id": 454 + }, + "minecraft:slime_block": { + "protocol_id": 523 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 983 + }, + "minecraft:small_dripleaf": { + "protocol_id": 1119 + }, + "minecraft:smithing_table": { + "protocol_id": 846 + }, + "minecraft:smoker": { + "protocol_id": 840 + }, + "minecraft:smooth_basalt": { + "protocol_id": 1144 + }, + "minecraft:smooth_quartz": { + "protocol_id": 626 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 818 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 805 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 627 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 812 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 798 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 625 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 817 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 804 + }, + "minecraft:smooth_stone": { + "protocol_id": 624 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 611 + }, + "minecraft:sniffer_egg": { + "protocol_id": 746 + }, + "minecraft:snow": { + "protocol_id": 276 + }, + "minecraft:snow_block": { + "protocol_id": 278 + }, + "minecraft:soul_campfire": { + "protocol_id": 860 + }, + "minecraft:soul_fire": { + "protocol_id": 197 + }, + "minecraft:soul_lantern": { + "protocol_id": 850 + }, + "minecraft:soul_sand": { + "protocol_id": 286 + }, + "minecraft:soul_soil": { + "protocol_id": 287 + }, + "minecraft:soul_torch": { + "protocol_id": 290 + }, + "minecraft:soul_wall_torch": { + "protocol_id": 291 + }, + "minecraft:spawner": { + "protocol_id": 198 + }, + "minecraft:sponge": { + "protocol_id": 99 + }, + "minecraft:spore_blossom": { + "protocol_id": 1109 + }, + "minecraft:spruce_button": { + "protocol_id": 444 + }, + "minecraft:spruce_door": { + "protocol_id": 646 + }, + "minecraft:spruce_fence": { + "protocol_id": 637 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 628 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 235 + }, + "minecraft:spruce_leaves": { + "protocol_id": 89 + }, + "minecraft:spruce_log": { + "protocol_id": 50 + }, + "minecraft:spruce_planks": { + "protocol_id": 14 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 262 + }, + "minecraft:spruce_sapling": { + "protocol_id": 26 + }, + "minecraft:spruce_shelf": { + "protocol_id": 190 + }, + "minecraft:spruce_sign": { + "protocol_id": 211 + }, + "minecraft:spruce_slab": { + "protocol_id": 600 + }, + "minecraft:spruce_stairs": { + "protocol_id": 404 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 317 + }, + "minecraft:spruce_wall_hanging_sign": { + "protocol_id": 247 + }, + "minecraft:spruce_wall_sign": { + "protocol_id": 225 + }, + "minecraft:spruce_wood": { + "protocol_id": 72 + }, + "minecraft:sticky_piston": { + "protocol_id": 128 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 617 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 371 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 829 + }, + "minecraft:stone_bricks": { + "protocol_id": 326 + }, + "minecraft:stone_button": { + "protocol_id": 275 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 259 + }, + "minecraft:stone_slab": { + "protocol_id": 610 + }, + "minecraft:stone_stairs": { + "protocol_id": 803 + }, + "minecraft:stonecutter": { + "protocol_id": 847 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 64 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 83 + }, + "minecraft:stripped_bamboo_block": { + "protocol_id": 70 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 62 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 81 + }, + "minecraft:stripped_cherry_log": { + "protocol_id": 65 + }, + "minecraft:stripped_cherry_wood": { + "protocol_id": 84 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 874 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 872 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 66 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 85 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 63 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 82 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 69 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 87 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 68 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 79 + }, + "minecraft:stripped_pale_oak_log": { + "protocol_id": 67 + }, + "minecraft:stripped_pale_oak_wood": { + "protocol_id": 86 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 61 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 80 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 865 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 863 + }, + "minecraft:structure_block": { + "protocol_id": 905 + }, + "minecraft:structure_void": { + "protocol_id": 675 + }, + "minecraft:sugar_cane": { + "protocol_id": 282 + }, + "minecraft:sunflower": { + "protocol_id": 557 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 41 + }, + "minecraft:suspicious_sand": { + "protocol_id": 38 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 861 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 135 + }, + "minecraft:tall_grass": { + "protocol_id": 561 + }, + "minecraft:tall_seagrass": { + "protocol_id": 137 + }, + "minecraft:target": { + "protocol_id": 910 + }, + "minecraft:terracotta": { + "protocol_id": 554 + }, + "minecraft:test_block": { + "protocol_id": 907 + }, + "minecraft:test_instance_block": { + "protocol_id": 908 + }, + "minecraft:tinted_glass": { + "protocol_id": 999 + }, + "minecraft:tnt": { + "protocol_id": 177 + }, + "minecraft:torch": { + "protocol_id": 194 + }, + "minecraft:torchflower": { + "protocol_id": 159 + }, + "minecraft:torchflower_crop": { + "protocol_id": 662 + }, + "minecraft:trapped_chest": { + "protocol_id": 470 + }, + "minecraft:trial_spawner": { + "protocol_id": 1157 + }, + "minecraft:tripwire": { + "protocol_id": 402 + }, + "minecraft:tripwire_hook": { + "protocol_id": 401 + }, + "minecraft:tube_coral": { + "protocol_id": 763 + }, + "minecraft:tube_coral_block": { + "protocol_id": 753 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 773 + }, + "minecraft:tube_coral_wall_fan": { + "protocol_id": 783 + }, + "minecraft:tuff": { + "protocol_id": 984 + }, + "minecraft:tuff_brick_slab": { + "protocol_id": 994 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 995 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 996 + }, + "minecraft:tuff_bricks": { + "protocol_id": 993 + }, + "minecraft:tuff_slab": { + "protocol_id": 985 + }, + "minecraft:tuff_stairs": { + "protocol_id": 986 + }, + "minecraft:tuff_wall": { + "protocol_id": 987 + }, + "minecraft:turtle_egg": { + "protocol_id": 745 + }, + "minecraft:twisting_vines": { + "protocol_id": 880 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 881 + }, + "minecraft:vault": { + "protocol_id": 1158 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1151 + }, + "minecraft:vine": { + "protocol_id": 366 + }, + "minecraft:void_air": { + "protocol_id": 794 + }, + "minecraft:wall_torch": { + "protocol_id": 195 + }, + "minecraft:warped_button": { + "protocol_id": 898 + }, + "minecraft:warped_door": { + "protocol_id": 900 + }, + "minecraft:warped_fence": { + "protocol_id": 890 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 894 + }, + "minecraft:warped_fungus": { + "protocol_id": 867 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 243 + }, + "minecraft:warped_hyphae": { + "protocol_id": 864 + }, + "minecraft:warped_nylium": { + "protocol_id": 866 + }, + "minecraft:warped_planks": { + "protocol_id": 884 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 888 + }, + "minecraft:warped_roots": { + "protocol_id": 869 + }, + "minecraft:warped_shelf": { + "protocol_id": 191 + }, + "minecraft:warped_sign": { + "protocol_id": 902 + }, + "minecraft:warped_slab": { + "protocol_id": 886 + }, + "minecraft:warped_stairs": { + "protocol_id": 896 + }, + "minecraft:warped_stem": { + "protocol_id": 862 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 892 + }, + "minecraft:warped_wall_hanging_sign": { + "protocol_id": 256 + }, + "minecraft:warped_wall_sign": { + "protocol_id": 904 + }, + "minecraft:warped_wart_block": { + "protocol_id": 868 + }, + "minecraft:water": { + "protocol_id": 35 + }, + "minecraft:water_cauldron": { + "protocol_id": 388 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 1024 + }, + "minecraft:waxed_copper_bars": { + "protocol_id": 346 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 1033 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1077 + }, + "minecraft:waxed_copper_chain": { + "protocol_id": 355 + }, + "minecraft:waxed_copper_chest": { + "protocol_id": 1085 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 1053 + }, + "minecraft:waxed_copper_golem_statue": { + "protocol_id": 1093 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1069 + }, + "minecraft:waxed_copper_lantern": { + "protocol_id": 855 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 1061 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 1040 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 1048 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 1044 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 1023 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 1035 + }, + "minecraft:waxed_exposed_copper_bars": { + "protocol_id": 347 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1078 + }, + "minecraft:waxed_exposed_copper_chain": { + "protocol_id": 356 + }, + "minecraft:waxed_exposed_copper_chest": { + "protocol_id": 1086 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 1054 + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "protocol_id": 1094 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1070 + }, + "minecraft:waxed_exposed_copper_lantern": { + "protocol_id": 856 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 1062 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 1039 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 1047 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 1043 + }, + "minecraft:waxed_exposed_lightning_rod": { + "protocol_id": 1102 + }, + "minecraft:waxed_lightning_rod": { + "protocol_id": 1101 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 1021 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 1036 + }, + "minecraft:waxed_oxidized_copper_bars": { + "protocol_id": 349 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1080 + }, + "minecraft:waxed_oxidized_copper_chain": { + "protocol_id": 358 + }, + "minecraft:waxed_oxidized_copper_chest": { + "protocol_id": 1088 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 1055 + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "protocol_id": 1096 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1072 + }, + "minecraft:waxed_oxidized_copper_lantern": { + "protocol_id": 858 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 1063 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 1037 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 1045 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 1041 + }, + "minecraft:waxed_oxidized_lightning_rod": { + "protocol_id": 1104 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 1022 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 1034 + }, + "minecraft:waxed_weathered_copper_bars": { + "protocol_id": 348 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1079 + }, + "minecraft:waxed_weathered_copper_chain": { + "protocol_id": 357 + }, + "minecraft:waxed_weathered_copper_chest": { + "protocol_id": 1087 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 1056 + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "protocol_id": 1095 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1071 + }, + "minecraft:waxed_weathered_copper_lantern": { + "protocol_id": 857 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 1064 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 1038 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 1046 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 1042 + }, + "minecraft:waxed_weathered_lightning_rod": { + "protocol_id": 1103 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 1018 + }, + "minecraft:weathered_copper": { + "protocol_id": 1009 + }, + "minecraft:weathered_copper_bars": { + "protocol_id": 344 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1075 + }, + "minecraft:weathered_copper_chain": { + "protocol_id": 353 + }, + "minecraft:weathered_copper_chest": { + "protocol_id": 1083 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 1052 + }, + "minecraft:weathered_copper_golem_statue": { + "protocol_id": 1091 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1067 + }, + "minecraft:weathered_copper_lantern": { + "protocol_id": 853 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 1060 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 1014 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 1030 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 1026 + }, + "minecraft:weathered_lightning_rod": { + "protocol_id": 1099 + }, + "minecraft:weeping_vines": { + "protocol_id": 878 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 879 + }, + "minecraft:wet_sponge": { + "protocol_id": 100 + }, + "minecraft:wheat": { + "protocol_id": 207 + }, + "minecraft:white_banner": { + "protocol_id": 563 + }, + "minecraft:white_bed": { + "protocol_id": 110 + }, + "minecraft:white_candle": { + "protocol_id": 945 + }, + "minecraft:white_candle_cake": { + "protocol_id": 962 + }, + "minecraft:white_carpet": { + "protocol_id": 538 + }, + "minecraft:white_concrete": { + "protocol_id": 710 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 726 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 694 + }, + "minecraft:white_shulker_box": { + "protocol_id": 678 + }, + "minecraft:white_stained_glass": { + "protocol_id": 300 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 500 + }, + "minecraft:white_terracotta": { + "protocol_id": 484 + }, + "minecraft:white_tulip": { + "protocol_id": 166 + }, + "minecraft:white_wall_banner": { + "protocol_id": 579 + }, + "minecraft:white_wool": { + "protocol_id": 140 + }, + "minecraft:wildflowers": { + "protocol_id": 1114 + }, + "minecraft:wither_rose": { + "protocol_id": 170 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 455 + }, + "minecraft:wither_skeleton_wall_skull": { + "protocol_id": 456 + }, + "minecraft:yellow_banner": { + "protocol_id": 567 + }, + "minecraft:yellow_bed": { + "protocol_id": 114 + }, + "minecraft:yellow_candle": { + "protocol_id": 949 + }, + "minecraft:yellow_candle_cake": { + "protocol_id": 966 + }, + "minecraft:yellow_carpet": { + "protocol_id": 542 + }, + "minecraft:yellow_concrete": { + "protocol_id": 714 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 730 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 698 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 682 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 304 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 504 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 488 + }, + "minecraft:yellow_wall_banner": { + "protocol_id": 583 + }, + "minecraft:yellow_wool": { + "protocol_id": 144 + }, + "minecraft:zombie_head": { + "protocol_id": 457 + }, + "minecraft:zombie_wall_head": { + "protocol_id": 458 + } + }, + "protocol_id": 4 + }, + "minecraft:block_entity_type": { + "entries": { + "minecraft:banner": { + "protocol_id": 20 + }, + "minecraft:barrel": { + "protocol_id": 27 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:bed": { + "protocol_id": 25 + }, + "minecraft:beehive": { + "protocol_id": 34 + }, + "minecraft:bell": { + "protocol_id": 31 + }, + "minecraft:blast_furnace": { + "protocol_id": 29 + }, + "minecraft:brewing_stand": { + "protocol_id": 12 + }, + "minecraft:brushable_block": { + "protocol_id": 41 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 36 + }, + "minecraft:campfire": { + "protocol_id": 33 + }, + "minecraft:chest": { + "protocol_id": 1 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 39 + }, + "minecraft:command_block": { + "protocol_id": 23 + }, + "minecraft:comparator": { + "protocol_id": 19 + }, + "minecraft:conduit": { + "protocol_id": 26 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 48 + }, + "minecraft:crafter": { + "protocol_id": 43 + }, + "minecraft:creaking_heart": { + "protocol_id": 10 + }, + "minecraft:daylight_detector": { + "protocol_id": 17 + }, + "minecraft:decorated_pot": { + "protocol_id": 42 + }, + "minecraft:dispenser": { + "protocol_id": 5 + }, + "minecraft:dropper": { + "protocol_id": 6 + }, + "minecraft:enchanting_table": { + "protocol_id": 13 + }, + "minecraft:end_gateway": { + "protocol_id": 22 + }, + "minecraft:end_portal": { + "protocol_id": 14 + }, + "minecraft:ender_chest": { + "protocol_id": 3 + }, + "minecraft:furnace": { + "protocol_id": 0 + }, + "minecraft:hanging_sign": { + "protocol_id": 8 + }, + "minecraft:hopper": { + "protocol_id": 18 + }, + "minecraft:jigsaw": { + "protocol_id": 32 + }, + "minecraft:jukebox": { + "protocol_id": 4 + }, + "minecraft:lectern": { + "protocol_id": 30 + }, + "minecraft:mob_spawner": { + "protocol_id": 9 + }, + "minecraft:piston": { + "protocol_id": 11 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 37 + }, + "minecraft:sculk_sensor": { + "protocol_id": 35 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 38 + }, + "minecraft:shelf": { + "protocol_id": 40 + }, + "minecraft:shulker_box": { + "protocol_id": 24 + }, + "minecraft:sign": { + "protocol_id": 7 + }, + "minecraft:skull": { + "protocol_id": 16 + }, + "minecraft:smoker": { + "protocol_id": 28 + }, + "minecraft:structure_block": { + "protocol_id": 21 + }, + "minecraft:test_block": { + "protocol_id": 46 + }, + "minecraft:test_instance_block": { + "protocol_id": 47 + }, + "minecraft:trapped_chest": { + "protocol_id": 2 + }, + "minecraft:trial_spawner": { + "protocol_id": 44 + }, + "minecraft:vault": { + "protocol_id": 45 + } + }, + "protocol_id": 10 + }, + "minecraft:block_predicate_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 9 + }, + "minecraft:any_of": { + "protocol_id": 8 + }, + "minecraft:has_sturdy_face": { + "protocol_id": 3 + }, + "minecraft:inside_world_bounds": { + "protocol_id": 7 + }, + "minecraft:matching_block_tag": { + "protocol_id": 1 + }, + "minecraft:matching_blocks": { + "protocol_id": 0 + }, + "minecraft:matching_fluids": { + "protocol_id": 2 + }, + "minecraft:not": { + "protocol_id": 10 + }, + "minecraft:replaceable": { + "protocol_id": 5 + }, + "minecraft:solid": { + "protocol_id": 4 + }, + "minecraft:true": { + "protocol_id": 11 + }, + "minecraft:unobstructed": { + "protocol_id": 12 + }, + "minecraft:would_survive": { + "protocol_id": 6 + } + }, + "protocol_id": 38 + }, + "minecraft:block_type": { + "entries": { + "minecraft:air": { + "protocol_id": 1 + }, + "minecraft:amethyst": { + "protocol_id": 2 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 3 + }, + "minecraft:anvil": { + "protocol_id": 4 + }, + "minecraft:attached_stem": { + "protocol_id": 5 + }, + "minecraft:azalea": { + "protocol_id": 6 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 7 + }, + "minecraft:bamboo_stalk": { + "protocol_id": 8 + }, + "minecraft:banner": { + "protocol_id": 9 + }, + "minecraft:barrel": { + "protocol_id": 10 + }, + "minecraft:barrier": { + "protocol_id": 11 + }, + "minecraft:base_coral_fan": { + "protocol_id": 12 + }, + "minecraft:base_coral_plant": { + "protocol_id": 13 + }, + "minecraft:base_coral_wall_fan": { + "protocol_id": 14 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:bed": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 17 + }, + "minecraft:beetroot": { + "protocol_id": 18 + }, + "minecraft:bell": { + "protocol_id": 19 + }, + "minecraft:big_dripleaf": { + "protocol_id": 20 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 21 + }, + "minecraft:blast_furnace": { + "protocol_id": 22 + }, + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:bonemealable_feature_placer": { + "protocol_id": 86 + }, + "minecraft:brewing_stand": { + "protocol_id": 23 + }, + "minecraft:brushable": { + "protocol_id": 24 + }, + "minecraft:bubble_column": { + "protocol_id": 25 + }, + "minecraft:budding_amethyst": { + "protocol_id": 26 + }, + "minecraft:bush": { + "protocol_id": 27 + }, + "minecraft:button": { + "protocol_id": 28 + }, + "minecraft:cactus": { + "protocol_id": 29 + }, + "minecraft:cactus_flower": { + "protocol_id": 30 + }, + "minecraft:cake": { + "protocol_id": 31 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 32 + }, + "minecraft:campfire": { + "protocol_id": 33 + }, + "minecraft:candle": { + "protocol_id": 35 + }, + "minecraft:candle_cake": { + "protocol_id": 34 + }, + "minecraft:carpet": { + "protocol_id": 36 + }, + "minecraft:carrot": { + "protocol_id": 37 + }, + "minecraft:cartography_table": { + "protocol_id": 38 + }, + "minecraft:cauldron": { + "protocol_id": 39 + }, + "minecraft:cave_vines": { + "protocol_id": 40 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 41 + }, + "minecraft:ceiling_hanging_sign": { + "protocol_id": 42 + }, + "minecraft:chain": { + "protocol_id": 43 + }, + "minecraft:chest": { + "protocol_id": 44 + }, + "minecraft:chiseled_book_shelf": { + "protocol_id": 45 + }, + "minecraft:chorus_flower": { + "protocol_id": 46 + }, + "minecraft:chorus_plant": { + "protocol_id": 47 + }, + "minecraft:cocoa": { + "protocol_id": 48 + }, + "minecraft:colored_falling": { + "protocol_id": 49 + }, + "minecraft:command": { + "protocol_id": 50 + }, + "minecraft:comparator": { + "protocol_id": 51 + }, + "minecraft:composter": { + "protocol_id": 52 + }, + "minecraft:concrete_powder": { + "protocol_id": 53 + }, + "minecraft:conduit": { + "protocol_id": 54 + }, + "minecraft:copper_bulb_block": { + "protocol_id": 55 + }, + "minecraft:copper_chest": { + "protocol_id": 56 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 57 + }, + "minecraft:coral": { + "protocol_id": 58 + }, + "minecraft:coral_fan": { + "protocol_id": 59 + }, + "minecraft:coral_plant": { + "protocol_id": 60 + }, + "minecraft:coral_wall_fan": { + "protocol_id": 61 + }, + "minecraft:crafter": { + "protocol_id": 62 + }, + "minecraft:crafting_table": { + "protocol_id": 63 + }, + "minecraft:creaking_heart": { + "protocol_id": 196 + }, + "minecraft:crop": { + "protocol_id": 64 + }, + "minecraft:crying_obsidian": { + "protocol_id": 65 + }, + "minecraft:daylight_detector": { + "protocol_id": 66 + }, + "minecraft:decorated_pot": { + "protocol_id": 68 + }, + "minecraft:detector_rail": { + "protocol_id": 69 + }, + "minecraft:dirt_path": { + "protocol_id": 70 + }, + "minecraft:dispenser": { + "protocol_id": 71 + }, + "minecraft:door": { + "protocol_id": 72 + }, + "minecraft:double_plant": { + "protocol_id": 73 + }, + "minecraft:dragon_egg": { + "protocol_id": 74 + }, + "minecraft:dried_ghast": { + "protocol_id": 75 + }, + "minecraft:drop_experience": { + "protocol_id": 76 + }, + "minecraft:dropper": { + "protocol_id": 77 + }, + "minecraft:dry_vegetation": { + "protocol_id": 67 + }, + "minecraft:enchantment_table": { + "protocol_id": 78 + }, + "minecraft:end_gateway": { + "protocol_id": 80 + }, + "minecraft:end_portal": { + "protocol_id": 81 + }, + "minecraft:end_portal_frame": { + "protocol_id": 82 + }, + "minecraft:end_rod": { + "protocol_id": 83 + }, + "minecraft:ender_chest": { + "protocol_id": 79 + }, + "minecraft:eyeblossom": { + "protocol_id": 84 + }, + "minecraft:farmland": { + "protocol_id": 85 + }, + "minecraft:fence": { + "protocol_id": 87 + }, + "minecraft:fence_gate": { + "protocol_id": 88 + }, + "minecraft:fire": { + "protocol_id": 89 + }, + "minecraft:firefly_bush": { + "protocol_id": 90 + }, + "minecraft:flower": { + "protocol_id": 91 + }, + "minecraft:flower_bed": { + "protocol_id": 147 + }, + "minecraft:flower_pot": { + "protocol_id": 92 + }, + "minecraft:frogspawn": { + "protocol_id": 93 + }, + "minecraft:frosted_ice": { + "protocol_id": 94 + }, + "minecraft:furnace": { + "protocol_id": 96 + }, + "minecraft:glazed_terracotta": { + "protocol_id": 97 + }, + "minecraft:glow_lichen": { + "protocol_id": 98 + }, + "minecraft:grass": { + "protocol_id": 99 + }, + "minecraft:grindstone": { + "protocol_id": 100 + }, + "minecraft:half_transparent": { + "protocol_id": 101 + }, + "minecraft:hanging_moss": { + "protocol_id": 102 + }, + "minecraft:hanging_roots": { + "protocol_id": 103 + }, + "minecraft:hay": { + "protocol_id": 104 + }, + "minecraft:heavy_core": { + "protocol_id": 105 + }, + "minecraft:honey": { + "protocol_id": 106 + }, + "minecraft:hopper": { + "protocol_id": 107 + }, + "minecraft:huge_mushroom": { + "protocol_id": 108 + }, + "minecraft:ice": { + "protocol_id": 109 + }, + "minecraft:infested": { + "protocol_id": 110 + }, + "minecraft:infested_rotated_pillar": { + "protocol_id": 111 + }, + "minecraft:iron_bars": { + "protocol_id": 112 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 113 + }, + "minecraft:jigsaw": { + "protocol_id": 114 + }, + "minecraft:jukebox": { + "protocol_id": 115 + }, + "minecraft:kelp": { + "protocol_id": 116 + }, + "minecraft:kelp_plant": { + "protocol_id": 117 + }, + "minecraft:ladder": { + "protocol_id": 118 + }, + "minecraft:lantern": { + "protocol_id": 119 + }, + "minecraft:lava_cauldron": { + "protocol_id": 120 + }, + "minecraft:layered_cauldron": { + "protocol_id": 121 + }, + "minecraft:leaf_litter": { + "protocol_id": 122 + }, + "minecraft:lectern": { + "protocol_id": 123 + }, + "minecraft:lever": { + "protocol_id": 124 + }, + "minecraft:light": { + "protocol_id": 125 + }, + "minecraft:lightning_rod": { + "protocol_id": 126 + }, + "minecraft:lily_pad": { + "protocol_id": 239 + }, + "minecraft:liquid": { + "protocol_id": 127 + }, + "minecraft:loom": { + "protocol_id": 128 + }, + "minecraft:magma": { + "protocol_id": 129 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 130 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 131 + }, + "minecraft:mangrove_roots": { + "protocol_id": 132 + }, + "minecraft:mossy_carpet": { + "protocol_id": 133 + }, + "minecraft:moving_piston": { + "protocol_id": 134 + }, + "minecraft:mud": { + "protocol_id": 135 + }, + "minecraft:multiface": { + "protocol_id": 136 + }, + "minecraft:mushroom": { + "protocol_id": 137 + }, + "minecraft:mycelium": { + "protocol_id": 138 + }, + "minecraft:nether_fungus": { + "protocol_id": 95 + }, + "minecraft:nether_portal": { + "protocol_id": 139 + }, + "minecraft:nether_roots": { + "protocol_id": 169 + }, + "minecraft:nether_sprouts": { + "protocol_id": 141 + }, + "minecraft:nether_wart": { + "protocol_id": 142 + }, + "minecraft:netherrack": { + "protocol_id": 140 + }, + "minecraft:note": { + "protocol_id": 143 + }, + "minecraft:nylium": { + "protocol_id": 144 + }, + "minecraft:observer": { + "protocol_id": 145 + }, + "minecraft:piglinwallskull": { + "protocol_id": 146 + }, + "minecraft:piston_base": { + "protocol_id": 148 + }, + "minecraft:piston_head": { + "protocol_id": 149 + }, + "minecraft:pitcher_crop": { + "protocol_id": 150 + }, + "minecraft:player_head": { + "protocol_id": 151 + }, + "minecraft:player_wall_head": { + "protocol_id": 152 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 153 + }, + "minecraft:potato": { + "protocol_id": 154 + }, + "minecraft:powder_snow": { + "protocol_id": 155 + }, + "minecraft:powered": { + "protocol_id": 156 + }, + "minecraft:powered_rail": { + "protocol_id": 157 + }, + "minecraft:pressure_plate": { + "protocol_id": 158 + }, + "minecraft:pumpkin": { + "protocol_id": 159 + }, + "minecraft:rail": { + "protocol_id": 160 + }, + "minecraft:redstone_lamp": { + "protocol_id": 161 + }, + "minecraft:redstone_ore": { + "protocol_id": 162 + }, + "minecraft:redstone_torch": { + "protocol_id": 163 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 164 + }, + "minecraft:redstone_wire": { + "protocol_id": 165 + }, + "minecraft:repeater": { + "protocol_id": 166 + }, + "minecraft:respawn_anchor": { + "protocol_id": 167 + }, + "minecraft:rooted_dirt": { + "protocol_id": 168 + }, + "minecraft:rotated_pillar": { + "protocol_id": 170 + }, + "minecraft:sand": { + "protocol_id": 172 + }, + "minecraft:sapling": { + "protocol_id": 171 + }, + "minecraft:scaffolding": { + "protocol_id": 173 + }, + "minecraft:sculk": { + "protocol_id": 175 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 174 + }, + "minecraft:sculk_sensor": { + "protocol_id": 176 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 177 + }, + "minecraft:sculk_vein": { + "protocol_id": 178 + }, + "minecraft:sea_pickle": { + "protocol_id": 180 + }, + "minecraft:seagrass": { + "protocol_id": 179 + }, + "minecraft:shelf": { + "protocol_id": 181 + }, + "minecraft:short_dry_grass": { + "protocol_id": 182 + }, + "minecraft:shulker_box": { + "protocol_id": 183 + }, + "minecraft:skull": { + "protocol_id": 184 + }, + "minecraft:slab": { + "protocol_id": 185 + }, + "minecraft:slime": { + "protocol_id": 186 + }, + "minecraft:small_dripleaf": { + "protocol_id": 187 + }, + "minecraft:smithing_table": { + "protocol_id": 188 + }, + "minecraft:smoker": { + "protocol_id": 189 + }, + "minecraft:sniffer_egg": { + "protocol_id": 190 + }, + "minecraft:snow_layer": { + "protocol_id": 191 + }, + "minecraft:snowy_dirt": { + "protocol_id": 192 + }, + "minecraft:soul_fire": { + "protocol_id": 193 + }, + "minecraft:soul_sand": { + "protocol_id": 194 + }, + "minecraft:spawner": { + "protocol_id": 195 + }, + "minecraft:sponge": { + "protocol_id": 197 + }, + "minecraft:spore_blossom": { + "protocol_id": 198 + }, + "minecraft:stained_glass": { + "protocol_id": 200 + }, + "minecraft:stained_glass_pane": { + "protocol_id": 199 + }, + "minecraft:stair": { + "protocol_id": 201 + }, + "minecraft:standing_sign": { + "protocol_id": 202 + }, + "minecraft:stem": { + "protocol_id": 203 + }, + "minecraft:stonecutter": { + "protocol_id": 204 + }, + "minecraft:structure": { + "protocol_id": 205 + }, + "minecraft:structure_void": { + "protocol_id": 206 + }, + "minecraft:sugar_cane": { + "protocol_id": 207 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 208 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 209 + }, + "minecraft:tall_flower": { + "protocol_id": 210 + }, + "minecraft:tall_grass": { + "protocol_id": 211 + }, + "minecraft:tall_seagrass": { + "protocol_id": 212 + }, + "minecraft:target": { + "protocol_id": 213 + }, + "minecraft:test": { + "protocol_id": 214 + }, + "minecraft:test_instance": { + "protocol_id": 215 + }, + "minecraft:tinted_glass": { + "protocol_id": 216 + }, + "minecraft:tinted_particle_leaves": { + "protocol_id": 217 + }, + "minecraft:tnt": { + "protocol_id": 218 + }, + "minecraft:torch": { + "protocol_id": 220 + }, + "minecraft:torchflower_crop": { + "protocol_id": 219 + }, + "minecraft:transparent": { + "protocol_id": 221 + }, + "minecraft:trapdoor": { + "protocol_id": 222 + }, + "minecraft:trapped_chest": { + "protocol_id": 223 + }, + "minecraft:trial_spawner": { + "protocol_id": 224 + }, + "minecraft:trip_wire_hook": { + "protocol_id": 225 + }, + "minecraft:tripwire": { + "protocol_id": 226 + }, + "minecraft:turtle_egg": { + "protocol_id": 227 + }, + "minecraft:twisting_vines": { + "protocol_id": 229 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 228 + }, + "minecraft:untinted_particle_leaves": { + "protocol_id": 230 + }, + "minecraft:vault": { + "protocol_id": 231 + }, + "minecraft:vine": { + "protocol_id": 232 + }, + "minecraft:wall": { + "protocol_id": 238 + }, + "minecraft:wall_banner": { + "protocol_id": 233 + }, + "minecraft:wall_hanging_sign": { + "protocol_id": 234 + }, + "minecraft:wall_sign": { + "protocol_id": 235 + }, + "minecraft:wall_skull": { + "protocol_id": 236 + }, + "minecraft:wall_torch": { + "protocol_id": 237 + }, + "minecraft:waterlogged_transparent": { + "protocol_id": 240 + }, + "minecraft:weathering_copper_bar": { + "protocol_id": 241 + }, + "minecraft:weathering_copper_bulb": { + "protocol_id": 242 + }, + "minecraft:weathering_copper_chain": { + "protocol_id": 243 + }, + "minecraft:weathering_copper_chest": { + "protocol_id": 244 + }, + "minecraft:weathering_copper_door": { + "protocol_id": 245 + }, + "minecraft:weathering_copper_full": { + "protocol_id": 246 + }, + "minecraft:weathering_copper_golem_statue": { + "protocol_id": 247 + }, + "minecraft:weathering_copper_grate": { + "protocol_id": 248 + }, + "minecraft:weathering_copper_slab": { + "protocol_id": 249 + }, + "minecraft:weathering_copper_stair": { + "protocol_id": 250 + }, + "minecraft:weathering_copper_trap_door": { + "protocol_id": 251 + }, + "minecraft:weathering_lantern": { + "protocol_id": 252 + }, + "minecraft:weathering_lightning_rod": { + "protocol_id": 253 + }, + "minecraft:web": { + "protocol_id": 254 + }, + "minecraft:weeping_vines": { + "protocol_id": 256 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 255 + }, + "minecraft:weighted_pressure_plate": { + "protocol_id": 257 + }, + "minecraft:wet_sponge": { + "protocol_id": 258 + }, + "minecraft:wither_rose": { + "protocol_id": 259 + }, + "minecraft:wither_skull": { + "protocol_id": 260 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 261 + }, + "minecraft:wool_carpet": { + "protocol_id": 262 + } + }, + "protocol_id": 56 + }, + "minecraft:chunk_status": { + "default": "minecraft:empty", + "entries": { + "minecraft:biomes": { + "protocol_id": 3 + }, + "minecraft:carvers": { + "protocol_id": 6 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:features": { + "protocol_id": 7 + }, + "minecraft:full": { + "protocol_id": 11 + }, + "minecraft:initialize_light": { + "protocol_id": 8 + }, + "minecraft:light": { + "protocol_id": 9 + }, + "minecraft:noise": { + "protocol_id": 4 + }, + "minecraft:spawn": { + "protocol_id": 10 + }, + "minecraft:structure_references": { + "protocol_id": 2 + }, + "minecraft:structure_starts": { + "protocol_id": 1 + }, + "minecraft:surface": { + "protocol_id": 5 + } + }, + "protocol_id": 12 + }, + "minecraft:command_argument_type": { + "entries": { + "brigadier:bool": { + "protocol_id": 0 + }, + "brigadier:double": { + "protocol_id": 2 + }, + "brigadier:float": { + "protocol_id": 1 + }, + "brigadier:integer": { + "protocol_id": 3 + }, + "brigadier:long": { + "protocol_id": 4 + }, + "brigadier:string": { + "protocol_id": 5 + }, + "minecraft:angle": { + "protocol_id": 28 + }, + "minecraft:block_pos": { + "protocol_id": 8 + }, + "minecraft:block_predicate": { + "protocol_id": 13 + }, + "minecraft:block_state": { + "protocol_id": 12 + }, + "minecraft:color": { + "protocol_id": 16 + }, + "minecraft:column_pos": { + "protocol_id": 9 + }, + "minecraft:component": { + "protocol_id": 18 + }, + "minecraft:dialog": { + "protocol_id": 55 + }, + "minecraft:dimension": { + "protocol_id": 41 + }, + "minecraft:entity": { + "protocol_id": 6 + }, + "minecraft:entity_anchor": { + "protocol_id": 38 + }, + "minecraft:float_range": { + "protocol_id": 40 + }, + "minecraft:function": { + "protocol_id": 37 + }, + "minecraft:game_profile": { + "protocol_id": 7 + }, + "minecraft:gamemode": { + "protocol_id": 42 + }, + "minecraft:heightmap": { + "protocol_id": 51 + }, + "minecraft:hex_color": { + "protocol_id": 17 + }, + "minecraft:int_range": { + "protocol_id": 39 + }, + "minecraft:item_predicate": { + "protocol_id": 15 + }, + "minecraft:item_slot": { + "protocol_id": 34 + }, + "minecraft:item_slots": { + "protocol_id": 35 + }, + "minecraft:item_stack": { + "protocol_id": 14 + }, + "minecraft:loot_modifier": { + "protocol_id": 54 + }, + "minecraft:loot_predicate": { + "protocol_id": 53 + }, + "minecraft:loot_table": { + "protocol_id": 52 + }, + "minecraft:message": { + "protocol_id": 20 + }, + "minecraft:nbt_compound_tag": { + "protocol_id": 21 + }, + "minecraft:nbt_path": { + "protocol_id": 23 + }, + "minecraft:nbt_tag": { + "protocol_id": 22 + }, + "minecraft:objective": { + "protocol_id": 24 + }, + "minecraft:objective_criteria": { + "protocol_id": 25 + }, + "minecraft:operation": { + "protocol_id": 26 + }, + "minecraft:particle": { + "protocol_id": 27 + }, + "minecraft:resource": { + "protocol_id": 46 + }, + "minecraft:resource_key": { + "protocol_id": 47 + }, + "minecraft:resource_location": { + "protocol_id": 36 + }, + "minecraft:resource_or_tag": { + "protocol_id": 44 + }, + "minecraft:resource_or_tag_key": { + "protocol_id": 45 + }, + "minecraft:resource_selector": { + "protocol_id": 48 + }, + "minecraft:rotation": { + "protocol_id": 29 + }, + "minecraft:score_holder": { + "protocol_id": 31 + }, + "minecraft:scoreboard_slot": { + "protocol_id": 30 + }, + "minecraft:style": { + "protocol_id": 19 + }, + "minecraft:swizzle": { + "protocol_id": 32 + }, + "minecraft:team": { + "protocol_id": 33 + }, + "minecraft:template_mirror": { + "protocol_id": 49 + }, + "minecraft:template_rotation": { + "protocol_id": 50 + }, + "minecraft:time": { + "protocol_id": 43 + }, + "minecraft:uuid": { + "protocol_id": 56 + }, + "minecraft:vec2": { + "protocol_id": 11 + }, + "minecraft:vec3": { + "protocol_id": 10 + } + }, + "protocol_id": 21 + }, + "minecraft:consume_effect_type": { + "entries": { + "minecraft:apply_effects": { + "protocol_id": 0 + }, + "minecraft:clear_all_effects": { + "protocol_id": 2 + }, + "minecraft:play_sound": { + "protocol_id": 4 + }, + "minecraft:remove_effects": { + "protocol_id": 1 + }, + "minecraft:teleport_randomly": { + "protocol_id": 3 + } + }, + "protocol_id": 75 + }, + "minecraft:creative_mode_tab": { + "entries": { + "minecraft:building_blocks": { + "protocol_id": 0 + }, + "minecraft:colored_blocks": { + "protocol_id": 1 + }, + "minecraft:combat": { + "protocol_id": 8 + }, + "minecraft:food_and_drinks": { + "protocol_id": 9 + }, + "minecraft:functional_blocks": { + "protocol_id": 3 + }, + "minecraft:hotbar": { + "protocol_id": 5 + }, + "minecraft:ingredients": { + "protocol_id": 10 + }, + "minecraft:inventory": { + "protocol_id": 13 + }, + "minecraft:natural_blocks": { + "protocol_id": 2 + }, + "minecraft:op_blocks": { + "protocol_id": 12 + }, + "minecraft:redstone_blocks": { + "protocol_id": 4 + }, + "minecraft:search": { + "protocol_id": 6 + }, + "minecraft:spawn_eggs": { + "protocol_id": 11 + }, + "minecraft:tools_and_utilities": { + "protocol_id": 7 + } + }, + "protocol_id": 61 + }, + "minecraft:custom_stat": { + "entries": { + "minecraft:animals_bred": { + "protocol_id": 34 + }, + "minecraft:aviate_one_cm": { + "protocol_id": 19 + }, + "minecraft:bell_ring": { + "protocol_id": 70 + }, + "minecraft:boat_one_cm": { + "protocol_id": 15 + }, + "minecraft:clean_armor": { + "protocol_id": 42 + }, + "minecraft:clean_banner": { + "protocol_id": 43 + }, + "minecraft:clean_shulker_box": { + "protocol_id": 44 + }, + "minecraft:climb_one_cm": { + "protocol_id": 11 + }, + "minecraft:crouch_one_cm": { + "protocol_id": 7 + }, + "minecraft:damage_absorbed": { + "protocol_id": 30 + }, + "minecraft:damage_blocked_by_shield": { + "protocol_id": 29 + }, + "minecraft:damage_dealt": { + "protocol_id": 25 + }, + "minecraft:damage_dealt_absorbed": { + "protocol_id": 26 + }, + "minecraft:damage_dealt_resisted": { + "protocol_id": 27 + }, + "minecraft:damage_resisted": { + "protocol_id": 31 + }, + "minecraft:damage_taken": { + "protocol_id": 28 + }, + "minecraft:deaths": { + "protocol_id": 32 + }, + "minecraft:drop": { + "protocol_id": 24 + }, + "minecraft:eat_cake_slice": { + "protocol_id": 39 + }, + "minecraft:enchant_item": { + "protocol_id": 55 + }, + "minecraft:fall_one_cm": { + "protocol_id": 10 + }, + "minecraft:fill_cauldron": { + "protocol_id": 40 + }, + "minecraft:fish_caught": { + "protocol_id": 36 + }, + "minecraft:fly_one_cm": { + "protocol_id": 12 + }, + "minecraft:happy_ghast_one_cm": { + "protocol_id": 17 + }, + "minecraft:horse_one_cm": { + "protocol_id": 18 + }, + "minecraft:inspect_dispenser": { + "protocol_id": 49 + }, + "minecraft:inspect_dropper": { + "protocol_id": 47 + }, + "minecraft:inspect_hopper": { + "protocol_id": 48 + }, + "minecraft:interact_with_anvil": { + "protocol_id": 73 + }, + "minecraft:interact_with_beacon": { + "protocol_id": 46 + }, + "minecraft:interact_with_blast_furnace": { + "protocol_id": 63 + }, + "minecraft:interact_with_brewingstand": { + "protocol_id": 45 + }, + "minecraft:interact_with_campfire": { + "protocol_id": 66 + }, + "minecraft:interact_with_cartography_table": { + "protocol_id": 67 + }, + "minecraft:interact_with_crafting_table": { + "protocol_id": 58 + }, + "minecraft:interact_with_furnace": { + "protocol_id": 57 + }, + "minecraft:interact_with_grindstone": { + "protocol_id": 74 + }, + "minecraft:interact_with_lectern": { + "protocol_id": 65 + }, + "minecraft:interact_with_loom": { + "protocol_id": 68 + }, + "minecraft:interact_with_smithing_table": { + "protocol_id": 76 + }, + "minecraft:interact_with_smoker": { + "protocol_id": 64 + }, + "minecraft:interact_with_stonecutter": { + "protocol_id": 69 + }, + "minecraft:jump": { + "protocol_id": 23 + }, + "minecraft:leave_game": { + "protocol_id": 0 + }, + "minecraft:minecart_one_cm": { + "protocol_id": 14 + }, + "minecraft:mob_kills": { + "protocol_id": 33 + }, + "minecraft:nautilus_one_cm": { + "protocol_id": 22 + }, + "minecraft:open_barrel": { + "protocol_id": 62 + }, + "minecraft:open_chest": { + "protocol_id": 59 + }, + "minecraft:open_enderchest": { + "protocol_id": 54 + }, + "minecraft:open_shulker_box": { + "protocol_id": 61 + }, + "minecraft:pig_one_cm": { + "protocol_id": 16 + }, + "minecraft:play_noteblock": { + "protocol_id": 50 + }, + "minecraft:play_record": { + "protocol_id": 56 + }, + "minecraft:play_time": { + "protocol_id": 1 + }, + "minecraft:player_kills": { + "protocol_id": 35 + }, + "minecraft:pot_flower": { + "protocol_id": 52 + }, + "minecraft:raid_trigger": { + "protocol_id": 71 + }, + "minecraft:raid_win": { + "protocol_id": 72 + }, + "minecraft:sleep_in_bed": { + "protocol_id": 60 + }, + "minecraft:sneak_time": { + "protocol_id": 5 + }, + "minecraft:sprint_one_cm": { + "protocol_id": 8 + }, + "minecraft:strider_one_cm": { + "protocol_id": 21 + }, + "minecraft:swim_one_cm": { + "protocol_id": 20 + }, + "minecraft:talked_to_villager": { + "protocol_id": 37 + }, + "minecraft:target_hit": { + "protocol_id": 75 + }, + "minecraft:time_since_death": { + "protocol_id": 3 + }, + "minecraft:time_since_rest": { + "protocol_id": 4 + }, + "minecraft:total_world_time": { + "protocol_id": 2 + }, + "minecraft:traded_with_villager": { + "protocol_id": 38 + }, + "minecraft:trigger_trapped_chest": { + "protocol_id": 53 + }, + "minecraft:tune_noteblock": { + "protocol_id": 51 + }, + "minecraft:use_cauldron": { + "protocol_id": 41 + }, + "minecraft:walk_on_water_one_cm": { + "protocol_id": 9 + }, + "minecraft:walk_one_cm": { + "protocol_id": 6 + }, + "minecraft:walk_under_water_one_cm": { + "protocol_id": 13 + } + }, + "protocol_id": 11 + }, + "minecraft:data_component_predicate_type": { + "entries": { + "minecraft:attribute_modifiers": { + "protocol_id": 11 + }, + "minecraft:bundle_contents": { + "protocol_id": 6 + }, + "minecraft:container": { + "protocol_id": 5 + }, + "minecraft:custom_data": { + "protocol_id": 4 + }, + "minecraft:damage": { + "protocol_id": 0 + }, + "minecraft:enchantments": { + "protocol_id": 1 + }, + "minecraft:firework_explosion": { + "protocol_id": 7 + }, + "minecraft:fireworks": { + "protocol_id": 8 + }, + "minecraft:jukebox_playable": { + "protocol_id": 13 + }, + "minecraft:potion_contents": { + "protocol_id": 3 + }, + "minecraft:stored_enchantments": { + "protocol_id": 2 + }, + "minecraft:trim": { + "protocol_id": 12 + }, + "minecraft:villager/variant": { + "protocol_id": 14 + }, + "minecraft:writable_book_content": { + "protocol_id": 9 + }, + "minecraft:written_book_content": { + "protocol_id": 10 + } + }, + "protocol_id": 67 + }, + "minecraft:data_component_type": { + "entries": { + "minecraft:additional_trade_cost": { + "protocol_id": 41 + }, + "minecraft:attack_range": { + "protocol_id": 30 + }, + "minecraft:attribute_modifiers": { + "protocol_id": 16 + }, + "minecraft:axolotl/variant": { + "protocol_id": 104 + }, + "minecraft:banner_patterns": { + "protocol_id": 72 + }, + "minecraft:base_color": { + "protocol_id": 73 + }, + "minecraft:bees": { + "protocol_id": 77 + }, + "minecraft:block_entity_data": { + "protocol_id": 60 + }, + "minecraft:block_state": { + "protocol_id": 76 + }, + "minecraft:blocks_attacks": { + "protocol_id": 37 + }, + "minecraft:break_sound": { + "protocol_id": 80 + }, + "minecraft:bucket_entity_data": { + "protocol_id": 59 + }, + "minecraft:bundle_contents": { + "protocol_id": 50 + }, + "minecraft:can_break": { + "protocol_id": 15 + }, + "minecraft:can_place_on": { + "protocol_id": 14 + }, + "minecraft:cat/collar": { + "protocol_id": 107 + }, + "minecraft:cat/sound_variant": { + "protocol_id": 106 + }, + "minecraft:cat/variant": { + "protocol_id": 105 + }, + "minecraft:charged_projectiles": { + "protocol_id": 49 + }, + "minecraft:chicken/sound_variant": { + "protocol_id": 98 + }, + "minecraft:chicken/variant": { + "protocol_id": 97 + }, + "minecraft:consumable": { + "protocol_id": 24 + }, + "minecraft:container": { + "protocol_id": 75 + }, + "minecraft:container_loot": { + "protocol_id": 79 + }, + "minecraft:cow/sound_variant": { + "protocol_id": 96 + }, + "minecraft:cow/variant": { + "protocol_id": 95 + }, + "minecraft:creative_slot_lock": { + "protocol_id": 20 + }, + "minecraft:custom_data": { + "protocol_id": 0 + }, + "minecraft:custom_model_data": { + "protocol_id": 17 + }, + "minecraft:custom_name": { + "protocol_id": 6 + }, + "minecraft:damage": { + "protocol_id": 3 + }, + "minecraft:damage_resistant": { + "protocol_id": 27 + }, + "minecraft:damage_type": { + "protocol_id": 8 + }, + "minecraft:death_protection": { + "protocol_id": 36 + }, + "minecraft:debug_stick_state": { + "protocol_id": 57 + }, + "minecraft:dye": { + "protocol_id": 43 + }, + "minecraft:dyed_color": { + "protocol_id": 44 + }, + "minecraft:enchantable": { + "protocol_id": 31 + }, + "minecraft:enchantment_glint_override": { + "protocol_id": 21 + }, + "minecraft:enchantments": { + "protocol_id": 13 + }, + "minecraft:entity_data": { + "protocol_id": 58 + }, + "minecraft:equippable": { + "protocol_id": 32 + }, + "minecraft:firework_explosion": { + "protocol_id": 68 + }, + "minecraft:fireworks": { + "protocol_id": 69 + }, + "minecraft:food": { + "protocol_id": 23 + }, + "minecraft:fox/variant": { + "protocol_id": 85 + }, + "minecraft:frog/variant": { + "protocol_id": 100 + }, + "minecraft:glider": { + "protocol_id": 34 + }, + "minecraft:horse/variant": { + "protocol_id": 101 + }, + "minecraft:instrument": { + "protocol_id": 61 + }, + "minecraft:intangible_projectile": { + "protocol_id": 22 + }, + "minecraft:item_model": { + "protocol_id": 10 + }, + "minecraft:item_name": { + "protocol_id": 9 + }, + "minecraft:jukebox_playable": { + "protocol_id": 64 + }, + "minecraft:kinetic_weapon": { + "protocol_id": 39 + }, + "minecraft:llama/variant": { + "protocol_id": 103 + }, + "minecraft:lock": { + "protocol_id": 78 + }, + "minecraft:lodestone_tracker": { + "protocol_id": 67 + }, + "minecraft:lore": { + "protocol_id": 11 + }, + "minecraft:map_color": { + "protocol_id": 45 + }, + "minecraft:map_decorations": { + "protocol_id": 47 + }, + "minecraft:map_id": { + "protocol_id": 46 + }, + "minecraft:map_post_processing": { + "protocol_id": 48 + }, + "minecraft:max_damage": { + "protocol_id": 2 + }, + "minecraft:max_stack_size": { + "protocol_id": 1 + }, + "minecraft:minimum_attack_charge": { + "protocol_id": 7 + }, + "minecraft:mooshroom/variant": { + "protocol_id": 91 + }, + "minecraft:note_block_sound": { + "protocol_id": 71 + }, + "minecraft:ominous_bottle_amplifier": { + "protocol_id": 63 + }, + "minecraft:painting/variant": { + "protocol_id": 102 + }, + "minecraft:parrot/variant": { + "protocol_id": 87 + }, + "minecraft:piercing_weapon": { + "protocol_id": 38 + }, + "minecraft:pig/sound_variant": { + "protocol_id": 94 + }, + "minecraft:pig/variant": { + "protocol_id": 93 + }, + "minecraft:pot_decorations": { + "protocol_id": 74 + }, + "minecraft:potion_contents": { + "protocol_id": 51 + }, + "minecraft:potion_duration_scale": { + "protocol_id": 52 + }, + "minecraft:profile": { + "protocol_id": 70 + }, + "minecraft:provides_banner_patterns": { + "protocol_id": 65 + }, + "minecraft:provides_trim_material": { + "protocol_id": 62 + }, + "minecraft:rabbit/variant": { + "protocol_id": 92 + }, + "minecraft:rarity": { + "protocol_id": 12 + }, + "minecraft:recipes": { + "protocol_id": 66 + }, + "minecraft:repair_cost": { + "protocol_id": 19 + }, + "minecraft:repairable": { + "protocol_id": 33 + }, + "minecraft:salmon/size": { + "protocol_id": 86 + }, + "minecraft:sheep/color": { + "protocol_id": 108 + }, + "minecraft:shulker/color": { + "protocol_id": 109 + }, + "minecraft:stored_enchantments": { + "protocol_id": 42 + }, + "minecraft:suspicious_stew_effects": { + "protocol_id": 53 + }, + "minecraft:swing_animation": { + "protocol_id": 40 + }, + "minecraft:tool": { + "protocol_id": 28 + }, + "minecraft:tooltip_display": { + "protocol_id": 18 + }, + "minecraft:tooltip_style": { + "protocol_id": 35 + }, + "minecraft:trim": { + "protocol_id": 56 + }, + "minecraft:tropical_fish/base_color": { + "protocol_id": 89 + }, + "minecraft:tropical_fish/pattern": { + "protocol_id": 88 + }, + "minecraft:tropical_fish/pattern_color": { + "protocol_id": 90 + }, + "minecraft:unbreakable": { + "protocol_id": 4 + }, + "minecraft:use_cooldown": { + "protocol_id": 26 + }, + "minecraft:use_effects": { + "protocol_id": 5 + }, + "minecraft:use_remainder": { + "protocol_id": 25 + }, + "minecraft:villager/variant": { + "protocol_id": 81 + }, + "minecraft:weapon": { + "protocol_id": 29 + }, + "minecraft:wolf/collar": { + "protocol_id": 84 + }, + "minecraft:wolf/sound_variant": { + "protocol_id": 83 + }, + "minecraft:wolf/variant": { + "protocol_id": 82 + }, + "minecraft:writable_book_content": { + "protocol_id": 54 + }, + "minecraft:written_book_content": { + "protocol_id": 55 + }, + "minecraft:zombie_nautilus/variant": { + "protocol_id": 99 + } + }, + "protocol_id": 64 + }, + "minecraft:debug_subscription": { + "entries": { + "minecraft:bee_hives": { + "protocol_id": 7 + }, + "minecraft:bees": { + "protocol_id": 1 + }, + "minecraft:brains": { + "protocol_id": 2 + }, + "minecraft:breezes": { + "protocol_id": 3 + }, + "minecraft:dedicated_server_tick_time": { + "protocol_id": 0 + }, + "minecraft:entity_block_intersections": { + "protocol_id": 6 + }, + "minecraft:entity_paths": { + "protocol_id": 5 + }, + "minecraft:game_event_listeners": { + "protocol_id": 13 + }, + "minecraft:game_events": { + "protocol_id": 15 + }, + "minecraft:goal_selectors": { + "protocol_id": 4 + }, + "minecraft:neighbor_updates": { + "protocol_id": 14 + }, + "minecraft:pois": { + "protocol_id": 8 + }, + "minecraft:raids": { + "protocol_id": 11 + }, + "minecraft:redstone_wire_orientations": { + "protocol_id": 9 + }, + "minecraft:structures": { + "protocol_id": 12 + }, + "minecraft:village_sections": { + "protocol_id": 10 + } + }, + "protocol_id": 5 + }, + "minecraft:decorated_pot_pattern": { + "entries": { + "minecraft:angler": { + "protocol_id": 0 + }, + "minecraft:archer": { + "protocol_id": 1 + }, + "minecraft:arms_up": { + "protocol_id": 2 + }, + "minecraft:blade": { + "protocol_id": 3 + }, + "minecraft:blank": { + "protocol_id": 23 + }, + "minecraft:brewer": { + "protocol_id": 4 + }, + "minecraft:burn": { + "protocol_id": 5 + }, + "minecraft:danger": { + "protocol_id": 6 + }, + "minecraft:explorer": { + "protocol_id": 7 + }, + "minecraft:flow": { + "protocol_id": 8 + }, + "minecraft:friend": { + "protocol_id": 9 + }, + "minecraft:guster": { + "protocol_id": 10 + }, + "minecraft:heart": { + "protocol_id": 11 + }, + "minecraft:heartbreak": { + "protocol_id": 12 + }, + "minecraft:howl": { + "protocol_id": 13 + }, + "minecraft:miner": { + "protocol_id": 14 + }, + "minecraft:mourner": { + "protocol_id": 15 + }, + "minecraft:plenty": { + "protocol_id": 16 + }, + "minecraft:prize": { + "protocol_id": 17 + }, + "minecraft:scrape": { + "protocol_id": 18 + }, + "minecraft:sheaf": { + "protocol_id": 19 + }, + "minecraft:shelter": { + "protocol_id": 20 + }, + "minecraft:skull": { + "protocol_id": 21 + }, + "minecraft:snort": { + "protocol_id": 22 + } + }, + "protocol_id": 60 + }, + "minecraft:dialog_action_type": { + "entries": { + "minecraft:change_page": { + "protocol_id": 4 + }, + "minecraft:copy_to_clipboard": { + "protocol_id": 5 + }, + "minecraft:custom": { + "protocol_id": 6 + }, + "minecraft:dynamic/custom": { + "protocol_id": 8 + }, + "minecraft:dynamic/run_command": { + "protocol_id": 7 + }, + "minecraft:open_url": { + "protocol_id": 0 + }, + "minecraft:run_command": { + "protocol_id": 1 + }, + "minecraft:show_dialog": { + "protocol_id": 3 + }, + "minecraft:suggest_command": { + "protocol_id": 2 + } + }, + "protocol_id": 86 + }, + "minecraft:dialog_body_type": { + "entries": { + "minecraft:item": { + "protocol_id": 0 + }, + "minecraft:plain_message": { + "protocol_id": 1 + } + }, + "protocol_id": 88 + }, + "minecraft:dialog_type": { + "entries": { + "minecraft:confirmation": { + "protocol_id": 4 + }, + "minecraft:dialog_list": { + "protocol_id": 2 + }, + "minecraft:multi_action": { + "protocol_id": 3 + }, + "minecraft:notice": { + "protocol_id": 0 + }, + "minecraft:server_links": { + "protocol_id": 1 + } + }, + "protocol_id": 85 + }, + "minecraft:enchantment_effect_component_type": { + "entries": { + "minecraft:ammo_use": { + "protocol_id": 13 + }, + "minecraft:armor_effectiveness": { + "protocol_id": 5 + }, + "minecraft:attributes": { + "protocol_id": 24 + }, + "minecraft:block_experience": { + "protocol_id": 21 + }, + "minecraft:crossbow_charge_time": { + "protocol_id": 25 + }, + "minecraft:crossbow_charging_sounds": { + "protocol_id": 26 + }, + "minecraft:damage": { + "protocol_id": 2 + }, + "minecraft:damage_immunity": { + "protocol_id": 1 + }, + "minecraft:damage_protection": { + "protocol_id": 0 + }, + "minecraft:equipment_drops": { + "protocol_id": 10 + }, + "minecraft:fishing_luck_bonus": { + "protocol_id": 20 + }, + "minecraft:fishing_time_reduction": { + "protocol_id": 19 + }, + "minecraft:hit_block": { + "protocol_id": 8 + }, + "minecraft:item_damage": { + "protocol_id": 9 + }, + "minecraft:knockback": { + "protocol_id": 4 + }, + "minecraft:location_changed": { + "protocol_id": 11 + }, + "minecraft:mob_experience": { + "protocol_id": 22 + }, + "minecraft:post_attack": { + "protocol_id": 6 + }, + "minecraft:post_piercing_attack": { + "protocol_id": 7 + }, + "minecraft:prevent_armor_change": { + "protocol_id": 29 + }, + "minecraft:prevent_equipment_drop": { + "protocol_id": 28 + }, + "minecraft:projectile_count": { + "protocol_id": 17 + }, + "minecraft:projectile_piercing": { + "protocol_id": 14 + }, + "minecraft:projectile_spawned": { + "protocol_id": 15 + }, + "minecraft:projectile_spread": { + "protocol_id": 16 + }, + "minecraft:repair_with_xp": { + "protocol_id": 23 + }, + "minecraft:smash_damage_per_fallen_block": { + "protocol_id": 3 + }, + "minecraft:tick": { + "protocol_id": 12 + }, + "minecraft:trident_return_acceleration": { + "protocol_id": 18 + }, + "minecraft:trident_sound": { + "protocol_id": 27 + }, + "minecraft:trident_spin_attack_strength": { + "protocol_id": 30 + } + }, + "protocol_id": 69 + }, + "minecraft:enchantment_entity_effect_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:apply_exhaustion": { + "protocol_id": 7 + }, + "minecraft:apply_impulse": { + "protocol_id": 6 + }, + "minecraft:apply_mob_effect": { + "protocol_id": 1 + }, + "minecraft:change_item_damage": { + "protocol_id": 2 + }, + "minecraft:damage_entity": { + "protocol_id": 3 + }, + "minecraft:explode": { + "protocol_id": 4 + }, + "minecraft:ignite": { + "protocol_id": 5 + }, + "minecraft:play_sound": { + "protocol_id": 8 + }, + "minecraft:replace_block": { + "protocol_id": 9 + }, + "minecraft:replace_disk": { + "protocol_id": 10 + }, + "minecraft:run_function": { + "protocol_id": 11 + }, + "minecraft:set_block_properties": { + "protocol_id": 12 + }, + "minecraft:spawn_particles": { + "protocol_id": 13 + }, + "minecraft:summon_entity": { + "protocol_id": 14 + } + }, + "protocol_id": 71 + }, + "minecraft:enchantment_level_based_value_type": { + "entries": { + "minecraft:clamped": { + "protocol_id": 0 + }, + "minecraft:exponent": { + "protocol_id": 4 + }, + "minecraft:fraction": { + "protocol_id": 1 + }, + "minecraft:levels_squared": { + "protocol_id": 2 + }, + "minecraft:linear": { + "protocol_id": 3 + }, + "minecraft:lookup": { + "protocol_id": 5 + } + }, + "protocol_id": 70 + }, + "minecraft:enchantment_location_based_effect_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:apply_exhaustion": { + "protocol_id": 8 + }, + "minecraft:apply_impulse": { + "protocol_id": 7 + }, + "minecraft:apply_mob_effect": { + "protocol_id": 1 + }, + "minecraft:attribute": { + "protocol_id": 2 + }, + "minecraft:change_item_damage": { + "protocol_id": 3 + }, + "minecraft:damage_entity": { + "protocol_id": 4 + }, + "minecraft:explode": { + "protocol_id": 5 + }, + "minecraft:ignite": { + "protocol_id": 6 + }, + "minecraft:play_sound": { + "protocol_id": 9 + }, + "minecraft:replace_block": { + "protocol_id": 10 + }, + "minecraft:replace_disk": { + "protocol_id": 11 + }, + "minecraft:run_function": { + "protocol_id": 12 + }, + "minecraft:set_block_properties": { + "protocol_id": 13 + }, + "minecraft:spawn_particles": { + "protocol_id": 14 + }, + "minecraft:summon_entity": { + "protocol_id": 15 + } + }, + "protocol_id": 72 + }, + "minecraft:enchantment_provider_type": { + "entries": { + "minecraft:by_cost": { + "protocol_id": 0 + }, + "minecraft:by_cost_with_difficulty": { + "protocol_id": 1 + }, + "minecraft:single": { + "protocol_id": 2 + } + }, + "protocol_id": 74 + }, + "minecraft:enchantment_value_effect_type": { + "entries": { + "minecraft:add": { + "protocol_id": 0 + }, + "minecraft:all_of": { + "protocol_id": 1 + }, + "minecraft:exponential": { + "protocol_id": 4 + }, + "minecraft:multiply": { + "protocol_id": 2 + }, + "minecraft:remove_binomial": { + "protocol_id": 3 + }, + "minecraft:set": { + "protocol_id": 5 + } + }, + "protocol_id": 73 + }, + "minecraft:entity_sub_predicate_type": { + "entries": { + "minecraft:fishing_hook": { + "protocol_id": 1 + }, + "minecraft:lightning": { + "protocol_id": 0 + }, + "minecraft:player": { + "protocol_id": 2 + }, + "minecraft:raider": { + "protocol_id": 4 + }, + "minecraft:sheep": { + "protocol_id": 5 + }, + "minecraft:slime": { + "protocol_id": 3 + } + }, + "protocol_id": 66 + }, + "minecraft:entity_type": { + "default": "minecraft:pig", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 0 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 1 + }, + "minecraft:allay": { + "protocol_id": 2 + }, + "minecraft:area_effect_cloud": { + "protocol_id": 3 + }, + "minecraft:armadillo": { + "protocol_id": 4 + }, + "minecraft:armor_stand": { + "protocol_id": 5 + }, + "minecraft:arrow": { + "protocol_id": 6 + }, + "minecraft:axolotl": { + "protocol_id": 7 + }, + "minecraft:bamboo_chest_raft": { + "protocol_id": 8 + }, + "minecraft:bamboo_raft": { + "protocol_id": 9 + }, + "minecraft:bat": { + "protocol_id": 10 + }, + "minecraft:bee": { + "protocol_id": 11 + }, + "minecraft:birch_boat": { + "protocol_id": 12 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 13 + }, + "minecraft:blaze": { + "protocol_id": 14 + }, + "minecraft:block_display": { + "protocol_id": 15 + }, + "minecraft:bogged": { + "protocol_id": 16 + }, + "minecraft:breeze": { + "protocol_id": 17 + }, + "minecraft:breeze_wind_charge": { + "protocol_id": 18 + }, + "minecraft:camel": { + "protocol_id": 19 + }, + "minecraft:camel_husk": { + "protocol_id": 20 + }, + "minecraft:cat": { + "protocol_id": 21 + }, + "minecraft:cave_spider": { + "protocol_id": 22 + }, + "minecraft:cherry_boat": { + "protocol_id": 23 + }, + "minecraft:cherry_chest_boat": { + "protocol_id": 24 + }, + "minecraft:chest_minecart": { + "protocol_id": 25 + }, + "minecraft:chicken": { + "protocol_id": 26 + }, + "minecraft:cod": { + "protocol_id": 27 + }, + "minecraft:command_block_minecart": { + "protocol_id": 29 + }, + "minecraft:copper_golem": { + "protocol_id": 28 + }, + "minecraft:cow": { + "protocol_id": 30 + }, + "minecraft:creaking": { + "protocol_id": 31 + }, + "minecraft:creeper": { + "protocol_id": 32 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 33 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 34 + }, + "minecraft:dolphin": { + "protocol_id": 35 + }, + "minecraft:donkey": { + "protocol_id": 36 + }, + "minecraft:dragon_fireball": { + "protocol_id": 37 + }, + "minecraft:drowned": { + "protocol_id": 38 + }, + "minecraft:egg": { + "protocol_id": 39 + }, + "minecraft:elder_guardian": { + "protocol_id": 40 + }, + "minecraft:end_crystal": { + "protocol_id": 45 + }, + "minecraft:ender_dragon": { + "protocol_id": 43 + }, + "minecraft:ender_pearl": { + "protocol_id": 44 + }, + "minecraft:enderman": { + "protocol_id": 41 + }, + "minecraft:endermite": { + "protocol_id": 42 + }, + "minecraft:evoker": { + "protocol_id": 46 + }, + "minecraft:evoker_fangs": { + "protocol_id": 47 + }, + "minecraft:experience_bottle": { + "protocol_id": 48 + }, + "minecraft:experience_orb": { + "protocol_id": 49 + }, + "minecraft:eye_of_ender": { + "protocol_id": 50 + }, + "minecraft:falling_block": { + "protocol_id": 51 + }, + "minecraft:fireball": { + "protocol_id": 52 + }, + "minecraft:firework_rocket": { + "protocol_id": 53 + }, + "minecraft:fishing_bobber": { + "protocol_id": 156 + }, + "minecraft:fox": { + "protocol_id": 54 + }, + "minecraft:frog": { + "protocol_id": 55 + }, + "minecraft:furnace_minecart": { + "protocol_id": 56 + }, + "minecraft:ghast": { + "protocol_id": 57 + }, + "minecraft:giant": { + "protocol_id": 59 + }, + "minecraft:glow_item_frame": { + "protocol_id": 60 + }, + "minecraft:glow_squid": { + "protocol_id": 61 + }, + "minecraft:goat": { + "protocol_id": 62 + }, + "minecraft:guardian": { + "protocol_id": 63 + }, + "minecraft:happy_ghast": { + "protocol_id": 58 + }, + "minecraft:hoglin": { + "protocol_id": 64 + }, + "minecraft:hopper_minecart": { + "protocol_id": 65 + }, + "minecraft:horse": { + "protocol_id": 66 + }, + "minecraft:husk": { + "protocol_id": 67 + }, + "minecraft:illusioner": { + "protocol_id": 68 + }, + "minecraft:interaction": { + "protocol_id": 69 + }, + "minecraft:iron_golem": { + "protocol_id": 70 + }, + "minecraft:item": { + "protocol_id": 71 + }, + "minecraft:item_display": { + "protocol_id": 72 + }, + "minecraft:item_frame": { + "protocol_id": 73 + }, + "minecraft:jungle_boat": { + "protocol_id": 74 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 75 + }, + "minecraft:leash_knot": { + "protocol_id": 76 + }, + "minecraft:lightning_bolt": { + "protocol_id": 77 + }, + "minecraft:lingering_potion": { + "protocol_id": 106 + }, + "minecraft:llama": { + "protocol_id": 78 + }, + "minecraft:llama_spit": { + "protocol_id": 79 + }, + "minecraft:magma_cube": { + "protocol_id": 80 + }, + "minecraft:mangrove_boat": { + "protocol_id": 81 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 82 + }, + "minecraft:mannequin": { + "protocol_id": 83 + }, + "minecraft:marker": { + "protocol_id": 84 + }, + "minecraft:minecart": { + "protocol_id": 85 + }, + "minecraft:mooshroom": { + "protocol_id": 86 + }, + "minecraft:mule": { + "protocol_id": 87 + }, + "minecraft:nautilus": { + "protocol_id": 88 + }, + "minecraft:oak_boat": { + "protocol_id": 89 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 90 + }, + "minecraft:ocelot": { + "protocol_id": 91 + }, + "minecraft:ominous_item_spawner": { + "protocol_id": 92 + }, + "minecraft:painting": { + "protocol_id": 93 + }, + "minecraft:pale_oak_boat": { + "protocol_id": 94 + }, + "minecraft:pale_oak_chest_boat": { + "protocol_id": 95 + }, + "minecraft:panda": { + "protocol_id": 96 + }, + "minecraft:parched": { + "protocol_id": 97 + }, + "minecraft:parrot": { + "protocol_id": 98 + }, + "minecraft:phantom": { + "protocol_id": 99 + }, + "minecraft:pig": { + "protocol_id": 100 + }, + "minecraft:piglin": { + "protocol_id": 101 + }, + "minecraft:piglin_brute": { + "protocol_id": 102 + }, + "minecraft:pillager": { + "protocol_id": 103 + }, + "minecraft:player": { + "protocol_id": 155 + }, + "minecraft:polar_bear": { + "protocol_id": 104 + }, + "minecraft:pufferfish": { + "protocol_id": 107 + }, + "minecraft:rabbit": { + "protocol_id": 108 + }, + "minecraft:ravager": { + "protocol_id": 109 + }, + "minecraft:salmon": { + "protocol_id": 110 + }, + "minecraft:sheep": { + "protocol_id": 111 + }, + "minecraft:shulker": { + "protocol_id": 112 + }, + "minecraft:shulker_bullet": { + "protocol_id": 113 + }, + "minecraft:silverfish": { + "protocol_id": 114 + }, + "minecraft:skeleton": { + "protocol_id": 115 + }, + "minecraft:skeleton_horse": { + "protocol_id": 116 + }, + "minecraft:slime": { + "protocol_id": 117 + }, + "minecraft:small_fireball": { + "protocol_id": 118 + }, + "minecraft:sniffer": { + "protocol_id": 119 + }, + "minecraft:snow_golem": { + "protocol_id": 121 + }, + "minecraft:snowball": { + "protocol_id": 120 + }, + "minecraft:spawner_minecart": { + "protocol_id": 122 + }, + "minecraft:spectral_arrow": { + "protocol_id": 123 + }, + "minecraft:spider": { + "protocol_id": 124 + }, + "minecraft:splash_potion": { + "protocol_id": 105 + }, + "minecraft:spruce_boat": { + "protocol_id": 125 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 126 + }, + "minecraft:squid": { + "protocol_id": 127 + }, + "minecraft:stray": { + "protocol_id": 128 + }, + "minecraft:strider": { + "protocol_id": 129 + }, + "minecraft:tadpole": { + "protocol_id": 130 + }, + "minecraft:text_display": { + "protocol_id": 131 + }, + "minecraft:tnt": { + "protocol_id": 132 + }, + "minecraft:tnt_minecart": { + "protocol_id": 133 + }, + "minecraft:trader_llama": { + "protocol_id": 134 + }, + "minecraft:trident": { + "protocol_id": 135 + }, + "minecraft:tropical_fish": { + "protocol_id": 136 + }, + "minecraft:turtle": { + "protocol_id": 137 + }, + "minecraft:vex": { + "protocol_id": 138 + }, + "minecraft:villager": { + "protocol_id": 139 + }, + "minecraft:vindicator": { + "protocol_id": 140 + }, + "minecraft:wandering_trader": { + "protocol_id": 141 + }, + "minecraft:warden": { + "protocol_id": 142 + }, + "minecraft:wind_charge": { + "protocol_id": 143 + }, + "minecraft:witch": { + "protocol_id": 144 + }, + "minecraft:wither": { + "protocol_id": 145 + }, + "minecraft:wither_skeleton": { + "protocol_id": 146 + }, + "minecraft:wither_skull": { + "protocol_id": 147 + }, + "minecraft:wolf": { + "protocol_id": 148 + }, + "minecraft:zoglin": { + "protocol_id": 149 + }, + "minecraft:zombie": { + "protocol_id": 150 + }, + "minecraft:zombie_horse": { + "protocol_id": 151 + }, + "minecraft:zombie_nautilus": { + "protocol_id": 152 + }, + "minecraft:zombie_villager": { + "protocol_id": 153 + }, + "minecraft:zombified_piglin": { + "protocol_id": 154 + } + }, + "protocol_id": 6 + }, + "minecraft:environment_attribute": { + "entries": { + "minecraft:audio/ambient_sounds": { + "protocol_id": 26 + }, + "minecraft:audio/background_music": { + "protocol_id": 24 + }, + "minecraft:audio/firefly_bush_sounds": { + "protocol_id": 27 + }, + "minecraft:audio/music_volume": { + "protocol_id": 25 + }, + "minecraft:gameplay/baby_villager_activity": { + "protocol_id": 47 + }, + "minecraft:gameplay/bed_rule": { + "protocol_id": 31 + }, + "minecraft:gameplay/bees_stay_in_hive": { + "protocol_id": 43 + }, + "minecraft:gameplay/can_pillager_patrol_spawn": { + "protocol_id": 45 + }, + "minecraft:gameplay/can_start_raid": { + "protocol_id": 29 + }, + "minecraft:gameplay/cat_waking_up_gift_chance": { + "protocol_id": 42 + }, + "minecraft:gameplay/creaking_active": { + "protocol_id": 40 + }, + "minecraft:gameplay/eyeblossom_open": { + "protocol_id": 36 + }, + "minecraft:gameplay/fast_lava": { + "protocol_id": 34 + }, + "minecraft:gameplay/increased_fire_burnout": { + "protocol_id": 35 + }, + "minecraft:gameplay/monsters_burn": { + "protocol_id": 44 + }, + "minecraft:gameplay/nether_portal_spawns_piglin": { + "protocol_id": 33 + }, + "minecraft:gameplay/piglins_zombify": { + "protocol_id": 38 + }, + "minecraft:gameplay/respawn_anchor_works": { + "protocol_id": 32 + }, + "minecraft:gameplay/sky_light_level": { + "protocol_id": 28 + }, + "minecraft:gameplay/snow_golem_melts": { + "protocol_id": 39 + }, + "minecraft:gameplay/surface_slime_spawn_chance": { + "protocol_id": 41 + }, + "minecraft:gameplay/turtle_egg_hatch_chance": { + "protocol_id": 37 + }, + "minecraft:gameplay/villager_activity": { + "protocol_id": 46 + }, + "minecraft:gameplay/water_evaporates": { + "protocol_id": 30 + }, + "minecraft:visual/ambient_light_color": { + "protocol_id": 21 + }, + "minecraft:visual/ambient_particles": { + "protocol_id": 23 + }, + "minecraft:visual/block_light_tint": { + "protocol_id": 17 + }, + "minecraft:visual/cloud_color": { + "protocol_id": 10 + }, + "minecraft:visual/cloud_fog_end_distance": { + "protocol_id": 4 + }, + "minecraft:visual/cloud_height": { + "protocol_id": 11 + }, + "minecraft:visual/default_dripstone_particle": { + "protocol_id": 22 + }, + "minecraft:visual/fog_color": { + "protocol_id": 0 + }, + "minecraft:visual/fog_end_distance": { + "protocol_id": 2 + }, + "minecraft:visual/fog_start_distance": { + "protocol_id": 1 + }, + "minecraft:visual/moon_angle": { + "protocol_id": 13 + }, + "minecraft:visual/moon_phase": { + "protocol_id": 15 + }, + "minecraft:visual/night_vision_color": { + "protocol_id": 20 + }, + "minecraft:visual/sky_color": { + "protocol_id": 8 + }, + "minecraft:visual/sky_fog_end_distance": { + "protocol_id": 3 + }, + "minecraft:visual/sky_light_color": { + "protocol_id": 18 + }, + "minecraft:visual/sky_light_factor": { + "protocol_id": 19 + }, + "minecraft:visual/star_angle": { + "protocol_id": 14 + }, + "minecraft:visual/star_brightness": { + "protocol_id": 16 + }, + "minecraft:visual/sun_angle": { + "protocol_id": 12 + }, + "minecraft:visual/sunrise_sunset_color": { + "protocol_id": 9 + }, + "minecraft:visual/water_fog_color": { + "protocol_id": 5 + }, + "minecraft:visual/water_fog_end_distance": { + "protocol_id": 7 + }, + "minecraft:visual/water_fog_start_distance": { + "protocol_id": 6 + } + }, + "protocol_id": 91 + }, + "minecraft:float_provider_type": { + "entries": { + "minecraft:clamped_normal": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 35 + }, + "minecraft:fluid": { + "default": "minecraft:empty", + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:flowing_lava": { + "protocol_id": 3 + }, + "minecraft:flowing_water": { + "protocol_id": 1 + }, + "minecraft:lava": { + "protocol_id": 4 + }, + "minecraft:water": { + "protocol_id": 2 + } + }, + "protocol_id": 2 + }, + "minecraft:game_event": { + "default": "minecraft:step", + "entries": { + "minecraft:block_activate": { + "protocol_id": 0 + }, + "minecraft:block_attach": { + "protocol_id": 1 + }, + "minecraft:block_change": { + "protocol_id": 2 + }, + "minecraft:block_close": { + "protocol_id": 3 + }, + "minecraft:block_deactivate": { + "protocol_id": 4 + }, + "minecraft:block_destroy": { + "protocol_id": 5 + }, + "minecraft:block_detach": { + "protocol_id": 6 + }, + "minecraft:block_open": { + "protocol_id": 7 + }, + "minecraft:block_place": { + "protocol_id": 8 + }, + "minecraft:container_close": { + "protocol_id": 9 + }, + "minecraft:container_open": { + "protocol_id": 10 + }, + "minecraft:drink": { + "protocol_id": 11 + }, + "minecraft:eat": { + "protocol_id": 12 + }, + "minecraft:elytra_glide": { + "protocol_id": 13 + }, + "minecraft:entity_action": { + "protocol_id": 20 + }, + "minecraft:entity_damage": { + "protocol_id": 14 + }, + "minecraft:entity_die": { + "protocol_id": 15 + }, + "minecraft:entity_dismount": { + "protocol_id": 16 + }, + "minecraft:entity_interact": { + "protocol_id": 17 + }, + "minecraft:entity_mount": { + "protocol_id": 18 + }, + "minecraft:entity_place": { + "protocol_id": 19 + }, + "minecraft:equip": { + "protocol_id": 21 + }, + "minecraft:explode": { + "protocol_id": 22 + }, + "minecraft:flap": { + "protocol_id": 23 + }, + "minecraft:fluid_pickup": { + "protocol_id": 24 + }, + "minecraft:fluid_place": { + "protocol_id": 25 + }, + "minecraft:hit_ground": { + "protocol_id": 26 + }, + "minecraft:instrument_play": { + "protocol_id": 27 + }, + "minecraft:item_interact_finish": { + "protocol_id": 28 + }, + "minecraft:item_interact_start": { + "protocol_id": 29 + }, + "minecraft:jukebox_play": { + "protocol_id": 30 + }, + "minecraft:jukebox_stop_play": { + "protocol_id": 31 + }, + "minecraft:lightning_strike": { + "protocol_id": 32 + }, + "minecraft:note_block_play": { + "protocol_id": 33 + }, + "minecraft:prime_fuse": { + "protocol_id": 34 + }, + "minecraft:projectile_land": { + "protocol_id": 35 + }, + "minecraft:projectile_shoot": { + "protocol_id": 36 + }, + "minecraft:resonate_1": { + "protocol_id": 45 + }, + "minecraft:resonate_10": { + "protocol_id": 54 + }, + "minecraft:resonate_11": { + "protocol_id": 55 + }, + "minecraft:resonate_12": { + "protocol_id": 56 + }, + "minecraft:resonate_13": { + "protocol_id": 57 + }, + "minecraft:resonate_14": { + "protocol_id": 58 + }, + "minecraft:resonate_15": { + "protocol_id": 59 + }, + "minecraft:resonate_2": { + "protocol_id": 46 + }, + "minecraft:resonate_3": { + "protocol_id": 47 + }, + "minecraft:resonate_4": { + "protocol_id": 48 + }, + "minecraft:resonate_5": { + "protocol_id": 49 + }, + "minecraft:resonate_6": { + "protocol_id": 50 + }, + "minecraft:resonate_7": { + "protocol_id": 51 + }, + "minecraft:resonate_8": { + "protocol_id": 52 + }, + "minecraft:resonate_9": { + "protocol_id": 53 + }, + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 37 + }, + "minecraft:shear": { + "protocol_id": 38 + }, + "minecraft:shriek": { + "protocol_id": 39 + }, + "minecraft:splash": { + "protocol_id": 40 + }, + "minecraft:step": { + "protocol_id": 41 + }, + "minecraft:swim": { + "protocol_id": 42 + }, + "minecraft:teleport": { + "protocol_id": 43 + }, + "minecraft:unequip": { + "protocol_id": 44 + } + }, + "protocol_id": 0 + }, + "minecraft:game_rule": { + "entries": { + "minecraft:advance_time": { + "protocol_id": 0 + }, + "minecraft:advance_weather": { + "protocol_id": 1 + }, + "minecraft:allow_entering_nether_using_portals": { + "protocol_id": 2 + }, + "minecraft:block_drops": { + "protocol_id": 3 + }, + "minecraft:block_explosion_drop_decay": { + "protocol_id": 4 + }, + "minecraft:command_block_output": { + "protocol_id": 6 + }, + "minecraft:command_blocks_work": { + "protocol_id": 5 + }, + "minecraft:drowning_damage": { + "protocol_id": 7 + }, + "minecraft:elytra_movement_check": { + "protocol_id": 8 + }, + "minecraft:ender_pearls_vanish_on_death": { + "protocol_id": 9 + }, + "minecraft:entity_drops": { + "protocol_id": 10 + }, + "minecraft:fall_damage": { + "protocol_id": 11 + }, + "minecraft:fire_damage": { + "protocol_id": 12 + }, + "minecraft:fire_spread_radius_around_player": { + "protocol_id": 13 + }, + "minecraft:forgive_dead_players": { + "protocol_id": 14 + }, + "minecraft:freeze_damage": { + "protocol_id": 15 + }, + "minecraft:global_sound_events": { + "protocol_id": 16 + }, + "minecraft:immediate_respawn": { + "protocol_id": 17 + }, + "minecraft:keep_inventory": { + "protocol_id": 18 + }, + "minecraft:lava_source_conversion": { + "protocol_id": 19 + }, + "minecraft:limited_crafting": { + "protocol_id": 20 + }, + "minecraft:locator_bar": { + "protocol_id": 21 + }, + "minecraft:log_admin_commands": { + "protocol_id": 22 + }, + "minecraft:max_block_modifications": { + "protocol_id": 23 + }, + "minecraft:max_command_forks": { + "protocol_id": 24 + }, + "minecraft:max_command_sequence_length": { + "protocol_id": 25 + }, + "minecraft:max_entity_cramming": { + "protocol_id": 26 + }, + "minecraft:max_minecart_speed": { + "protocol_id": 27 + }, + "minecraft:max_snow_accumulation_height": { + "protocol_id": 28 + }, + "minecraft:mob_drops": { + "protocol_id": 29 + }, + "minecraft:mob_explosion_drop_decay": { + "protocol_id": 30 + }, + "minecraft:mob_griefing": { + "protocol_id": 31 + }, + "minecraft:natural_health_regeneration": { + "protocol_id": 32 + }, + "minecraft:player_movement_check": { + "protocol_id": 33 + }, + "minecraft:players_nether_portal_creative_delay": { + "protocol_id": 34 + }, + "minecraft:players_nether_portal_default_delay": { + "protocol_id": 35 + }, + "minecraft:players_sleeping_percentage": { + "protocol_id": 36 + }, + "minecraft:projectiles_can_break_blocks": { + "protocol_id": 37 + }, + "minecraft:pvp": { + "protocol_id": 38 + }, + "minecraft:raids": { + "protocol_id": 39 + }, + "minecraft:random_tick_speed": { + "protocol_id": 40 + }, + "minecraft:reduced_debug_info": { + "protocol_id": 41 + }, + "minecraft:respawn_radius": { + "protocol_id": 42 + }, + "minecraft:send_command_feedback": { + "protocol_id": 43 + }, + "minecraft:show_advancement_messages": { + "protocol_id": 44 + }, + "minecraft:show_death_messages": { + "protocol_id": 45 + }, + "minecraft:spawn_mobs": { + "protocol_id": 47 + }, + "minecraft:spawn_monsters": { + "protocol_id": 48 + }, + "minecraft:spawn_patrols": { + "protocol_id": 49 + }, + "minecraft:spawn_phantoms": { + "protocol_id": 50 + }, + "minecraft:spawn_wandering_traders": { + "protocol_id": 51 + }, + "minecraft:spawn_wardens": { + "protocol_id": 52 + }, + "minecraft:spawner_blocks_work": { + "protocol_id": 46 + }, + "minecraft:spectators_generate_chunks": { + "protocol_id": 53 + }, + "minecraft:spread_vines": { + "protocol_id": 54 + }, + "minecraft:tnt_explodes": { + "protocol_id": 55 + }, + "minecraft:tnt_explosion_drop_decay": { + "protocol_id": 56 + }, + "minecraft:universal_anger": { + "protocol_id": 57 + }, + "minecraft:water_source_conversion": { + "protocol_id": 58 + } + }, + "protocol_id": 65 + }, + "minecraft:height_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 4 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:very_biased_to_bottom": { + "protocol_id": 3 + }, + "minecraft:weighted_list": { + "protocol_id": 5 + } + }, + "protocol_id": 37 + }, + "minecraft:incoming_rpc_methods": { + "entries": { + "minecraft:allowlist": { + "protocol_id": 0 + }, + "minecraft:allowlist/add": { + "protocol_id": 2 + }, + "minecraft:allowlist/clear": { + "protocol_id": 4 + }, + "minecraft:allowlist/remove": { + "protocol_id": 3 + }, + "minecraft:allowlist/set": { + "protocol_id": 1 + }, + "minecraft:bans": { + "protocol_id": 5 + }, + "minecraft:bans/add": { + "protocol_id": 7 + }, + "minecraft:bans/clear": { + "protocol_id": 9 + }, + "minecraft:bans/remove": { + "protocol_id": 8 + }, + "minecraft:bans/set": { + "protocol_id": 6 + }, + "minecraft:gamerules": { + "protocol_id": 66 + }, + "minecraft:gamerules/update": { + "protocol_id": 67 + }, + "minecraft:ip_bans": { + "protocol_id": 10 + }, + "minecraft:ip_bans/add": { + "protocol_id": 12 + }, + "minecraft:ip_bans/clear": { + "protocol_id": 14 + }, + "minecraft:ip_bans/remove": { + "protocol_id": 13 + }, + "minecraft:ip_bans/set": { + "protocol_id": 11 + }, + "minecraft:operators": { + "protocol_id": 17 + }, + "minecraft:operators/add": { + "protocol_id": 19 + }, + "minecraft:operators/clear": { + "protocol_id": 21 + }, + "minecraft:operators/remove": { + "protocol_id": 20 + }, + "minecraft:operators/set": { + "protocol_id": 18 + }, + "minecraft:players": { + "protocol_id": 15 + }, + "minecraft:players/kick": { + "protocol_id": 16 + }, + "minecraft:rpc.discover": { + "protocol_id": 68 + }, + "minecraft:server/save": { + "protocol_id": 23 + }, + "minecraft:server/status": { + "protocol_id": 22 + }, + "minecraft:server/stop": { + "protocol_id": 24 + }, + "minecraft:server/system_message": { + "protocol_id": 25 + }, + "minecraft:serversettings/accept_transfers": { + "protocol_id": 54 + }, + "minecraft:serversettings/accept_transfers/set": { + "protocol_id": 55 + }, + "minecraft:serversettings/allow_flight": { + "protocol_id": 40 + }, + "minecraft:serversettings/allow_flight/set": { + "protocol_id": 41 + }, + "minecraft:serversettings/autosave": { + "protocol_id": 26 + }, + "minecraft:serversettings/autosave/set": { + "protocol_id": 27 + }, + "minecraft:serversettings/difficulty": { + "protocol_id": 28 + }, + "minecraft:serversettings/difficulty/set": { + "protocol_id": 29 + }, + "minecraft:serversettings/enforce_allowlist": { + "protocol_id": 30 + }, + "minecraft:serversettings/enforce_allowlist/set": { + "protocol_id": 31 + }, + "minecraft:serversettings/entity_broadcast_range": { + "protocol_id": 64 + }, + "minecraft:serversettings/entity_broadcast_range/set": { + "protocol_id": 65 + }, + "minecraft:serversettings/force_game_mode": { + "protocol_id": 46 + }, + "minecraft:serversettings/force_game_mode/set": { + "protocol_id": 47 + }, + "minecraft:serversettings/game_mode": { + "protocol_id": 48 + }, + "minecraft:serversettings/game_mode/set": { + "protocol_id": 49 + }, + "minecraft:serversettings/hide_online_players": { + "protocol_id": 60 + }, + "minecraft:serversettings/hide_online_players/set": { + "protocol_id": 61 + }, + "minecraft:serversettings/max_players": { + "protocol_id": 34 + }, + "minecraft:serversettings/max_players/set": { + "protocol_id": 35 + }, + "minecraft:serversettings/motd": { + "protocol_id": 42 + }, + "minecraft:serversettings/motd/set": { + "protocol_id": 43 + }, + "minecraft:serversettings/operator_user_permission_level": { + "protocol_id": 58 + }, + "minecraft:serversettings/operator_user_permission_level/set": { + "protocol_id": 59 + }, + "minecraft:serversettings/pause_when_empty_seconds": { + "protocol_id": 36 + }, + "minecraft:serversettings/pause_when_empty_seconds/set": { + "protocol_id": 37 + }, + "minecraft:serversettings/player_idle_timeout": { + "protocol_id": 38 + }, + "minecraft:serversettings/player_idle_timeout/set": { + "protocol_id": 39 + }, + "minecraft:serversettings/simulation_distance": { + "protocol_id": 52 + }, + "minecraft:serversettings/simulation_distance/set": { + "protocol_id": 53 + }, + "minecraft:serversettings/spawn_protection_radius": { + "protocol_id": 44 + }, + "minecraft:serversettings/spawn_protection_radius/set": { + "protocol_id": 45 + }, + "minecraft:serversettings/status_heartbeat_interval": { + "protocol_id": 56 + }, + "minecraft:serversettings/status_heartbeat_interval/set": { + "protocol_id": 57 + }, + "minecraft:serversettings/status_replies": { + "protocol_id": 62 + }, + "minecraft:serversettings/status_replies/set": { + "protocol_id": 63 + }, + "minecraft:serversettings/use_allowlist": { + "protocol_id": 32 + }, + "minecraft:serversettings/use_allowlist/set": { + "protocol_id": 33 + }, + "minecraft:serversettings/view_distance": { + "protocol_id": 50 + }, + "minecraft:serversettings/view_distance/set": { + "protocol_id": 51 + } + }, + "protocol_id": 80 + }, + "minecraft:input_control_type": { + "entries": { + "minecraft:boolean": { + "protocol_id": 0 + }, + "minecraft:number_range": { + "protocol_id": 1 + }, + "minecraft:single_option": { + "protocol_id": 2 + }, + "minecraft:text": { + "protocol_id": 3 + } + }, + "protocol_id": 87 + }, + "minecraft:int_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:clamped": { + "protocol_id": 3 + }, + "minecraft:clamped_normal": { + "protocol_id": 5 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 6 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:weighted_list": { + "protocol_id": 4 + } + }, + "protocol_id": 36 + }, + "minecraft:item": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 872 + }, + "minecraft:acacia_button": { + "protocol_id": 756 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 873 + }, + "minecraft:acacia_door": { + "protocol_id": 785 + }, + "minecraft:acacia_fence": { + "protocol_id": 349 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 826 + }, + "minecraft:acacia_hanging_sign": { + "protocol_id": 1005 + }, + "minecraft:acacia_leaves": { + "protocol_id": 186 + }, + "minecraft:acacia_log": { + "protocol_id": 138 + }, + "minecraft:acacia_planks": { + "protocol_id": 40 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 772 + }, + "minecraft:acacia_sapling": { + "protocol_id": 53 + }, + "minecraft:acacia_shelf": { + "protocol_id": 306 + }, + "minecraft:acacia_sign": { + "protocol_id": 993 + }, + "minecraft:acacia_slab": { + "protocol_id": 275 + }, + "minecraft:acacia_stairs": { + "protocol_id": 446 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 806 + }, + "minecraft:acacia_wood": { + "protocol_id": 175 + }, + "minecraft:activator_rail": { + "protocol_id": 837 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allay_spawn_egg": { + "protocol_id": 1164 + }, + "minecraft:allium": { + "protocol_id": 235 + }, + "minecraft:amethyst_block": { + "protocol_id": 88 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 1419 + }, + "minecraft:amethyst_shard": { + "protocol_id": 903 + }, + "minecraft:ancient_debris": { + "protocol_id": 82 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 709 + }, + "minecraft:andesite_stairs": { + "protocol_id": 692 + }, + "minecraft:andesite_wall": { + "protocol_id": 467 + }, + "minecraft:angler_pottery_sherd": { + "protocol_id": 1446 + }, + "minecraft:anvil": { + "protocol_id": 479 + }, + "minecraft:apple": { + "protocol_id": 894 + }, + "minecraft:archer_pottery_sherd": { + "protocol_id": 1447 + }, + "minecraft:armadillo_scute": { + "protocol_id": 890 + }, + "minecraft:armadillo_spawn_egg": { + "protocol_id": 1142 + }, + "minecraft:armor_stand": { + "protocol_id": 1255 + }, + "minecraft:arms_up_pottery_sherd": { + "protocol_id": 1448 + }, + "minecraft:arrow": { + "protocol_id": 896 + }, + "minecraft:axolotl_bucket": { + "protocol_id": 1024 + }, + "minecraft:axolotl_spawn_egg": { + "protocol_id": 1152 + }, + "minecraft:azalea": { + "protocol_id": 205 + }, + "minecraft:azalea_leaves": { + "protocol_id": 191 + }, + "minecraft:azure_bluet": { + "protocol_id": 236 + }, + "minecraft:baked_potato": { + "protocol_id": 1230 + }, + "minecraft:bamboo": { + "protocol_id": 270 + }, + "minecraft:bamboo_block": { + "protocol_id": 147 + }, + "minecraft:bamboo_button": { + "protocol_id": 761 + }, + "minecraft:bamboo_chest_raft": { + "protocol_id": 883 + }, + "minecraft:bamboo_door": { + "protocol_id": 790 + }, + "minecraft:bamboo_fence": { + "protocol_id": 354 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 831 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 1010 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 48 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 281 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 452 + }, + "minecraft:bamboo_planks": { + "protocol_id": 45 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 777 + }, + "minecraft:bamboo_raft": { + "protocol_id": 882 + }, + "minecraft:bamboo_shelf": { + "protocol_id": 307 + }, + "minecraft:bamboo_sign": { + "protocol_id": 998 + }, + "minecraft:bamboo_slab": { + "protocol_id": 280 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 451 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 811 + }, + "minecraft:barrel": { + "protocol_id": 1355 + }, + "minecraft:barrier": { + "protocol_id": 503 + }, + "minecraft:basalt": { + "protocol_id": 363 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 1143 + }, + "minecraft:beacon": { + "protocol_id": 456 + }, + "minecraft:bedrock": { + "protocol_id": 58 + }, + "minecraft:bee_nest": { + "protocol_id": 1380 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 1144 + }, + "minecraft:beef": { + "protocol_id": 1111 + }, + "minecraft:beehive": { + "protocol_id": 1381 + }, + "minecraft:beetroot": { + "protocol_id": 1288 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1289 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1290 + }, + "minecraft:bell": { + "protocol_id": 1363 + }, + "minecraft:big_dripleaf": { + "protocol_id": 268 + }, + "minecraft:birch_boat": { + "protocol_id": 868 + }, + "minecraft:birch_button": { + "protocol_id": 754 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 869 + }, + "minecraft:birch_door": { + "protocol_id": 783 + }, + "minecraft:birch_fence": { + "protocol_id": 347 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 824 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 1003 + }, + "minecraft:birch_leaves": { + "protocol_id": 184 + }, + "minecraft:birch_log": { + "protocol_id": 136 + }, + "minecraft:birch_planks": { + "protocol_id": 38 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 770 + }, + "minecraft:birch_sapling": { + "protocol_id": 51 + }, + "minecraft:birch_shelf": { + "protocol_id": 308 + }, + "minecraft:birch_sign": { + "protocol_id": 991 + }, + "minecraft:birch_slab": { + "protocol_id": 273 + }, + "minecraft:birch_stairs": { + "protocol_id": 444 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 804 + }, + "minecraft:birch_wood": { + "protocol_id": 173 + }, + "minecraft:black_banner": { + "protocol_id": 1282 + }, + "minecraft:black_bed": { + "protocol_id": 1102 + }, + "minecraft:black_bundle": { + "protocol_id": 1053 + }, + "minecraft:black_candle": { + "protocol_id": 1415 + }, + "minecraft:black_carpet": { + "protocol_id": 521 + }, + "minecraft:black_concrete": { + "protocol_id": 630 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 646 + }, + "minecraft:black_dye": { + "protocol_id": 1082 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 614 + }, + "minecraft:black_harness": { + "protocol_id": 854 + }, + "minecraft:black_shulker_box": { + "protocol_id": 598 + }, + "minecraft:black_stained_glass": { + "protocol_id": 546 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 562 + }, + "minecraft:black_terracotta": { + "protocol_id": 502 + }, + "minecraft:black_wool": { + "protocol_id": 228 + }, + "minecraft:blackstone": { + "protocol_id": 1386 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1387 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1388 + }, + "minecraft:blackstone_wall": { + "protocol_id": 472 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1449 + }, + "minecraft:blast_furnace": { + "protocol_id": 1357 + }, + "minecraft:blaze_powder": { + "protocol_id": 1125 + }, + "minecraft:blaze_rod": { + "protocol_id": 1117 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1204 + }, + "minecraft:blue_banner": { + "protocol_id": 1278 + }, + "minecraft:blue_bed": { + "protocol_id": 1098 + }, + "minecraft:blue_bundle": { + "protocol_id": 1049 + }, + "minecraft:blue_candle": { + "protocol_id": 1411 + }, + "minecraft:blue_carpet": { + "protocol_id": 517 + }, + "minecraft:blue_concrete": { + "protocol_id": 626 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 642 + }, + "minecraft:blue_dye": { + "protocol_id": 1078 + }, + "minecraft:blue_egg": { + "protocol_id": 1033 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 610 + }, + "minecraft:blue_harness": { + "protocol_id": 850 + }, + "minecraft:blue_ice": { + "protocol_id": 680 + }, + "minecraft:blue_orchid": { + "protocol_id": 234 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 594 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 542 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 558 + }, + "minecraft:blue_terracotta": { + "protocol_id": 498 + }, + "minecraft:blue_wool": { + "protocol_id": 224 + }, + "minecraft:bogged_spawn_egg": { + "protocol_id": 1173 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "protocol_id": 1445 + }, + "minecraft:bone": { + "protocol_id": 1084 + }, + "minecraft:bone_block": { + "protocol_id": 580 + }, + "minecraft:bone_meal": { + "protocol_id": 1083 + }, + "minecraft:book": { + "protocol_id": 1030 + }, + "minecraft:bookshelf": { + "protocol_id": 318 + }, + "minecraft:bordure_indented_banner_pattern": { + "protocol_id": 1352 + }, + "minecraft:bow": { + "protocol_id": 895 + }, + "minecraft:bowl": { + "protocol_id": 893 + }, + "minecraft:brain_coral": { + "protocol_id": 661 + }, + "minecraft:brain_coral_block": { + "protocol_id": 656 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 671 + }, + "minecraft:bread": { + "protocol_id": 954 + }, + "minecraft:breeze_rod": { + "protocol_id": 1223 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1189 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1450 + }, + "minecraft:brewing_stand": { + "protocol_id": 1127 + }, + "minecraft:brick": { + "protocol_id": 1026 + }, + "minecraft:brick_slab": { + "protocol_id": 290 + }, + "minecraft:brick_stairs": { + "protocol_id": 420 + }, + "minecraft:brick_wall": { + "protocol_id": 459 + }, + "minecraft:bricks": { + "protocol_id": 305 + }, + "minecraft:brown_banner": { + "protocol_id": 1279 + }, + "minecraft:brown_bed": { + "protocol_id": 1099 + }, + "minecraft:brown_bundle": { + "protocol_id": 1050 + }, + "minecraft:brown_candle": { + "protocol_id": 1412 + }, + "minecraft:brown_carpet": { + "protocol_id": 518 + }, + "minecraft:brown_concrete": { + "protocol_id": 627 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 643 + }, + "minecraft:brown_dye": { + "protocol_id": 1079 + }, + "minecraft:brown_egg": { + "protocol_id": 1034 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 611 + }, + "minecraft:brown_harness": { + "protocol_id": 851 + }, + "minecraft:brown_mushroom": { + "protocol_id": 248 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 388 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 595 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 543 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 559 + }, + "minecraft:brown_terracotta": { + "protocol_id": 499 + }, + "minecraft:brown_wool": { + "protocol_id": 225 + }, + "minecraft:brush": { + "protocol_id": 1426 + }, + "minecraft:bubble_coral": { + "protocol_id": 662 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 657 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 672 + }, + "minecraft:bucket": { + "protocol_id": 1013 + }, + "minecraft:budding_amethyst": { + "protocol_id": 89 + }, + "minecraft:bundle": { + "protocol_id": 1037 + }, + "minecraft:burn_pottery_sherd": { + "protocol_id": 1451 + }, + "minecraft:bush": { + "protocol_id": 204 + }, + "minecraft:cactus": { + "protocol_id": 341 + }, + "minecraft:cactus_flower": { + "protocol_id": 342 + }, + "minecraft:cake": { + "protocol_id": 1086 + }, + "minecraft:calcite": { + "protocol_id": 11 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 744 + }, + "minecraft:camel_husk_spawn_egg": { + "protocol_id": 1174 + }, + "minecraft:camel_spawn_egg": { + "protocol_id": 1135 + }, + "minecraft:campfire": { + "protocol_id": 1376 + }, + "minecraft:candle": { + "protocol_id": 1399 + }, + "minecraft:carrot": { + "protocol_id": 1228 + }, + "minecraft:carrot_on_a_stick": { + "protocol_id": 860 + }, + "minecraft:cartography_table": { + "protocol_id": 1358 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 358 + }, + "minecraft:cat_spawn_egg": { + "protocol_id": 1139 + }, + "minecraft:cauldron": { + "protocol_id": 1128 + }, + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 1187 + }, + "minecraft:chain_command_block": { + "protocol_id": 575 + }, + "minecraft:chainmail_boots": { + "protocol_id": 966 + }, + "minecraft:chainmail_chestplate": { + "protocol_id": 964 + }, + "minecraft:chainmail_helmet": { + "protocol_id": 963 + }, + "minecraft:chainmail_leggings": { + "protocol_id": 965 + }, + "minecraft:charcoal": { + "protocol_id": 898 + }, + "minecraft:cherry_boat": { + "protocol_id": 874 + }, + "minecraft:cherry_button": { + "protocol_id": 757 + }, + "minecraft:cherry_chest_boat": { + "protocol_id": 875 + }, + "minecraft:cherry_door": { + "protocol_id": 786 + }, + "minecraft:cherry_fence": { + "protocol_id": 350 + }, + "minecraft:cherry_fence_gate": { + "protocol_id": 827 + }, + "minecraft:cherry_hanging_sign": { + "protocol_id": 1006 + }, + "minecraft:cherry_leaves": { + "protocol_id": 187 + }, + "minecraft:cherry_log": { + "protocol_id": 139 + }, + "minecraft:cherry_planks": { + "protocol_id": 41 + }, + "minecraft:cherry_pressure_plate": { + "protocol_id": 773 + }, + "minecraft:cherry_sapling": { + "protocol_id": 54 + }, + "minecraft:cherry_shelf": { + "protocol_id": 309 + }, + "minecraft:cherry_sign": { + "protocol_id": 994 + }, + "minecraft:cherry_slab": { + "protocol_id": 276 + }, + "minecraft:cherry_stairs": { + "protocol_id": 447 + }, + "minecraft:cherry_trapdoor": { + "protocol_id": 807 + }, + "minecraft:cherry_wood": { + "protocol_id": 176 + }, + "minecraft:chest": { + "protocol_id": 332 + }, + "minecraft:chest_minecart": { + "protocol_id": 856 + }, + "minecraft:chicken": { + "protocol_id": 1113 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 1131 + }, + "minecraft:chipped_anvil": { + "protocol_id": 480 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 319 + }, + "minecraft:chiseled_copper": { + "protocol_id": 98 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 386 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 427 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1393 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 482 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 571 + }, + "minecraft:chiseled_resin_bricks": { + "protocol_id": 419 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 199 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 379 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 16 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 25 + }, + "minecraft:chorus_flower": { + "protocol_id": 326 + }, + "minecraft:chorus_fruit": { + "protocol_id": 1284 + }, + "minecraft:chorus_plant": { + "protocol_id": 325 + }, + "minecraft:clay": { + "protocol_id": 343 + }, + "minecraft:clay_ball": { + "protocol_id": 1027 + }, + "minecraft:clock": { + "protocol_id": 1055 + }, + "minecraft:closed_eyeblossom": { + "protocol_id": 232 + }, + "minecraft:coal": { + "protocol_id": 897 + }, + "minecraft:coal_block": { + "protocol_id": 83 + }, + "minecraft:coal_ore": { + "protocol_id": 64 + }, + "minecraft:coarse_dirt": { + "protocol_id": 29 + }, + "minecraft:coast_armor_trim_smithing_template": { + "protocol_id": 1430 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 9 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 713 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 696 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 475 + }, + "minecraft:cobblestone": { + "protocol_id": 35 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 289 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 337 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 457 + }, + "minecraft:cobweb": { + "protocol_id": 201 + }, + "minecraft:cocoa_beans": { + "protocol_id": 1066 + }, + "minecraft:cod": { + "protocol_id": 1058 + }, + "minecraft:cod_bucket": { + "protocol_id": 1022 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 1153 + }, + "minecraft:command_block": { + "protocol_id": 455 + }, + "minecraft:command_block_minecart": { + "protocol_id": 1264 + }, + "minecraft:comparator": { + "protocol_id": 722 + }, + "minecraft:compass": { + "protocol_id": 1035 + }, + "minecraft:composter": { + "protocol_id": 1354 + }, + "minecraft:conduit": { + "protocol_id": 681 + }, + "minecraft:cooked_beef": { + "protocol_id": 1112 + }, + "minecraft:cooked_chicken": { + "protocol_id": 1114 + }, + "minecraft:cooked_cod": { + "protocol_id": 1062 + }, + "minecraft:cooked_mutton": { + "protocol_id": 1266 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 985 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1251 + }, + "minecraft:cooked_salmon": { + "protocol_id": 1063 + }, + "minecraft:cookie": { + "protocol_id": 1103 + }, + "minecraft:copper_axe": { + "protocol_id": 920 + }, + "minecraft:copper_bars": { + "protocol_id": 392 + }, + "minecraft:copper_block": { + "protocol_id": 91 + }, + "minecraft:copper_boots": { + "protocol_id": 962 + }, + "minecraft:copper_bulb": { + "protocol_id": 1477 + }, + "minecraft:copper_chain": { + "protocol_id": 401 + }, + "minecraft:copper_chest": { + "protocol_id": 1485 + }, + "minecraft:copper_chestplate": { + "protocol_id": 960 + }, + "minecraft:copper_door": { + "protocol_id": 793 + }, + "minecraft:copper_golem_spawn_egg": { + "protocol_id": 1167 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 1493 + }, + "minecraft:copper_grate": { + "protocol_id": 1469 + }, + "minecraft:copper_helmet": { + "protocol_id": 959 + }, + "minecraft:copper_hoe": { + "protocol_id": 921 + }, + "minecraft:copper_horse_armor": { + "protocol_id": 1256 + }, + "minecraft:copper_ingot": { + "protocol_id": 907 + }, + "minecraft:copper_lantern": { + "protocol_id": 1366 + }, + "minecraft:copper_leggings": { + "protocol_id": 961 + }, + "minecraft:copper_nautilus_armor": { + "protocol_id": 1338 + }, + "minecraft:copper_nugget": { + "protocol_id": 1307 + }, + "minecraft:copper_ore": { + "protocol_id": 68 + }, + "minecraft:copper_pickaxe": { + "protocol_id": 919 + }, + "minecraft:copper_shovel": { + "protocol_id": 918 + }, + "minecraft:copper_spear": { + "protocol_id": 1299 + }, + "minecraft:copper_sword": { + "protocol_id": 917 + }, + "minecraft:copper_torch": { + "protocol_id": 367 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 814 + }, + "minecraft:cornflower": { + "protocol_id": 242 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 1132 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 383 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 385 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 426 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1397 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 378 + }, + "minecraft:crafter": { + "protocol_id": 1104 + }, + "minecraft:crafting_table": { + "protocol_id": 333 + }, + "minecraft:creaking_heart": { + "protocol_id": 331 + }, + "minecraft:creaking_spawn_egg": { + "protocol_id": 1190 + }, + "minecraft:creeper_banner_pattern": { + "protocol_id": 1344 + }, + "minecraft:creeper_head": { + "protocol_id": 1238 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 1191 + }, + "minecraft:crimson_button": { + "protocol_id": 762 + }, + "minecraft:crimson_door": { + "protocol_id": 791 + }, + "minecraft:crimson_fence": { + "protocol_id": 355 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 832 + }, + "minecraft:crimson_fungus": { + "protocol_id": 250 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 1011 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 180 + }, + "minecraft:crimson_nylium": { + "protocol_id": 33 + }, + "minecraft:crimson_planks": { + "protocol_id": 46 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 778 + }, + "minecraft:crimson_roots": { + "protocol_id": 252 + }, + "minecraft:crimson_shelf": { + "protocol_id": 310 + }, + "minecraft:crimson_sign": { + "protocol_id": 999 + }, + "minecraft:crimson_slab": { + "protocol_id": 282 + }, + "minecraft:crimson_stairs": { + "protocol_id": 453 + }, + "minecraft:crimson_stem": { + "protocol_id": 145 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 812 + }, + "minecraft:crossbow": { + "protocol_id": 1340 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1385 + }, + "minecraft:cut_copper": { + "protocol_id": 102 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 110 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 106 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 572 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 296 + }, + "minecraft:cut_sandstone": { + "protocol_id": 200 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 287 + }, + "minecraft:cyan_banner": { + "protocol_id": 1276 + }, + "minecraft:cyan_bed": { + "protocol_id": 1096 + }, + "minecraft:cyan_bundle": { + "protocol_id": 1047 + }, + "minecraft:cyan_candle": { + "protocol_id": 1409 + }, + "minecraft:cyan_carpet": { + "protocol_id": 515 + }, + "minecraft:cyan_concrete": { + "protocol_id": 624 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 640 + }, + "minecraft:cyan_dye": { + "protocol_id": 1076 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 608 + }, + "minecraft:cyan_harness": { + "protocol_id": 848 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 592 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 540 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 556 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 496 + }, + "minecraft:cyan_wool": { + "protocol_id": 222 + }, + "minecraft:damaged_anvil": { + "protocol_id": 481 + }, + "minecraft:dandelion": { + "protocol_id": 229 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1452 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 876 + }, + "minecraft:dark_oak_button": { + "protocol_id": 758 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 877 + }, + "minecraft:dark_oak_door": { + "protocol_id": 787 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 351 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 828 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 1007 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 188 + }, + "minecraft:dark_oak_log": { + "protocol_id": 141 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 42 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 774 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 55 + }, + "minecraft:dark_oak_shelf": { + "protocol_id": 311 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 995 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 277 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 448 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 808 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 178 + }, + "minecraft:dark_prismarine": { + "protocol_id": 565 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 300 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 568 + }, + "minecraft:daylight_detector": { + "protocol_id": 742 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 665 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 651 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 676 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 666 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 652 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 677 + }, + "minecraft:dead_bush": { + "protocol_id": 207 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 667 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 653 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 678 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 668 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 654 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 679 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 669 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 650 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 675 + }, + "minecraft:debug_stick": { + "protocol_id": 1309 + }, + "minecraft:decorated_pot": { + "protocol_id": 320 + }, + "minecraft:deepslate": { + "protocol_id": 8 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 715 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 698 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 477 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 382 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 65 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 69 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 79 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 75 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 71 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 67 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 77 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 73 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 716 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 699 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 478 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 384 + }, + "minecraft:detector_rail": { + "protocol_id": 835 + }, + "minecraft:diamond": { + "protocol_id": 899 + }, + "minecraft:diamond_axe": { + "protocol_id": 940 + }, + "minecraft:diamond_block": { + "protocol_id": 93 + }, + "minecraft:diamond_boots": { + "protocol_id": 974 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 972 + }, + "minecraft:diamond_helmet": { + "protocol_id": 971 + }, + "minecraft:diamond_hoe": { + "protocol_id": 941 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1259 + }, + "minecraft:diamond_leggings": { + "protocol_id": 973 + }, + "minecraft:diamond_nautilus_armor": { + "protocol_id": 1336 + }, + "minecraft:diamond_ore": { + "protocol_id": 78 + }, + "minecraft:diamond_pickaxe": { + "protocol_id": 939 + }, + "minecraft:diamond_shovel": { + "protocol_id": 938 + }, + "minecraft:diamond_spear": { + "protocol_id": 1302 + }, + "minecraft:diamond_sword": { + "protocol_id": 937 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 712 + }, + "minecraft:diorite_stairs": { + "protocol_id": 695 + }, + "minecraft:diorite_wall": { + "protocol_id": 471 + }, + "minecraft:dirt": { + "protocol_id": 28 + }, + "minecraft:dirt_path": { + "protocol_id": 524 + }, + "minecraft:disc_fragment_5": { + "protocol_id": 1331 + }, + "minecraft:dispenser": { + "protocol_id": 729 + }, + "minecraft:dolphin_spawn_egg": { + "protocol_id": 1154 + }, + "minecraft:donkey_spawn_egg": { + "protocol_id": 1136 + }, + "minecraft:dragon_breath": { + "protocol_id": 1291 + }, + "minecraft:dragon_egg": { + "protocol_id": 438 + }, + "minecraft:dragon_head": { + "protocol_id": 1239 + }, + "minecraft:dried_ghast": { + "protocol_id": 649 + }, + "minecraft:dried_kelp": { + "protocol_id": 1108 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 1028 + }, + "minecraft:dripstone_block": { + "protocol_id": 26 + }, + "minecraft:dropper": { + "protocol_id": 730 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 1175 + }, + "minecraft:dune_armor_trim_smithing_template": { + "protocol_id": 1429 + }, + "minecraft:echo_shard": { + "protocol_id": 1425 + }, + "minecraft:egg": { + "protocol_id": 1032 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 1192 + }, + "minecraft:elytra": { + "protocol_id": 863 + }, + "minecraft:emerald": { + "protocol_id": 900 + }, + "minecraft:emerald_block": { + "protocol_id": 441 + }, + "minecraft:emerald_ore": { + "protocol_id": 74 + }, + "minecraft:enchanted_book": { + "protocol_id": 1245 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 988 + }, + "minecraft:enchanting_table": { + "protocol_id": 434 + }, + "minecraft:end_crystal": { + "protocol_id": 1283 + }, + "minecraft:end_portal_frame": { + "protocol_id": 435 + }, + "minecraft:end_rod": { + "protocol_id": 324 + }, + "minecraft:end_stone": { + "protocol_id": 436 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 705 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 687 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 470 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 437 + }, + "minecraft:ender_chest": { + "protocol_id": 440 + }, + "minecraft:ender_dragon_spawn_egg": { + "protocol_id": 1214 + }, + "minecraft:ender_eye": { + "protocol_id": 1129 + }, + "minecraft:ender_pearl": { + "protocol_id": 1116 + }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 1215 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 1216 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 1199 + }, + "minecraft:experience_bottle": { + "protocol_id": 1218 + }, + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1453 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 99 + }, + "minecraft:exposed_copper": { + "protocol_id": 95 + }, + "minecraft:exposed_copper_bars": { + "protocol_id": 393 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1478 + }, + "minecraft:exposed_copper_chain": { + "protocol_id": 402 + }, + "minecraft:exposed_copper_chest": { + "protocol_id": 1486 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 794 + }, + "minecraft:exposed_copper_golem_statue": { + "protocol_id": 1494 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1470 + }, + "minecraft:exposed_copper_lantern": { + "protocol_id": 1367 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 815 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 103 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 111 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 107 + }, + "minecraft:exposed_lightning_rod": { + "protocol_id": 735 + }, + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1433 + }, + "minecraft:farmland": { + "protocol_id": 334 + }, + "minecraft:feather": { + "protocol_id": 950 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 1124 + }, + "minecraft:fern": { + "protocol_id": 203 + }, + "minecraft:field_masoned_banner_pattern": { + "protocol_id": 1351 + }, + "minecraft:filled_map": { + "protocol_id": 1105 + }, + "minecraft:fire_charge": { + "protocol_id": 1219 + }, + "minecraft:fire_coral": { + "protocol_id": 663 + }, + "minecraft:fire_coral_block": { + "protocol_id": 658 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 673 + }, + "minecraft:firefly_bush": { + "protocol_id": 208 + }, + "minecraft:firework_rocket": { + "protocol_id": 1243 + }, + "minecraft:firework_star": { + "protocol_id": 1244 + }, + "minecraft:fishing_rod": { + "protocol_id": 1054 + }, + "minecraft:fletching_table": { + "protocol_id": 1359 + }, + "minecraft:flint": { + "protocol_id": 983 + }, + "minecraft:flint_and_steel": { + "protocol_id": 892 + }, + "minecraft:flow_armor_trim_smithing_template": { + "protocol_id": 1444 + }, + "minecraft:flow_banner_pattern": { + "protocol_id": 1349 + }, + "minecraft:flow_pottery_sherd": { + "protocol_id": 1454 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1343 + }, + "minecraft:flower_pot": { + "protocol_id": 1227 + }, + "minecraft:flowering_azalea": { + "protocol_id": 206 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 192 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 1145 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1455 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 1155 + }, + "minecraft:frogspawn": { + "protocol_id": 1424 + }, + "minecraft:furnace": { + "protocol_id": 335 + }, + "minecraft:furnace_minecart": { + "protocol_id": 857 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 1205 + }, + "minecraft:ghast_tear": { + "protocol_id": 1118 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1389 + }, + "minecraft:glass": { + "protocol_id": 195 + }, + "minecraft:glass_bottle": { + "protocol_id": 1121 + }, + "minecraft:glass_pane": { + "protocol_id": 409 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 1130 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1347 + }, + "minecraft:glow_berries": { + "protocol_id": 1375 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 1065 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1226 + }, + "minecraft:glow_lichen": { + "protocol_id": 412 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 1156 + }, + "minecraft:glowstone": { + "protocol_id": 368 + }, + "minecraft:glowstone_dust": { + "protocol_id": 1057 + }, + "minecraft:goat_horn": { + "protocol_id": 1353 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 1146 + }, + "minecraft:gold_block": { + "protocol_id": 92 + }, + "minecraft:gold_ingot": { + "protocol_id": 909 + }, + "minecraft:gold_nugget": { + "protocol_id": 1119 + }, + "minecraft:gold_ore": { + "protocol_id": 70 + }, + "minecraft:golden_apple": { + "protocol_id": 987 + }, + "minecraft:golden_axe": { + "protocol_id": 930 + }, + "minecraft:golden_boots": { + "protocol_id": 978 + }, + "minecraft:golden_carrot": { + "protocol_id": 1233 + }, + "minecraft:golden_chestplate": { + "protocol_id": 976 + }, + "minecraft:golden_dandelion": { + "protocol_id": 230 + }, + "minecraft:golden_helmet": { + "protocol_id": 975 + }, + "minecraft:golden_hoe": { + "protocol_id": 931 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 1258 + }, + "minecraft:golden_leggings": { + "protocol_id": 977 + }, + "minecraft:golden_nautilus_armor": { + "protocol_id": 1335 + }, + "minecraft:golden_pickaxe": { + "protocol_id": 929 + }, + "minecraft:golden_shovel": { + "protocol_id": 928 + }, + "minecraft:golden_spear": { + "protocol_id": 1301 + }, + "minecraft:golden_sword": { + "protocol_id": 927 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 708 + }, + "minecraft:granite_stairs": { + "protocol_id": 691 + }, + "minecraft:granite_wall": { + "protocol_id": 463 + }, + "minecraft:grass_block": { + "protocol_id": 27 + }, + "minecraft:gravel": { + "protocol_id": 63 + }, + "minecraft:gray_banner": { + "protocol_id": 1274 + }, + "minecraft:gray_bed": { + "protocol_id": 1094 + }, + "minecraft:gray_bundle": { + "protocol_id": 1045 + }, + "minecraft:gray_candle": { + "protocol_id": 1407 + }, + "minecraft:gray_carpet": { + "protocol_id": 513 + }, + "minecraft:gray_concrete": { + "protocol_id": 622 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 638 + }, + "minecraft:gray_dye": { + "protocol_id": 1074 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 606 + }, + "minecraft:gray_harness": { + "protocol_id": 846 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 590 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 538 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 554 + }, + "minecraft:gray_terracotta": { + "protocol_id": 494 + }, + "minecraft:gray_wool": { + "protocol_id": 220 + }, + "minecraft:green_banner": { + "protocol_id": 1280 + }, + "minecraft:green_bed": { + "protocol_id": 1100 + }, + "minecraft:green_bundle": { + "protocol_id": 1051 + }, + "minecraft:green_candle": { + "protocol_id": 1413 + }, + "minecraft:green_carpet": { + "protocol_id": 519 + }, + "minecraft:green_concrete": { + "protocol_id": 628 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 644 + }, + "minecraft:green_dye": { + "protocol_id": 1080 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 612 + }, + "minecraft:green_harness": { + "protocol_id": 852 + }, + "minecraft:green_shulker_box": { + "protocol_id": 596 + }, + "minecraft:green_stained_glass": { + "protocol_id": 544 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 560 + }, + "minecraft:green_terracotta": { + "protocol_id": 500 + }, + "minecraft:green_wool": { + "protocol_id": 226 + }, + "minecraft:grindstone": { + "protocol_id": 1360 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 1193 + }, + "minecraft:gunpowder": { + "protocol_id": 951 + }, + "minecraft:guster_banner_pattern": { + "protocol_id": 1350 + }, + "minecraft:guster_pottery_sherd": { + "protocol_id": 1456 + }, + "minecraft:hanging_roots": { + "protocol_id": 267 + }, + "minecraft:happy_ghast_spawn_egg": { + "protocol_id": 1206 + }, + "minecraft:hay_block": { + "protocol_id": 505 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 1339 + }, + "minecraft:heart_pottery_sherd": { + "protocol_id": 1457 + }, + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1458 + }, + "minecraft:heavy_core": { + "protocol_id": 87 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 767 + }, + "minecraft:hoglin_spawn_egg": { + "protocol_id": 1207 + }, + "minecraft:honey_block": { + "protocol_id": 726 + }, + "minecraft:honey_bottle": { + "protocol_id": 1382 + }, + "minecraft:honeycomb": { + "protocol_id": 1379 + }, + "minecraft:honeycomb_block": { + "protocol_id": 1383 + }, + "minecraft:hopper": { + "protocol_id": 728 + }, + "minecraft:hopper_minecart": { + "protocol_id": 859 + }, + "minecraft:horn_coral": { + "protocol_id": 664 + }, + "minecraft:horn_coral_block": { + "protocol_id": 659 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 674 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 1137 + }, + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1443 + }, + "minecraft:howl_pottery_sherd": { + "protocol_id": 1459 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 1176 + }, + "minecraft:ice": { + "protocol_id": 339 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 374 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 370 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 373 + }, + "minecraft:infested_deepslate": { + "protocol_id": 375 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 372 + }, + "minecraft:infested_stone": { + "protocol_id": 369 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 371 + }, + "minecraft:ink_sac": { + "protocol_id": 1064 + }, + "minecraft:iron_axe": { + "protocol_id": 935 + }, + "minecraft:iron_bars": { + "protocol_id": 391 + }, + "minecraft:iron_block": { + "protocol_id": 90 + }, + "minecraft:iron_boots": { + "protocol_id": 970 + }, + "minecraft:iron_chain": { + "protocol_id": 400 + }, + "minecraft:iron_chestplate": { + "protocol_id": 968 + }, + "minecraft:iron_door": { + "protocol_id": 780 + }, + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 1168 + }, + "minecraft:iron_helmet": { + "protocol_id": 967 + }, + "minecraft:iron_hoe": { + "protocol_id": 936 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1257 + }, + "minecraft:iron_ingot": { + "protocol_id": 905 + }, + "minecraft:iron_leggings": { + "protocol_id": 969 + }, + "minecraft:iron_nautilus_armor": { + "protocol_id": 1334 + }, + "minecraft:iron_nugget": { + "protocol_id": 1306 + }, + "minecraft:iron_ore": { + "protocol_id": 66 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 934 + }, + "minecraft:iron_shovel": { + "protocol_id": 933 + }, + "minecraft:iron_spear": { + "protocol_id": 1300 + }, + "minecraft:iron_sword": { + "protocol_id": 932 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 801 + }, + "minecraft:item_frame": { + "protocol_id": 1225 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 359 + }, + "minecraft:jigsaw": { + "protocol_id": 885 + }, + "minecraft:jukebox": { + "protocol_id": 344 + }, + "minecraft:jungle_boat": { + "protocol_id": 870 + }, + "minecraft:jungle_button": { + "protocol_id": 755 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 871 + }, + "minecraft:jungle_door": { + "protocol_id": 784 + }, + "minecraft:jungle_fence": { + "protocol_id": 348 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 825 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 1004 + }, + "minecraft:jungle_leaves": { + "protocol_id": 185 + }, + "minecraft:jungle_log": { + "protocol_id": 137 + }, + "minecraft:jungle_planks": { + "protocol_id": 39 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 771 + }, + "minecraft:jungle_sapling": { + "protocol_id": 52 + }, + "minecraft:jungle_shelf": { + "protocol_id": 312 + }, + "minecraft:jungle_sign": { + "protocol_id": 992 + }, + "minecraft:jungle_slab": { + "protocol_id": 274 + }, + "minecraft:jungle_stairs": { + "protocol_id": 445 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 805 + }, + "minecraft:jungle_wood": { + "protocol_id": 174 + }, + "minecraft:kelp": { + "protocol_id": 258 + }, + "minecraft:knowledge_book": { + "protocol_id": 1308 + }, + "minecraft:ladder": { + "protocol_id": 336 + }, + "minecraft:lantern": { + "protocol_id": 1364 + }, + "minecraft:lapis_block": { + "protocol_id": 197 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 901 + }, + "minecraft:lapis_ore": { + "protocol_id": 76 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1418 + }, + "minecraft:large_fern": { + "protocol_id": 530 + }, + "minecraft:lava_bucket": { + "protocol_id": 1015 + }, + "minecraft:lead": { + "protocol_id": 1262 + }, + "minecraft:leaf_litter": { + "protocol_id": 261 + }, + "minecraft:leather": { + "protocol_id": 1018 + }, + "minecraft:leather_boots": { + "protocol_id": 958 + }, + "minecraft:leather_chestplate": { + "protocol_id": 956 + }, + "minecraft:leather_helmet": { + "protocol_id": 955 + }, + "minecraft:leather_horse_armor": { + "protocol_id": 1261 + }, + "minecraft:leather_leggings": { + "protocol_id": 957 + }, + "minecraft:lectern": { + "protocol_id": 731 + }, + "minecraft:lever": { + "protocol_id": 733 + }, + "minecraft:light": { + "protocol_id": 504 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1270 + }, + "minecraft:light_blue_bed": { + "protocol_id": 1090 + }, + "minecraft:light_blue_bundle": { + "protocol_id": 1041 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1403 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 509 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 618 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 634 + }, + "minecraft:light_blue_dye": { + "protocol_id": 1070 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 602 + }, + "minecraft:light_blue_harness": { + "protocol_id": 842 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 586 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 534 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 550 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 490 + }, + "minecraft:light_blue_wool": { + "protocol_id": 216 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1275 + }, + "minecraft:light_gray_bed": { + "protocol_id": 1095 + }, + "minecraft:light_gray_bundle": { + "protocol_id": 1046 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1408 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 514 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 623 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 639 + }, + "minecraft:light_gray_dye": { + "protocol_id": 1075 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 607 + }, + "minecraft:light_gray_harness": { + "protocol_id": 847 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 591 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 539 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 555 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 495 + }, + "minecraft:light_gray_wool": { + "protocol_id": 221 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 766 + }, + "minecraft:lightning_rod": { + "protocol_id": 734 + }, + "minecraft:lilac": { + "protocol_id": 526 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 243 + }, + "minecraft:lily_pad": { + "protocol_id": 424 + }, + "minecraft:lime_banner": { + "protocol_id": 1272 + }, + "minecraft:lime_bed": { + "protocol_id": 1092 + }, + "minecraft:lime_bundle": { + "protocol_id": 1043 + }, + "minecraft:lime_candle": { + "protocol_id": 1405 + }, + "minecraft:lime_carpet": { + "protocol_id": 511 + }, + "minecraft:lime_concrete": { + "protocol_id": 620 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 636 + }, + "minecraft:lime_dye": { + "protocol_id": 1072 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 604 + }, + "minecraft:lime_harness": { + "protocol_id": 844 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 588 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 536 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 552 + }, + "minecraft:lime_terracotta": { + "protocol_id": 492 + }, + "minecraft:lime_wool": { + "protocol_id": 218 + }, + "minecraft:lingering_potion": { + "protocol_id": 1295 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1147 + }, + "minecraft:lodestone": { + "protocol_id": 1384 + }, + "minecraft:loom": { + "protocol_id": 1342 + }, + "minecraft:mace": { + "protocol_id": 1224 + }, + "minecraft:magenta_banner": { + "protocol_id": 1269 + }, + "minecraft:magenta_bed": { + "protocol_id": 1089 + }, + "minecraft:magenta_bundle": { + "protocol_id": 1040 + }, + "minecraft:magenta_candle": { + "protocol_id": 1402 + }, + "minecraft:magenta_carpet": { + "protocol_id": 508 + }, + "minecraft:magenta_concrete": { + "protocol_id": 617 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 633 + }, + "minecraft:magenta_dye": { + "protocol_id": 1069 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 601 + }, + "minecraft:magenta_harness": { + "protocol_id": 841 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 585 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 533 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 549 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 489 + }, + "minecraft:magenta_wool": { + "protocol_id": 215 + }, + "minecraft:magma_block": { + "protocol_id": 576 + }, + "minecraft:magma_cream": { + "protocol_id": 1126 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 1208 + }, + "minecraft:mangrove_boat": { + "protocol_id": 880 + }, + "minecraft:mangrove_button": { + "protocol_id": 760 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 881 + }, + "minecraft:mangrove_door": { + "protocol_id": 789 + }, + "minecraft:mangrove_fence": { + "protocol_id": 353 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 830 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 1009 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 190 + }, + "minecraft:mangrove_log": { + "protocol_id": 142 + }, + "minecraft:mangrove_planks": { + "protocol_id": 44 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 776 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 57 + }, + "minecraft:mangrove_roots": { + "protocol_id": 143 + }, + "minecraft:mangrove_shelf": { + "protocol_id": 313 + }, + "minecraft:mangrove_sign": { + "protocol_id": 997 + }, + "minecraft:mangrove_slab": { + "protocol_id": 279 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 450 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 810 + }, + "minecraft:mangrove_wood": { + "protocol_id": 179 + }, + "minecraft:map": { + "protocol_id": 1232 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1417 + }, + "minecraft:melon": { + "protocol_id": 410 + }, + "minecraft:melon_seeds": { + "protocol_id": 1110 + }, + "minecraft:melon_slice": { + "protocol_id": 1107 + }, + "minecraft:milk_bucket": { + "protocol_id": 1019 + }, + "minecraft:minecart": { + "protocol_id": 855 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1460 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1346 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 1165 + }, + "minecraft:moss_block": { + "protocol_id": 263 + }, + "minecraft:moss_carpet": { + "protocol_id": 262 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 321 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 704 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 686 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 458 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 702 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 684 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 462 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 377 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1461 + }, + "minecraft:mud": { + "protocol_id": 32 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 292 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 422 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 465 + }, + "minecraft:mud_bricks": { + "protocol_id": 381 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 144 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 1138 + }, + "minecraft:mushroom_stem": { + "protocol_id": 390 + }, + "minecraft:mushroom_stew": { + "protocol_id": 948 + }, + "minecraft:music_disc_11": { + "protocol_id": 1323 + }, + "minecraft:music_disc_13": { + "protocol_id": 1310 + }, + "minecraft:music_disc_5": { + "protocol_id": 1327 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1312 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1311 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1313 + }, + "minecraft:music_disc_creator": { + "protocol_id": 1314 + }, + "minecraft:music_disc_creator_music_box": { + "protocol_id": 1315 + }, + "minecraft:music_disc_far": { + "protocol_id": 1316 + }, + "minecraft:music_disc_lava_chicken": { + "protocol_id": 1317 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1318 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1319 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1325 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1328 + }, + "minecraft:music_disc_precipice": { + "protocol_id": 1329 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1326 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1320 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1321 + }, + "minecraft:music_disc_tears": { + "protocol_id": 1330 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1324 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1322 + }, + "minecraft:mutton": { + "protocol_id": 1265 + }, + "minecraft:mycelium": { + "protocol_id": 423 + }, + "minecraft:name_tag": { + "protocol_id": 1263 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1333 + }, + "minecraft:nautilus_spawn_egg": { + "protocol_id": 1157 + }, + "minecraft:nether_brick": { + "protocol_id": 1246 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 428 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 293 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 429 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 466 + }, + "minecraft:nether_bricks": { + "protocol_id": 425 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 80 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 81 + }, + "minecraft:nether_sprouts": { + "protocol_id": 254 + }, + "minecraft:nether_star": { + "protocol_id": 1241 + }, + "minecraft:nether_wart": { + "protocol_id": 1120 + }, + "minecraft:nether_wart_block": { + "protocol_id": 577 + }, + "minecraft:netherite_axe": { + "protocol_id": 945 + }, + "minecraft:netherite_block": { + "protocol_id": 94 + }, + "minecraft:netherite_boots": { + "protocol_id": 982 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 980 + }, + "minecraft:netherite_helmet": { + "protocol_id": 979 + }, + "minecraft:netherite_hoe": { + "protocol_id": 946 + }, + "minecraft:netherite_horse_armor": { + "protocol_id": 1260 + }, + "minecraft:netherite_ingot": { + "protocol_id": 910 + }, + "minecraft:netherite_leggings": { + "protocol_id": 981 + }, + "minecraft:netherite_nautilus_armor": { + "protocol_id": 1337 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 944 + }, + "minecraft:netherite_scrap": { + "protocol_id": 911 + }, + "minecraft:netherite_shovel": { + "protocol_id": 943 + }, + "minecraft:netherite_spear": { + "protocol_id": 1303 + }, + "minecraft:netherite_sword": { + "protocol_id": 942 + }, + "minecraft:netherite_upgrade_smithing_template": { + "protocol_id": 1427 + }, + "minecraft:netherrack": { + "protocol_id": 360 + }, + "minecraft:note_block": { + "protocol_id": 749 + }, + "minecraft:oak_boat": { + "protocol_id": 864 + }, + "minecraft:oak_button": { + "protocol_id": 752 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 865 + }, + "minecraft:oak_door": { + "protocol_id": 781 + }, + "minecraft:oak_fence": { + "protocol_id": 345 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 822 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 1001 + }, + "minecraft:oak_leaves": { + "protocol_id": 182 + }, + "minecraft:oak_log": { + "protocol_id": 134 + }, + "minecraft:oak_planks": { + "protocol_id": 36 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 768 + }, + "minecraft:oak_sapling": { + "protocol_id": 49 + }, + "minecraft:oak_shelf": { + "protocol_id": 314 + }, + "minecraft:oak_sign": { + "protocol_id": 989 + }, + "minecraft:oak_slab": { + "protocol_id": 271 + }, + "minecraft:oak_stairs": { + "protocol_id": 442 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 802 + }, + "minecraft:oak_wood": { + "protocol_id": 171 + }, + "minecraft:observer": { + "protocol_id": 727 + }, + "minecraft:obsidian": { + "protocol_id": 322 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 1148 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1421 + }, + "minecraft:ominous_bottle": { + "protocol_id": 1505 + }, + "minecraft:ominous_trial_key": { + "protocol_id": 1503 + }, + "minecraft:open_eyeblossom": { + "protocol_id": 231 + }, + "minecraft:orange_banner": { + "protocol_id": 1268 + }, + "minecraft:orange_bed": { + "protocol_id": 1088 + }, + "minecraft:orange_bundle": { + "protocol_id": 1039 + }, + "minecraft:orange_candle": { + "protocol_id": 1401 + }, + "minecraft:orange_carpet": { + "protocol_id": 507 + }, + "minecraft:orange_concrete": { + "protocol_id": 616 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 632 + }, + "minecraft:orange_dye": { + "protocol_id": 1068 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 600 + }, + "minecraft:orange_harness": { + "protocol_id": 840 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 584 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 532 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 548 + }, + "minecraft:orange_terracotta": { + "protocol_id": 488 + }, + "minecraft:orange_tulip": { + "protocol_id": 238 + }, + "minecraft:orange_wool": { + "protocol_id": 214 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 241 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 101 + }, + "minecraft:oxidized_copper": { + "protocol_id": 97 + }, + "minecraft:oxidized_copper_bars": { + "protocol_id": 395 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1480 + }, + "minecraft:oxidized_copper_chain": { + "protocol_id": 404 + }, + "minecraft:oxidized_copper_chest": { + "protocol_id": 1488 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 796 + }, + "minecraft:oxidized_copper_golem_statue": { + "protocol_id": 1496 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1472 + }, + "minecraft:oxidized_copper_lantern": { + "protocol_id": 1369 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 817 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 105 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 113 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 109 + }, + "minecraft:oxidized_lightning_rod": { + "protocol_id": 737 + }, + "minecraft:packed_ice": { + "protocol_id": 523 + }, + "minecraft:packed_mud": { + "protocol_id": 380 + }, + "minecraft:painting": { + "protocol_id": 986 + }, + "minecraft:pale_hanging_moss": { + "protocol_id": 265 + }, + "minecraft:pale_moss_block": { + "protocol_id": 266 + }, + "minecraft:pale_moss_carpet": { + "protocol_id": 264 + }, + "minecraft:pale_oak_boat": { + "protocol_id": 878 + }, + "minecraft:pale_oak_button": { + "protocol_id": 759 + }, + "minecraft:pale_oak_chest_boat": { + "protocol_id": 879 + }, + "minecraft:pale_oak_door": { + "protocol_id": 788 + }, + "minecraft:pale_oak_fence": { + "protocol_id": 352 + }, + "minecraft:pale_oak_fence_gate": { + "protocol_id": 829 + }, + "minecraft:pale_oak_hanging_sign": { + "protocol_id": 1008 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 189 + }, + "minecraft:pale_oak_log": { + "protocol_id": 140 + }, + "minecraft:pale_oak_planks": { + "protocol_id": 43 + }, + "minecraft:pale_oak_pressure_plate": { + "protocol_id": 775 + }, + "minecraft:pale_oak_sapling": { + "protocol_id": 56 + }, + "minecraft:pale_oak_shelf": { + "protocol_id": 315 + }, + "minecraft:pale_oak_sign": { + "protocol_id": 996 + }, + "minecraft:pale_oak_slab": { + "protocol_id": 278 + }, + "minecraft:pale_oak_stairs": { + "protocol_id": 449 + }, + "minecraft:pale_oak_trapdoor": { + "protocol_id": 809 + }, + "minecraft:pale_oak_wood": { + "protocol_id": 177 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 1149 + }, + "minecraft:paper": { + "protocol_id": 1029 + }, + "minecraft:parched_spawn_egg": { + "protocol_id": 1177 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1140 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1423 + }, + "minecraft:peony": { + "protocol_id": 528 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 288 + }, + "minecraft:phantom_membrane": { + "protocol_id": 862 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 1194 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1133 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1348 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1210 + }, + "minecraft:piglin_head": { + "protocol_id": 1240 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1209 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1200 + }, + "minecraft:pink_banner": { + "protocol_id": 1273 + }, + "minecraft:pink_bed": { + "protocol_id": 1093 + }, + "minecraft:pink_bundle": { + "protocol_id": 1044 + }, + "minecraft:pink_candle": { + "protocol_id": 1406 + }, + "minecraft:pink_carpet": { + "protocol_id": 512 + }, + "minecraft:pink_concrete": { + "protocol_id": 621 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 637 + }, + "minecraft:pink_dye": { + "protocol_id": 1073 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 605 + }, + "minecraft:pink_harness": { + "protocol_id": 845 + }, + "minecraft:pink_petals": { + "protocol_id": 259 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 589 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 537 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 553 + }, + "minecraft:pink_terracotta": { + "protocol_id": 493 + }, + "minecraft:pink_tulip": { + "protocol_id": 240 + }, + "minecraft:pink_wool": { + "protocol_id": 219 + }, + "minecraft:piston": { + "protocol_id": 723 + }, + "minecraft:pitcher_plant": { + "protocol_id": 246 + }, + "minecraft:pitcher_pod": { + "protocol_id": 1287 + }, + "minecraft:player_head": { + "protocol_id": 1236 + }, + "minecraft:plenty_pottery_sherd": { + "protocol_id": 1462 + }, + "minecraft:podzol": { + "protocol_id": 30 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1420 + }, + "minecraft:poisonous_potato": { + "protocol_id": 1231 + }, + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 1150 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 711 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 694 + }, + "minecraft:polished_basalt": { + "protocol_id": 364 + }, + "minecraft:polished_blackstone": { + "protocol_id": 1390 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1395 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1396 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 474 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 1394 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 751 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 765 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 1391 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 1392 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 473 + }, + "minecraft:polished_deepslate": { + "protocol_id": 10 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 714 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 697 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 476 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 703 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 685 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 700 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 682 + }, + "minecraft:polished_tuff": { + "protocol_id": 17 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 18 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 19 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 20 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 1285 + }, + "minecraft:poppy": { + "protocol_id": 233 + }, + "minecraft:porkchop": { + "protocol_id": 984 + }, + "minecraft:potato": { + "protocol_id": 1229 + }, + "minecraft:potion": { + "protocol_id": 1122 + }, + "minecraft:powder_snow_bucket": { + "protocol_id": 1016 + }, + "minecraft:powered_rail": { + "protocol_id": 834 + }, + "minecraft:prismarine": { + "protocol_id": 563 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 299 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 567 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 564 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 1249 + }, + "minecraft:prismarine_shard": { + "protocol_id": 1248 + }, + "minecraft:prismarine_slab": { + "protocol_id": 298 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 566 + }, + "minecraft:prismarine_wall": { + "protocol_id": 460 + }, + "minecraft:prize_pottery_sherd": { + "protocol_id": 1463 + }, + "minecraft:pufferfish": { + "protocol_id": 1061 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 1020 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1158 + }, + "minecraft:pumpkin": { + "protocol_id": 357 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 1242 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 1109 + }, + "minecraft:purple_banner": { + "protocol_id": 1277 + }, + "minecraft:purple_bed": { + "protocol_id": 1097 + }, + "minecraft:purple_bundle": { + "protocol_id": 1048 + }, + "minecraft:purple_candle": { + "protocol_id": 1410 + }, + "minecraft:purple_carpet": { + "protocol_id": 516 + }, + "minecraft:purple_concrete": { + "protocol_id": 625 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 641 + }, + "minecraft:purple_dye": { + "protocol_id": 1077 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 609 + }, + "minecraft:purple_harness": { + "protocol_id": 849 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 593 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 541 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 557 + }, + "minecraft:purple_terracotta": { + "protocol_id": 497 + }, + "minecraft:purple_wool": { + "protocol_id": 223 + }, + "minecraft:purpur_block": { + "protocol_id": 327 + }, + "minecraft:purpur_pillar": { + "protocol_id": 328 + }, + "minecraft:purpur_slab": { + "protocol_id": 297 + }, + "minecraft:purpur_stairs": { + "protocol_id": 329 + }, + "minecraft:quartz": { + "protocol_id": 902 + }, + "minecraft:quartz_block": { + "protocol_id": 483 + }, + "minecraft:quartz_bricks": { + "protocol_id": 484 + }, + "minecraft:quartz_pillar": { + "protocol_id": 485 + }, + "minecraft:quartz_slab": { + "protocol_id": 294 + }, + "minecraft:quartz_stairs": { + "protocol_id": 486 + }, + "minecraft:rabbit": { + "protocol_id": 1250 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1253 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1254 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 1151 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1252 + }, + "minecraft:rail": { + "protocol_id": 836 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1442 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 1201 + }, + "minecraft:raw_copper": { + "protocol_id": 906 + }, + "minecraft:raw_copper_block": { + "protocol_id": 85 + }, + "minecraft:raw_gold": { + "protocol_id": 908 + }, + "minecraft:raw_gold_block": { + "protocol_id": 86 + }, + "minecraft:raw_iron": { + "protocol_id": 904 + }, + "minecraft:raw_iron_block": { + "protocol_id": 84 + }, + "minecraft:recovery_compass": { + "protocol_id": 1036 + }, + "minecraft:red_banner": { + "protocol_id": 1281 + }, + "minecraft:red_bed": { + "protocol_id": 1101 + }, + "minecraft:red_bundle": { + "protocol_id": 1052 + }, + "minecraft:red_candle": { + "protocol_id": 1414 + }, + "minecraft:red_carpet": { + "protocol_id": 520 + }, + "minecraft:red_concrete": { + "protocol_id": 629 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 645 + }, + "minecraft:red_dye": { + "protocol_id": 1081 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 613 + }, + "minecraft:red_harness": { + "protocol_id": 853 + }, + "minecraft:red_mushroom": { + "protocol_id": 249 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 389 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 710 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 693 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 468 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 579 + }, + "minecraft:red_sand": { + "protocol_id": 62 + }, + "minecraft:red_sandstone": { + "protocol_id": 570 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 295 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 573 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 461 + }, + "minecraft:red_shulker_box": { + "protocol_id": 597 + }, + "minecraft:red_stained_glass": { + "protocol_id": 545 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 561 + }, + "minecraft:red_terracotta": { + "protocol_id": 501 + }, + "minecraft:red_tulip": { + "protocol_id": 237 + }, + "minecraft:red_wool": { + "protocol_id": 227 + }, + "minecraft:redstone": { + "protocol_id": 718 + }, + "minecraft:redstone_block": { + "protocol_id": 720 + }, + "minecraft:redstone_lamp": { + "protocol_id": 748 + }, + "minecraft:redstone_ore": { + "protocol_id": 72 + }, + "minecraft:redstone_torch": { + "protocol_id": 719 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 387 + }, + "minecraft:repeater": { + "protocol_id": 721 + }, + "minecraft:repeating_command_block": { + "protocol_id": 574 + }, + "minecraft:resin_block": { + "protocol_id": 414 + }, + "minecraft:resin_brick": { + "protocol_id": 1247 + }, + "minecraft:resin_brick_slab": { + "protocol_id": 417 + }, + "minecraft:resin_brick_stairs": { + "protocol_id": 416 + }, + "minecraft:resin_brick_wall": { + "protocol_id": 418 + }, + "minecraft:resin_bricks": { + "protocol_id": 415 + }, + "minecraft:resin_clump": { + "protocol_id": 413 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1398 + }, + "minecraft:rib_armor_trim_smithing_template": { + "protocol_id": 1437 + }, + "minecraft:rooted_dirt": { + "protocol_id": 31 + }, + "minecraft:rose_bush": { + "protocol_id": 527 + }, + "minecraft:rotten_flesh": { + "protocol_id": 1115 + }, + "minecraft:saddle": { + "protocol_id": 838 + }, + "minecraft:salmon": { + "protocol_id": 1059 + }, + "minecraft:salmon_bucket": { + "protocol_id": 1021 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 1159 + }, + "minecraft:sand": { + "protocol_id": 59 + }, + "minecraft:sandstone": { + "protocol_id": 198 + }, + "minecraft:sandstone_slab": { + "protocol_id": 286 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 439 + }, + "minecraft:sandstone_wall": { + "protocol_id": 469 + }, + "minecraft:scaffolding": { + "protocol_id": 717 + }, + "minecraft:scrape_pottery_sherd": { + "protocol_id": 1464 + }, + "minecraft:sculk": { + "protocol_id": 430 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 432 + }, + "minecraft:sculk_sensor": { + "protocol_id": 743 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 433 + }, + "minecraft:sculk_vein": { + "protocol_id": 431 + }, + "minecraft:sea_lantern": { + "protocol_id": 569 + }, + "minecraft:sea_pickle": { + "protocol_id": 212 + }, + "minecraft:seagrass": { + "protocol_id": 211 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "protocol_id": 1428 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1440 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1465 + }, + "minecraft:shears": { + "protocol_id": 1106 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 1134 + }, + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1466 + }, + "minecraft:shield": { + "protocol_id": 1296 + }, + "minecraft:short_dry_grass": { + "protocol_id": 209 + }, + "minecraft:short_grass": { + "protocol_id": 202 + }, + "minecraft:shroomlight": { + "protocol_id": 1378 + }, + "minecraft:shulker_box": { + "protocol_id": 582 + }, + "minecraft:shulker_shell": { + "protocol_id": 1305 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 1217 + }, + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1441 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 1195 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 1179 + }, + "minecraft:skeleton_skull": { + "protocol_id": 1234 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1178 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1345 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1467 + }, + "minecraft:slime_ball": { + "protocol_id": 1031 + }, + "minecraft:slime_block": { + "protocol_id": 725 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1196 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1416 + }, + "minecraft:small_dripleaf": { + "protocol_id": 269 + }, + "minecraft:smithing_table": { + "protocol_id": 1361 + }, + "minecraft:smoker": { + "protocol_id": 1356 + }, + "minecraft:smooth_basalt": { + "protocol_id": 365 + }, + "minecraft:smooth_quartz": { + "protocol_id": 301 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 707 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 690 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 302 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 701 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 683 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 303 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 706 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 689 + }, + "minecraft:smooth_stone": { + "protocol_id": 304 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 285 + }, + "minecraft:sniffer_egg": { + "protocol_id": 648 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1166 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1468 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1436 + }, + "minecraft:snow": { + "protocol_id": 338 + }, + "minecraft:snow_block": { + "protocol_id": 340 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1169 + }, + "minecraft:snowball": { + "protocol_id": 1017 + }, + "minecraft:soul_campfire": { + "protocol_id": 1377 + }, + "minecraft:soul_lantern": { + "protocol_id": 1365 + }, + "minecraft:soul_sand": { + "protocol_id": 361 + }, + "minecraft:soul_soil": { + "protocol_id": 362 + }, + "minecraft:soul_torch": { + "protocol_id": 366 + }, + "minecraft:spawner": { + "protocol_id": 330 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1293 + }, + "minecraft:spider_eye": { + "protocol_id": 1123 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1188 + }, + "minecraft:spire_armor_trim_smithing_template": { + "protocol_id": 1438 + }, + "minecraft:splash_potion": { + "protocol_id": 1292 + }, + "minecraft:sponge": { + "protocol_id": 193 + }, + "minecraft:spore_blossom": { + "protocol_id": 247 + }, + "minecraft:spruce_boat": { + "protocol_id": 866 + }, + "minecraft:spruce_button": { + "protocol_id": 753 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 867 + }, + "minecraft:spruce_door": { + "protocol_id": 782 + }, + "minecraft:spruce_fence": { + "protocol_id": 346 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 823 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 1002 + }, + "minecraft:spruce_leaves": { + "protocol_id": 183 + }, + "minecraft:spruce_log": { + "protocol_id": 135 + }, + "minecraft:spruce_planks": { + "protocol_id": 37 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 769 + }, + "minecraft:spruce_sapling": { + "protocol_id": 50 + }, + "minecraft:spruce_shelf": { + "protocol_id": 316 + }, + "minecraft:spruce_sign": { + "protocol_id": 990 + }, + "minecraft:spruce_slab": { + "protocol_id": 272 + }, + "minecraft:spruce_stairs": { + "protocol_id": 443 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 803 + }, + "minecraft:spruce_wood": { + "protocol_id": 172 + }, + "minecraft:spyglass": { + "protocol_id": 1056 + }, + "minecraft:squid_spawn_egg": { + "protocol_id": 1160 + }, + "minecraft:stick": { + "protocol_id": 947 + }, + "minecraft:sticky_piston": { + "protocol_id": 724 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_axe": { + "protocol_id": 925 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 291 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 421 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 464 + }, + "minecraft:stone_bricks": { + "protocol_id": 376 + }, + "minecraft:stone_button": { + "protocol_id": 750 + }, + "minecraft:stone_hoe": { + "protocol_id": 926 + }, + "minecraft:stone_pickaxe": { + "protocol_id": 924 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 764 + }, + "minecraft:stone_shovel": { + "protocol_id": 923 + }, + "minecraft:stone_slab": { + "protocol_id": 284 + }, + "minecraft:stone_spear": { + "protocol_id": 1298 + }, + "minecraft:stone_stairs": { + "protocol_id": 688 + }, + "minecraft:stone_sword": { + "protocol_id": 922 + }, + "minecraft:stonecutter": { + "protocol_id": 1362 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 1180 + }, + "minecraft:strider_spawn_egg": { + "protocol_id": 1211 + }, + "minecraft:string": { + "protocol_id": 949 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 152 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 163 + }, + "minecraft:stripped_bamboo_block": { + "protocol_id": 170 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 150 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 161 + }, + "minecraft:stripped_cherry_log": { + "protocol_id": 153 + }, + "minecraft:stripped_cherry_wood": { + "protocol_id": 164 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 168 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 157 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 154 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 165 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 151 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 162 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 156 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 167 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 148 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 159 + }, + "minecraft:stripped_pale_oak_log": { + "protocol_id": 155 + }, + "minecraft:stripped_pale_oak_wood": { + "protocol_id": 166 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 149 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 160 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 169 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 158 + }, + "minecraft:structure_block": { + "protocol_id": 884 + }, + "minecraft:structure_void": { + "protocol_id": 581 + }, + "minecraft:sugar": { + "protocol_id": 1085 + }, + "minecraft:sugar_cane": { + "protocol_id": 257 + }, + "minecraft:sunflower": { + "protocol_id": 525 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 61 + }, + "minecraft:suspicious_sand": { + "protocol_id": 60 + }, + "minecraft:suspicious_stew": { + "protocol_id": 1341 + }, + "minecraft:sweet_berries": { + "protocol_id": 1374 + }, + "minecraft:tadpole_bucket": { + "protocol_id": 1025 + }, + "minecraft:tadpole_spawn_egg": { + "protocol_id": 1161 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 210 + }, + "minecraft:tall_grass": { + "protocol_id": 529 + }, + "minecraft:target": { + "protocol_id": 732 + }, + "minecraft:terracotta": { + "protocol_id": 522 + }, + "minecraft:test_block": { + "protocol_id": 886 + }, + "minecraft:test_instance_block": { + "protocol_id": 887 + }, + "minecraft:tide_armor_trim_smithing_template": { + "protocol_id": 1435 + }, + "minecraft:tinted_glass": { + "protocol_id": 196 + }, + "minecraft:tipped_arrow": { + "protocol_id": 1294 + }, + "minecraft:tnt": { + "protocol_id": 747 + }, + "minecraft:tnt_minecart": { + "protocol_id": 858 + }, + "minecraft:torch": { + "protocol_id": 323 + }, + "minecraft:torchflower": { + "protocol_id": 245 + }, + "minecraft:torchflower_seeds": { + "protocol_id": 1286 + }, + "minecraft:totem_of_undying": { + "protocol_id": 1304 + }, + "minecraft:trader_llama_spawn_egg": { + "protocol_id": 1170 + }, + "minecraft:trapped_chest": { + "protocol_id": 746 + }, + "minecraft:trial_key": { + "protocol_id": 1502 + }, + "minecraft:trial_spawner": { + "protocol_id": 1501 + }, + "minecraft:trident": { + "protocol_id": 1332 + }, + "minecraft:tripwire_hook": { + "protocol_id": 745 + }, + "minecraft:tropical_fish": { + "protocol_id": 1060 + }, + "minecraft:tropical_fish_bucket": { + "protocol_id": 1023 + }, + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 1162 + }, + "minecraft:tube_coral": { + "protocol_id": 660 + }, + "minecraft:tube_coral_block": { + "protocol_id": 655 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 670 + }, + "minecraft:tuff": { + "protocol_id": 12 + }, + "minecraft:tuff_brick_slab": { + "protocol_id": 22 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 23 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 24 + }, + "minecraft:tuff_bricks": { + "protocol_id": 21 + }, + "minecraft:tuff_slab": { + "protocol_id": 13 + }, + "minecraft:tuff_stairs": { + "protocol_id": 14 + }, + "minecraft:tuff_wall": { + "protocol_id": 15 + }, + "minecraft:turtle_egg": { + "protocol_id": 647 + }, + "minecraft:turtle_helmet": { + "protocol_id": 888 + }, + "minecraft:turtle_scute": { + "protocol_id": 889 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 1163 + }, + "minecraft:twisting_vines": { + "protocol_id": 256 + }, + "minecraft:vault": { + "protocol_id": 1504 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1422 + }, + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1434 + }, + "minecraft:vex_spawn_egg": { + "protocol_id": 1203 + }, + "minecraft:villager_spawn_egg": { + "protocol_id": 1171 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1202 + }, + "minecraft:vine": { + "protocol_id": 411 + }, + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1172 + }, + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1432 + }, + "minecraft:warden_spawn_egg": { + "protocol_id": 1197 + }, + "minecraft:warped_button": { + "protocol_id": 763 + }, + "minecraft:warped_door": { + "protocol_id": 792 + }, + "minecraft:warped_fence": { + "protocol_id": 356 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 833 + }, + "minecraft:warped_fungus": { + "protocol_id": 251 + }, + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 861 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 1012 + }, + "minecraft:warped_hyphae": { + "protocol_id": 181 + }, + "minecraft:warped_nylium": { + "protocol_id": 34 + }, + "minecraft:warped_planks": { + "protocol_id": 47 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 779 + }, + "minecraft:warped_roots": { + "protocol_id": 253 + }, + "minecraft:warped_shelf": { + "protocol_id": 317 + }, + "minecraft:warped_sign": { + "protocol_id": 1000 + }, + "minecraft:warped_slab": { + "protocol_id": 283 + }, + "minecraft:warped_stairs": { + "protocol_id": 454 + }, + "minecraft:warped_stem": { + "protocol_id": 146 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 813 + }, + "minecraft:warped_wart_block": { + "protocol_id": 578 + }, + "minecraft:water_bucket": { + "protocol_id": 1014 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 118 + }, + "minecraft:waxed_copper_bars": { + "protocol_id": 396 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 114 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1481 + }, + "minecraft:waxed_copper_chain": { + "protocol_id": 405 + }, + "minecraft:waxed_copper_chest": { + "protocol_id": 1489 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 797 + }, + "minecraft:waxed_copper_golem_statue": { + "protocol_id": 1497 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1473 + }, + "minecraft:waxed_copper_lantern": { + "protocol_id": 1370 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 818 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 122 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 130 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 126 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 119 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 115 + }, + "minecraft:waxed_exposed_copper_bars": { + "protocol_id": 397 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1482 + }, + "minecraft:waxed_exposed_copper_chain": { + "protocol_id": 406 + }, + "minecraft:waxed_exposed_copper_chest": { + "protocol_id": 1490 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 798 + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "protocol_id": 1498 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1474 + }, + "minecraft:waxed_exposed_copper_lantern": { + "protocol_id": 1371 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 819 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 123 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 131 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 127 + }, + "minecraft:waxed_exposed_lightning_rod": { + "protocol_id": 739 + }, + "minecraft:waxed_lightning_rod": { + "protocol_id": 738 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 121 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 117 + }, + "minecraft:waxed_oxidized_copper_bars": { + "protocol_id": 399 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1484 + }, + "minecraft:waxed_oxidized_copper_chain": { + "protocol_id": 408 + }, + "minecraft:waxed_oxidized_copper_chest": { + "protocol_id": 1492 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 800 + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "protocol_id": 1500 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1476 + }, + "minecraft:waxed_oxidized_copper_lantern": { + "protocol_id": 1373 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 821 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 125 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 133 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 129 + }, + "minecraft:waxed_oxidized_lightning_rod": { + "protocol_id": 741 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 120 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 116 + }, + "minecraft:waxed_weathered_copper_bars": { + "protocol_id": 398 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1483 + }, + "minecraft:waxed_weathered_copper_chain": { + "protocol_id": 407 + }, + "minecraft:waxed_weathered_copper_chest": { + "protocol_id": 1491 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 799 + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "protocol_id": 1499 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1475 + }, + "minecraft:waxed_weathered_copper_lantern": { + "protocol_id": 1372 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 820 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 124 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 132 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 128 + }, + "minecraft:waxed_weathered_lightning_rod": { + "protocol_id": 740 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1439 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 100 + }, + "minecraft:weathered_copper": { + "protocol_id": 96 + }, + "minecraft:weathered_copper_bars": { + "protocol_id": 394 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1479 + }, + "minecraft:weathered_copper_chain": { + "protocol_id": 403 + }, + "minecraft:weathered_copper_chest": { + "protocol_id": 1487 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 795 + }, + "minecraft:weathered_copper_golem_statue": { + "protocol_id": 1495 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1471 + }, + "minecraft:weathered_copper_lantern": { + "protocol_id": 1368 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 816 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 104 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 112 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 108 + }, + "minecraft:weathered_lightning_rod": { + "protocol_id": 736 + }, + "minecraft:weeping_vines": { + "protocol_id": 255 + }, + "minecraft:wet_sponge": { + "protocol_id": 194 + }, + "minecraft:wheat": { + "protocol_id": 953 + }, + "minecraft:wheat_seeds": { + "protocol_id": 952 + }, + "minecraft:white_banner": { + "protocol_id": 1267 + }, + "minecraft:white_bed": { + "protocol_id": 1087 + }, + "minecraft:white_bundle": { + "protocol_id": 1038 + }, + "minecraft:white_candle": { + "protocol_id": 1400 + }, + "minecraft:white_carpet": { + "protocol_id": 506 + }, + "minecraft:white_concrete": { + "protocol_id": 615 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 631 + }, + "minecraft:white_dye": { + "protocol_id": 1067 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 599 + }, + "minecraft:white_harness": { + "protocol_id": 839 + }, + "minecraft:white_shulker_box": { + "protocol_id": 583 + }, + "minecraft:white_stained_glass": { + "protocol_id": 531 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 547 + }, + "minecraft:white_terracotta": { + "protocol_id": 487 + }, + "minecraft:white_tulip": { + "protocol_id": 239 + }, + "minecraft:white_wool": { + "protocol_id": 213 + }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1431 + }, + "minecraft:wildflowers": { + "protocol_id": 260 + }, + "minecraft:wind_charge": { + "protocol_id": 1220 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 1198 + }, + "minecraft:wither_rose": { + "protocol_id": 244 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 1235 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 1182 + }, + "minecraft:wither_spawn_egg": { + "protocol_id": 1181 + }, + "minecraft:wolf_armor": { + "protocol_id": 891 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 1141 + }, + "minecraft:wooden_axe": { + "protocol_id": 915 + }, + "minecraft:wooden_hoe": { + "protocol_id": 916 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 914 + }, + "minecraft:wooden_shovel": { + "protocol_id": 913 + }, + "minecraft:wooden_spear": { + "protocol_id": 1297 + }, + "minecraft:wooden_sword": { + "protocol_id": 912 + }, + "minecraft:writable_book": { + "protocol_id": 1221 + }, + "minecraft:written_book": { + "protocol_id": 1222 + }, + "minecraft:yellow_banner": { + "protocol_id": 1271 + }, + "minecraft:yellow_bed": { + "protocol_id": 1091 + }, + "minecraft:yellow_bundle": { + "protocol_id": 1042 + }, + "minecraft:yellow_candle": { + "protocol_id": 1404 + }, + "minecraft:yellow_carpet": { + "protocol_id": 510 + }, + "minecraft:yellow_concrete": { + "protocol_id": 619 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 635 + }, + "minecraft:yellow_dye": { + "protocol_id": 1071 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 603 + }, + "minecraft:yellow_harness": { + "protocol_id": 843 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 587 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 535 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 551 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 491 + }, + "minecraft:yellow_wool": { + "protocol_id": 217 + }, + "minecraft:zoglin_spawn_egg": { + "protocol_id": 1212 + }, + "minecraft:zombie_head": { + "protocol_id": 1237 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 1184 + }, + "minecraft:zombie_nautilus_spawn_egg": { + "protocol_id": 1185 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 1183 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 1186 + }, + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 1213 + } + }, + "protocol_id": 7 + }, + "minecraft:loot_condition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 2 + }, + "minecraft:any_of": { + "protocol_id": 1 + }, + "minecraft:block_state_property": { + "protocol_id": 8 + }, + "minecraft:damage_source_properties": { + "protocol_id": 12 + }, + "minecraft:enchantment_active_check": { + "protocol_id": 18 + }, + "minecraft:entity_properties": { + "protocol_id": 5 + }, + "minecraft:entity_scores": { + "protocol_id": 7 + }, + "minecraft:environment_attribute_check": { + "protocol_id": 19 + }, + "minecraft:inverted": { + "protocol_id": 0 + }, + "minecraft:killed_by_player": { + "protocol_id": 6 + }, + "minecraft:location_check": { + "protocol_id": 13 + }, + "minecraft:match_tool": { + "protocol_id": 9 + }, + "minecraft:random_chance": { + "protocol_id": 3 + }, + "minecraft:random_chance_with_enchanted_bonus": { + "protocol_id": 4 + }, + "minecraft:reference": { + "protocol_id": 15 + }, + "minecraft:survives_explosion": { + "protocol_id": 11 + }, + "minecraft:table_bonus": { + "protocol_id": 10 + }, + "minecraft:time_check": { + "protocol_id": 16 + }, + "minecraft:value_check": { + "protocol_id": 17 + }, + "minecraft:weather_check": { + "protocol_id": 14 + } + }, + "protocol_id": 31 + }, + "minecraft:loot_function_type": { + "entries": { + "minecraft:apply_bonus": { + "protocol_id": 19 + }, + "minecraft:copy_components": { + "protocol_id": 33 + }, + "minecraft:copy_custom_data": { + "protocol_id": 24 + }, + "minecraft:copy_name": { + "protocol_id": 14 + }, + "minecraft:copy_state": { + "protocol_id": 25 + }, + "minecraft:discard": { + "protocol_id": 42 + }, + "minecraft:enchant_randomly": { + "protocol_id": 3 + }, + "minecraft:enchant_with_levels": { + "protocol_id": 2 + }, + "minecraft:enchanted_count_increase": { + "protocol_id": 8 + }, + "minecraft:exploration_map": { + "protocol_id": 12 + }, + "minecraft:explosion_decay": { + "protocol_id": 21 + }, + "minecraft:fill_player_head": { + "protocol_id": 23 + }, + "minecraft:filtered": { + "protocol_id": 17 + }, + "minecraft:furnace_smelt": { + "protocol_id": 7 + }, + "minecraft:limit_count": { + "protocol_id": 18 + }, + "minecraft:modify_contents": { + "protocol_id": 16 + }, + "minecraft:reference": { + "protocol_id": 31 + }, + "minecraft:sequence": { + "protocol_id": 32 + }, + "minecraft:set_attributes": { + "protocol_id": 10 + }, + "minecraft:set_banner_pattern": { + "protocol_id": 26 + }, + "minecraft:set_book_cover": { + "protocol_id": 36 + }, + "minecraft:set_components": { + "protocol_id": 6 + }, + "minecraft:set_contents": { + "protocol_id": 15 + }, + "minecraft:set_count": { + "protocol_id": 0 + }, + "minecraft:set_custom_data": { + "protocol_id": 5 + }, + "minecraft:set_custom_model_data": { + "protocol_id": 41 + }, + "minecraft:set_damage": { + "protocol_id": 9 + }, + "minecraft:set_enchantments": { + "protocol_id": 4 + }, + "minecraft:set_firework_explosion": { + "protocol_id": 35 + }, + "minecraft:set_fireworks": { + "protocol_id": 34 + }, + "minecraft:set_instrument": { + "protocol_id": 30 + }, + "minecraft:set_item": { + "protocol_id": 1 + }, + "minecraft:set_loot_table": { + "protocol_id": 20 + }, + "minecraft:set_lore": { + "protocol_id": 22 + }, + "minecraft:set_name": { + "protocol_id": 11 + }, + "minecraft:set_ominous_bottle_amplifier": { + "protocol_id": 40 + }, + "minecraft:set_potion": { + "protocol_id": 27 + }, + "minecraft:set_random_dyes": { + "protocol_id": 28 + }, + "minecraft:set_random_potion": { + "protocol_id": 29 + }, + "minecraft:set_stew_effect": { + "protocol_id": 13 + }, + "minecraft:set_writable_book_pages": { + "protocol_id": 38 + }, + "minecraft:set_written_book_pages": { + "protocol_id": 37 + }, + "minecraft:toggle_tooltips": { + "protocol_id": 39 + } + }, + "protocol_id": 30 + }, + "minecraft:loot_nbt_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:storage": { + "protocol_id": 0 + } + }, + "protocol_id": 33 + }, + "minecraft:loot_number_provider_type": { + "entries": { + "minecraft:binomial": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:enchantment_level": { + "protocol_id": 6 + }, + "minecraft:environment_attribute": { + "protocol_id": 7 + }, + "minecraft:score": { + "protocol_id": 3 + }, + "minecraft:storage": { + "protocol_id": 4 + }, + "minecraft:sum": { + "protocol_id": 5 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 32 + }, + "minecraft:loot_pool_entry_type": { + "entries": { + "minecraft:alternatives": { + "protocol_id": 6 + }, + "minecraft:dynamic": { + "protocol_id": 3 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:group": { + "protocol_id": 8 + }, + "minecraft:item": { + "protocol_id": 1 + }, + "minecraft:loot_table": { + "protocol_id": 2 + }, + "minecraft:sequence": { + "protocol_id": 7 + }, + "minecraft:slots": { + "protocol_id": 5 + }, + "minecraft:tag": { + "protocol_id": 4 + } + }, + "protocol_id": 29 + }, + "minecraft:loot_score_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:fixed": { + "protocol_id": 0 + } + }, + "protocol_id": 34 + }, + "minecraft:map_decoration_type": { + "entries": { + "minecraft:banner_black": { + "protocol_id": 25 + }, + "minecraft:banner_blue": { + "protocol_id": 21 + }, + "minecraft:banner_brown": { + "protocol_id": 22 + }, + "minecraft:banner_cyan": { + "protocol_id": 19 + }, + "minecraft:banner_gray": { + "protocol_id": 17 + }, + "minecraft:banner_green": { + "protocol_id": 23 + }, + "minecraft:banner_light_blue": { + "protocol_id": 13 + }, + "minecraft:banner_light_gray": { + "protocol_id": 18 + }, + "minecraft:banner_lime": { + "protocol_id": 15 + }, + "minecraft:banner_magenta": { + "protocol_id": 12 + }, + "minecraft:banner_orange": { + "protocol_id": 11 + }, + "minecraft:banner_pink": { + "protocol_id": 16 + }, + "minecraft:banner_purple": { + "protocol_id": 20 + }, + "minecraft:banner_red": { + "protocol_id": 24 + }, + "minecraft:banner_white": { + "protocol_id": 10 + }, + "minecraft:banner_yellow": { + "protocol_id": 14 + }, + "minecraft:blue_marker": { + "protocol_id": 3 + }, + "minecraft:frame": { + "protocol_id": 1 + }, + "minecraft:jungle_temple": { + "protocol_id": 32 + }, + "minecraft:mansion": { + "protocol_id": 8 + }, + "minecraft:monument": { + "protocol_id": 9 + }, + "minecraft:player": { + "protocol_id": 0 + }, + "minecraft:player_off_limits": { + "protocol_id": 7 + }, + "minecraft:player_off_map": { + "protocol_id": 6 + }, + "minecraft:red_marker": { + "protocol_id": 2 + }, + "minecraft:red_x": { + "protocol_id": 26 + }, + "minecraft:swamp_hut": { + "protocol_id": 33 + }, + "minecraft:target_point": { + "protocol_id": 5 + }, + "minecraft:target_x": { + "protocol_id": 4 + }, + "minecraft:trial_chambers": { + "protocol_id": 34 + }, + "minecraft:village_desert": { + "protocol_id": 27 + }, + "minecraft:village_plains": { + "protocol_id": 28 + }, + "minecraft:village_savanna": { + "protocol_id": 29 + }, + "minecraft:village_snowy": { + "protocol_id": 30 + }, + "minecraft:village_taiga": { + "protocol_id": 31 + } + }, + "protocol_id": 68 + }, + "minecraft:memory_module_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:admiring_disabled": { + "protocol_id": 68 + }, + "minecraft:admiring_item": { + "protocol_id": 65 + }, + "minecraft:angry_at": { + "protocol_id": 63 + }, + "minecraft:ate_recently": { + "protocol_id": 83 + }, + "minecraft:attack_cooling_down": { + "protocol_id": 16 + }, + "minecraft:attack_target": { + "protocol_id": 15 + }, + "minecraft:attack_target_cooldown": { + "protocol_id": 57 + }, + "minecraft:avoid_target": { + "protocol_id": 25 + }, + "minecraft:breed_target": { + "protocol_id": 18 + }, + "minecraft:breeze_jump_cooldown": { + "protocol_id": 108 + }, + "minecraft:breeze_jump_inhaling": { + "protocol_id": 113 + }, + "minecraft:breeze_jump_target": { + "protocol_id": 114 + }, + "minecraft:breeze_leaving_water": { + "protocol_id": 115 + }, + "minecraft:breeze_shoot": { + "protocol_id": 109 + }, + "minecraft:breeze_shoot_charging": { + "protocol_id": 110 + }, + "minecraft:breeze_shoot_cooldown": { + "protocol_id": 112 + }, + "minecraft:breeze_shoot_recover": { + "protocol_id": 111 + }, + "minecraft:cant_reach_walk_target_since": { + "protocol_id": 30 + }, + "minecraft:celebrate_location": { + "protocol_id": 70 + }, + "minecraft:charge_cooldown_ticks": { + "protocol_id": 56 + }, + "minecraft:dancing": { + "protocol_id": 71 + }, + "minecraft:danger_detected_recently": { + "protocol_id": 32 + }, + "minecraft:dig_cooldown": { + "protocol_id": 92 + }, + "minecraft:disable_walk_to_admire_item": { + "protocol_id": 67 + }, + "minecraft:disturbance_location": { + "protocol_id": 87 + }, + "minecraft:doors_to_close": { + "protocol_id": 21 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:gaze_cooldown_ticks": { + "protocol_id": 42 + }, + "minecraft:golem_detected_recently": { + "protocol_id": 31 + }, + "minecraft:has_hunting_cooldown": { + "protocol_id": 46 + }, + "minecraft:heard_bell_time": { + "protocol_id": 29 + }, + "minecraft:hiding_place": { + "protocol_id": 28 + }, + "minecraft:home": { + "protocol_id": 1 + }, + "minecraft:hunted_recently": { + "protocol_id": 69 + }, + "minecraft:hurt_by": { + "protocol_id": 23 + }, + "minecraft:hurt_by_entity": { + "protocol_id": 24 + }, + "minecraft:interaction_target": { + "protocol_id": 17 + }, + "minecraft:is_emerging": { + "protocol_id": 90 + }, + "minecraft:is_in_water": { + "protocol_id": 49 + }, + "minecraft:is_panicking": { + "protocol_id": 51 + }, + "minecraft:is_pregnant": { + "protocol_id": 50 + }, + "minecraft:is_sniffing": { + "protocol_id": 89 + }, + "minecraft:is_tempted": { + "protocol_id": 43 + }, + "minecraft:item_pickup_cooldown_ticks": { + "protocol_id": 103 + }, + "minecraft:job_site": { + "protocol_id": 2 + }, + "minecraft:last_slept": { + "protocol_id": 33 + }, + "minecraft:last_woken": { + "protocol_id": 34 + }, + "minecraft:last_worked_at_poi": { + "protocol_id": 35 + }, + "minecraft:liked_noteblock": { + "protocol_id": 101 + }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 102 + }, + "minecraft:liked_player": { + "protocol_id": 100 + }, + "minecraft:long_jump_cooling_down": { + "protocol_id": 44 + }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 45 + }, + "minecraft:look_target": { + "protocol_id": 14 + }, + "minecraft:meeting_point": { + "protocol_id": 4 + }, + "minecraft:mobs": { + "protocol_id": 6 + }, + "minecraft:nearby_adult_piglins": { + "protocol_id": 75 + }, + "minecraft:nearest_attackable": { + "protocol_id": 27 + }, + "minecraft:nearest_bed": { + "protocol_id": 22 + }, + "minecraft:nearest_hostile": { + "protocol_id": 26 + }, + "minecraft:nearest_player_holding_wanted_item": { + "protocol_id": 82 + }, + "minecraft:nearest_players": { + "protocol_id": 9 + }, + "minecraft:nearest_repellent": { + "protocol_id": 84 + }, + "minecraft:nearest_targetable_player_not_wearing_gold": { + "protocol_id": 74 + }, + "minecraft:nearest_visible_adult": { + "protocol_id": 36 + }, + "minecraft:nearest_visible_adult_hoglins": { + "protocol_id": 77 + }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 78 + }, + "minecraft:nearest_visible_adult_piglins": { + "protocol_id": 76 + }, + "minecraft:nearest_visible_baby_hoglin": { + "protocol_id": 73 + }, + "minecraft:nearest_visible_huntable_hoglin": { + "protocol_id": 72 + }, + "minecraft:nearest_visible_nemesis": { + "protocol_id": 38 + }, + "minecraft:nearest_visible_player": { + "protocol_id": 10 + }, + "minecraft:nearest_visible_targetable_player": { + "protocol_id": 11 + }, + "minecraft:nearest_visible_targetable_players": { + "protocol_id": 12 + }, + "minecraft:nearest_visible_wanted_item": { + "protocol_id": 37 + }, + "minecraft:nearest_visible_zombified": { + "protocol_id": 79 + }, + "minecraft:pacified": { + "protocol_id": 85 + }, + "minecraft:path": { + "protocol_id": 20 + }, + "minecraft:play_dead_ticks": { + "protocol_id": 39 + }, + "minecraft:potential_job_site": { + "protocol_id": 3 + }, + "minecraft:ram_cooldown_ticks": { + "protocol_id": 47 + }, + "minecraft:ram_target": { + "protocol_id": 48 + }, + "minecraft:recent_projectile": { + "protocol_id": 88 + }, + "minecraft:ride_target": { + "protocol_id": 19 + }, + "minecraft:roar_sound_cooldown": { + "protocol_id": 93 + }, + "minecraft:roar_sound_delay": { + "protocol_id": 91 + }, + "minecraft:roar_target": { + "protocol_id": 86 + }, + "minecraft:secondary_job_site": { + "protocol_id": 5 + }, + "minecraft:sniff_cooldown": { + "protocol_id": 94 + }, + "minecraft:sniffer_digging": { + "protocol_id": 106 + }, + "minecraft:sniffer_explored_positions": { + "protocol_id": 104 + }, + "minecraft:sniffer_happy": { + "protocol_id": 107 + }, + "minecraft:sniffer_sniffing_target": { + "protocol_id": 105 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 97 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 98 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 99 + }, + "minecraft:spear_charge_position": { + "protocol_id": 60 + }, + "minecraft:spear_engage_time": { + "protocol_id": 61 + }, + "minecraft:spear_fleeing_position": { + "protocol_id": 59 + }, + "minecraft:spear_fleeing_time": { + "protocol_id": 58 + }, + "minecraft:spear_status": { + "protocol_id": 62 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 41 + }, + "minecraft:tempting_player": { + "protocol_id": 40 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 66 + }, + "minecraft:touch_cooldown": { + "protocol_id": 95 + }, + "minecraft:transport_items_cooldown_ticks": { + "protocol_id": 55 + }, + "minecraft:universal_anger": { + "protocol_id": 64 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 52 + }, + "minecraft:unreachable_transport_block_positions": { + "protocol_id": 54 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 96 + }, + "minecraft:visible_adult_hoglin_count": { + "protocol_id": 81 + }, + "minecraft:visible_adult_piglin_count": { + "protocol_id": 80 + }, + "minecraft:visible_mobs": { + "protocol_id": 7 + }, + "minecraft:visible_villager_babies": { + "protocol_id": 8 + }, + "minecraft:visited_block_positions": { + "protocol_id": 53 + }, + "minecraft:walk_target": { + "protocol_id": 13 + } + }, + "protocol_id": 26 + }, + "minecraft:menu": { + "entries": { + "minecraft:anvil": { + "protocol_id": 8 + }, + "minecraft:beacon": { + "protocol_id": 9 + }, + "minecraft:blast_furnace": { + "protocol_id": 10 + }, + "minecraft:brewing_stand": { + "protocol_id": 11 + }, + "minecraft:cartography_table": { + "protocol_id": 23 + }, + "minecraft:crafter_3x3": { + "protocol_id": 7 + }, + "minecraft:crafting": { + "protocol_id": 12 + }, + "minecraft:enchantment": { + "protocol_id": 13 + }, + "minecraft:furnace": { + "protocol_id": 14 + }, + "minecraft:generic_3x3": { + "protocol_id": 6 + }, + "minecraft:generic_9x1": { + "protocol_id": 0 + }, + "minecraft:generic_9x2": { + "protocol_id": 1 + }, + "minecraft:generic_9x3": { + "protocol_id": 2 + }, + "minecraft:generic_9x4": { + "protocol_id": 3 + }, + "minecraft:generic_9x5": { + "protocol_id": 4 + }, + "minecraft:generic_9x6": { + "protocol_id": 5 + }, + "minecraft:grindstone": { + "protocol_id": 15 + }, + "minecraft:hopper": { + "protocol_id": 16 + }, + "minecraft:lectern": { + "protocol_id": 17 + }, + "minecraft:loom": { + "protocol_id": 18 + }, + "minecraft:merchant": { + "protocol_id": 19 + }, + "minecraft:shulker_box": { + "protocol_id": 20 + }, + "minecraft:smithing": { + "protocol_id": 21 + }, + "minecraft:smoker": { + "protocol_id": 22 + }, + "minecraft:stonecutter": { + "protocol_id": 24 + } + }, + "protocol_id": 16 + }, + "minecraft:mob_effect": { + "entries": { + "minecraft:absorption": { + "protocol_id": 21 + }, + "minecraft:bad_omen": { + "protocol_id": 30 + }, + "minecraft:blindness": { + "protocol_id": 14 + }, + "minecraft:breath_of_the_nautilus": { + "protocol_id": 39 + }, + "minecraft:conduit_power": { + "protocol_id": 28 + }, + "minecraft:darkness": { + "protocol_id": 32 + }, + "minecraft:dolphins_grace": { + "protocol_id": 29 + }, + "minecraft:fire_resistance": { + "protocol_id": 11 + }, + "minecraft:glowing": { + "protocol_id": 23 + }, + "minecraft:haste": { + "protocol_id": 2 + }, + "minecraft:health_boost": { + "protocol_id": 20 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 31 + }, + "minecraft:hunger": { + "protocol_id": 16 + }, + "minecraft:infested": { + "protocol_id": 38 + }, + "minecraft:instant_damage": { + "protocol_id": 6 + }, + "minecraft:instant_health": { + "protocol_id": 5 + }, + "minecraft:invisibility": { + "protocol_id": 13 + }, + "minecraft:jump_boost": { + "protocol_id": 7 + }, + "minecraft:levitation": { + "protocol_id": 24 + }, + "minecraft:luck": { + "protocol_id": 25 + }, + "minecraft:mining_fatigue": { + "protocol_id": 3 + }, + "minecraft:nausea": { + "protocol_id": 8 + }, + "minecraft:night_vision": { + "protocol_id": 15 + }, + "minecraft:oozing": { + "protocol_id": 37 + }, + "minecraft:poison": { + "protocol_id": 18 + }, + "minecraft:raid_omen": { + "protocol_id": 34 + }, + "minecraft:regeneration": { + "protocol_id": 9 + }, + "minecraft:resistance": { + "protocol_id": 10 + }, + "minecraft:saturation": { + "protocol_id": 22 + }, + "minecraft:slow_falling": { + "protocol_id": 27 + }, + "minecraft:slowness": { + "protocol_id": 1 + }, + "minecraft:speed": { + "protocol_id": 0 + }, + "minecraft:strength": { + "protocol_id": 4 + }, + "minecraft:trial_omen": { + "protocol_id": 33 + }, + "minecraft:unluck": { + "protocol_id": 26 + }, + "minecraft:water_breathing": { + "protocol_id": 12 + }, + "minecraft:weakness": { + "protocol_id": 17 + }, + "minecraft:weaving": { + "protocol_id": 36 + }, + "minecraft:wind_charged": { + "protocol_id": 35 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 3 + }, + "minecraft:number_format_type": { + "entries": { + "minecraft:blank": { + "protocol_id": 0 + }, + "minecraft:fixed": { + "protocol_id": 2 + }, + "minecraft:styled": { + "protocol_id": 1 + } + }, + "protocol_id": 63 + }, + "minecraft:outgoing_rpc_methods": { + "entries": { + "minecraft:notification/allowlist/added": { + "protocol_id": 9 + }, + "minecraft:notification/allowlist/removed": { + "protocol_id": 10 + }, + "minecraft:notification/bans/added": { + "protocol_id": 13 + }, + "minecraft:notification/bans/removed": { + "protocol_id": 14 + }, + "minecraft:notification/gamerules/updated": { + "protocol_id": 15 + }, + "minecraft:notification/ip_bans/added": { + "protocol_id": 11 + }, + "minecraft:notification/ip_bans/removed": { + "protocol_id": 12 + }, + "minecraft:notification/operators/added": { + "protocol_id": 7 + }, + "minecraft:notification/operators/removed": { + "protocol_id": 8 + }, + "minecraft:notification/players/joined": { + "protocol_id": 5 + }, + "minecraft:notification/players/left": { + "protocol_id": 6 + }, + "minecraft:notification/server/activity": { + "protocol_id": 4 + }, + "minecraft:notification/server/saved": { + "protocol_id": 3 + }, + "minecraft:notification/server/saving": { + "protocol_id": 2 + }, + "minecraft:notification/server/started": { + "protocol_id": 0 + }, + "minecraft:notification/server/status": { + "protocol_id": 16 + }, + "minecraft:notification/server/stopping": { + "protocol_id": 1 + } + }, + "protocol_id": 81 + }, + "minecraft:particle_type": { + "entries": { + "minecraft:angry_villager": { + "protocol_id": 0 + }, + "minecraft:ash": { + "protocol_id": 84 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:block_crumble": { + "protocol_id": 115 + }, + "minecraft:block_marker": { + "protocol_id": 2 + }, + "minecraft:bubble": { + "protocol_id": 3 + }, + "minecraft:bubble_column_up": { + "protocol_id": 74 + }, + "minecraft:bubble_pop": { + "protocol_id": 72 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 77 + }, + "minecraft:campfire_signal_smoke": { + "protocol_id": 78 + }, + "minecraft:cherry_leaves": { + "protocol_id": 34 + }, + "minecraft:cloud": { + "protocol_id": 4 + }, + "minecraft:composter": { + "protocol_id": 44 + }, + "minecraft:copper_fire_flame": { + "protocol_id": 5 + }, + "minecraft:crimson_spore": { + "protocol_id": 85 + }, + "minecraft:crit": { + "protocol_id": 6 + }, + "minecraft:current_down": { + "protocol_id": 73 + }, + "minecraft:damage_indicator": { + "protocol_id": 7 + }, + "minecraft:dolphin": { + "protocol_id": 76 + }, + "minecraft:dragon_breath": { + "protocol_id": 8 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 95 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 97 + }, + "minecraft:dripping_honey": { + "protocol_id": 79 + }, + "minecraft:dripping_lava": { + "protocol_id": 9 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 88 + }, + "minecraft:dripping_water": { + "protocol_id": 12 + }, + "minecraft:dust": { + "protocol_id": 14 + }, + "minecraft:dust_color_transition": { + "protocol_id": 15 + }, + "minecraft:dust_pillar": { + "protocol_id": 111 + }, + "minecraft:dust_plume": { + "protocol_id": 107 + }, + "minecraft:effect": { + "protocol_id": 16 + }, + "minecraft:egg_crack": { + "protocol_id": 106 + }, + "minecraft:elder_guardian": { + "protocol_id": 17 + }, + "minecraft:electric_spark": { + "protocol_id": 103 + }, + "minecraft:enchant": { + "protocol_id": 19 + }, + "minecraft:enchanted_hit": { + "protocol_id": 18 + }, + "minecraft:end_rod": { + "protocol_id": 20 + }, + "minecraft:entity_effect": { + "protocol_id": 21 + }, + "minecraft:explosion": { + "protocol_id": 23 + }, + "minecraft:explosion_emitter": { + "protocol_id": 22 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 96 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 98 + }, + "minecraft:falling_dust": { + "protocol_id": 29 + }, + "minecraft:falling_honey": { + "protocol_id": 80 + }, + "minecraft:falling_lava": { + "protocol_id": 10 + }, + "minecraft:falling_nectar": { + "protocol_id": 82 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 89 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 83 + }, + "minecraft:falling_water": { + "protocol_id": 13 + }, + "minecraft:firefly": { + "protocol_id": 116 + }, + "minecraft:firework": { + "protocol_id": 30 + }, + "minecraft:fishing": { + "protocol_id": 31 + }, + "minecraft:flame": { + "protocol_id": 32 + }, + "minecraft:flash": { + "protocol_id": 42 + }, + "minecraft:glow": { + "protocol_id": 100 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 99 + }, + "minecraft:gust": { + "protocol_id": 24 + }, + "minecraft:gust_emitter_large": { + "protocol_id": 26 + }, + "minecraft:gust_emitter_small": { + "protocol_id": 27 + }, + "minecraft:happy_villager": { + "protocol_id": 43 + }, + "minecraft:heart": { + "protocol_id": 45 + }, + "minecraft:infested": { + "protocol_id": 33 + }, + "minecraft:instant_effect": { + "protocol_id": 46 + }, + "minecraft:item": { + "protocol_id": 47 + }, + "minecraft:item_cobweb": { + "protocol_id": 53 + }, + "minecraft:item_slime": { + "protocol_id": 52 + }, + "minecraft:item_snowball": { + "protocol_id": 54 + }, + "minecraft:landing_honey": { + "protocol_id": 81 + }, + "minecraft:landing_lava": { + "protocol_id": 11 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 90 + }, + "minecraft:large_smoke": { + "protocol_id": 55 + }, + "minecraft:lava": { + "protocol_id": 56 + }, + "minecraft:mycelium": { + "protocol_id": 57 + }, + "minecraft:nautilus": { + "protocol_id": 75 + }, + "minecraft:note": { + "protocol_id": 58 + }, + "minecraft:ominous_spawning": { + "protocol_id": 112 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 35 + }, + "minecraft:pause_mob_growth": { + "protocol_id": 50 + }, + "minecraft:poof": { + "protocol_id": 59 + }, + "minecraft:portal": { + "protocol_id": 60 + }, + "minecraft:raid_omen": { + "protocol_id": 113 + }, + "minecraft:rain": { + "protocol_id": 61 + }, + "minecraft:reset_mob_growth": { + "protocol_id": 51 + }, + "minecraft:reverse_portal": { + "protocol_id": 91 + }, + "minecraft:scrape": { + "protocol_id": 104 + }, + "minecraft:sculk_charge": { + "protocol_id": 38 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 39 + }, + "minecraft:sculk_soul": { + "protocol_id": 37 + }, + "minecraft:shriek": { + "protocol_id": 105 + }, + "minecraft:small_flame": { + "protocol_id": 93 + }, + "minecraft:small_gust": { + "protocol_id": 25 + }, + "minecraft:smoke": { + "protocol_id": 62 + }, + "minecraft:sneeze": { + "protocol_id": 64 + }, + "minecraft:snowflake": { + "protocol_id": 94 + }, + "minecraft:sonic_boom": { + "protocol_id": 28 + }, + "minecraft:soul": { + "protocol_id": 41 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 40 + }, + "minecraft:spit": { + "protocol_id": 65 + }, + "minecraft:splash": { + "protocol_id": 70 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 87 + }, + "minecraft:squid_ink": { + "protocol_id": 66 + }, + "minecraft:sweep_attack": { + "protocol_id": 67 + }, + "minecraft:tinted_leaves": { + "protocol_id": 36 + }, + "minecraft:totem_of_undying": { + "protocol_id": 68 + }, + "minecraft:trail": { + "protocol_id": 49 + }, + "minecraft:trial_omen": { + "protocol_id": 114 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 108 + }, + "minecraft:trial_spawner_detection_ominous": { + "protocol_id": 109 + }, + "minecraft:underwater": { + "protocol_id": 69 + }, + "minecraft:vault_connection": { + "protocol_id": 110 + }, + "minecraft:vibration": { + "protocol_id": 48 + }, + "minecraft:warped_spore": { + "protocol_id": 86 + }, + "minecraft:wax_off": { + "protocol_id": 102 + }, + "minecraft:wax_on": { + "protocol_id": 101 + }, + "minecraft:white_ash": { + "protocol_id": 92 + }, + "minecraft:white_smoke": { + "protocol_id": 63 + }, + "minecraft:witch": { + "protocol_id": 71 + } + }, + "protocol_id": 9 + }, + "minecraft:permission_check_type": { + "entries": { + "minecraft:always_pass": { + "protocol_id": 0 + }, + "minecraft:require": { + "protocol_id": 1 + } + }, + "protocol_id": 90 + }, + "minecraft:permission_type": { + "entries": { + "minecraft:atom": { + "protocol_id": 0 + }, + "minecraft:command_level": { + "protocol_id": 1 + } + }, + "protocol_id": 89 + }, + "minecraft:point_of_interest_type": { + "entries": { + "minecraft:armorer": { + "protocol_id": 0 + }, + "minecraft:bee_nest": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 15 + }, + "minecraft:butcher": { + "protocol_id": 1 + }, + "minecraft:cartographer": { + "protocol_id": 2 + }, + "minecraft:cleric": { + "protocol_id": 3 + }, + "minecraft:farmer": { + "protocol_id": 4 + }, + "minecraft:fisherman": { + "protocol_id": 5 + }, + "minecraft:fletcher": { + "protocol_id": 6 + }, + "minecraft:home": { + "protocol_id": 13 + }, + "minecraft:leatherworker": { + "protocol_id": 7 + }, + "minecraft:librarian": { + "protocol_id": 8 + }, + "minecraft:lightning_rod": { + "protocol_id": 20 + }, + "minecraft:lodestone": { + "protocol_id": 18 + }, + "minecraft:mason": { + "protocol_id": 9 + }, + "minecraft:meeting": { + "protocol_id": 14 + }, + "minecraft:nether_portal": { + "protocol_id": 17 + }, + "minecraft:shepherd": { + "protocol_id": 10 + }, + "minecraft:test_instance": { + "protocol_id": 19 + }, + "minecraft:toolsmith": { + "protocol_id": 11 + }, + "minecraft:weaponsmith": { + "protocol_id": 12 + } + }, + "protocol_id": 25 + }, + "minecraft:pos_rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:axis_aligned_linear_pos": { + "protocol_id": 2 + }, + "minecraft:linear_pos": { + "protocol_id": 1 + } + }, + "protocol_id": 15 + }, + "minecraft:position_source_type": { + "entries": { + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:entity": { + "protocol_id": 1 + } + }, + "protocol_id": 20 + }, + "minecraft:potion": { + "entries": { + "minecraft:awkward": { + "protocol_id": 3 + }, + "minecraft:fire_resistance": { + "protocol_id": 11 + }, + "minecraft:harming": { + "protocol_id": 26 + }, + "minecraft:healing": { + "protocol_id": 24 + }, + "minecraft:infested": { + "protocol_id": 45 + }, + "minecraft:invisibility": { + "protocol_id": 6 + }, + "minecraft:leaping": { + "protocol_id": 8 + }, + "minecraft:long_fire_resistance": { + "protocol_id": 12 + }, + "minecraft:long_invisibility": { + "protocol_id": 7 + }, + "minecraft:long_leaping": { + "protocol_id": 9 + }, + "minecraft:long_night_vision": { + "protocol_id": 5 + }, + "minecraft:long_poison": { + "protocol_id": 29 + }, + "minecraft:long_regeneration": { + "protocol_id": 32 + }, + "minecraft:long_slow_falling": { + "protocol_id": 41 + }, + "minecraft:long_slowness": { + "protocol_id": 17 + }, + "minecraft:long_strength": { + "protocol_id": 35 + }, + "minecraft:long_swiftness": { + "protocol_id": 14 + }, + "minecraft:long_turtle_master": { + "protocol_id": 20 + }, + "minecraft:long_water_breathing": { + "protocol_id": 23 + }, + "minecraft:long_weakness": { + "protocol_id": 38 + }, + "minecraft:luck": { + "protocol_id": 39 + }, + "minecraft:mundane": { + "protocol_id": 1 + }, + "minecraft:night_vision": { + "protocol_id": 4 + }, + "minecraft:oozing": { + "protocol_id": 44 + }, + "minecraft:poison": { + "protocol_id": 28 + }, + "minecraft:regeneration": { + "protocol_id": 31 + }, + "minecraft:slow_falling": { + "protocol_id": 40 + }, + "minecraft:slowness": { + "protocol_id": 16 + }, + "minecraft:strength": { + "protocol_id": 34 + }, + "minecraft:strong_harming": { + "protocol_id": 27 + }, + "minecraft:strong_healing": { + "protocol_id": 25 + }, + "minecraft:strong_leaping": { + "protocol_id": 10 + }, + "minecraft:strong_poison": { + "protocol_id": 30 + }, + "minecraft:strong_regeneration": { + "protocol_id": 33 + }, + "minecraft:strong_slowness": { + "protocol_id": 18 + }, + "minecraft:strong_strength": { + "protocol_id": 36 + }, + "minecraft:strong_swiftness": { + "protocol_id": 15 + }, + "minecraft:strong_turtle_master": { + "protocol_id": 21 + }, + "minecraft:swiftness": { + "protocol_id": 13 + }, + "minecraft:thick": { + "protocol_id": 2 + }, + "minecraft:turtle_master": { + "protocol_id": 19 + }, + "minecraft:water": { + "protocol_id": 0 + }, + "minecraft:water_breathing": { + "protocol_id": 22 + }, + "minecraft:weakness": { + "protocol_id": 37 + }, + "minecraft:weaving": { + "protocol_id": 43 + }, + "minecraft:wind_charged": { + "protocol_id": 42 + } + }, + "protocol_id": 8 + }, + "minecraft:recipe_book_category": { + "entries": { + "minecraft:blast_furnace_blocks": { + "protocol_id": 7 + }, + "minecraft:blast_furnace_misc": { + "protocol_id": 8 + }, + "minecraft:campfire": { + "protocol_id": 12 + }, + "minecraft:crafting_building_blocks": { + "protocol_id": 0 + }, + "minecraft:crafting_equipment": { + "protocol_id": 2 + }, + "minecraft:crafting_misc": { + "protocol_id": 3 + }, + "minecraft:crafting_redstone": { + "protocol_id": 1 + }, + "minecraft:furnace_blocks": { + "protocol_id": 5 + }, + "minecraft:furnace_food": { + "protocol_id": 4 + }, + "minecraft:furnace_misc": { + "protocol_id": 6 + }, + "minecraft:smithing": { + "protocol_id": 11 + }, + "minecraft:smoker_food": { + "protocol_id": 9 + }, + "minecraft:stonecutter": { + "protocol_id": 10 + } + }, + "protocol_id": 78 + }, + "minecraft:recipe_display": { + "entries": { + "minecraft:crafting_shaped": { + "protocol_id": 1 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 0 + }, + "minecraft:furnace": { + "protocol_id": 2 + }, + "minecraft:smithing": { + "protocol_id": 4 + }, + "minecraft:stonecutter": { + "protocol_id": 3 + } + }, + "protocol_id": 76 + }, + "minecraft:recipe_serializer": { + "entries": { + "minecraft:blasting": { + "protocol_id": 15 + }, + "minecraft:campfire_cooking": { + "protocol_id": 17 + }, + "minecraft:crafting_decorated_pot": { + "protocol_id": 5 + }, + "minecraft:crafting_dye": { + "protocol_id": 2 + }, + "minecraft:crafting_imbue": { + "protocol_id": 3 + }, + "minecraft:crafting_shaped": { + "protocol_id": 0 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 1 + }, + "minecraft:crafting_special_bannerduplicate": { + "protocol_id": 11 + }, + "minecraft:crafting_special_bookcloning": { + "protocol_id": 6 + }, + "minecraft:crafting_special_firework_rocket": { + "protocol_id": 8 + }, + "minecraft:crafting_special_firework_star": { + "protocol_id": 9 + }, + "minecraft:crafting_special_firework_star_fade": { + "protocol_id": 10 + }, + "minecraft:crafting_special_mapextending": { + "protocol_id": 7 + }, + "minecraft:crafting_special_repairitem": { + "protocol_id": 13 + }, + "minecraft:crafting_special_shielddecoration": { + "protocol_id": 12 + }, + "minecraft:crafting_transmute": { + "protocol_id": 4 + }, + "minecraft:smelting": { + "protocol_id": 14 + }, + "minecraft:smithing_transform": { + "protocol_id": 19 + }, + "minecraft:smithing_trim": { + "protocol_id": 20 + }, + "minecraft:smoking": { + "protocol_id": 16 + }, + "minecraft:stonecutting": { + "protocol_id": 18 + } + }, + "protocol_id": 18 + }, + "minecraft:recipe_type": { + "entries": { + "minecraft:blasting": { + "protocol_id": 2 + }, + "minecraft:campfire_cooking": { + "protocol_id": 4 + }, + "minecraft:crafting": { + "protocol_id": 0 + }, + "minecraft:smelting": { + "protocol_id": 1 + }, + "minecraft:smithing": { + "protocol_id": 6 + }, + "minecraft:smoking": { + "protocol_id": 3 + }, + "minecraft:stonecutting": { + "protocol_id": 5 + } + }, + "protocol_id": 17 + }, + "minecraft:rule_block_entity_modifier": { + "entries": { + "minecraft:append_loot": { + "protocol_id": 3 + }, + "minecraft:append_static": { + "protocol_id": 2 + }, + "minecraft:clear": { + "protocol_id": 0 + }, + "minecraft:passthrough": { + "protocol_id": 1 + } + }, + "protocol_id": 14 + }, + "minecraft:rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:block_match": { + "protocol_id": 1 + }, + "minecraft:blockstate_match": { + "protocol_id": 2 + }, + "minecraft:random_block_match": { + "protocol_id": 4 + }, + "minecraft:random_blockstate_match": { + "protocol_id": 5 + }, + "minecraft:tag_match": { + "protocol_id": 3 + } + }, + "protocol_id": 13 + }, + "minecraft:sensor_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:armadillo_scare_detected": { + "protocol_id": 10 + }, + "minecraft:axolotl_attackables": { + "protocol_id": 16 + }, + "minecraft:breeze_attack_entity_sensor": { + "protocol_id": 23 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:food_temptations": { + "protocol_id": 17 + }, + "minecraft:frog_attackables": { + "protocol_id": 20 + }, + "minecraft:frog_temptations": { + "protocol_id": 18 + }, + "minecraft:golem_detected": { + "protocol_id": 9 + }, + "minecraft:hoglin_specific_sensor": { + "protocol_id": 13 + }, + "minecraft:hurt_by": { + "protocol_id": 5 + }, + "minecraft:is_in_water": { + "protocol_id": 21 + }, + "minecraft:nautilus_temptations": { + "protocol_id": 19 + }, + "minecraft:nearest_adult": { + "protocol_id": 14 + }, + "minecraft:nearest_adult_any_type": { + "protocol_id": 15 + }, + "minecraft:nearest_bed": { + "protocol_id": 4 + }, + "minecraft:nearest_items": { + "protocol_id": 1 + }, + "minecraft:nearest_living_entities": { + "protocol_id": 2 + }, + "minecraft:nearest_players": { + "protocol_id": 3 + }, + "minecraft:piglin_brute_specific_sensor": { + "protocol_id": 12 + }, + "minecraft:piglin_specific_sensor": { + "protocol_id": 11 + }, + "minecraft:secondary_pois": { + "protocol_id": 8 + }, + "minecraft:villager_babies": { + "protocol_id": 7 + }, + "minecraft:villager_hostiles": { + "protocol_id": 6 + }, + "minecraft:warden_entity_sensor": { + "protocol_id": 22 + } + }, + "protocol_id": 27 + }, + "minecraft:slot_display": { + "entries": { + "minecraft:any_fuel": { + "protocol_id": 1 + }, + "minecraft:composite": { + "protocol_id": 10 + }, + "minecraft:dyed": { + "protocol_id": 7 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:item": { + "protocol_id": 4 + }, + "minecraft:item_stack": { + "protocol_id": 5 + }, + "minecraft:only_with_component": { + "protocol_id": 3 + }, + "minecraft:smithing_trim": { + "protocol_id": 8 + }, + "minecraft:tag": { + "protocol_id": 6 + }, + "minecraft:with_any_potion": { + "protocol_id": 2 + }, + "minecraft:with_remainder": { + "protocol_id": 9 + } + }, + "protocol_id": 77 + }, + "minecraft:slot_source_type": { + "entries": { + "minecraft:contents": { + "protocol_id": 4 + }, + "minecraft:empty": { + "protocol_id": 5 + }, + "minecraft:filtered": { + "protocol_id": 1 + }, + "minecraft:group": { + "protocol_id": 0 + }, + "minecraft:limit_slots": { + "protocol_id": 2 + }, + "minecraft:slot_range": { + "protocol_id": 3 + } + }, + "protocol_id": 93 + }, + "minecraft:sound_event": { + "entries": { + "minecraft:ambient.basalt_deltas.additions": { + "protocol_id": 8 + }, + "minecraft:ambient.basalt_deltas.loop": { + "protocol_id": 9 + }, + "minecraft:ambient.basalt_deltas.mood": { + "protocol_id": 10 + }, + "minecraft:ambient.cave": { + "protocol_id": 7 + }, + "minecraft:ambient.crimson_forest.additions": { + "protocol_id": 11 + }, + "minecraft:ambient.crimson_forest.loop": { + "protocol_id": 12 + }, + "minecraft:ambient.crimson_forest.mood": { + "protocol_id": 13 + }, + "minecraft:ambient.nether_wastes.additions": { + "protocol_id": 14 + }, + "minecraft:ambient.nether_wastes.loop": { + "protocol_id": 15 + }, + "minecraft:ambient.nether_wastes.mood": { + "protocol_id": 16 + }, + "minecraft:ambient.soul_sand_valley.additions": { + "protocol_id": 17 + }, + "minecraft:ambient.soul_sand_valley.loop": { + "protocol_id": 18 + }, + "minecraft:ambient.soul_sand_valley.mood": { + "protocol_id": 19 + }, + "minecraft:ambient.underwater.enter": { + "protocol_id": 23 + }, + "minecraft:ambient.underwater.exit": { + "protocol_id": 24 + }, + "minecraft:ambient.underwater.loop": { + "protocol_id": 25 + }, + "minecraft:ambient.underwater.loop.additions": { + "protocol_id": 26 + }, + "minecraft:ambient.underwater.loop.additions.rare": { + "protocol_id": 27 + }, + "minecraft:ambient.underwater.loop.additions.ultra_rare": { + "protocol_id": 28 + }, + "minecraft:ambient.warped_forest.additions": { + "protocol_id": 20 + }, + "minecraft:ambient.warped_forest.loop": { + "protocol_id": 21 + }, + "minecraft:ambient.warped_forest.mood": { + "protocol_id": 22 + }, + "minecraft:block.amethyst_block.break": { + "protocol_id": 29 + }, + "minecraft:block.amethyst_block.chime": { + "protocol_id": 30 + }, + "minecraft:block.amethyst_block.fall": { + "protocol_id": 31 + }, + "minecraft:block.amethyst_block.hit": { + "protocol_id": 32 + }, + "minecraft:block.amethyst_block.place": { + "protocol_id": 33 + }, + "minecraft:block.amethyst_block.resonate": { + "protocol_id": 34 + }, + "minecraft:block.amethyst_block.step": { + "protocol_id": 35 + }, + "minecraft:block.amethyst_cluster.break": { + "protocol_id": 36 + }, + "minecraft:block.amethyst_cluster.fall": { + "protocol_id": 37 + }, + "minecraft:block.amethyst_cluster.hit": { + "protocol_id": 38 + }, + "minecraft:block.amethyst_cluster.place": { + "protocol_id": 39 + }, + "minecraft:block.amethyst_cluster.step": { + "protocol_id": 40 + }, + "minecraft:block.ancient_debris.break": { + "protocol_id": 41 + }, + "minecraft:block.ancient_debris.fall": { + "protocol_id": 45 + }, + "minecraft:block.ancient_debris.hit": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 42 + }, + "minecraft:block.anvil.break": { + "protocol_id": 46 + }, + "minecraft:block.anvil.destroy": { + "protocol_id": 47 + }, + "minecraft:block.anvil.fall": { + "protocol_id": 48 + }, + "minecraft:block.anvil.hit": { + "protocol_id": 49 + }, + "minecraft:block.anvil.land": { + "protocol_id": 50 + }, + "minecraft:block.anvil.place": { + "protocol_id": 51 + }, + "minecraft:block.anvil.step": { + "protocol_id": 52 + }, + "minecraft:block.anvil.use": { + "protocol_id": 53 + }, + "minecraft:block.azalea.break": { + "protocol_id": 98 + }, + "minecraft:block.azalea.fall": { + "protocol_id": 99 + }, + "minecraft:block.azalea.hit": { + "protocol_id": 100 + }, + "minecraft:block.azalea.place": { + "protocol_id": 101 + }, + "minecraft:block.azalea.step": { + "protocol_id": 102 + }, + "minecraft:block.azalea_leaves.break": { + "protocol_id": 103 + }, + "minecraft:block.azalea_leaves.fall": { + "protocol_id": 104 + }, + "minecraft:block.azalea_leaves.hit": { + "protocol_id": 105 + }, + "minecraft:block.azalea_leaves.place": { + "protocol_id": 106 + }, + "minecraft:block.azalea_leaves.step": { + "protocol_id": 107 + }, + "minecraft:block.bamboo.break": { + "protocol_id": 117 + }, + "minecraft:block.bamboo.fall": { + "protocol_id": 118 + }, + "minecraft:block.bamboo.hit": { + "protocol_id": 119 + }, + "minecraft:block.bamboo.place": { + "protocol_id": 120 + }, + "minecraft:block.bamboo.step": { + "protocol_id": 121 + }, + "minecraft:block.bamboo_sapling.break": { + "protocol_id": 122 + }, + "minecraft:block.bamboo_sapling.hit": { + "protocol_id": 123 + }, + "minecraft:block.bamboo_sapling.place": { + "protocol_id": 124 + }, + "minecraft:block.bamboo_wood.break": { + "protocol_id": 125 + }, + "minecraft:block.bamboo_wood.fall": { + "protocol_id": 126 + }, + "minecraft:block.bamboo_wood.hit": { + "protocol_id": 127 + }, + "minecraft:block.bamboo_wood.place": { + "protocol_id": 128 + }, + "minecraft:block.bamboo_wood.step": { + "protocol_id": 129 + }, + "minecraft:block.bamboo_wood_button.click_off": { + "protocol_id": 134 + }, + "minecraft:block.bamboo_wood_button.click_on": { + "protocol_id": 135 + }, + "minecraft:block.bamboo_wood_door.close": { + "protocol_id": 130 + }, + "minecraft:block.bamboo_wood_door.open": { + "protocol_id": 131 + }, + "minecraft:block.bamboo_wood_fence_gate.close": { + "protocol_id": 138 + }, + "minecraft:block.bamboo_wood_fence_gate.open": { + "protocol_id": 139 + }, + "minecraft:block.bamboo_wood_hanging_sign.break": { + "protocol_id": 798 + }, + "minecraft:block.bamboo_wood_hanging_sign.fall": { + "protocol_id": 799 + }, + "minecraft:block.bamboo_wood_hanging_sign.hit": { + "protocol_id": 800 + }, + "minecraft:block.bamboo_wood_hanging_sign.place": { + "protocol_id": 801 + }, + "minecraft:block.bamboo_wood_hanging_sign.step": { + "protocol_id": 797 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_off": { + "protocol_id": 136 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_on": { + "protocol_id": 137 + }, + "minecraft:block.bamboo_wood_trapdoor.close": { + "protocol_id": 132 + }, + "minecraft:block.bamboo_wood_trapdoor.open": { + "protocol_id": 133 + }, + "minecraft:block.barrel.close": { + "protocol_id": 140 + }, + "minecraft:block.barrel.open": { + "protocol_id": 141 + }, + "minecraft:block.basalt.break": { + "protocol_id": 142 + }, + "minecraft:block.basalt.fall": { + "protocol_id": 146 + }, + "minecraft:block.basalt.hit": { + "protocol_id": 145 + }, + "minecraft:block.basalt.place": { + "protocol_id": 144 + }, + "minecraft:block.basalt.step": { + "protocol_id": 143 + }, + "minecraft:block.beacon.activate": { + "protocol_id": 152 + }, + "minecraft:block.beacon.ambient": { + "protocol_id": 153 + }, + "minecraft:block.beacon.deactivate": { + "protocol_id": 154 + }, + "minecraft:block.beacon.power_select": { + "protocol_id": 155 + }, + "minecraft:block.beehive.drip": { + "protocol_id": 162 + }, + "minecraft:block.beehive.enter": { + "protocol_id": 163 + }, + "minecraft:block.beehive.exit": { + "protocol_id": 164 + }, + "minecraft:block.beehive.shear": { + "protocol_id": 165 + }, + "minecraft:block.beehive.work": { + "protocol_id": 166 + }, + "minecraft:block.bell.resonate": { + "protocol_id": 168 + }, + "minecraft:block.bell.use": { + "protocol_id": 167 + }, + "minecraft:block.big_dripleaf.break": { + "protocol_id": 169 + }, + "minecraft:block.big_dripleaf.fall": { + "protocol_id": 170 + }, + "minecraft:block.big_dripleaf.hit": { + "protocol_id": 171 + }, + "minecraft:block.big_dripleaf.place": { + "protocol_id": 172 + }, + "minecraft:block.big_dripleaf.step": { + "protocol_id": 173 + }, + "minecraft:block.big_dripleaf.tilt_down": { + "protocol_id": 558 + }, + "minecraft:block.big_dripleaf.tilt_up": { + "protocol_id": 559 + }, + "minecraft:block.blastfurnace.fire_crackle": { + "protocol_id": 194 + }, + "minecraft:block.bone_block.break": { + "protocol_id": 186 + }, + "minecraft:block.bone_block.fall": { + "protocol_id": 187 + }, + "minecraft:block.bone_block.hit": { + "protocol_id": 188 + }, + "minecraft:block.bone_block.place": { + "protocol_id": 189 + }, + "minecraft:block.bone_block.step": { + "protocol_id": 190 + }, + "minecraft:block.brewing_stand.brew": { + "protocol_id": 211 + }, + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 217 + }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 218 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 219 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 220 + }, + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 221 + }, + "minecraft:block.cactus_flower.break": { + "protocol_id": 239 + }, + "minecraft:block.cactus_flower.place": { + "protocol_id": 240 + }, + "minecraft:block.cake.add_candle": { + "protocol_id": 241 + }, + "minecraft:block.calcite.break": { + "protocol_id": 242 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 246 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 245 + }, + "minecraft:block.calcite.place": { + "protocol_id": 244 + }, + "minecraft:block.calcite.step": { + "protocol_id": 243 + }, + "minecraft:block.campfire.crackle": { + "protocol_id": 269 + }, + "minecraft:block.candle.ambient": { + "protocol_id": 270 + }, + "minecraft:block.candle.break": { + "protocol_id": 271 + }, + "minecraft:block.candle.extinguish": { + "protocol_id": 272 + }, + "minecraft:block.candle.fall": { + "protocol_id": 273 + }, + "minecraft:block.candle.hit": { + "protocol_id": 274 + }, + "minecraft:block.candle.place": { + "protocol_id": 275 + }, + "minecraft:block.candle.step": { + "protocol_id": 276 + }, + "minecraft:block.cave_vines.break": { + "protocol_id": 304 + }, + "minecraft:block.cave_vines.fall": { + "protocol_id": 305 + }, + "minecraft:block.cave_vines.hit": { + "protocol_id": 306 + }, + "minecraft:block.cave_vines.pick_berries": { + "protocol_id": 309 + }, + "minecraft:block.cave_vines.place": { + "protocol_id": 307 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 308 + }, + "minecraft:block.chain.break": { + "protocol_id": 310 + }, + "minecraft:block.chain.fall": { + "protocol_id": 311 + }, + "minecraft:block.chain.hit": { + "protocol_id": 312 + }, + "minecraft:block.chain.place": { + "protocol_id": 313 + }, + "minecraft:block.chain.step": { + "protocol_id": 314 + }, + "minecraft:block.cherry_leaves.break": { + "protocol_id": 325 + }, + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 326 + }, + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 327 + }, + "minecraft:block.cherry_leaves.place": { + "protocol_id": 328 + }, + "minecraft:block.cherry_leaves.step": { + "protocol_id": 329 + }, + "minecraft:block.cherry_sapling.break": { + "protocol_id": 320 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 321 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 322 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 323 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 324 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 315 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 316 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 317 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 318 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 319 + }, + "minecraft:block.cherry_wood_button.click_off": { + "protocol_id": 339 + }, + "minecraft:block.cherry_wood_button.click_on": { + "protocol_id": 340 + }, + "minecraft:block.cherry_wood_door.close": { + "protocol_id": 335 + }, + "minecraft:block.cherry_wood_door.open": { + "protocol_id": 336 + }, + "minecraft:block.cherry_wood_fence_gate.close": { + "protocol_id": 343 + }, + "minecraft:block.cherry_wood_fence_gate.open": { + "protocol_id": 344 + }, + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 331 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 332 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 333 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 334 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 330 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 341 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 342 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 337 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 338 + }, + "minecraft:block.chest.close": { + "protocol_id": 345 + }, + "minecraft:block.chest.locked": { + "protocol_id": 346 + }, + "minecraft:block.chest.open": { + "protocol_id": 347 + }, + "minecraft:block.chiseled_bookshelf.break": { + "protocol_id": 360 + }, + "minecraft:block.chiseled_bookshelf.fall": { + "protocol_id": 361 + }, + "minecraft:block.chiseled_bookshelf.hit": { + "protocol_id": 362 + }, + "minecraft:block.chiseled_bookshelf.insert": { + "protocol_id": 363 + }, + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 364 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 366 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { + "protocol_id": 367 + }, + "minecraft:block.chiseled_bookshelf.place": { + "protocol_id": 368 + }, + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 365 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 369 + }, + "minecraft:block.chorus_flower.grow": { + "protocol_id": 370 + }, + "minecraft:block.cobweb.break": { + "protocol_id": 372 + }, + "minecraft:block.cobweb.fall": { + "protocol_id": 376 + }, + "minecraft:block.cobweb.hit": { + "protocol_id": 375 + }, + "minecraft:block.cobweb.place": { + "protocol_id": 374 + }, + "minecraft:block.cobweb.step": { + "protocol_id": 373 + }, + "minecraft:block.comparator.click": { + "protocol_id": 381 + }, + "minecraft:block.composter.empty": { + "protocol_id": 382 + }, + "minecraft:block.composter.fill": { + "protocol_id": 383 + }, + "minecraft:block.composter.fill_success": { + "protocol_id": 384 + }, + "minecraft:block.composter.ready": { + "protocol_id": 385 + }, + "minecraft:block.conduit.activate": { + "protocol_id": 386 + }, + "minecraft:block.conduit.ambient": { + "protocol_id": 387 + }, + "minecraft:block.conduit.ambient.short": { + "protocol_id": 388 + }, + "minecraft:block.conduit.attack.target": { + "protocol_id": 389 + }, + "minecraft:block.conduit.deactivate": { + "protocol_id": 390 + }, + "minecraft:block.copper.break": { + "protocol_id": 398 + }, + "minecraft:block.copper.fall": { + "protocol_id": 402 + }, + "minecraft:block.copper.hit": { + "protocol_id": 401 + }, + "minecraft:block.copper.place": { + "protocol_id": 400 + }, + "minecraft:block.copper.step": { + "protocol_id": 399 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 391 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 395 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 394 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 393 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 392 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 397 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 396 + }, + "minecraft:block.copper_chest.close": { + "protocol_id": 403 + }, + "minecraft:block.copper_chest.open": { + "protocol_id": 404 + }, + "minecraft:block.copper_chest_oxidized.close": { + "protocol_id": 407 + }, + "minecraft:block.copper_chest_oxidized.open": { + "protocol_id": 408 + }, + "minecraft:block.copper_chest_weathered.close": { + "protocol_id": 405 + }, + "minecraft:block.copper_chest_weathered.open": { + "protocol_id": 406 + }, + "minecraft:block.copper_door.close": { + "protocol_id": 409 + }, + "minecraft:block.copper_door.open": { + "protocol_id": 410 + }, + "minecraft:block.copper_golem_statue.break": { + "protocol_id": 428 + }, + "minecraft:block.copper_golem_statue.fall": { + "protocol_id": 432 + }, + "minecraft:block.copper_golem_statue.hit": { + "protocol_id": 430 + }, + "minecraft:block.copper_golem_statue.place": { + "protocol_id": 429 + }, + "minecraft:block.copper_golem_statue.step": { + "protocol_id": 431 + }, + "minecraft:block.copper_grate.break": { + "protocol_id": 435 + }, + "minecraft:block.copper_grate.fall": { + "protocol_id": 439 + }, + "minecraft:block.copper_grate.hit": { + "protocol_id": 438 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 437 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 436 + }, + "minecraft:block.copper_trapdoor.close": { + "protocol_id": 440 + }, + "minecraft:block.copper_trapdoor.open": { + "protocol_id": 441 + }, + "minecraft:block.coral_block.break": { + "protocol_id": 442 + }, + "minecraft:block.coral_block.fall": { + "protocol_id": 443 + }, + "minecraft:block.coral_block.hit": { + "protocol_id": 444 + }, + "minecraft:block.coral_block.place": { + "protocol_id": 445 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 446 + }, + "minecraft:block.crafter.craft": { + "protocol_id": 456 + }, + "minecraft:block.crafter.fail": { + "protocol_id": 457 + }, + "minecraft:block.creaking_heart.break": { + "protocol_id": 469 + }, + "minecraft:block.creaking_heart.fall": { + "protocol_id": 470 + }, + "minecraft:block.creaking_heart.hit": { + "protocol_id": 471 + }, + "minecraft:block.creaking_heart.hurt": { + "protocol_id": 472 + }, + "minecraft:block.creaking_heart.idle": { + "protocol_id": 475 + }, + "minecraft:block.creaking_heart.place": { + "protocol_id": 473 + }, + "minecraft:block.creaking_heart.spawn": { + "protocol_id": 476 + }, + "minecraft:block.creaking_heart.step": { + "protocol_id": 474 + }, + "minecraft:block.crop.break": { + "protocol_id": 480 + }, + "minecraft:block.deadbush.idle": { + "protocol_id": 490 + }, + "minecraft:block.decorated_pot.break": { + "protocol_id": 491 + }, + "minecraft:block.decorated_pot.fall": { + "protocol_id": 492 + }, + "minecraft:block.decorated_pot.hit": { + "protocol_id": 493 + }, + "minecraft:block.decorated_pot.insert": { + "protocol_id": 494 + }, + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 495 + }, + "minecraft:block.decorated_pot.place": { + "protocol_id": 497 + }, + "minecraft:block.decorated_pot.shatter": { + "protocol_id": 498 + }, + "minecraft:block.decorated_pot.step": { + "protocol_id": 496 + }, + "minecraft:block.deepslate.break": { + "protocol_id": 504 + }, + "minecraft:block.deepslate.fall": { + "protocol_id": 505 + }, + "minecraft:block.deepslate.hit": { + "protocol_id": 506 + }, + "minecraft:block.deepslate.place": { + "protocol_id": 507 + }, + "minecraft:block.deepslate.step": { + "protocol_id": 508 + }, + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 499 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 500 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 501 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 502 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 503 + }, + "minecraft:block.deepslate_tiles.break": { + "protocol_id": 509 + }, + "minecraft:block.deepslate_tiles.fall": { + "protocol_id": 510 + }, + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 511 + }, + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 512 + }, + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 513 + }, + "minecraft:block.dispenser.dispense": { + "protocol_id": 514 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 515 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 516 + }, + "minecraft:block.dried_ghast.ambient": { + "protocol_id": 537 + }, + "minecraft:block.dried_ghast.ambient_water": { + "protocol_id": 538 + }, + "minecraft:block.dried_ghast.break": { + "protocol_id": 534 + }, + "minecraft:block.dried_ghast.fall": { + "protocol_id": 536 + }, + "minecraft:block.dried_ghast.place": { + "protocol_id": 539 + }, + "minecraft:block.dried_ghast.place_in_water": { + "protocol_id": 540 + }, + "minecraft:block.dried_ghast.step": { + "protocol_id": 535 + }, + "minecraft:block.dried_ghast.transition": { + "protocol_id": 541 + }, + "minecraft:block.dripstone_block.break": { + "protocol_id": 542 + }, + "minecraft:block.dripstone_block.fall": { + "protocol_id": 546 + }, + "minecraft:block.dripstone_block.hit": { + "protocol_id": 545 + }, + "minecraft:block.dripstone_block.place": { + "protocol_id": 544 + }, + "minecraft:block.dripstone_block.step": { + "protocol_id": 543 + }, + "minecraft:block.dry_grass.ambient": { + "protocol_id": 547 + }, + "minecraft:block.enchantment_table.use": { + "protocol_id": 580 + }, + "minecraft:block.end_gateway.spawn": { + "protocol_id": 603 + }, + "minecraft:block.end_portal.spawn": { + "protocol_id": 605 + }, + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 604 + }, + "minecraft:block.ender_chest.close": { + "protocol_id": 581 + }, + "minecraft:block.ender_chest.open": { + "protocol_id": 582 + }, + "minecraft:block.eyeblossom.close": { + "protocol_id": 620 + }, + "minecraft:block.eyeblossom.close_long": { + "protocol_id": 619 + }, + "minecraft:block.eyeblossom.idle": { + "protocol_id": 621 + }, + "minecraft:block.eyeblossom.open": { + "protocol_id": 618 + }, + "minecraft:block.eyeblossom.open_long": { + "protocol_id": 617 + }, + "minecraft:block.fence_gate.close": { + "protocol_id": 622 + }, + "minecraft:block.fence_gate.open": { + "protocol_id": 623 + }, + "minecraft:block.fire.ambient": { + "protocol_id": 634 + }, + "minecraft:block.fire.extinguish": { + "protocol_id": 635 + }, + "minecraft:block.firefly_bush.idle": { + "protocol_id": 625 + }, + "minecraft:block.flowering_azalea.break": { + "protocol_id": 641 + }, + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 642 + }, + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 643 + }, + "minecraft:block.flowering_azalea.place": { + "protocol_id": 644 + }, + "minecraft:block.flowering_azalea.step": { + "protocol_id": 645 + }, + "minecraft:block.froglight.break": { + "protocol_id": 667 + }, + "minecraft:block.froglight.fall": { + "protocol_id": 668 + }, + "minecraft:block.froglight.hit": { + "protocol_id": 669 + }, + "minecraft:block.froglight.place": { + "protocol_id": 670 + }, + "minecraft:block.froglight.step": { + "protocol_id": 671 + }, + "minecraft:block.frogspawn.break": { + "protocol_id": 673 + }, + "minecraft:block.frogspawn.fall": { + "protocol_id": 674 + }, + "minecraft:block.frogspawn.hatch": { + "protocol_id": 675 + }, + "minecraft:block.frogspawn.hit": { + "protocol_id": 676 + }, + "minecraft:block.frogspawn.place": { + "protocol_id": 677 + }, + "minecraft:block.frogspawn.step": { + "protocol_id": 672 + }, + "minecraft:block.fungus.break": { + "protocol_id": 1132 + }, + "minecraft:block.fungus.fall": { + "protocol_id": 1136 + }, + "minecraft:block.fungus.hit": { + "protocol_id": 1135 + }, + "minecraft:block.fungus.place": { + "protocol_id": 1134 + }, + "minecraft:block.fungus.step": { + "protocol_id": 1133 + }, + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 691 + }, + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 713 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 714 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 715 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 716 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 717 + }, + "minecraft:block.glass.break": { + "protocol_id": 718 + }, + "minecraft:block.glass.fall": { + "protocol_id": 719 + }, + "minecraft:block.glass.hit": { + "protocol_id": 720 + }, + "minecraft:block.glass.place": { + "protocol_id": 721 + }, + "minecraft:block.glass.step": { + "protocol_id": 722 + }, + "minecraft:block.grass.break": { + "protocol_id": 753 + }, + "minecraft:block.grass.fall": { + "protocol_id": 754 + }, + "minecraft:block.grass.hit": { + "protocol_id": 755 + }, + "minecraft:block.grass.place": { + "protocol_id": 756 + }, + "minecraft:block.grass.step": { + "protocol_id": 757 + }, + "minecraft:block.gravel.break": { + "protocol_id": 758 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 759 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 760 + }, + "minecraft:block.gravel.place": { + "protocol_id": 761 + }, + "minecraft:block.gravel.step": { + "protocol_id": 762 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 763 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 764 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 773 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 774 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 775 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 776 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 777 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 779 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 780 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 781 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 782 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 778 + }, + "minecraft:block.hanging_sign.waxed_interact_fail": { + "protocol_id": 1745 + }, + "minecraft:block.heavy_core.break": { + "protocol_id": 787 + }, + "minecraft:block.heavy_core.fall": { + "protocol_id": 788 + }, + "minecraft:block.heavy_core.hit": { + "protocol_id": 789 + }, + "minecraft:block.heavy_core.place": { + "protocol_id": 790 + }, + "minecraft:block.heavy_core.step": { + "protocol_id": 791 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 831 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 832 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 833 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 834 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 835 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 836 + }, + "minecraft:block.iron.break": { + "protocol_id": 888 + }, + "minecraft:block.iron.fall": { + "protocol_id": 892 + }, + "minecraft:block.iron.hit": { + "protocol_id": 891 + }, + "minecraft:block.iron.place": { + "protocol_id": 890 + }, + "minecraft:block.iron.step": { + "protocol_id": 889 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 893 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 894 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 901 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 902 + }, + "minecraft:block.ladder.break": { + "protocol_id": 910 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 911 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 912 + }, + "minecraft:block.ladder.place": { + "protocol_id": 913 + }, + "minecraft:block.ladder.step": { + "protocol_id": 914 + }, + "minecraft:block.lantern.break": { + "protocol_id": 915 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 916 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 917 + }, + "minecraft:block.lantern.place": { + "protocol_id": 918 + }, + "minecraft:block.lantern.step": { + "protocol_id": 919 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 920 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 921 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 922 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 923 + }, + "minecraft:block.lava.pop": { + "protocol_id": 924 + }, + "minecraft:block.leaf_litter.break": { + "protocol_id": 925 + }, + "minecraft:block.leaf_litter.fall": { + "protocol_id": 929 + }, + "minecraft:block.leaf_litter.hit": { + "protocol_id": 928 + }, + "minecraft:block.leaf_litter.place": { + "protocol_id": 927 + }, + "minecraft:block.leaf_litter.step": { + "protocol_id": 926 + }, + "minecraft:block.lever.click": { + "protocol_id": 933 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1714 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 948 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 952 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 951 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 950 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 949 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 966 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 967 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 968 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 969 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 970 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 971 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 972 + }, + "minecraft:block.metal.break": { + "protocol_id": 973 + }, + "minecraft:block.metal.fall": { + "protocol_id": 974 + }, + "minecraft:block.metal.hit": { + "protocol_id": 975 + }, + "minecraft:block.metal.place": { + "protocol_id": 976 + }, + "minecraft:block.metal.step": { + "protocol_id": 979 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 977 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 978 + }, + "minecraft:block.moss.break": { + "protocol_id": 998 + }, + "minecraft:block.moss.fall": { + "protocol_id": 999 + }, + "minecraft:block.moss.hit": { + "protocol_id": 1000 + }, + "minecraft:block.moss.place": { + "protocol_id": 1001 + }, + "minecraft:block.moss.step": { + "protocol_id": 1002 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 988 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 989 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 990 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 991 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 992 + }, + "minecraft:block.mud.break": { + "protocol_id": 1003 + }, + "minecraft:block.mud.fall": { + "protocol_id": 1004 + }, + "minecraft:block.mud.hit": { + "protocol_id": 1005 + }, + "minecraft:block.mud.place": { + "protocol_id": 1006 + }, + "minecraft:block.mud.step": { + "protocol_id": 1007 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 1008 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 1009 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 1010 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 1011 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 1012 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 1013 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 1014 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 1015 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 1016 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 1017 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 1089 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 1093 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 1092 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 1091 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 1090 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1359 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1360 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1361 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1362 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1363 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1364 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1365 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1366 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1367 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1368 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 1127 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 1131 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 1130 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 1129 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 1128 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 1094 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 1096 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 1097 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 1098 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 1099 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 1100 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 1105 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 1106 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 1101 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 1102 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 1109 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 1110 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 793 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 794 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 795 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 796 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 792 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 1107 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 1108 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 1103 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 1104 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 1147 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 1151 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 1150 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 1149 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 1148 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 1152 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 1156 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 1155 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 1154 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 1153 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 1176 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 1157 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 1158 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 1159 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 1175 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 1160 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 1173 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 1174 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 1161 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 1162 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 1163 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 1164 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 1179 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 1180 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 1182 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 1178 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 1181 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 1177 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 1172 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 1165 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 1166 + }, + "minecraft:block.note_block.trumpet": { + "protocol_id": 1167 + }, + "minecraft:block.note_block.trumpet_exposed": { + "protocol_id": 1168 + }, + "minecraft:block.note_block.trumpet_oxidized": { + "protocol_id": 1169 + }, + "minecraft:block.note_block.trumpet_weathered": { + "protocol_id": 1170 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 1171 + }, + "minecraft:block.nylium.break": { + "protocol_id": 1122 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 1126 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 1125 + }, + "minecraft:block.nylium.place": { + "protocol_id": 1124 + }, + "minecraft:block.nylium.step": { + "protocol_id": 1123 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 1112 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 1113 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 1114 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 1115 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 1116 + }, + "minecraft:block.pale_hanging_moss.idle": { + "protocol_id": 1189 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 993 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 994 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 995 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 996 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 997 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1296 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1297 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 548 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 554 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 556 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 555 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 557 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 552 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 551 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 553 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 550 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 549 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1325 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1326 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1327 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1328 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1329 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1641 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1642 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1643 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1644 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1645 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1330 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1331 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1332 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1333 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1334 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1335 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1336 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1337 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1344 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1369 + }, + "minecraft:block.resin.break": { + "protocol_id": 1370 + }, + "minecraft:block.resin.fall": { + "protocol_id": 1371 + }, + "minecraft:block.resin.place": { + "protocol_id": 1372 + }, + "minecraft:block.resin.step": { + "protocol_id": 1373 + }, + "minecraft:block.resin_bricks.break": { + "protocol_id": 1374 + }, + "minecraft:block.resin_bricks.fall": { + "protocol_id": 1375 + }, + "minecraft:block.resin_bricks.hit": { + "protocol_id": 1376 + }, + "minecraft:block.resin_bricks.place": { + "protocol_id": 1377 + }, + "minecraft:block.resin_bricks.step": { + "protocol_id": 1378 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1379 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1380 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1381 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1382 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1383 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1384 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1385 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1386 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1387 + }, + "minecraft:block.roots.break": { + "protocol_id": 686 + }, + "minecraft:block.roots.fall": { + "protocol_id": 690 + }, + "minecraft:block.roots.hit": { + "protocol_id": 689 + }, + "minecraft:block.roots.place": { + "protocol_id": 688 + }, + "minecraft:block.roots.step": { + "protocol_id": 687 + }, + "minecraft:block.sand.break": { + "protocol_id": 1392 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1393 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1394 + }, + "minecraft:block.sand.idle": { + "protocol_id": 1397 + }, + "minecraft:block.sand.place": { + "protocol_id": 1395 + }, + "minecraft:block.sand.step": { + "protocol_id": 1396 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1398 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1399 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1400 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1401 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1402 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1405 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1404 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1406 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1407 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1408 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1403 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1409 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1410 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1411 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1412 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1413 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1414 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1415 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1418 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1416 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1417 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1419 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1420 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1421 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1422 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1423 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1424 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1425 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1426 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1427 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1428 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1429 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1430 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1431 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1432 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1433 + }, + "minecraft:block.shelf.activate": { + "protocol_id": 1440 + }, + "minecraft:block.shelf.break": { + "protocol_id": 1441 + }, + "minecraft:block.shelf.deactivate": { + "protocol_id": 1442 + }, + "minecraft:block.shelf.fall": { + "protocol_id": 1443 + }, + "minecraft:block.shelf.hit": { + "protocol_id": 1444 + }, + "minecraft:block.shelf.multi_swap": { + "protocol_id": 1445 + }, + "minecraft:block.shelf.place": { + "protocol_id": 1446 + }, + "minecraft:block.shelf.place_item": { + "protocol_id": 1447 + }, + "minecraft:block.shelf.single_swap": { + "protocol_id": 1448 + }, + "minecraft:block.shelf.step": { + "protocol_id": 1449 + }, + "minecraft:block.shelf.take_item": { + "protocol_id": 1450 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1453 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1457 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1456 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1455 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1454 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1460 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1461 + }, + "minecraft:block.sign.waxed_interact_fail": { + "protocol_id": 1746 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1494 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1495 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1496 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1497 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1498 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1499 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1500 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1501 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1502 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1503 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1504 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1505 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1546 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1547 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1561 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1562 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1560 + }, + "minecraft:block.snow.break": { + "protocol_id": 1564 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1565 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1571 + }, + "minecraft:block.snow.place": { + "protocol_id": 1572 + }, + "minecraft:block.snow.step": { + "protocol_id": 1573 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1506 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1510 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1509 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1508 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1507 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1511 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1515 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1514 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1513 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1512 + }, + "minecraft:block.spawner.break": { + "protocol_id": 1517 + }, + "minecraft:block.spawner.fall": { + "protocol_id": 1518 + }, + "minecraft:block.spawner.hit": { + "protocol_id": 1519 + }, + "minecraft:block.spawner.place": { + "protocol_id": 1520 + }, + "minecraft:block.spawner.step": { + "protocol_id": 1521 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1585 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1580 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1581 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1582 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1583 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1584 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1528 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1529 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1530 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1531 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1532 + }, + "minecraft:block.stem.break": { + "protocol_id": 1117 + }, + "minecraft:block.stem.fall": { + "protocol_id": 1121 + }, + "minecraft:block.stem.hit": { + "protocol_id": 1120 + }, + "minecraft:block.stem.place": { + "protocol_id": 1119 + }, + "minecraft:block.stem.step": { + "protocol_id": 1118 + }, + "minecraft:block.stone.break": { + "protocol_id": 1592 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1595 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1596 + }, + "minecraft:block.stone.place": { + "protocol_id": 1597 + }, + "minecraft:block.stone.step": { + "protocol_id": 1600 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1593 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1594 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1598 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1599 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 662 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 666 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 665 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 664 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 663 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 657 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 661 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 660 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 659 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 658 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1605 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1607 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1606 + }, + "minecraft:block.trial_spawner.about_to_spawn_item": { + "protocol_id": 808 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 813 + }, + "minecraft:block.trial_spawner.ambient_ominous": { + "protocol_id": 814 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 802 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 816 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 811 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 817 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 806 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 805 + }, + "minecraft:block.trial_spawner.ominous_activate": { + "protocol_id": 812 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 815 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 804 + }, + "minecraft:block.trial_spawner.spawn_item": { + "protocol_id": 809 + }, + "minecraft:block.trial_spawner.spawn_item_begin": { + "protocol_id": 810 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 807 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 803 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1623 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1624 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1625 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1626 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1631 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1635 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1634 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1633 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1632 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1636 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1637 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1638 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1639 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1640 + }, + "minecraft:block.vault.activate": { + "protocol_id": 1667 + }, + "minecraft:block.vault.ambient": { + "protocol_id": 1668 + }, + "minecraft:block.vault.break": { + "protocol_id": 1669 + }, + "minecraft:block.vault.close_shutter": { + "protocol_id": 1670 + }, + "minecraft:block.vault.deactivate": { + "protocol_id": 1671 + }, + "minecraft:block.vault.eject_item": { + "protocol_id": 1672 + }, + "minecraft:block.vault.fall": { + "protocol_id": 1674 + }, + "minecraft:block.vault.hit": { + "protocol_id": 1675 + }, + "minecraft:block.vault.insert_item": { + "protocol_id": 1676 + }, + "minecraft:block.vault.insert_item_fail": { + "protocol_id": 1677 + }, + "minecraft:block.vault.open_shutter": { + "protocol_id": 1678 + }, + "minecraft:block.vault.place": { + "protocol_id": 1679 + }, + "minecraft:block.vault.reject_rewarded_player": { + "protocol_id": 1673 + }, + "minecraft:block.vault.step": { + "protocol_id": 1680 + }, + "minecraft:block.vine.break": { + "protocol_id": 1709 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1710 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1711 + }, + "minecraft:block.vine.place": { + "protocol_id": 1712 + }, + "minecraft:block.vine.step": { + "protocol_id": 1713 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 1142 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 1146 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 1145 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 1144 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 1143 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1747 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 1137 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 1141 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 1140 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 1139 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 1138 + }, + "minecraft:block.wet_grass.break": { + "protocol_id": 1751 + }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1752 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1753 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1754 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1755 + }, + "minecraft:block.wet_sponge.break": { + "protocol_id": 1756 + }, + "minecraft:block.wet_sponge.dries": { + "protocol_id": 1757 + }, + "minecraft:block.wet_sponge.fall": { + "protocol_id": 1758 + }, + "minecraft:block.wet_sponge.hit": { + "protocol_id": 1759 + }, + "minecraft:block.wet_sponge.place": { + "protocol_id": 1760 + }, + "minecraft:block.wet_sponge.step": { + "protocol_id": 1761 + }, + "minecraft:block.wood.break": { + "protocol_id": 1843 + }, + "minecraft:block.wood.fall": { + "protocol_id": 1844 + }, + "minecraft:block.wood.hit": { + "protocol_id": 1845 + }, + "minecraft:block.wood.place": { + "protocol_id": 1846 + }, + "minecraft:block.wood.step": { + "protocol_id": 1847 + }, + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1839 + }, + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1840 + }, + "minecraft:block.wooden_door.close": { + "protocol_id": 1835 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1836 + }, + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1841 + }, + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1842 + }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1837 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1838 + }, + "minecraft:block.wool.break": { + "protocol_id": 1848 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1849 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1850 + }, + "minecraft:block.wool.place": { + "protocol_id": 1851 + }, + "minecraft:block.wool.step": { + "protocol_id": 1852 + }, + "minecraft:enchant.thorns.hit": { + "protocol_id": 1612 + }, + "minecraft:entity.allay.ambient_with_item": { + "protocol_id": 0 + }, + "minecraft:entity.allay.ambient_without_item": { + "protocol_id": 1 + }, + "minecraft:entity.allay.death": { + "protocol_id": 2 + }, + "minecraft:entity.allay.hurt": { + "protocol_id": 3 + }, + "minecraft:entity.allay.item_given": { + "protocol_id": 4 + }, + "minecraft:entity.allay.item_taken": { + "protocol_id": 5 + }, + "minecraft:entity.allay.item_thrown": { + "protocol_id": 6 + }, + "minecraft:entity.armadillo.ambient": { + "protocol_id": 57 + }, + "minecraft:entity.armadillo.brush": { + "protocol_id": 66 + }, + "minecraft:entity.armadillo.death": { + "protocol_id": 59 + }, + "minecraft:entity.armadillo.eat": { + "protocol_id": 54 + }, + "minecraft:entity.armadillo.hurt": { + "protocol_id": 55 + }, + "minecraft:entity.armadillo.hurt_reduced": { + "protocol_id": 56 + }, + "minecraft:entity.armadillo.land": { + "protocol_id": 61 + }, + "minecraft:entity.armadillo.peek": { + "protocol_id": 64 + }, + "minecraft:entity.armadillo.roll": { + "protocol_id": 60 + }, + "minecraft:entity.armadillo.scute_drop": { + "protocol_id": 62 + }, + "minecraft:entity.armadillo.step": { + "protocol_id": 58 + }, + "minecraft:entity.armadillo.unroll_finish": { + "protocol_id": 63 + }, + "minecraft:entity.armadillo.unroll_start": { + "protocol_id": 65 + }, + "minecraft:entity.armor_stand.break": { + "protocol_id": 81 + }, + "minecraft:entity.armor_stand.fall": { + "protocol_id": 82 + }, + "minecraft:entity.armor_stand.hit": { + "protocol_id": 83 + }, + "minecraft:entity.armor_stand.place": { + "protocol_id": 84 + }, + "minecraft:entity.arrow.hit": { + "protocol_id": 85 + }, + "minecraft:entity.arrow.hit_player": { + "protocol_id": 86 + }, + "minecraft:entity.arrow.shoot": { + "protocol_id": 87 + }, + "minecraft:entity.axolotl.attack": { + "protocol_id": 91 + }, + "minecraft:entity.axolotl.death": { + "protocol_id": 92 + }, + "minecraft:entity.axolotl.hurt": { + "protocol_id": 93 + }, + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 94 + }, + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 95 + }, + "minecraft:entity.axolotl.splash": { + "protocol_id": 96 + }, + "minecraft:entity.axolotl.swim": { + "protocol_id": 97 + }, + "minecraft:entity.baby_cat.ambient": { + "protocol_id": 277 + }, + "minecraft:entity.baby_cat.beg_for_food": { + "protocol_id": 282 + }, + "minecraft:entity.baby_cat.death": { + "protocol_id": 279 + }, + "minecraft:entity.baby_cat.eat": { + "protocol_id": 280 + }, + "minecraft:entity.baby_cat.hiss": { + "protocol_id": 281 + }, + "minecraft:entity.baby_cat.hurt": { + "protocol_id": 283 + }, + "minecraft:entity.baby_cat.purr": { + "protocol_id": 284 + }, + "minecraft:entity.baby_cat.purreow": { + "protocol_id": 285 + }, + "minecraft:entity.baby_cat.stray_ambient": { + "protocol_id": 278 + }, + "minecraft:entity.baby_chicken.ambient": { + "protocol_id": 348 + }, + "minecraft:entity.baby_chicken.death": { + "protocol_id": 349 + }, + "minecraft:entity.baby_chicken.hurt": { + "protocol_id": 351 + }, + "minecraft:entity.baby_chicken.step": { + "protocol_id": 353 + }, + "minecraft:entity.baby_horse.ambient": { + "protocol_id": 848 + }, + "minecraft:entity.baby_horse.angry": { + "protocol_id": 850 + }, + "minecraft:entity.baby_horse.breathe": { + "protocol_id": 854 + }, + "minecraft:entity.baby_horse.death": { + "protocol_id": 856 + }, + "minecraft:entity.baby_horse.eat": { + "protocol_id": 858 + }, + "minecraft:entity.baby_horse.hurt": { + "protocol_id": 861 + }, + "minecraft:entity.baby_horse.land": { + "protocol_id": 864 + }, + "minecraft:entity.baby_horse.step": { + "protocol_id": 867 + }, + "minecraft:entity.baby_nautilus.ambient": { + "protocol_id": 108 + }, + "minecraft:entity.baby_nautilus.ambient_land": { + "protocol_id": 109 + }, + "minecraft:entity.baby_nautilus.death": { + "protocol_id": 110 + }, + "minecraft:entity.baby_nautilus.death_land": { + "protocol_id": 111 + }, + "minecraft:entity.baby_nautilus.eat": { + "protocol_id": 112 + }, + "minecraft:entity.baby_nautilus.hurt": { + "protocol_id": 113 + }, + "minecraft:entity.baby_nautilus.hurt_land": { + "protocol_id": 114 + }, + "minecraft:entity.baby_nautilus.swim": { + "protocol_id": 116 + }, + "minecraft:entity.baby_pig.ambient": { + "protocol_id": 1260 + }, + "minecraft:entity.baby_pig.death": { + "protocol_id": 1263 + }, + "minecraft:entity.baby_pig.eat": { + "protocol_id": 1261 + }, + "minecraft:entity.baby_pig.hurt": { + "protocol_id": 1262 + }, + "minecraft:entity.baby_pig.step": { + "protocol_id": 1259 + }, + "minecraft:entity.baby_wolf.ambient": { + "protocol_id": 1781 + }, + "minecraft:entity.baby_wolf.death": { + "protocol_id": 1785 + }, + "minecraft:entity.baby_wolf.growl": { + "protocol_id": 1786 + }, + "minecraft:entity.baby_wolf.hurt": { + "protocol_id": 1787 + }, + "minecraft:entity.baby_wolf.pant": { + "protocol_id": 1788 + }, + "minecraft:entity.baby_wolf.step": { + "protocol_id": 1791 + }, + "minecraft:entity.baby_wolf.whine": { + "protocol_id": 1792 + }, + "minecraft:entity.bat.ambient": { + "protocol_id": 147 + }, + "minecraft:entity.bat.death": { + "protocol_id": 148 + }, + "minecraft:entity.bat.hurt": { + "protocol_id": 149 + }, + "minecraft:entity.bat.loop": { + "protocol_id": 150 + }, + "minecraft:entity.bat.takeoff": { + "protocol_id": 151 + }, + "minecraft:entity.bee.death": { + "protocol_id": 156 + }, + "minecraft:entity.bee.hurt": { + "protocol_id": 157 + }, + "minecraft:entity.bee.loop": { + "protocol_id": 159 + }, + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 158 + }, + "minecraft:entity.bee.pollinate": { + "protocol_id": 161 + }, + "minecraft:entity.bee.sting": { + "protocol_id": 160 + }, + "minecraft:entity.blaze.ambient": { + "protocol_id": 174 + }, + "minecraft:entity.blaze.burn": { + "protocol_id": 175 + }, + "minecraft:entity.blaze.death": { + "protocol_id": 176 + }, + "minecraft:entity.blaze.hurt": { + "protocol_id": 177 + }, + "minecraft:entity.blaze.shoot": { + "protocol_id": 178 + }, + "minecraft:entity.boat.paddle_land": { + "protocol_id": 179 + }, + "minecraft:entity.boat.paddle_water": { + "protocol_id": 180 + }, + "minecraft:entity.bogged.ambient": { + "protocol_id": 181 + }, + "minecraft:entity.bogged.death": { + "protocol_id": 182 + }, + "minecraft:entity.bogged.hurt": { + "protocol_id": 183 + }, + "minecraft:entity.bogged.shear": { + "protocol_id": 184 + }, + "minecraft:entity.bogged.step": { + "protocol_id": 185 + }, + "minecraft:entity.breeze.charge": { + "protocol_id": 198 + }, + "minecraft:entity.breeze.death": { + "protocol_id": 207 + }, + "minecraft:entity.breeze.deflect": { + "protocol_id": 199 + }, + "minecraft:entity.breeze.hurt": { + "protocol_id": 208 + }, + "minecraft:entity.breeze.idle_air": { + "protocol_id": 202 + }, + "minecraft:entity.breeze.idle_ground": { + "protocol_id": 201 + }, + "minecraft:entity.breeze.inhale": { + "protocol_id": 200 + }, + "minecraft:entity.breeze.jump": { + "protocol_id": 204 + }, + "minecraft:entity.breeze.land": { + "protocol_id": 205 + }, + "minecraft:entity.breeze.shoot": { + "protocol_id": 203 + }, + "minecraft:entity.breeze.slide": { + "protocol_id": 206 + }, + "minecraft:entity.breeze.whirl": { + "protocol_id": 209 + }, + "minecraft:entity.breeze.wind_burst": { + "protocol_id": 210 + }, + "minecraft:entity.camel.ambient": { + "protocol_id": 258 + }, + "minecraft:entity.camel.dash": { + "protocol_id": 259 + }, + "minecraft:entity.camel.dash_ready": { + "protocol_id": 260 + }, + "minecraft:entity.camel.death": { + "protocol_id": 261 + }, + "minecraft:entity.camel.eat": { + "protocol_id": 262 + }, + "minecraft:entity.camel.hurt": { + "protocol_id": 263 + }, + "minecraft:entity.camel.saddle": { + "protocol_id": 264 + }, + "minecraft:entity.camel.sit": { + "protocol_id": 265 + }, + "minecraft:entity.camel.stand": { + "protocol_id": 266 + }, + "minecraft:entity.camel.step": { + "protocol_id": 267 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 268 + }, + "minecraft:entity.camel_husk.ambient": { + "protocol_id": 247 + }, + "minecraft:entity.camel_husk.dash": { + "protocol_id": 248 + }, + "minecraft:entity.camel_husk.dash_ready": { + "protocol_id": 249 + }, + "minecraft:entity.camel_husk.death": { + "protocol_id": 250 + }, + "minecraft:entity.camel_husk.eat": { + "protocol_id": 251 + }, + "minecraft:entity.camel_husk.hurt": { + "protocol_id": 252 + }, + "minecraft:entity.camel_husk.saddle": { + "protocol_id": 253 + }, + "minecraft:entity.camel_husk.sit": { + "protocol_id": 254 + }, + "minecraft:entity.camel_husk.stand": { + "protocol_id": 255 + }, + "minecraft:entity.camel_husk.step": { + "protocol_id": 256 + }, + "minecraft:entity.camel_husk.step_sand": { + "protocol_id": 257 + }, + "minecraft:entity.cat.ambient": { + "protocol_id": 286 + }, + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 292 + }, + "minecraft:entity.cat.death": { + "protocol_id": 290 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 291 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 288 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 289 + }, + "minecraft:entity.cat.purr": { + "protocol_id": 293 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 294 + }, + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 287 + }, + "minecraft:entity.cat_royal.ambient": { + "protocol_id": 295 + }, + "minecraft:entity.cat_royal.beg_for_food": { + "protocol_id": 301 + }, + "minecraft:entity.cat_royal.death": { + "protocol_id": 299 + }, + "minecraft:entity.cat_royal.eat": { + "protocol_id": 300 + }, + "minecraft:entity.cat_royal.hiss": { + "protocol_id": 297 + }, + "minecraft:entity.cat_royal.hurt": { + "protocol_id": 298 + }, + "minecraft:entity.cat_royal.purr": { + "protocol_id": 302 + }, + "minecraft:entity.cat_royal.purreow": { + "protocol_id": 303 + }, + "minecraft:entity.cat_royal.stray_ambient": { + "protocol_id": 296 + }, + "minecraft:entity.chicken.ambient": { + "protocol_id": 354 + }, + "minecraft:entity.chicken.death": { + "protocol_id": 356 + }, + "minecraft:entity.chicken.egg": { + "protocol_id": 350 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 355 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 352 + }, + "minecraft:entity.chicken_picky.ambient": { + "protocol_id": 357 + }, + "minecraft:entity.chicken_picky.death": { + "protocol_id": 359 + }, + "minecraft:entity.chicken_picky.hurt": { + "protocol_id": 358 + }, + "minecraft:entity.cod.ambient": { + "protocol_id": 377 + }, + "minecraft:entity.cod.death": { + "protocol_id": 378 + }, + "minecraft:entity.cod.flop": { + "protocol_id": 379 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 380 + }, + "minecraft:entity.copper_golem.death": { + "protocol_id": 413 + }, + "minecraft:entity.copper_golem.hurt": { + "protocol_id": 412 + }, + "minecraft:entity.copper_golem.item_drop": { + "protocol_id": 425 + }, + "minecraft:entity.copper_golem.item_no_drop": { + "protocol_id": 426 + }, + "minecraft:entity.copper_golem.no_item_get": { + "protocol_id": 423 + }, + "minecraft:entity.copper_golem.no_item_no_get": { + "protocol_id": 424 + }, + "minecraft:entity.copper_golem.shear": { + "protocol_id": 434 + }, + "minecraft:entity.copper_golem.spawn": { + "protocol_id": 433 + }, + "minecraft:entity.copper_golem.spin": { + "protocol_id": 420 + }, + "minecraft:entity.copper_golem.step": { + "protocol_id": 411 + }, + "minecraft:entity.copper_golem_become_statue": { + "protocol_id": 427 + }, + "minecraft:entity.copper_golem_oxidized.death": { + "protocol_id": 419 + }, + "minecraft:entity.copper_golem_oxidized.hurt": { + "protocol_id": 418 + }, + "minecraft:entity.copper_golem_oxidized.spin": { + "protocol_id": 422 + }, + "minecraft:entity.copper_golem_oxidized.step": { + "protocol_id": 417 + }, + "minecraft:entity.copper_golem_weathered.death": { + "protocol_id": 416 + }, + "minecraft:entity.copper_golem_weathered.hurt": { + "protocol_id": 415 + }, + "minecraft:entity.copper_golem_weathered.spin": { + "protocol_id": 421 + }, + "minecraft:entity.copper_golem_weathered.step": { + "protocol_id": 414 + }, + "minecraft:entity.cow.ambient": { + "protocol_id": 448 + }, + "minecraft:entity.cow.death": { + "protocol_id": 450 + }, + "minecraft:entity.cow.hurt": { + "protocol_id": 449 + }, + "minecraft:entity.cow.milk": { + "protocol_id": 447 + }, + "minecraft:entity.cow.step": { + "protocol_id": 451 + }, + "minecraft:entity.cow_moody.ambient": { + "protocol_id": 452 + }, + "minecraft:entity.cow_moody.death": { + "protocol_id": 454 + }, + "minecraft:entity.cow_moody.hurt": { + "protocol_id": 453 + }, + "minecraft:entity.cow_moody.step": { + "protocol_id": 455 + }, + "minecraft:entity.creaking.activate": { + "protocol_id": 459 + }, + "minecraft:entity.creaking.ambient": { + "protocol_id": 458 + }, + "minecraft:entity.creaking.attack": { + "protocol_id": 461 + }, + "minecraft:entity.creaking.deactivate": { + "protocol_id": 460 + }, + "minecraft:entity.creaking.death": { + "protocol_id": 462 + }, + "minecraft:entity.creaking.freeze": { + "protocol_id": 464 + }, + "minecraft:entity.creaking.spawn": { + "protocol_id": 466 + }, + "minecraft:entity.creaking.step": { + "protocol_id": 463 + }, + "minecraft:entity.creaking.sway": { + "protocol_id": 467 + }, + "minecraft:entity.creaking.twitch": { + "protocol_id": 468 + }, + "minecraft:entity.creaking.unfreeze": { + "protocol_id": 465 + }, + "minecraft:entity.creeper.death": { + "protocol_id": 477 + }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 478 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 479 + }, + "minecraft:entity.dolphin.ambient": { + "protocol_id": 517 + }, + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 518 + }, + "minecraft:entity.dolphin.attack": { + "protocol_id": 519 + }, + "minecraft:entity.dolphin.death": { + "protocol_id": 520 + }, + "minecraft:entity.dolphin.eat": { + "protocol_id": 521 + }, + "minecraft:entity.dolphin.hurt": { + "protocol_id": 522 + }, + "minecraft:entity.dolphin.jump": { + "protocol_id": 523 + }, + "minecraft:entity.dolphin.play": { + "protocol_id": 524 + }, + "minecraft:entity.dolphin.splash": { + "protocol_id": 525 + }, + "minecraft:entity.dolphin.swim": { + "protocol_id": 526 + }, + "minecraft:entity.donkey.ambient": { + "protocol_id": 527 + }, + "minecraft:entity.donkey.angry": { + "protocol_id": 528 + }, + "minecraft:entity.donkey.chest": { + "protocol_id": 529 + }, + "minecraft:entity.donkey.death": { + "protocol_id": 530 + }, + "minecraft:entity.donkey.eat": { + "protocol_id": 531 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 532 + }, + "minecraft:entity.donkey.jump": { + "protocol_id": 533 + }, + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 585 + }, + "minecraft:entity.drowned.ambient": { + "protocol_id": 560 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 561 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 562 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 563 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 564 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 565 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 566 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 567 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 568 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 570 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 571 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 572 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 573 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 574 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 575 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 576 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 577 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 578 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 583 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 584 + }, + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 586 + }, + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 587 + }, + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 588 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 589 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 590 + }, + "minecraft:entity.ender_eye.launch": { + "protocol_id": 591 + }, + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 602 + }, + "minecraft:entity.enderman.ambient": { + "protocol_id": 592 + }, + "minecraft:entity.enderman.death": { + "protocol_id": 593 + }, + "minecraft:entity.enderman.hurt": { + "protocol_id": 594 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 595 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 596 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 597 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 598 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 599 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 600 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 601 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 606 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 607 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 608 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 609 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 611 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 612 + }, + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 613 + }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 614 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 610 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 615 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 616 + }, + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 626 + }, + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 627 + }, + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 628 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 629 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 630 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 631 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 632 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 633 + }, + "minecraft:entity.fish.swim": { + "protocol_id": 636 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 637 + }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 638 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 639 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 646 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 647 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 648 + }, + "minecraft:entity.fox.death": { + "protocol_id": 649 + }, + "minecraft:entity.fox.eat": { + "protocol_id": 650 + }, + "minecraft:entity.fox.hurt": { + "protocol_id": 651 + }, + "minecraft:entity.fox.screech": { + "protocol_id": 652 + }, + "minecraft:entity.fox.sleep": { + "protocol_id": 653 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 654 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 655 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 656 + }, + "minecraft:entity.frog.ambient": { + "protocol_id": 678 + }, + "minecraft:entity.frog.death": { + "protocol_id": 679 + }, + "minecraft:entity.frog.eat": { + "protocol_id": 680 + }, + "minecraft:entity.frog.hurt": { + "protocol_id": 681 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 682 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 683 + }, + "minecraft:entity.frog.step": { + "protocol_id": 684 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 685 + }, + "minecraft:entity.generic.big_fall": { + "protocol_id": 692 + }, + "minecraft:entity.generic.burn": { + "protocol_id": 693 + }, + "minecraft:entity.generic.death": { + "protocol_id": 694 + }, + "minecraft:entity.generic.drink": { + "protocol_id": 695 + }, + "minecraft:entity.generic.eat": { + "protocol_id": 696 + }, + "minecraft:entity.generic.explode": { + "protocol_id": 697 + }, + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 698 + }, + "minecraft:entity.generic.hurt": { + "protocol_id": 699 + }, + "minecraft:entity.generic.small_fall": { + "protocol_id": 700 + }, + "minecraft:entity.generic.splash": { + "protocol_id": 701 + }, + "minecraft:entity.generic.swim": { + "protocol_id": 702 + }, + "minecraft:entity.ghast.ambient": { + "protocol_id": 703 + }, + "minecraft:entity.ghast.death": { + "protocol_id": 704 + }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 705 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 706 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 707 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 708 + }, + "minecraft:entity.ghastling.ambient": { + "protocol_id": 709 + }, + "minecraft:entity.ghastling.death": { + "protocol_id": 710 + }, + "minecraft:entity.ghastling.hurt": { + "protocol_id": 711 + }, + "minecraft:entity.ghastling.spawn": { + "protocol_id": 712 + }, + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 724 + }, + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 725 + }, + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 726 + }, + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 727 + }, + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 728 + }, + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 729 + }, + "minecraft:entity.glow_squid.death": { + "protocol_id": 730 + }, + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 731 + }, + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 732 + }, + "minecraft:entity.goat.ambient": { + "protocol_id": 733 + }, + "minecraft:entity.goat.death": { + "protocol_id": 734 + }, + "minecraft:entity.goat.eat": { + "protocol_id": 735 + }, + "minecraft:entity.goat.horn_break": { + "protocol_id": 741 + }, + "minecraft:entity.goat.hurt": { + "protocol_id": 736 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 737 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 738 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 739 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 740 + }, + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 742 + }, + "minecraft:entity.goat.screaming.death": { + "protocol_id": 743 + }, + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 744 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 745 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 746 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 747 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 748 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 749 + }, + "minecraft:entity.goat.step": { + "protocol_id": 750 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 765 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 766 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 767 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 768 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 769 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 770 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 771 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 772 + }, + "minecraft:entity.happy_ghast.ambient": { + "protocol_id": 783 + }, + "minecraft:entity.happy_ghast.death": { + "protocol_id": 784 + }, + "minecraft:entity.happy_ghast.equip": { + "protocol_id": 818 + }, + "minecraft:entity.happy_ghast.harness_goggles_down": { + "protocol_id": 821 + }, + "minecraft:entity.happy_ghast.harness_goggles_up": { + "protocol_id": 820 + }, + "minecraft:entity.happy_ghast.hurt": { + "protocol_id": 785 + }, + "minecraft:entity.happy_ghast.riding": { + "protocol_id": 786 + }, + "minecraft:entity.happy_ghast.unequip": { + "protocol_id": 819 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 823 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 824 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 825 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 826 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 827 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 828 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 829 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 830 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 847 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 849 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 851 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 853 + }, + "minecraft:entity.horse.death": { + "protocol_id": 855 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 857 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 859 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 860 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 862 + }, + "minecraft:entity.horse.land": { + "protocol_id": 863 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 865 + }, + "minecraft:entity.horse.step": { + "protocol_id": 866 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 868 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 869 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 870 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 871 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 872 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 873 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 874 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 875 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 876 + }, + "minecraft:entity.husk.death": { + "protocol_id": 877 + }, + "minecraft:entity.husk.hurt": { + "protocol_id": 878 + }, + "minecraft:entity.husk.step": { + "protocol_id": 879 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 880 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 881 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 882 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 883 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 884 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 885 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 886 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 895 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 896 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 897 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 898 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 899 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 900 + }, + "minecraft:entity.item.break": { + "protocol_id": 908 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 909 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 903 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 904 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 905 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 906 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 907 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 934 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 935 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 936 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 937 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 938 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 939 + }, + "minecraft:entity.llama.death": { + "protocol_id": 940 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 941 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 942 + }, + "minecraft:entity.llama.spit": { + "protocol_id": 943 + }, + "minecraft:entity.llama.step": { + "protocol_id": 944 + }, + "minecraft:entity.llama.swag": { + "protocol_id": 945 + }, + "minecraft:entity.magma_cube.death": { + "protocol_id": 960 + }, + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 947 + }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 961 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 962 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 963 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 964 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 965 + }, + "minecraft:entity.minecart.inside": { + "protocol_id": 981 + }, + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 980 + }, + "minecraft:entity.minecart.riding": { + "protocol_id": 982 + }, + "minecraft:entity.mooshroom.convert": { + "protocol_id": 983 + }, + "minecraft:entity.mooshroom.eat": { + "protocol_id": 984 + }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 985 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 987 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 986 + }, + "minecraft:entity.mule.ambient": { + "protocol_id": 1018 + }, + "minecraft:entity.mule.angry": { + "protocol_id": 1019 + }, + "minecraft:entity.mule.chest": { + "protocol_id": 1020 + }, + "minecraft:entity.mule.death": { + "protocol_id": 1021 + }, + "minecraft:entity.mule.eat": { + "protocol_id": 1022 + }, + "minecraft:entity.mule.hurt": { + "protocol_id": 1023 + }, + "minecraft:entity.mule.jump": { + "protocol_id": 1024 + }, + "minecraft:entity.nautilus.ambient": { + "protocol_id": 1077 + }, + "minecraft:entity.nautilus.ambient_land": { + "protocol_id": 1078 + }, + "minecraft:entity.nautilus.dash": { + "protocol_id": 1079 + }, + "minecraft:entity.nautilus.dash_land": { + "protocol_id": 1080 + }, + "minecraft:entity.nautilus.dash_ready": { + "protocol_id": 1081 + }, + "minecraft:entity.nautilus.dash_ready_land": { + "protocol_id": 1082 + }, + "minecraft:entity.nautilus.death": { + "protocol_id": 1083 + }, + "minecraft:entity.nautilus.death_land": { + "protocol_id": 1084 + }, + "minecraft:entity.nautilus.eat": { + "protocol_id": 1085 + }, + "minecraft:entity.nautilus.hurt": { + "protocol_id": 1086 + }, + "minecraft:entity.nautilus.hurt_land": { + "protocol_id": 1087 + }, + "minecraft:entity.nautilus.riding": { + "protocol_id": 115 + }, + "minecraft:entity.nautilus.swim": { + "protocol_id": 1088 + }, + "minecraft:entity.ocelot.ambient": { + "protocol_id": 1184 + }, + "minecraft:entity.ocelot.death": { + "protocol_id": 1185 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 1183 + }, + "minecraft:entity.painting.break": { + "protocol_id": 1187 + }, + "minecraft:entity.painting.place": { + "protocol_id": 1188 + }, + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 1197 + }, + "minecraft:entity.panda.ambient": { + "protocol_id": 1192 + }, + "minecraft:entity.panda.bite": { + "protocol_id": 1200 + }, + "minecraft:entity.panda.cant_breed": { + "protocol_id": 1196 + }, + "minecraft:entity.panda.death": { + "protocol_id": 1193 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 1194 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 1199 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 1190 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 1191 + }, + "minecraft:entity.panda.step": { + "protocol_id": 1195 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 1198 + }, + "minecraft:entity.parched.ambient": { + "protocol_id": 1201 + }, + "minecraft:entity.parched.death": { + "protocol_id": 1202 + }, + "minecraft:entity.parched.hurt": { + "protocol_id": 1203 + }, + "minecraft:entity.parched.step": { + "protocol_id": 1204 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 1205 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 1206 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 1207 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 1208 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 1209 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 1210 + }, + "minecraft:entity.parrot.imitate.bogged": { + "protocol_id": 1211 + }, + "minecraft:entity.parrot.imitate.breeze": { + "protocol_id": 1212 + }, + "minecraft:entity.parrot.imitate.camel_husk": { + "protocol_id": 1213 + }, + "minecraft:entity.parrot.imitate.creaking": { + "protocol_id": 1214 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 1215 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 1216 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 1217 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 1218 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 1219 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 1220 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 1221 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 1222 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 1223 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 1224 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 1225 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 1226 + }, + "minecraft:entity.parrot.imitate.parched": { + "protocol_id": 1228 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 1227 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 1229 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 1230 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 1231 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 1232 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 1233 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 1234 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 1235 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 1236 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 1237 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 1238 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 1239 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 1240 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 1241 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 1242 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 1243 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 1244 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 1245 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 1246 + }, + "minecraft:entity.parrot.imitate.zombie_horse": { + "protocol_id": 1247 + }, + "minecraft:entity.parrot.imitate.zombie_nautilus": { + "protocol_id": 1248 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 1249 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 1250 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 1251 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 1252 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 1253 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 1254 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 1255 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 1256 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 1264 + }, + "minecraft:entity.pig.death": { + "protocol_id": 1266 + }, + "minecraft:entity.pig.eat": { + "protocol_id": 1267 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 1265 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 1257 + }, + "minecraft:entity.pig.step": { + "protocol_id": 1258 + }, + "minecraft:entity.pig_big.ambient": { + "protocol_id": 1272 + }, + "minecraft:entity.pig_big.death": { + "protocol_id": 1274 + }, + "minecraft:entity.pig_big.eat": { + "protocol_id": 1275 + }, + "minecraft:entity.pig_big.hurt": { + "protocol_id": 1273 + }, + "minecraft:entity.pig_mini.ambient": { + "protocol_id": 1268 + }, + "minecraft:entity.pig_mini.death": { + "protocol_id": 1270 + }, + "minecraft:entity.pig_mini.eat": { + "protocol_id": 1271 + }, + "minecraft:entity.pig_mini.hurt": { + "protocol_id": 1269 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 1276 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 1277 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 1278 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 1279 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 1285 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 1280 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1282 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1281 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1283 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1284 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 1286 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 1287 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 1291 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1288 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1289 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1290 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1292 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1293 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 1294 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 1295 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 1298 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 1299 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 1300 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 1301 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 1302 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 1303 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 1304 + }, + "minecraft:entity.player.breath": { + "protocol_id": 1305 + }, + "minecraft:entity.player.burp": { + "protocol_id": 1306 + }, + "minecraft:entity.player.death": { + "protocol_id": 1307 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 1308 + }, + "minecraft:entity.player.hurt_drown": { + "protocol_id": 1309 + }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 1310 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1311 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1312 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1313 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1314 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1315 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1316 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1317 + }, + "minecraft:entity.player.teleport": { + "protocol_id": 1318 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1319 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1320 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1321 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1322 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1323 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1324 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 1338 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 1339 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1340 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 1341 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 1342 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 1343 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1345 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1346 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1347 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1348 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1349 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1351 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1352 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1353 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1354 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1355 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1358 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1356 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1357 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1388 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1389 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1390 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1391 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1434 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1435 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1436 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1437 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1438 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1459 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1464 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1465 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1466 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1467 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1468 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1469 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1470 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1462 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1463 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1471 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1472 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1473 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1474 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1475 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1476 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1477 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1486 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1487 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1488 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1478 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1482 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1479 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1483 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1480 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1484 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1485 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1481 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1489 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1490 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1542 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1491 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1543 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1492 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1544 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1493 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1545 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1552 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1557 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1558 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1553 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1549 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1559 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1551 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1550 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1554 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1556 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1555 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1548 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1566 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1567 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1568 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1570 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1569 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1563 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1574 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1575 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1576 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1577 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1578 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1579 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1588 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1589 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1590 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1591 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1601 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1602 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1603 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1604 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1533 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1536 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1540 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1534 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1537 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1535 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1541 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1538 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1539 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1608 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1609 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1610 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1611 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1613 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1627 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1628 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1629 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1630 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1646 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1647 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1648 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1649 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1650 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1651 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1652 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1653 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1654 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1655 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1656 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1657 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1681 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1682 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1683 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1684 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1685 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1686 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1687 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1688 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1689 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1690 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1692 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1693 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1694 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1695 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1696 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1697 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1698 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1699 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1700 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1701 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1702 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1703 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1704 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1691 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1705 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1706 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1707 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1708 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1715 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1716 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1717 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1718 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1719 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1720 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1721 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1722 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1723 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1724 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1725 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1726 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1727 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1728 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1729 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1730 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1731 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1732 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1733 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1734 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1735 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1736 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1737 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1738 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1739 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1740 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1741 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1742 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1743 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1744 + }, + "minecraft:entity.wind_charge.throw": { + "protocol_id": 1763 + }, + "minecraft:entity.wind_charge.wind_burst": { + "protocol_id": 1762 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1764 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1765 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1766 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1767 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1768 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1769 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1770 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1771 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1772 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1773 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1774 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1779 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1775 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1776 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1777 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1778 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1793 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1794 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1795 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1796 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1797 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1789 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1790 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1798 + }, + "minecraft:entity.wolf_angry.ambient": { + "protocol_id": 1811 + }, + "minecraft:entity.wolf_angry.death": { + "protocol_id": 1812 + }, + "minecraft:entity.wolf_angry.growl": { + "protocol_id": 1813 + }, + "minecraft:entity.wolf_angry.hurt": { + "protocol_id": 1814 + }, + "minecraft:entity.wolf_angry.pant": { + "protocol_id": 1815 + }, + "minecraft:entity.wolf_angry.whine": { + "protocol_id": 1816 + }, + "minecraft:entity.wolf_big.ambient": { + "protocol_id": 1823 + }, + "minecraft:entity.wolf_big.death": { + "protocol_id": 1824 + }, + "minecraft:entity.wolf_big.growl": { + "protocol_id": 1825 + }, + "minecraft:entity.wolf_big.hurt": { + "protocol_id": 1826 + }, + "minecraft:entity.wolf_big.pant": { + "protocol_id": 1827 + }, + "minecraft:entity.wolf_big.whine": { + "protocol_id": 1828 + }, + "minecraft:entity.wolf_cute.ambient": { + "protocol_id": 1829 + }, + "minecraft:entity.wolf_cute.death": { + "protocol_id": 1830 + }, + "minecraft:entity.wolf_cute.growl": { + "protocol_id": 1831 + }, + "minecraft:entity.wolf_cute.hurt": { + "protocol_id": 1832 + }, + "minecraft:entity.wolf_cute.pant": { + "protocol_id": 1833 + }, + "minecraft:entity.wolf_cute.whine": { + "protocol_id": 1834 + }, + "minecraft:entity.wolf_grumpy.ambient": { + "protocol_id": 1817 + }, + "minecraft:entity.wolf_grumpy.death": { + "protocol_id": 1818 + }, + "minecraft:entity.wolf_grumpy.growl": { + "protocol_id": 1819 + }, + "minecraft:entity.wolf_grumpy.hurt": { + "protocol_id": 1820 + }, + "minecraft:entity.wolf_grumpy.pant": { + "protocol_id": 1821 + }, + "minecraft:entity.wolf_grumpy.whine": { + "protocol_id": 1822 + }, + "minecraft:entity.wolf_puglin.ambient": { + "protocol_id": 1799 + }, + "minecraft:entity.wolf_puglin.death": { + "protocol_id": 1800 + }, + "minecraft:entity.wolf_puglin.growl": { + "protocol_id": 1801 + }, + "minecraft:entity.wolf_puglin.hurt": { + "protocol_id": 1802 + }, + "minecraft:entity.wolf_puglin.pant": { + "protocol_id": 1803 + }, + "minecraft:entity.wolf_puglin.whine": { + "protocol_id": 1804 + }, + "minecraft:entity.wolf_sad.ambient": { + "protocol_id": 1805 + }, + "minecraft:entity.wolf_sad.death": { + "protocol_id": 1806 + }, + "minecraft:entity.wolf_sad.growl": { + "protocol_id": 1807 + }, + "minecraft:entity.wolf_sad.hurt": { + "protocol_id": 1808 + }, + "minecraft:entity.wolf_sad.pant": { + "protocol_id": 1809 + }, + "minecraft:entity.wolf_sad.whine": { + "protocol_id": 1810 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1853 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1854 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1855 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1856 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1857 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1858 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1859 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1861 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1860 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1862 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1863 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1864 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1865 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1871 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1872 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1889 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1866 + }, + "minecraft:entity.zombie_horse.angry": { + "protocol_id": 1867 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1868 + }, + "minecraft:entity.zombie_horse.eat": { + "protocol_id": 1869 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1870 + }, + "minecraft:entity.zombie_nautilus.ambient": { + "protocol_id": 1873 + }, + "minecraft:entity.zombie_nautilus.ambient_land": { + "protocol_id": 1874 + }, + "minecraft:entity.zombie_nautilus.dash": { + "protocol_id": 1875 + }, + "minecraft:entity.zombie_nautilus.dash_land": { + "protocol_id": 1876 + }, + "minecraft:entity.zombie_nautilus.dash_ready": { + "protocol_id": 1877 + }, + "minecraft:entity.zombie_nautilus.dash_ready_land": { + "protocol_id": 1878 + }, + "minecraft:entity.zombie_nautilus.death": { + "protocol_id": 1879 + }, + "minecraft:entity.zombie_nautilus.death_land": { + "protocol_id": 1880 + }, + "minecraft:entity.zombie_nautilus.eat": { + "protocol_id": 1881 + }, + "minecraft:entity.zombie_nautilus.hurt": { + "protocol_id": 1882 + }, + "minecraft:entity.zombie_nautilus.hurt_land": { + "protocol_id": 1883 + }, + "minecraft:entity.zombie_nautilus.swim": { + "protocol_id": 1884 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1890 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1891 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1892 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1893 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1894 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1895 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1885 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1886 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1887 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1888 + }, + "minecraft:event.mob_effect.bad_omen": { + "protocol_id": 1896 + }, + "minecraft:event.mob_effect.raid_omen": { + "protocol_id": 1898 + }, + "minecraft:event.mob_effect.trial_omen": { + "protocol_id": 1897 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1350 + }, + "minecraft:intentionally_empty": { + "protocol_id": 1111 + }, + "minecraft:item.armor.equip_chain": { + "protocol_id": 67 + }, + "minecraft:item.armor.equip_copper": { + "protocol_id": 74 + }, + "minecraft:item.armor.equip_diamond": { + "protocol_id": 68 + }, + "minecraft:item.armor.equip_elytra": { + "protocol_id": 69 + }, + "minecraft:item.armor.equip_generic": { + "protocol_id": 70 + }, + "minecraft:item.armor.equip_gold": { + "protocol_id": 71 + }, + "minecraft:item.armor.equip_iron": { + "protocol_id": 72 + }, + "minecraft:item.armor.equip_leather": { + "protocol_id": 73 + }, + "minecraft:item.armor.equip_nautilus": { + "protocol_id": 79 + }, + "minecraft:item.armor.equip_netherite": { + "protocol_id": 75 + }, + "minecraft:item.armor.equip_turtle": { + "protocol_id": 76 + }, + "minecraft:item.armor.equip_wolf": { + "protocol_id": 77 + }, + "minecraft:item.armor.unequip_nautilus": { + "protocol_id": 80 + }, + "minecraft:item.armor.unequip_wolf": { + "protocol_id": 78 + }, + "minecraft:item.axe.scrape": { + "protocol_id": 89 + }, + "minecraft:item.axe.strip": { + "protocol_id": 88 + }, + "minecraft:item.axe.wax_off": { + "protocol_id": 90 + }, + "minecraft:item.bone_meal.use": { + "protocol_id": 191 + }, + "minecraft:item.book.page_turn": { + "protocol_id": 192 + }, + "minecraft:item.book.put": { + "protocol_id": 193 + }, + "minecraft:item.bottle.empty": { + "protocol_id": 195 + }, + "minecraft:item.bottle.fill": { + "protocol_id": 196 + }, + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 197 + }, + "minecraft:item.brush.brushing.generic": { + "protocol_id": 212 + }, + "minecraft:item.brush.brushing.gravel": { + "protocol_id": 214 + }, + "minecraft:item.brush.brushing.gravel.complete": { + "protocol_id": 216 + }, + "minecraft:item.brush.brushing.sand": { + "protocol_id": 213 + }, + "minecraft:item.brush.brushing.sand.complete": { + "protocol_id": 215 + }, + "minecraft:item.bucket.empty": { + "protocol_id": 223 + }, + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 224 + }, + "minecraft:item.bucket.empty_fish": { + "protocol_id": 225 + }, + "minecraft:item.bucket.empty_lava": { + "protocol_id": 226 + }, + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 227 + }, + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 228 + }, + "minecraft:item.bucket.fill": { + "protocol_id": 229 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 230 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 231 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 232 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 233 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 234 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 235 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 236 + }, + "minecraft:item.bundle.insert_fail": { + "protocol_id": 237 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 238 + }, + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 371 + }, + "minecraft:item.crop.plant": { + "protocol_id": 481 + }, + "minecraft:item.crossbow.hit": { + "protocol_id": 482 + }, + "minecraft:item.crossbow.loading_end": { + "protocol_id": 483 + }, + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 484 + }, + "minecraft:item.crossbow.loading_start": { + "protocol_id": 485 + }, + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 486 + }, + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 487 + }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 488 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 489 + }, + "minecraft:item.dye.use": { + "protocol_id": 569 + }, + "minecraft:item.elytra.flying": { + "protocol_id": 579 + }, + "minecraft:item.firecharge.use": { + "protocol_id": 624 + }, + "minecraft:item.flintandsteel.use": { + "protocol_id": 640 + }, + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 723 + }, + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 839 + }, + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 840 + }, + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 841 + }, + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 842 + }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 843 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 844 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 845 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 846 + }, + "minecraft:item.golden_dandelion.unuse": { + "protocol_id": 752 + }, + "minecraft:item.golden_dandelion.use": { + "protocol_id": 751 + }, + "minecraft:item.hoe.till": { + "protocol_id": 822 + }, + "minecraft:item.honey_bottle.drink": { + "protocol_id": 838 + }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 837 + }, + "minecraft:item.horse_armor.unequip": { + "protocol_id": 852 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 887 + }, + "minecraft:item.lead.break": { + "protocol_id": 932 + }, + "minecraft:item.lead.tied": { + "protocol_id": 931 + }, + "minecraft:item.lead.untied": { + "protocol_id": 930 + }, + "minecraft:item.llama_carpet.unequip": { + "protocol_id": 946 + }, + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 953 + }, + "minecraft:item.mace.smash_air": { + "protocol_id": 957 + }, + "minecraft:item.mace.smash_ground": { + "protocol_id": 958 + }, + "minecraft:item.mace.smash_ground_heavy": { + "protocol_id": 959 + }, + "minecraft:item.nautilus_saddle_equip": { + "protocol_id": 1901 + }, + "minecraft:item.nautilus_saddle_underwater_equip": { + "protocol_id": 1900 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 1095 + }, + "minecraft:item.ominous_bottle.dispose": { + "protocol_id": 1186 + }, + "minecraft:item.saddle.unequip": { + "protocol_id": 1899 + }, + "minecraft:item.shears.snip": { + "protocol_id": 1439 + }, + "minecraft:item.shield.block": { + "protocol_id": 1451 + }, + "minecraft:item.shield.break": { + "protocol_id": 1452 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1458 + }, + "minecraft:item.spear.attack": { + "protocol_id": 1524 + }, + "minecraft:item.spear.hit": { + "protocol_id": 1523 + }, + "minecraft:item.spear.lunge_1": { + "protocol_id": 954 + }, + "minecraft:item.spear.lunge_2": { + "protocol_id": 955 + }, + "minecraft:item.spear.lunge_3": { + "protocol_id": 956 + }, + "minecraft:item.spear.use": { + "protocol_id": 1522 + }, + "minecraft:item.spear_wood.attack": { + "protocol_id": 1527 + }, + "minecraft:item.spear_wood.hit": { + "protocol_id": 1526 + }, + "minecraft:item.spear_wood.use": { + "protocol_id": 1525 + }, + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1587 + }, + "minecraft:item.spyglass.use": { + "protocol_id": 1586 + }, + "minecraft:item.totem.use": { + "protocol_id": 1614 + }, + "minecraft:item.trident.hit": { + "protocol_id": 1615 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1616 + }, + "minecraft:item.trident.return": { + "protocol_id": 1617 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1618 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1619 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1620 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1621 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1622 + }, + "minecraft:item.wolf_armor.break": { + "protocol_id": 1780 + }, + "minecraft:item.wolf_armor.crack": { + "protocol_id": 1782 + }, + "minecraft:item.wolf_armor.damage": { + "protocol_id": 1783 + }, + "minecraft:item.wolf_armor.repair": { + "protocol_id": 1784 + }, + "minecraft:music.creative": { + "protocol_id": 1025 + }, + "minecraft:music.credits": { + "protocol_id": 1026 + }, + "minecraft:music.dragon": { + "protocol_id": 1048 + }, + "minecraft:music.end": { + "protocol_id": 1049 + }, + "minecraft:music.game": { + "protocol_id": 1050 + }, + "minecraft:music.menu": { + "protocol_id": 1051 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 1052 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 1053 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 1064 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 1067 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 1069 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 1072 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 1075 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 1063 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 1054 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 1071 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 1055 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 1070 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 1060 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 1065 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 1056 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 1057 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 1073 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 1058 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 1062 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 1061 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 1066 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 1074 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 1068 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 1059 + }, + "minecraft:music.under_water": { + "protocol_id": 1076 + }, + "minecraft:music_disc.11": { + "protocol_id": 1028 + }, + "minecraft:music_disc.13": { + "protocol_id": 1029 + }, + "minecraft:music_disc.5": { + "protocol_id": 1027 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 1030 + }, + "minecraft:music_disc.cat": { + "protocol_id": 1031 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 1032 + }, + "minecraft:music_disc.creator": { + "protocol_id": 1044 + }, + "minecraft:music_disc.creator_music_box": { + "protocol_id": 1045 + }, + "minecraft:music_disc.far": { + "protocol_id": 1033 + }, + "minecraft:music_disc.lava_chicken": { + "protocol_id": 1034 + }, + "minecraft:music_disc.mall": { + "protocol_id": 1035 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 1036 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 1042 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 1037 + }, + "minecraft:music_disc.precipice": { + "protocol_id": 1046 + }, + "minecraft:music_disc.relic": { + "protocol_id": 1043 + }, + "minecraft:music_disc.stal": { + "protocol_id": 1038 + }, + "minecraft:music_disc.strad": { + "protocol_id": 1039 + }, + "minecraft:music_disc.tears": { + "protocol_id": 1047 + }, + "minecraft:music_disc.wait": { + "protocol_id": 1040 + }, + "minecraft:music_disc.ward": { + "protocol_id": 1041 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1516 + }, + "minecraft:ui.button.click": { + "protocol_id": 1658 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1661 + }, + "minecraft:ui.hud.bubble_pop": { + "protocol_id": 222 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1659 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1660 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1663 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1662 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1664 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1665 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1666 + }, + "minecraft:weather.end_flash": { + "protocol_id": 1748 + }, + "minecraft:weather.rain": { + "protocol_id": 1749 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1750 + } + }, + "protocol_id": 1 + }, + "minecraft:spawn_condition_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 2 + }, + "minecraft:moon_brightness": { + "protocol_id": 1 + }, + "minecraft:structure": { + "protocol_id": 0 + } + }, + "protocol_id": 84 + }, + "minecraft:stat_type": { + "entries": { + "minecraft:broken": { + "protocol_id": 3 + }, + "minecraft:crafted": { + "protocol_id": 1 + }, + "minecraft:custom": { + "protocol_id": 8 + }, + "minecraft:dropped": { + "protocol_id": 5 + }, + "minecraft:killed": { + "protocol_id": 6 + }, + "minecraft:killed_by": { + "protocol_id": 7 + }, + "minecraft:mined": { + "protocol_id": 0 + }, + "minecraft:picked_up": { + "protocol_id": 4 + }, + "minecraft:used": { + "protocol_id": 2 + } + }, + "protocol_id": 22 + }, + "minecraft:test_environment_definition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:clock_time": { + "protocol_id": 2 + }, + "minecraft:function": { + "protocol_id": 5 + }, + "minecraft:game_rules": { + "protocol_id": 1 + }, + "minecraft:timeline_attributes": { + "protocol_id": 3 + }, + "minecraft:weather": { + "protocol_id": 4 + } + }, + "protocol_id": 82 + }, + "minecraft:test_function": { + "entries": { + "minecraft:always_pass": { + "protocol_id": 0 + } + }, + "protocol_id": 94 + }, + "minecraft:test_instance_type": { + "entries": { + "minecraft:block_based": { + "protocol_id": 0 + }, + "minecraft:function": { + "protocol_id": 1 + } + }, + "protocol_id": 83 + }, + "minecraft:ticket_type": { + "entries": { + "minecraft:dragon": { + "protocol_id": 2 + }, + "minecraft:ender_pearl": { + "protocol_id": 7 + }, + "minecraft:forced": { + "protocol_id": 5 + }, + "minecraft:player_loading": { + "protocol_id": 3 + }, + "minecraft:player_simulation": { + "protocol_id": 4 + }, + "minecraft:player_spawn": { + "protocol_id": 0 + }, + "minecraft:portal": { + "protocol_id": 6 + }, + "minecraft:spawn_search": { + "protocol_id": 1 + }, + "minecraft:unknown": { + "protocol_id": 8 + } + }, + "protocol_id": 79 + }, + "minecraft:trigger_type": { + "entries": { + "minecraft:allay_drop_item_on_block": { + "protocol_id": 53 + }, + "minecraft:any_block_use": { + "protocol_id": 41 + }, + "minecraft:avoid_vibration": { + "protocol_id": 54 + }, + "minecraft:bee_nest_destroyed": { + "protocol_id": 37 + }, + "minecraft:bred_animals": { + "protocol_id": 14 + }, + "minecraft:brewed_potion": { + "protocol_id": 10 + }, + "minecraft:changed_dimension": { + "protocol_id": 21 + }, + "minecraft:channeled_lightning": { + "protocol_id": 30 + }, + "minecraft:construct_beacon": { + "protocol_id": 11 + }, + "minecraft:consume_item": { + "protocol_id": 25 + }, + "minecraft:crafter_recipe_crafted": { + "protocol_id": 56 + }, + "minecraft:cured_zombie_villager": { + "protocol_id": 17 + }, + "minecraft:default_block_use": { + "protocol_id": 40 + }, + "minecraft:effects_changed": { + "protocol_id": 26 + }, + "minecraft:enchanted_item": { + "protocol_id": 8 + }, + "minecraft:enter_block": { + "protocol_id": 3 + }, + "minecraft:entity_hurt_player": { + "protocol_id": 7 + }, + "minecraft:entity_killed_player": { + "protocol_id": 2 + }, + "minecraft:fall_after_explosion": { + "protocol_id": 57 + }, + "minecraft:fall_from_height": { + "protocol_id": 50 + }, + "minecraft:filled_bucket": { + "protocol_id": 9 + }, + "minecraft:fishing_rod_hooked": { + "protocol_id": 29 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 34 + }, + "minecraft:impossible": { + "protocol_id": 0 + }, + "minecraft:inventory_changed": { + "protocol_id": 4 + }, + "minecraft:item_durability_changed": { + "protocol_id": 19 + }, + "minecraft:item_used_on_block": { + "protocol_id": 39 + }, + "minecraft:kill_mob_near_sculk_catalyst": { + "protocol_id": 52 + }, + "minecraft:killed_by_arrow": { + "protocol_id": 33 + }, + "minecraft:levitation": { + "protocol_id": 20 + }, + "minecraft:lightning_strike": { + "protocol_id": 48 + }, + "minecraft:location": { + "protocol_id": 15 + }, + "minecraft:nether_travel": { + "protocol_id": 28 + }, + "minecraft:placed_block": { + "protocol_id": 24 + }, + "minecraft:player_generates_container_loot": { + "protocol_id": 42 + }, + "minecraft:player_hurt_entity": { + "protocol_id": 6 + }, + "minecraft:player_interacted_with_entity": { + "protocol_id": 45 + }, + "minecraft:player_killed_entity": { + "protocol_id": 1 + }, + "minecraft:player_sheared_equipment": { + "protocol_id": 46 + }, + "minecraft:recipe_crafted": { + "protocol_id": 55 + }, + "minecraft:recipe_unlocked": { + "protocol_id": 5 + }, + "minecraft:ride_entity_in_lava": { + "protocol_id": 51 + }, + "minecraft:shot_crossbow": { + "protocol_id": 31 + }, + "minecraft:slept_in_bed": { + "protocol_id": 16 + }, + "minecraft:slide_down_block": { + "protocol_id": 36 + }, + "minecraft:spear_mobs": { + "protocol_id": 32 + }, + "minecraft:started_riding": { + "protocol_id": 47 + }, + "minecraft:summoned_entity": { + "protocol_id": 13 + }, + "minecraft:tame_animal": { + "protocol_id": 23 + }, + "minecraft:target_hit": { + "protocol_id": 38 + }, + "minecraft:thrown_item_picked_up_by_entity": { + "protocol_id": 43 + }, + "minecraft:thrown_item_picked_up_by_player": { + "protocol_id": 44 + }, + "minecraft:tick": { + "protocol_id": 22 + }, + "minecraft:used_ender_eye": { + "protocol_id": 12 + }, + "minecraft:used_totem": { + "protocol_id": 27 + }, + "minecraft:using_item": { + "protocol_id": 49 + }, + "minecraft:villager_trade": { + "protocol_id": 18 + }, + "minecraft:voluntary_exile": { + "protocol_id": 35 + } + }, + "protocol_id": 62 + }, + "minecraft:villager_profession": { + "default": "minecraft:none", + "entries": { + "minecraft:armorer": { + "protocol_id": 1 + }, + "minecraft:butcher": { + "protocol_id": 2 + }, + "minecraft:cartographer": { + "protocol_id": 3 + }, + "minecraft:cleric": { + "protocol_id": 4 + }, + "minecraft:farmer": { + "protocol_id": 5 + }, + "minecraft:fisherman": { + "protocol_id": 6 + }, + "minecraft:fletcher": { + "protocol_id": 7 + }, + "minecraft:leatherworker": { + "protocol_id": 8 + }, + "minecraft:librarian": { + "protocol_id": 9 + }, + "minecraft:mason": { + "protocol_id": 10 + }, + "minecraft:nitwit": { + "protocol_id": 11 + }, + "minecraft:none": { + "protocol_id": 0 + }, + "minecraft:shepherd": { + "protocol_id": 12 + }, + "minecraft:toolsmith": { + "protocol_id": 13 + }, + "minecraft:weaponsmith": { + "protocol_id": 14 + } + }, + "protocol_id": 24 + }, + "minecraft:villager_type": { + "default": "minecraft:plains", + "entries": { + "minecraft:desert": { + "protocol_id": 0 + }, + "minecraft:jungle": { + "protocol_id": 1 + }, + "minecraft:plains": { + "protocol_id": 2 + }, + "minecraft:savanna": { + "protocol_id": 3 + }, + "minecraft:snow": { + "protocol_id": 4 + }, + "minecraft:swamp": { + "protocol_id": 5 + }, + "minecraft:taiga": { + "protocol_id": 6 + } + }, + "protocol_id": 23 + }, + "minecraft:worldgen/biome_source": { + "entries": { + "minecraft:checkerboard": { + "protocol_id": 2 + }, + "minecraft:fixed": { + "protocol_id": 0 + }, + "minecraft:multi_noise": { + "protocol_id": 1 + }, + "minecraft:the_end": { + "protocol_id": 3 + } + }, + "protocol_id": 51 + }, + "minecraft:worldgen/block_state_provider_type": { + "entries": { + "minecraft:dual_noise_provider": { + "protocol_id": 4 + }, + "minecraft:noise_provider": { + "protocol_id": 3 + }, + "minecraft:noise_threshold_provider": { + "protocol_id": 2 + }, + "minecraft:randomized_int_state_provider": { + "protocol_id": 6 + }, + "minecraft:rotated_block_provider": { + "protocol_id": 5 + }, + "minecraft:rule_based_state_provider": { + "protocol_id": 7 + }, + "minecraft:simple_state_provider": { + "protocol_id": 0 + }, + "minecraft:weighted_state_provider": { + "protocol_id": 1 + } + }, + "protocol_id": 45 + }, + "minecraft:worldgen/carver": { + "entries": { + "minecraft:canyon": { + "protocol_id": 2 + }, + "minecraft:cave": { + "protocol_id": 0 + }, + "minecraft:nether_cave": { + "protocol_id": 1 + } + }, + "protocol_id": 39 + }, + "minecraft:worldgen/chunk_generator": { + "entries": { + "minecraft:debug": { + "protocol_id": 2 + }, + "minecraft:flat": { + "protocol_id": 1 + }, + "minecraft:noise": { + "protocol_id": 0 + } + }, + "protocol_id": 52 + }, + "minecraft:worldgen/density_function_type": { + "entries": { + "minecraft:abs": { + "protocol_id": 19 + }, + "minecraft:add": { + "protocol_id": 26 + }, + "minecraft:beardifier": { + "protocol_id": 2 + }, + "minecraft:blend_alpha": { + "protocol_id": 0 + }, + "minecraft:blend_density": { + "protocol_id": 17 + }, + "minecraft:blend_offset": { + "protocol_id": 1 + }, + "minecraft:cache_2d": { + "protocol_id": 6 + }, + "minecraft:cache_all_in_cell": { + "protocol_id": 8 + }, + "minecraft:cache_once": { + "protocol_id": 7 + }, + "minecraft:clamp": { + "protocol_id": 18 + }, + "minecraft:constant": { + "protocol_id": 31 + }, + "minecraft:cube": { + "protocol_id": 21 + }, + "minecraft:end_islands": { + "protocol_id": 10 + }, + "minecraft:find_top_surface": { + "protocol_id": 33 + }, + "minecraft:flat_cache": { + "protocol_id": 5 + }, + "minecraft:half_negative": { + "protocol_id": 22 + }, + "minecraft:interpolated": { + "protocol_id": 4 + }, + "minecraft:invert": { + "protocol_id": 24 + }, + "minecraft:max": { + "protocol_id": 29 + }, + "minecraft:min": { + "protocol_id": 28 + }, + "minecraft:mul": { + "protocol_id": 27 + }, + "minecraft:noise": { + "protocol_id": 9 + }, + "minecraft:old_blended_noise": { + "protocol_id": 3 + }, + "minecraft:quarter_negative": { + "protocol_id": 23 + }, + "minecraft:range_choice": { + "protocol_id": 13 + }, + "minecraft:shift": { + "protocol_id": 16 + }, + "minecraft:shift_a": { + "protocol_id": 14 + }, + "minecraft:shift_b": { + "protocol_id": 15 + }, + "minecraft:shifted_noise": { + "protocol_id": 12 + }, + "minecraft:spline": { + "protocol_id": 30 + }, + "minecraft:square": { + "protocol_id": 20 + }, + "minecraft:squeeze": { + "protocol_id": 25 + }, + "minecraft:weird_scaled_sampler": { + "protocol_id": 11 + }, + "minecraft:y_clamped_gradient": { + "protocol_id": 32 + } + }, + "protocol_id": 55 + }, + "minecraft:worldgen/feature": { + "entries": { + "minecraft:bamboo": { + "protocol_id": 40 + }, + "minecraft:basalt_columns": { + "protocol_id": 45 + }, + "minecraft:basalt_pillar": { + "protocol_id": 50 + }, + "minecraft:block_blob": { + "protocol_id": 25 + }, + "minecraft:block_column": { + "protocol_id": 16 + }, + "minecraft:block_pile": { + "protocol_id": 3 + }, + "minecraft:blue_ice": { + "protocol_id": 23 + }, + "minecraft:bonus_chest": { + "protocol_id": 49 + }, + "minecraft:chorus_plant": { + "protocol_id": 5 + }, + "minecraft:coral_claw": { + "protocol_id": 37 + }, + "minecraft:coral_mushroom": { + "protocol_id": 36 + }, + "minecraft:coral_tree": { + "protocol_id": 35 + }, + "minecraft:delta_feature": { + "protocol_id": 46 + }, + "minecraft:desert_well": { + "protocol_id": 8 + }, + "minecraft:disk": { + "protocol_id": 26 + }, + "minecraft:dripstone_cluster": { + "protocol_id": 56 + }, + "minecraft:end_gateway": { + "protocol_id": 32 + }, + "minecraft:end_island": { + "protocol_id": 31 + }, + "minecraft:end_platform": { + "protocol_id": 29 + }, + "minecraft:end_spike": { + "protocol_id": 30 + }, + "minecraft:fallen_tree": { + "protocol_id": 2 + }, + "minecraft:fill_layer": { + "protocol_id": 48 + }, + "minecraft:fossil": { + "protocol_id": 9 + }, + "minecraft:freeze_top_layer": { + "protocol_id": 14 + }, + "minecraft:geode": { + "protocol_id": 55 + }, + "minecraft:glowstone_blob": { + "protocol_id": 13 + }, + "minecraft:huge_brown_mushroom": { + "protocol_id": 11 + }, + "minecraft:huge_fungus": { + "protocol_id": 41 + }, + "minecraft:huge_red_mushroom": { + "protocol_id": 10 + }, + "minecraft:iceberg": { + "protocol_id": 24 + }, + "minecraft:kelp": { + "protocol_id": 34 + }, + "minecraft:lake": { + "protocol_id": 27 + }, + "minecraft:large_dripstone": { + "protocol_id": 57 + }, + "minecraft:monster_room": { + "protocol_id": 22 + }, + "minecraft:multiface_growth": { + "protocol_id": 20 + }, + "minecraft:nether_forest_vegetation": { + "protocol_id": 42 + }, + "minecraft:netherrack_replace_blobs": { + "protocol_id": 47 + }, + "minecraft:no_op": { + "protocol_id": 0 + }, + "minecraft:ore": { + "protocol_id": 28 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 58 + }, + "minecraft:random_boolean_selector": { + "protocol_id": 54 + }, + "minecraft:random_selector": { + "protocol_id": 52 + }, + "minecraft:replace_single_block": { + "protocol_id": 6 + }, + "minecraft:root_system": { + "protocol_id": 19 + }, + "minecraft:scattered_ore": { + "protocol_id": 51 + }, + "minecraft:sculk_patch": { + "protocol_id": 59 + }, + "minecraft:sea_pickle": { + "protocol_id": 38 + }, + "minecraft:seagrass": { + "protocol_id": 33 + }, + "minecraft:simple_block": { + "protocol_id": 39 + }, + "minecraft:simple_random_selector": { + "protocol_id": 53 + }, + "minecraft:spike": { + "protocol_id": 12 + }, + "minecraft:spring_feature": { + "protocol_id": 4 + }, + "minecraft:tree": { + "protocol_id": 1 + }, + "minecraft:twisting_vines": { + "protocol_id": 44 + }, + "minecraft:underwater_magma": { + "protocol_id": 21 + }, + "minecraft:vegetation_patch": { + "protocol_id": 17 + }, + "minecraft:vines": { + "protocol_id": 15 + }, + "minecraft:void_start_platform": { + "protocol_id": 7 + }, + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 18 + }, + "minecraft:weeping_vines": { + "protocol_id": 43 + } + }, + "protocol_id": 40 + }, + "minecraft:worldgen/feature_size_type": { + "entries": { + "minecraft:three_layers_feature_size": { + "protocol_id": 1 + }, + "minecraft:two_layers_feature_size": { + "protocol_id": 0 + } + }, + "protocol_id": 50 + }, + "minecraft:worldgen/foliage_placer_type": { + "entries": { + "minecraft:acacia_foliage_placer": { + "protocol_id": 3 + }, + "minecraft:blob_foliage_placer": { + "protocol_id": 0 + }, + "minecraft:bush_foliage_placer": { + "protocol_id": 4 + }, + "minecraft:cherry_foliage_placer": { + "protocol_id": 10 + }, + "minecraft:dark_oak_foliage_placer": { + "protocol_id": 8 + }, + "minecraft:fancy_foliage_placer": { + "protocol_id": 5 + }, + "minecraft:jungle_foliage_placer": { + "protocol_id": 6 + }, + "minecraft:mega_pine_foliage_placer": { + "protocol_id": 7 + }, + "minecraft:pine_foliage_placer": { + "protocol_id": 2 + }, + "minecraft:random_spread_foliage_placer": { + "protocol_id": 9 + }, + "minecraft:spruce_foliage_placer": { + "protocol_id": 1 + } + }, + "protocol_id": 46 + }, + "minecraft:worldgen/material_condition": { + "entries": { + "minecraft:above_preliminary_surface": { + "protocol_id": 9 + }, + "minecraft:biome": { + "protocol_id": 0 + }, + "minecraft:hole": { + "protocol_id": 8 + }, + "minecraft:noise_threshold": { + "protocol_id": 1 + }, + "minecraft:not": { + "protocol_id": 7 + }, + "minecraft:steep": { + "protocol_id": 6 + }, + "minecraft:stone_depth": { + "protocol_id": 10 + }, + "minecraft:temperature": { + "protocol_id": 5 + }, + "minecraft:vertical_gradient": { + "protocol_id": 2 + }, + "minecraft:water": { + "protocol_id": 4 + }, + "minecraft:y_above": { + "protocol_id": 3 + } + }, + "protocol_id": 53 + }, + "minecraft:worldgen/material_rule": { + "entries": { + "minecraft:bandlands": { + "protocol_id": 0 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:condition": { + "protocol_id": 3 + }, + "minecraft:sequence": { + "protocol_id": 2 + } + }, + "protocol_id": 54 + }, + "minecraft:worldgen/placement_modifier_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 4 + }, + "minecraft:block_predicate_filter": { + "protocol_id": 0 + }, + "minecraft:count": { + "protocol_id": 5 + }, + "minecraft:count_on_every_layer": { + "protocol_id": 8 + }, + "minecraft:environment_scan": { + "protocol_id": 9 + }, + "minecraft:fixed_placement": { + "protocol_id": 14 + }, + "minecraft:height_range": { + "protocol_id": 11 + }, + "minecraft:heightmap": { + "protocol_id": 10 + }, + "minecraft:in_square": { + "protocol_id": 12 + }, + "minecraft:noise_based_count": { + "protocol_id": 6 + }, + "minecraft:noise_threshold_count": { + "protocol_id": 7 + }, + "minecraft:random_offset": { + "protocol_id": 13 + }, + "minecraft:rarity_filter": { + "protocol_id": 1 + }, + "minecraft:surface_relative_threshold_filter": { + "protocol_id": 2 + }, + "minecraft:surface_water_depth_filter": { + "protocol_id": 3 + } + }, + "protocol_id": 44 + }, + "minecraft:worldgen/pool_alias_binding": { + "entries": { + "minecraft:direct": { + "protocol_id": 2 + }, + "minecraft:random": { + "protocol_id": 0 + }, + "minecraft:random_group": { + "protocol_id": 1 + } + }, + "protocol_id": 59 + }, + "minecraft:worldgen/root_placer_type": { + "entries": { + "minecraft:mangrove_root_placer": { + "protocol_id": 0 + } + }, + "protocol_id": 48 + }, + "minecraft:worldgen/structure_piece": { + "entries": { + "minecraft:btp": { + "protocol_id": 52 + }, + "minecraft:ecp": { + "protocol_id": 50 + }, + "minecraft:iglu": { + "protocol_id": 34 + }, + "minecraft:jigsaw": { + "protocol_id": 55 + }, + "minecraft:mscorridor": { + "protocol_id": 0 + }, + "minecraft:mscrossing": { + "protocol_id": 1 + }, + "minecraft:msroom": { + "protocol_id": 2 + }, + "minecraft:msstairs": { + "protocol_id": 3 + }, + "minecraft:nebcr": { + "protocol_id": 4 + }, + "minecraft:nebef": { + "protocol_id": 5 + }, + "minecraft:nebs": { + "protocol_id": 6 + }, + "minecraft:neccs": { + "protocol_id": 7 + }, + "minecraft:nece": { + "protocol_id": 9 + }, + "minecraft:necsr": { + "protocol_id": 14 + }, + "minecraft:nectb": { + "protocol_id": 8 + }, + "minecraft:nefos": { + "protocol_id": 54 + }, + "minecraft:nemt": { + "protocol_id": 15 + }, + "minecraft:nerc": { + "protocol_id": 16 + }, + "minecraft:nesc": { + "protocol_id": 12 + }, + "minecraft:nesclt": { + "protocol_id": 11 + }, + "minecraft:nescrt": { + "protocol_id": 13 + }, + "minecraft:nescsc": { + "protocol_id": 10 + }, + "minecraft:nesr": { + "protocol_id": 17 + }, + "minecraft:nestart": { + "protocol_id": 18 + }, + "minecraft:omb": { + "protocol_id": 38 + }, + "minecraft:omcr": { + "protocol_id": 39 + }, + "minecraft:omdxr": { + "protocol_id": 40 + }, + "minecraft:omdxyr": { + "protocol_id": 41 + }, + "minecraft:omdyr": { + "protocol_id": 42 + }, + "minecraft:omdyzr": { + "protocol_id": 43 + }, + "minecraft:omdzr": { + "protocol_id": 44 + }, + "minecraft:omentry": { + "protocol_id": 45 + }, + "minecraft:ompenthouse": { + "protocol_id": 46 + }, + "minecraft:omsimple": { + "protocol_id": 47 + }, + "minecraft:omsimplet": { + "protocol_id": 48 + }, + "minecraft:omwr": { + "protocol_id": 49 + }, + "minecraft:orp": { + "protocol_id": 33 + }, + "minecraft:rupo": { + "protocol_id": 35 + }, + "minecraft:sh5c": { + "protocol_id": 21 + }, + "minecraft:shcc": { + "protocol_id": 19 + }, + "minecraft:shfc": { + "protocol_id": 20 + }, + "minecraft:shipwreck": { + "protocol_id": 53 + }, + "minecraft:shli": { + "protocol_id": 23 + }, + "minecraft:shlt": { + "protocol_id": 22 + }, + "minecraft:shph": { + "protocol_id": 25 + }, + "minecraft:shpr": { + "protocol_id": 24 + }, + "minecraft:shrc": { + "protocol_id": 27 + }, + "minecraft:shrt": { + "protocol_id": 26 + }, + "minecraft:shs": { + "protocol_id": 30 + }, + "minecraft:shsd": { + "protocol_id": 28 + }, + "minecraft:shssd": { + "protocol_id": 31 + }, + "minecraft:shstart": { + "protocol_id": 29 + }, + "minecraft:tedp": { + "protocol_id": 37 + }, + "minecraft:tejp": { + "protocol_id": 32 + }, + "minecraft:tesh": { + "protocol_id": 36 + }, + "minecraft:wmp": { + "protocol_id": 51 + } + }, + "protocol_id": 42 + }, + "minecraft:worldgen/structure_placement": { + "entries": { + "minecraft:concentric_rings": { + "protocol_id": 1 + }, + "minecraft:random_spread": { + "protocol_id": 0 + } + }, + "protocol_id": 41 + }, + "minecraft:worldgen/structure_pool_element": { + "entries": { + "minecraft:empty_pool_element": { + "protocol_id": 3 + }, + "minecraft:feature_pool_element": { + "protocol_id": 2 + }, + "minecraft:legacy_single_pool_element": { + "protocol_id": 4 + }, + "minecraft:list_pool_element": { + "protocol_id": 1 + }, + "minecraft:single_pool_element": { + "protocol_id": 0 + } + }, + "protocol_id": 58 + }, + "minecraft:worldgen/structure_processor": { + "entries": { + "minecraft:blackstone_replace": { + "protocol_id": 7 + }, + "minecraft:block_age": { + "protocol_id": 6 + }, + "minecraft:block_ignore": { + "protocol_id": 0 + }, + "minecraft:block_rot": { + "protocol_id": 1 + }, + "minecraft:capped": { + "protocol_id": 10 + }, + "minecraft:gravity": { + "protocol_id": 2 + }, + "minecraft:jigsaw_replacement": { + "protocol_id": 3 + }, + "minecraft:lava_submerged_block": { + "protocol_id": 8 + }, + "minecraft:nop": { + "protocol_id": 5 + }, + "minecraft:protected_blocks": { + "protocol_id": 9 + }, + "minecraft:rule": { + "protocol_id": 4 + } + }, + "protocol_id": 57 + }, + "minecraft:worldgen/structure_type": { + "entries": { + "minecraft:buried_treasure": { + "protocol_id": 0 + }, + "minecraft:desert_pyramid": { + "protocol_id": 1 + }, + "minecraft:end_city": { + "protocol_id": 2 + }, + "minecraft:fortress": { + "protocol_id": 3 + }, + "minecraft:igloo": { + "protocol_id": 4 + }, + "minecraft:jigsaw": { + "protocol_id": 5 + }, + "minecraft:jungle_temple": { + "protocol_id": 6 + }, + "minecraft:mineshaft": { + "protocol_id": 7 + }, + "minecraft:nether_fossil": { + "protocol_id": 8 + }, + "minecraft:ocean_monument": { + "protocol_id": 9 + }, + "minecraft:ocean_ruin": { + "protocol_id": 10 + }, + "minecraft:ruined_portal": { + "protocol_id": 11 + }, + "minecraft:shipwreck": { + "protocol_id": 12 + }, + "minecraft:stronghold": { + "protocol_id": 13 + }, + "minecraft:swamp_hut": { + "protocol_id": 14 + }, + "minecraft:woodland_mansion": { + "protocol_id": 15 + } + }, + "protocol_id": 43 + }, + "minecraft:worldgen/tree_decorator_type": { + "entries": { + "minecraft:alter_ground": { + "protocol_id": 6 + }, + "minecraft:attached_to_leaves": { + "protocol_id": 7 + }, + "minecraft:attached_to_logs": { + "protocol_id": 9 + }, + "minecraft:beehive": { + "protocol_id": 5 + }, + "minecraft:cocoa": { + "protocol_id": 4 + }, + "minecraft:creaking_heart": { + "protocol_id": 3 + }, + "minecraft:leave_vine": { + "protocol_id": 1 + }, + "minecraft:pale_moss": { + "protocol_id": 2 + }, + "minecraft:place_on_ground": { + "protocol_id": 8 + }, + "minecraft:trunk_vine": { + "protocol_id": 0 + } + }, + "protocol_id": 49 + }, + "minecraft:worldgen/trunk_placer_type": { + "entries": { + "minecraft:bending_trunk_placer": { + "protocol_id": 6 + }, + "minecraft:cherry_trunk_placer": { + "protocol_id": 8 + }, + "minecraft:dark_oak_trunk_placer": { + "protocol_id": 4 + }, + "minecraft:fancy_trunk_placer": { + "protocol_id": 5 + }, + "minecraft:forking_trunk_placer": { + "protocol_id": 1 + }, + "minecraft:giant_trunk_placer": { + "protocol_id": 2 + }, + "minecraft:mega_jungle_trunk_placer": { + "protocol_id": 3 + }, + "minecraft:straight_trunk_placer": { + "protocol_id": 0 + }, + "minecraft:upwards_branching_trunk_placer": { + "protocol_id": 7 + } + }, + "protocol_id": 47 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/adventuring_time.json b/data/generated/V26_2/data/minecraft/advancement/adventure/adventuring_time.json new file mode 100644 index 00000000..b6f1819f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/adventuring_time.json @@ -0,0 +1,1068 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "minecraft:badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:bamboo_jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:bamboo_jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:beach": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:beach" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:birch_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:birch_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:cherry_grove": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:cherry_grove" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:cold_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:cold_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:dark_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:dark_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_cold_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:deep_cold_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_dark": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:deep_dark" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_frozen_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:deep_frozen_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_lukewarm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:deep_lukewarm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:deep_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:deep_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:desert": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:desert" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:dripstone_caves": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:dripstone_caves" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:eroded_badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:eroded_badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:flower_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:flower_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:frozen_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:frozen_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:frozen_river": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:frozen_river" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:grove": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:grove" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:ice_spikes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:ice_spikes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:jagged_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:jagged_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:lukewarm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:lukewarm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:lush_caves": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:lush_caves" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:mangrove_swamp": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:mangrove_swamp" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:meadow": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:meadow" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:mushroom_fields": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:mushroom_fields" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_birch_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:old_growth_birch_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_pine_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:old_growth_pine_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:old_growth_spruce_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:old_growth_spruce_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:pale_garden": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:pale_garden" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:river": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:river" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:savanna": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:savanna" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:savanna_plateau": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:savanna_plateau" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_beach": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:snowy_beach" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:snowy_plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_slopes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:snowy_slopes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:snowy_taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:snowy_taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:sparse_jungle": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:sparse_jungle" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:stony_peaks": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:stony_peaks" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:stony_shore": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:stony_shore" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:sulfur_caves": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:sulfur_caves" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:sunflower_plains": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:sunflower_plains" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:swamp": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:swamp" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:taiga": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:taiga" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:warm_ocean": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:warm_ocean" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:windswept_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_gravelly_hills": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:windswept_gravelly_hills" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_hills": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:windswept_hills" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:windswept_savanna": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:windswept_savanna" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:wooded_badlands": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:wooded_badlands" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.adventuring_time.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:diamond_boots" + }, + "title": { + "translate": "advancements.adventure.adventuring_time.title" + } + }, + "requirements": [ + [ + "minecraft:mushroom_fields" + ], + [ + "minecraft:deep_frozen_ocean" + ], + [ + "minecraft:frozen_ocean" + ], + [ + "minecraft:deep_cold_ocean" + ], + [ + "minecraft:cold_ocean" + ], + [ + "minecraft:deep_ocean" + ], + [ + "minecraft:ocean" + ], + [ + "minecraft:deep_lukewarm_ocean" + ], + [ + "minecraft:lukewarm_ocean" + ], + [ + "minecraft:warm_ocean" + ], + [ + "minecraft:stony_shore" + ], + [ + "minecraft:swamp" + ], + [ + "minecraft:mangrove_swamp" + ], + [ + "minecraft:snowy_slopes" + ], + [ + "minecraft:snowy_plains" + ], + [ + "minecraft:snowy_beach" + ], + [ + "minecraft:windswept_gravelly_hills" + ], + [ + "minecraft:grove" + ], + [ + "minecraft:windswept_hills" + ], + [ + "minecraft:snowy_taiga" + ], + [ + "minecraft:windswept_forest" + ], + [ + "minecraft:taiga" + ], + [ + "minecraft:plains" + ], + [ + "minecraft:meadow" + ], + [ + "minecraft:beach" + ], + [ + "minecraft:forest" + ], + [ + "minecraft:old_growth_spruce_taiga" + ], + [ + "minecraft:flower_forest" + ], + [ + "minecraft:birch_forest" + ], + [ + "minecraft:dark_forest" + ], + [ + "minecraft:pale_garden" + ], + [ + "minecraft:savanna_plateau" + ], + [ + "minecraft:savanna" + ], + [ + "minecraft:jungle" + ], + [ + "minecraft:badlands" + ], + [ + "minecraft:desert" + ], + [ + "minecraft:wooded_badlands" + ], + [ + "minecraft:jagged_peaks" + ], + [ + "minecraft:stony_peaks" + ], + [ + "minecraft:frozen_river" + ], + [ + "minecraft:river" + ], + [ + "minecraft:ice_spikes" + ], + [ + "minecraft:old_growth_pine_taiga" + ], + [ + "minecraft:sunflower_plains" + ], + [ + "minecraft:old_growth_birch_forest" + ], + [ + "minecraft:sparse_jungle" + ], + [ + "minecraft:bamboo_jungle" + ], + [ + "minecraft:eroded_badlands" + ], + [ + "minecraft:windswept_savanna" + ], + [ + "minecraft:cherry_grove" + ], + [ + "minecraft:frozen_peaks" + ], + [ + "minecraft:dripstone_caves" + ], + [ + "minecraft:lush_caves" + ], + [ + "minecraft:sulfur_caves" + ], + [ + "minecraft:deep_dark" + ] + ], + "rewards": { + "experience": 500 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/arbalistic.json b/data/generated/V26_2/data/minecraft/advancement/adventure/arbalistic.json new file mode 100644 index 00000000..09f64c20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/arbalistic.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "arbalistic": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "unique_entity_types": 5 + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.arbalistic.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.arbalistic.title" + } + }, + "requirements": [ + [ + "arbalistic" + ] + ], + "rewards": { + "experience": 85 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/avoid_vibration.json b/data/generated/V26_2/data/minecraft/advancement/adventure/avoid_vibration.json new file mode 100644 index 00000000..528183a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/avoid_vibration.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "avoid_vibration": { + "trigger": "minecraft:avoid_vibration" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.avoid_vibration.description" + }, + "icon": { + "id": "minecraft:sculk_sensor" + }, + "title": { + "translate": "advancements.adventure.avoid_vibration.title" + } + }, + "requirements": [ + [ + "avoid_vibration" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/blowback.json b/data/generated/V26_2/data/minecraft/advancement/adventure/blowback.json new file mode 100644 index 00000000..b56eecc8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/blowback.json @@ -0,0 +1,51 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "blowback": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:breeze" + } + } + ], + "killing_blow": { + "direct_entity": { + "minecraft:entity_type": "minecraft:breeze_wind_charge" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.blowback.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:wind_charge" + }, + "title": { + "translate": "advancements.adventure.blowback.title" + } + }, + "requirements": [ + [ + "blowback" + ] + ], + "rewards": { + "experience": 40 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/brush_armadillo.json b/data/generated/V26_2/data/minecraft/advancement/adventure/brush_armadillo.json new file mode 100644 index 00000000..65762c7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/brush_armadillo.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "brush_armadillo": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:armadillo" + } + } + ], + "item": { + "items": "minecraft:brush" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.brush_armadillo.description" + }, + "icon": { + "id": "minecraft:armadillo_scute" + }, + "title": { + "translate": "advancements.adventure.brush_armadillo.title" + } + }, + "requirements": [ + [ + "brush_armadillo" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/bullseye.json b/data/generated/V26_2/data/minecraft/advancement/adventure/bullseye.json new file mode 100644 index 00000000..9c235d52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/bullseye.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:adventure/shoot_arrow", + "criteria": { + "bullseye": { + "conditions": { + "projectile": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:distance": { + "horizontal": { + "min": 30.0 + } + } + } + } + ], + "signal_strength": 15 + }, + "trigger": "minecraft:target_hit" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.bullseye.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:target" + }, + "title": { + "translate": "advancements.adventure.bullseye.title" + } + }, + "requirements": [ + [ + "bullseye" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json b/data/generated/V26_2/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json new file mode 100644 index 00000000..1d126aba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/craft_decorated_pot_using_only_sherds.json @@ -0,0 +1,50 @@ +{ + "parent": "minecraft:adventure/salvage_sherd", + "criteria": { + "pot_crafted_using_only_sherds": { + "conditions": { + "ingredients": [ + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + }, + { + "items": "#minecraft:decorated_pot_sherds" + } + ], + "recipe_id": "minecraft:decorated_pot" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description" + }, + "icon": { + "components": { + "minecraft:pot_decorations": [ + "minecraft:brick", + "minecraft:heart_pottery_sherd", + "minecraft:brick", + "minecraft:explorer_pottery_sherd" + ] + }, + "id": "minecraft:decorated_pot" + }, + "title": { + "translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title" + } + }, + "requirements": [ + [ + "pot_crafted_using_only_sherds" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/crafters_crafting_crafters.json b/data/generated/V26_2/data/minecraft/advancement/adventure/crafters_crafting_crafters.json new file mode 100644 index 00000000..1fdf0106 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/crafters_crafting_crafters.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "crafter_crafted_crafter": { + "conditions": { + "recipe_id": "minecraft:crafter" + }, + "trigger": "minecraft:crafter_recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.crafters_crafting_crafters.description" + }, + "icon": { + "id": "minecraft:crafter" + }, + "title": { + "translate": "advancements.adventure.crafters_crafting_crafters.title" + } + }, + "requirements": [ + [ + "crafter_crafted_crafter" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/fall_from_world_height.json b/data/generated/V26_2/data/minecraft/advancement/adventure/fall_from_world_height.json new file mode 100644 index 00000000..11cdeb16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/fall_from_world_height.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "fall_from_world_height": { + "conditions": { + "distance": { + "y": { + "min": 379.0 + } + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "position": { + "y": { + "max": -59.0 + } + } + } + } + } + ], + "start_position": { + "position": { + "y": { + "min": 319.0 + } + } + } + }, + "trigger": "minecraft:fall_from_height" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.fall_from_world_height.description" + }, + "icon": { + "id": "minecraft:water_bucket" + }, + "title": { + "translate": "advancements.adventure.fall_from_world_height.title" + } + }, + "requirements": [ + [ + "fall_from_world_height" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/heart_transplanter.json b/data/generated/V26_2/data/minecraft/advancement/adventure/heart_transplanter.json new file mode 100644 index 00000000..25ca3de5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/heart_transplanter.json @@ -0,0 +1,304 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "place_creaking_heart_awake": { + "conditions": { + "location": [ + { + "block": "minecraft:creaking_heart", + "condition": "minecraft:block_state_property", + "properties": { + "creaking_heart_state": "awake" + } + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "place_creaking_heart_dormant": { + "conditions": { + "location": [ + { + "block": "minecraft:creaking_heart", + "condition": "minecraft:block_state_property", + "properties": { + "creaking_heart_state": "dormant" + } + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "place_pale_oak_log": { + "conditions": { + "location": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "y" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "y" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "z" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "z" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:creaking_heart", + "state": { + "axis": "x" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 2, + "predicate": { + "block": { + "blocks": "#minecraft:pale_oak_logs", + "state": { + "axis": "x" + } + } + } + } + ] + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.heart_transplanter.description" + }, + "icon": { + "id": "minecraft:creaking_heart" + }, + "title": { + "translate": "advancements.adventure.heart_transplanter.title" + } + }, + "requirements": [ + [ + "place_creaking_heart_dormant", + "place_creaking_heart_awake", + "place_pale_oak_log" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/hero_of_the_village.json b/data/generated/V26_2/data/minecraft/advancement/adventure/hero_of_the_village.json new file mode 100644 index 00000000..eb8ebfd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/hero_of_the_village.json @@ -0,0 +1,75 @@ +{ + "parent": "minecraft:adventure/voluntary_exile", + "criteria": { + "hero_of_the_village": { + "trigger": "minecraft:hero_of_the_village" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.hero_of_the_village.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + }, + "minecraft:rarity": "uncommon", + "minecraft:tooltip_display": { + "hidden_components": [ + "minecraft:banner_patterns" + ] + } + }, + "id": "minecraft:white_banner" + }, + "title": { + "translate": "advancements.adventure.hero_of_the_village.title" + } + }, + "requirements": [ + [ + "hero_of_the_village" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/honey_block_slide.json b/data/generated/V26_2/data/minecraft/advancement/adventure/honey_block_slide.json new file mode 100644 index 00000000..2d1c59bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/honey_block_slide.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "honey_block_slide": { + "conditions": { + "block": "minecraft:honey_block" + }, + "trigger": "minecraft:slide_down_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.honey_block_slide.description" + }, + "icon": { + "id": "minecraft:honey_block" + }, + "title": { + "translate": "advancements.adventure.honey_block_slide.title" + } + }, + "requirements": [ + [ + "honey_block_slide" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/kill_a_mob.json b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_a_mob.json new file mode 100644 index 00000000..f57f9180 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_a_mob.json @@ -0,0 +1,636 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "minecraft:blaze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:blaze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:bogged": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:bogged" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:breeze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:breeze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:camel_husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:camel_husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:cave_spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:cave_spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creaking": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:creaking" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creeper": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:creeper" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:drowned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:drowned" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:elder_guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:elder_guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ender_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:enderman": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:enderman" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:endermite": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:endermite" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:evoker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:evoker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ghast" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:hoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:magma_cube": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:magma_cube" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:parched": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:parched" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:phantom": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:phantom" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin_brute": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin_brute" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:pillager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:pillager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ravager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ravager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:shulker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:shulker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:silverfish": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:silverfish" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:slime": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:slime" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:stray": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:stray" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vex": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:vex" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vindicator": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:vindicator" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:witch": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:witch" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither_skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_horse": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_horse" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_nautilus": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_nautilus" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_villager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_villager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombified_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombified_piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_a_mob.description" + }, + "icon": { + "id": "minecraft:iron_sword" + }, + "title": { + "translate": "advancements.adventure.kill_a_mob.title" + } + }, + "requirements": [ + [ + "minecraft:blaze", + "minecraft:bogged", + "minecraft:breeze", + "minecraft:camel_husk", + "minecraft:cave_spider", + "minecraft:creaking", + "minecraft:creeper", + "minecraft:drowned", + "minecraft:elder_guardian", + "minecraft:ender_dragon", + "minecraft:enderman", + "minecraft:endermite", + "minecraft:evoker", + "minecraft:ghast", + "minecraft:guardian", + "minecraft:hoglin", + "minecraft:husk", + "minecraft:magma_cube", + "minecraft:parched", + "minecraft:phantom", + "minecraft:piglin", + "minecraft:piglin_brute", + "minecraft:pillager", + "minecraft:ravager", + "minecraft:shulker", + "minecraft:silverfish", + "minecraft:skeleton", + "minecraft:slime", + "minecraft:spider", + "minecraft:stray", + "minecraft:vex", + "minecraft:vindicator", + "minecraft:witch", + "minecraft:wither_skeleton", + "minecraft:wither", + "minecraft:zoglin", + "minecraft:zombie_villager", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombified_piglin", + "minecraft:zombie_nautilus" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/kill_all_mobs.json b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_all_mobs.json new file mode 100644 index 00000000..b1d22275 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_all_mobs.json @@ -0,0 +1,720 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "minecraft:blaze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:blaze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:bogged": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:bogged" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:breeze": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:breeze" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:camel_husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:camel_husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:cave_spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:cave_spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creaking": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:creaking" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:creeper": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:creeper" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:drowned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:drowned" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:elder_guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:elder_guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ender_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:enderman": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:enderman" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:endermite": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:endermite" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:evoker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:evoker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ghast" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:guardian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:guardian" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:hoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:husk": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:husk" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:magma_cube": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:magma_cube" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:parched": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:parched" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:phantom": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:phantom" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:piglin_brute": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin_brute" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:pillager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:pillager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:ravager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ravager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:shulker": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:shulker" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:silverfish": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:silverfish" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:slime": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:slime" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:spider": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:spider" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:stray": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:stray" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vex": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:vex" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:vindicator": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:vindicator" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:witch": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:witch" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:wither_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither_skeleton" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zoglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zoglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_horse": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_horse" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_nautilus": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_nautilus" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombie_villager": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie_villager" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + }, + "minecraft:zombified_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombified_piglin" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_all_mobs.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:diamond_sword" + }, + "title": { + "translate": "advancements.adventure.kill_all_mobs.title" + } + }, + "requirements": [ + [ + "minecraft:blaze" + ], + [ + "minecraft:bogged" + ], + [ + "minecraft:breeze" + ], + [ + "minecraft:camel_husk" + ], + [ + "minecraft:cave_spider" + ], + [ + "minecraft:creaking" + ], + [ + "minecraft:creeper" + ], + [ + "minecraft:drowned" + ], + [ + "minecraft:elder_guardian" + ], + [ + "minecraft:ender_dragon" + ], + [ + "minecraft:enderman" + ], + [ + "minecraft:endermite" + ], + [ + "minecraft:evoker" + ], + [ + "minecraft:ghast" + ], + [ + "minecraft:guardian" + ], + [ + "minecraft:hoglin" + ], + [ + "minecraft:husk" + ], + [ + "minecraft:magma_cube" + ], + [ + "minecraft:parched" + ], + [ + "minecraft:phantom" + ], + [ + "minecraft:piglin" + ], + [ + "minecraft:piglin_brute" + ], + [ + "minecraft:pillager" + ], + [ + "minecraft:ravager" + ], + [ + "minecraft:shulker" + ], + [ + "minecraft:silverfish" + ], + [ + "minecraft:skeleton" + ], + [ + "minecraft:slime" + ], + [ + "minecraft:spider" + ], + [ + "minecraft:stray" + ], + [ + "minecraft:vex" + ], + [ + "minecraft:vindicator" + ], + [ + "minecraft:witch" + ], + [ + "minecraft:wither_skeleton" + ], + [ + "minecraft:wither" + ], + [ + "minecraft:zoglin" + ], + [ + "minecraft:zombie_villager" + ], + [ + "minecraft:zombie" + ], + [ + "minecraft:zombie_horse" + ], + [ + "minecraft:zombified_piglin" + ], + [ + "minecraft:zombie_nautilus" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json new file mode 100644 index 00000000..cdd7d162 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/kill_mob_near_sculk_catalyst.json @@ -0,0 +1,26 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "kill_mob_near_sculk_catalyst": { + "trigger": "minecraft:kill_mob_near_sculk_catalyst" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:sculk_catalyst" + }, + "title": { + "translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title" + } + }, + "requirements": [ + [ + "kill_mob_near_sculk_catalyst" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/lighten_up.json b/data/generated/V26_2/data/minecraft/advancement/adventure/lighten_up.json new file mode 100644 index 00000000..b60529f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/lighten_up.json @@ -0,0 +1,61 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "lighten_up": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb" + ], + "state": { + "lit": "true" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:wooden_axe", + "minecraft:golden_axe", + "minecraft:stone_axe", + "minecraft:copper_axe", + "minecraft:iron_axe", + "minecraft:diamond_axe", + "minecraft:netherite_axe" + ] + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.lighten_up.description" + }, + "icon": { + "id": "minecraft:copper_bulb" + }, + "title": { + "translate": "advancements.adventure.lighten_up.title" + } + }, + "requirements": [ + [ + "lighten_up" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json b/data/generated/V26_2/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json new file mode 100644 index 00000000..d0993422 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/lightning_rod_with_villager_no_fire.json @@ -0,0 +1,52 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "lightning_rod_with_villager_no_fire": { + "conditions": { + "bystander": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:villager" + } + } + ], + "lightning": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:distance": { + "absolute": { + "max": 30.0 + } + }, + "minecraft:type_specific/lightning": { + "blocks_set_on_fire": 0 + } + } + } + ] + }, + "trigger": "minecraft:lightning_strike" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description" + }, + "icon": { + "id": "minecraft:lightning_rod" + }, + "title": { + "translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title" + } + }, + "requirements": [ + [ + "lightning_rod_with_villager_no_fire" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/minecraft_trials_edition.json b/data/generated/V26_2/data/minecraft/advancement/adventure/minecraft_trials_edition.json new file mode 100644 index 00000000..9afee83e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/minecraft_trials_edition.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "minecraft_trials_edition": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "structures": "minecraft:trial_chambers" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.minecraft_trials_edition.description" + }, + "icon": { + "id": "minecraft:chiseled_tuff" + }, + "title": { + "translate": "advancements.adventure.minecraft_trials_edition.title" + } + }, + "requirements": [ + [ + "minecraft_trials_edition" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/ol_betsy.json b/data/generated/V26_2/data/minecraft/advancement/adventure/ol_betsy.json new file mode 100644 index 00000000..589862d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/ol_betsy.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "shot_crossbow": { + "conditions": { + "item": { + "items": "minecraft:crossbow" + } + }, + "trigger": "minecraft:shot_crossbow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.ol_betsy.description" + }, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.ol_betsy.title" + } + }, + "requirements": [ + [ + "shot_crossbow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/overoverkill.json b/data/generated/V26_2/data/minecraft/advancement/adventure/overoverkill.json new file mode 100644 index 00000000..c84af3c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/overoverkill.json @@ -0,0 +1,52 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "overoverkill": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "minecraft:entity_type": "minecraft:player", + "minecraft:equipment": { + "mainhand": { + "items": "minecraft:mace" + } + } + }, + "tags": [ + { + "expected": true, + "id": "minecraft:mace_smash" + } + ] + }, + "dealt": { + "min": 100.0 + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.overoverkill.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:mace" + }, + "title": { + "translate": "advancements.adventure.overoverkill.title" + } + }, + "requirements": [ + [ + "overoverkill" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json b/data/generated/V26_2/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json new file mode 100644 index 00000000..cde0a874 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/play_jukebox_in_meadows.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "play_jukebox_in_meadows": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": "minecraft:meadow", + "block": { + "blocks": "minecraft:jukebox" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:jukebox_playable": {} + } + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.play_jukebox_in_meadows.description" + }, + "icon": { + "id": "minecraft:jukebox" + }, + "title": { + "translate": "advancements.adventure.play_jukebox_in_meadows.title" + } + }, + "requirements": [ + [ + "play_jukebox_in_meadows" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json b/data/generated/V26_2/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json new file mode 100644 index 00000000..bc61e8d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/read_power_of_chiseled_bookshelf.json @@ -0,0 +1,183 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "chiseled_bookshelf": { + "conditions": { + "location": [ + { + "block": "minecraft:chiseled_bookshelf", + "condition": "minecraft:block_state_property" + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "north" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "south" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "west" + } + } + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:comparator", + "state": { + "facing": "east" + } + } + } + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "comparator": { + "conditions": { + "location": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "north" + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": -1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "south" + } + }, + { + "condition": "minecraft:location_check", + "offsetZ": 1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "west" + } + }, + { + "condition": "minecraft:location_check", + "offsetX": -1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "block": "minecraft:comparator", + "condition": "minecraft:block_state_property", + "properties": { + "facing": "east" + } + }, + { + "condition": "minecraft:location_check", + "offsetX": 1, + "predicate": { + "block": { + "blocks": "minecraft:chiseled_bookshelf" + } + } + } + ] + } + ] + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description" + }, + "icon": { + "id": "minecraft:chiseled_bookshelf" + }, + "title": { + "translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title" + } + }, + "requirements": [ + [ + "chiseled_bookshelf", + "comparator" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/revaulting.json b/data/generated/V26_2/data/minecraft/advancement/adventure/revaulting.json new file mode 100644 index 00000000..b0d1a688 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/revaulting.json @@ -0,0 +1,47 @@ +{ + "parent": "minecraft:adventure/under_lock_and_key", + "criteria": { + "revaulting": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:vault", + "state": { + "ominous": "true" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:ominous_trial_key" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.revaulting.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:ominous_trial_key" + }, + "title": { + "translate": "advancements.adventure.revaulting.title" + } + }, + "requirements": [ + [ + "revaulting" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/root.json b/data/generated/V26_2/data/minecraft/advancement/adventure/root.json new file mode 100644 index 00000000..32afd18b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/root.json @@ -0,0 +1,31 @@ +{ + "criteria": { + "killed_by_something": { + "trigger": "minecraft:entity_killed_player" + }, + "killed_something": { + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/adventure", + "description": { + "translate": "advancements.adventure.root.description" + }, + "icon": { + "id": "minecraft:map" + }, + "show_toast": false, + "title": { + "translate": "advancements.adventure.root.title" + } + }, + "requirements": [ + [ + "killed_something", + "killed_by_something" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/salvage_sherd.json b/data/generated/V26_2/data/minecraft/advancement/adventure/salvage_sherd.json new file mode 100644 index 00000000..43db73ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/salvage_sherd.json @@ -0,0 +1,76 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "desert_pyramid": { + "conditions": { + "loot_table": "minecraft:archaeology/desert_pyramid" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "desert_well": { + "conditions": { + "loot_table": "minecraft:archaeology/desert_well" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "has_sherd": { + "conditions": { + "items": [ + { + "items": "#minecraft:decorated_pot_sherds" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "ocean_ruin_cold": { + "conditions": { + "loot_table": "minecraft:archaeology/ocean_ruin_cold" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "ocean_ruin_warm": { + "conditions": { + "loot_table": "minecraft:archaeology/ocean_ruin_warm" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "trail_ruins_common": { + "conditions": { + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "trail_ruins_rare": { + "conditions": { + "loot_table": "minecraft:archaeology/trail_ruins_rare" + }, + "trigger": "minecraft:player_generates_container_loot" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.salvage_sherd.description" + }, + "icon": { + "id": "minecraft:brush" + }, + "title": { + "translate": "advancements.adventure.salvage_sherd.title" + } + }, + "requirements": [ + [ + "desert_pyramid", + "desert_well", + "ocean_ruin_cold", + "ocean_ruin_warm", + "trail_ruins_rare", + "trail_ruins_common" + ], + [ + "has_sherd" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/shoot_arrow.json b/data/generated/V26_2/data/minecraft/advancement/adventure/shoot_arrow.json new file mode 100644 index 00000000..b5f3883c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/shoot_arrow.json @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "shot_arrow": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "minecraft:entity_type": "#minecraft:arrows" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.shoot_arrow.description" + }, + "icon": { + "id": "minecraft:bow" + }, + "title": { + "translate": "advancements.adventure.shoot_arrow.title" + } + }, + "requirements": [ + [ + "shot_arrow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/sleep_in_bed.json b/data/generated/V26_2/data/minecraft/advancement/adventure/sleep_in_bed.json new file mode 100644 index 00000000..62ec4f0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/sleep_in_bed.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "slept_in_bed": { + "trigger": "minecraft:slept_in_bed" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.sleep_in_bed.description" + }, + "icon": { + "id": "minecraft:red_bed" + }, + "title": { + "translate": "advancements.adventure.sleep_in_bed.title" + } + }, + "requirements": [ + [ + "slept_in_bed" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/sniper_duel.json b/data/generated/V26_2/data/minecraft/advancement/adventure/sniper_duel.json new file mode 100644 index 00000000..a51c7daf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/sniper_duel.json @@ -0,0 +1,53 @@ +{ + "parent": "minecraft:adventure/shoot_arrow", + "criteria": { + "killed_skeleton": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:distance": { + "horizontal": { + "min": 50.0 + } + }, + "minecraft:entity_type": "minecraft:skeleton" + } + } + ], + "killing_blow": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.sniper_duel.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:arrow" + }, + "title": { + "translate": "advancements.adventure.sniper_duel.title" + } + }, + "requirements": [ + [ + "killed_skeleton" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/spear_many_mobs.json b/data/generated/V26_2/data/minecraft/advancement/adventure/spear_many_mobs.json new file mode 100644 index 00000000..3dfff22b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/spear_many_mobs.json @@ -0,0 +1,29 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "spear_many_mobs": { + "conditions": { + "count": 5 + }, + "trigger": "minecraft:spear_mobs" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spear_many_mobs.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:iron_spear" + }, + "title": { + "translate": "advancements.adventure.spear_many_mobs.title" + } + }, + "requirements": [ + [ + "spear_many_mobs" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_dragon.json b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_dragon.json new file mode 100644 index 00000000..faf64fed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_dragon.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:adventure/spyglass_at_ghast", + "criteria": { + "spyglass_at_dragon": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": { + "looking_at": { + "minecraft:entity_type": "minecraft:ender_dragon" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_dragon.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_dragon.title" + } + }, + "requirements": [ + [ + "spyglass_at_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_ghast.json b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_ghast.json new file mode 100644 index 00000000..8225b908 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_ghast.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:adventure/spyglass_at_parrot", + "criteria": { + "spyglass_at_ghast": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": { + "looking_at": { + "minecraft:entity_type": "minecraft:ghast" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_ghast.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_ghast.title" + } + }, + "requirements": [ + [ + "spyglass_at_ghast" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_parrot.json b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_parrot.json new file mode 100644 index 00000000..8b99f254 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/spyglass_at_parrot.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "spyglass_at_parrot": { + "conditions": { + "item": { + "items": "minecraft:spyglass" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": { + "looking_at": { + "minecraft:entity_type": "minecraft:parrot" + } + } + } + } + ] + }, + "trigger": "minecraft:using_item" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.spyglass_at_parrot.description" + }, + "icon": { + "id": "minecraft:spyglass" + }, + "title": { + "translate": "advancements.adventure.spyglass_at_parrot.title" + } + }, + "requirements": [ + [ + "spyglass_at_parrot" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/summon_iron_golem.json b/data/generated/V26_2/data/minecraft/advancement/adventure/summon_iron_golem.json new file mode 100644 index 00000000..0f3b07cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/summon_iron_golem.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:adventure/trade", + "criteria": { + "summoned_golem": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:iron_golem" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.summon_iron_golem.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:carved_pumpkin" + }, + "title": { + "translate": "advancements.adventure.summon_iron_golem.title" + } + }, + "requirements": [ + [ + "summoned_golem" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/throw_trident.json b/data/generated/V26_2/data/minecraft/advancement/adventure/throw_trident.json new file mode 100644 index 00000000..23fb0654 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/throw_trident.json @@ -0,0 +1,40 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "shot_trident": { + "conditions": { + "damage": { + "type": { + "direct_entity": { + "minecraft:entity_type": "minecraft:trident" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + } + }, + "trigger": "minecraft:player_hurt_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.throw_trident.description" + }, + "icon": { + "id": "minecraft:trident" + }, + "title": { + "translate": "advancements.adventure.throw_trident.title" + } + }, + "requirements": [ + [ + "shot_trident" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/totem_of_undying.json b/data/generated/V26_2/data/minecraft/advancement/adventure/totem_of_undying.json new file mode 100644 index 00000000..c72949a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/totem_of_undying.json @@ -0,0 +1,31 @@ +{ + "parent": "minecraft:adventure/kill_a_mob", + "criteria": { + "used_totem": { + "conditions": { + "item": { + "items": "minecraft:totem_of_undying" + } + }, + "trigger": "minecraft:used_totem" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.totem_of_undying.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:totem_of_undying" + }, + "title": { + "translate": "advancements.adventure.totem_of_undying.title" + } + }, + "requirements": [ + [ + "used_totem" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/trade.json b/data/generated/V26_2/data/minecraft/advancement/adventure/trade.json new file mode 100644 index 00000000..2c62d57e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/trade.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "traded": { + "trigger": "minecraft:villager_trade" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trade.description" + }, + "icon": { + "id": "minecraft:emerald" + }, + "title": { + "translate": "advancements.adventure.trade.title" + } + }, + "requirements": [ + [ + "traded" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/trade_at_world_height.json b/data/generated/V26_2/data/minecraft/advancement/adventure/trade_at_world_height.json new file mode 100644 index 00000000..5cda69cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/trade_at_world_height.json @@ -0,0 +1,42 @@ +{ + "parent": "minecraft:adventure/trade", + "criteria": { + "trade_at_world_height": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "position": { + "y": { + "min": 319.0 + } + } + } + } + } + ] + }, + "trigger": "minecraft:villager_trade" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trade_at_world_height.description" + }, + "icon": { + "id": "minecraft:emerald" + }, + "title": { + "translate": "advancements.adventure.trade_at_world_height.title" + } + }, + "requirements": [ + [ + "trade_at_world_height" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json b/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json new file mode 100644 index 00000000..bfb72b1a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_all_exclusive_armor_patterns.json @@ -0,0 +1,95 @@ +{ + "parent": "minecraft:adventure/trim_with_any_armor_pattern", + "criteria": { + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:silence_armor_trim_smithing_template" + }, + "title": { + "translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title" + } + }, + "requirements": [ + [ + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim" + ], + [ + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + ] + ], + "rewards": { + "experience": 150 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json b/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json new file mode 100644 index 00000000..c68c568b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/trim_with_any_armor_pattern.json @@ -0,0 +1,147 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:coast_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:dune_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:eye_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:flow_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:host_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + }, + "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim": { + "conditions": { + "recipe_id": "minecraft:wild_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_crafted" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.trim_with_any_armor_pattern.description" + }, + "icon": { + "id": "minecraft:dune_armor_trim_smithing_template" + }, + "title": { + "translate": "advancements.adventure.trim_with_any_armor_pattern.title" + } + }, + "requirements": [ + [ + "armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim", + "armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/two_birds_one_arrow.json b/data/generated/V26_2/data/minecraft/advancement/adventure/two_birds_one_arrow.json new file mode 100644 index 00000000..a9875d35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/two_birds_one_arrow.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "two_birds": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:phantom" + } + } + ], + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:phantom" + } + } + ] + ] + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.two_birds_one_arrow.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.two_birds_one_arrow.title" + } + }, + "requirements": [ + [ + "two_birds" + ] + ], + "rewards": { + "experience": 65 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/under_lock_and_key.json b/data/generated/V26_2/data/minecraft/advancement/adventure/under_lock_and_key.json new file mode 100644 index 00000000..b5598ea2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/under_lock_and_key.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "under_lock_and_key": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:vault", + "state": { + "ominous": "false" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:trial_key" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.under_lock_and_key.description" + }, + "icon": { + "id": "minecraft:trial_key" + }, + "title": { + "translate": "advancements.adventure.under_lock_and_key.title" + } + }, + "requirements": [ + [ + "under_lock_and_key" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/use_lodestone.json b/data/generated/V26_2/data/minecraft/advancement/adventure/use_lodestone.json new file mode 100644 index 00000000..da82e4cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/use_lodestone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "use_lodestone": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:lodestone" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:compass" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.use_lodestone.description" + }, + "icon": { + "id": "minecraft:lodestone" + }, + "title": { + "translate": "advancements.adventure.use_lodestone.title" + } + }, + "requirements": [ + [ + "use_lodestone" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/very_very_frightening.json b/data/generated/V26_2/data/minecraft/advancement/adventure/very_very_frightening.json new file mode 100644 index 00000000..a4aab67b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/very_very_frightening.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:adventure/throw_trident", + "criteria": { + "struck_villager": { + "conditions": { + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:villager" + } + } + ] + ] + }, + "trigger": "minecraft:channeled_lightning" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.very_very_frightening.description" + }, + "icon": { + "id": "minecraft:trident" + }, + "title": { + "translate": "advancements.adventure.very_very_frightening.title" + } + }, + "requirements": [ + [ + "struck_villager" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/voluntary_exile.json b/data/generated/V26_2/data/minecraft/advancement/adventure/voluntary_exile.json new file mode 100644 index 00000000..c8cb5444 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/voluntary_exile.json @@ -0,0 +1,126 @@ +{ + "parent": "minecraft:adventure/root", + "criteria": { + "voluntary_exile": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "#minecraft:raiders", + "minecraft:equipment": { + "head": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + } + }, + "items": "minecraft:white_banner" + } + } + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.voluntary_exile.description" + }, + "hidden": true, + "icon": { + "components": { + "minecraft:banner_patterns": [ + { + "color": "cyan", + "pattern": "minecraft:rhombus" + }, + { + "color": "light_gray", + "pattern": "minecraft:stripe_bottom" + }, + { + "color": "gray", + "pattern": "minecraft:stripe_center" + }, + { + "color": "light_gray", + "pattern": "minecraft:border" + }, + { + "color": "black", + "pattern": "minecraft:stripe_middle" + }, + { + "color": "light_gray", + "pattern": "minecraft:half_horizontal" + }, + { + "color": "light_gray", + "pattern": "minecraft:circle" + }, + { + "color": "black", + "pattern": "minecraft:border" + } + ], + "minecraft:item_name": { + "translate": "block.minecraft.ominous_banner" + }, + "minecraft:rarity": "uncommon", + "minecraft:tooltip_display": { + "hidden_components": [ + "minecraft:banner_patterns" + ] + } + }, + "id": "minecraft:white_banner" + }, + "title": { + "translate": "advancements.adventure.voluntary_exile.title" + } + }, + "requirements": [ + [ + "voluntary_exile" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json b/data/generated/V26_2/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json new file mode 100644 index 00000000..668d91c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/walk_on_powder_snow_with_leather_boots.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:adventure/sleep_in_bed", + "criteria": { + "walk_on_powder_snow_with_leather_boots": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "feet": { + "items": "minecraft:leather_boots" + } + }, + "minecraft:stepping_on": { + "block": { + "blocks": "minecraft:powder_snow" + } + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description" + }, + "icon": { + "id": "minecraft:leather_boots" + }, + "title": { + "translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title" + } + }, + "requirements": [ + [ + "walk_on_powder_snow_with_leather_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/who_needs_rockets.json b/data/generated/V26_2/data/minecraft/advancement/adventure/who_needs_rockets.json new file mode 100644 index 00000000..9776a9df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/who_needs_rockets.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:adventure/minecraft_trials_edition", + "criteria": { + "who_needs_rockets": { + "conditions": { + "cause": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wind_charge" + } + } + ], + "distance": { + "y": { + "min": 7.0 + } + } + }, + "trigger": "minecraft:fall_after_explosion" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.who_needs_rockets.description" + }, + "icon": { + "id": "minecraft:wind_charge" + }, + "title": { + "translate": "advancements.adventure.who_needs_rockets.title" + } + }, + "requirements": [ + [ + "who_needs_rockets" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/adventure/whos_the_pillager_now.json b/data/generated/V26_2/data/minecraft/advancement/adventure/whos_the_pillager_now.json new file mode 100644 index 00000000..2830dc2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/adventure/whos_the_pillager_now.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:adventure/ol_betsy", + "criteria": { + "kill_pillager": { + "conditions": { + "fired_from_weapon": { + "items": "minecraft:crossbow" + }, + "victims": [ + [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:pillager" + } + } + ] + ] + }, + "trigger": "minecraft:killed_by_arrow" + } + }, + "display": { + "description": { + "translate": "advancements.adventure.whos_the_pillager_now.description" + }, + "icon": { + "id": "minecraft:crossbow" + }, + "title": { + "translate": "advancements.adventure.whos_the_pillager_now.title" + } + }, + "requirements": [ + [ + "kill_pillager" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/dragon_breath.json b/data/generated/V26_2/data/minecraft/advancement/end/dragon_breath.json new file mode 100644 index 00000000..a204c7eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/dragon_breath.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "dragon_breath": { + "conditions": { + "items": [ + { + "items": "minecraft:dragon_breath" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.dragon_breath.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:dragon_breath" + }, + "title": { + "translate": "advancements.end.dragon_breath.title" + } + }, + "requirements": [ + [ + "dragon_breath" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/dragon_egg.json b/data/generated/V26_2/data/minecraft/advancement/end/dragon_egg.json new file mode 100644 index 00000000..96c36693 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/dragon_egg.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "dragon_egg": { + "conditions": { + "items": [ + { + "items": "minecraft:dragon_egg" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.dragon_egg.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:dragon_egg" + }, + "title": { + "translate": "advancements.end.dragon_egg.title" + } + }, + "requirements": [ + [ + "dragon_egg" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/elytra.json b/data/generated/V26_2/data/minecraft/advancement/end/elytra.json new file mode 100644 index 00000000..53739195 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/elytra.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:end/find_end_city", + "criteria": { + "elytra": { + "conditions": { + "items": [ + { + "items": "minecraft:elytra" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.end.elytra.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:elytra" + }, + "title": { + "translate": "advancements.end.elytra.title" + } + }, + "requirements": [ + [ + "elytra" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/enter_end_gateway.json b/data/generated/V26_2/data/minecraft/advancement/end/enter_end_gateway.json new file mode 100644 index 00000000..2f8b6cb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/enter_end_gateway.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "entered_end_gateway": { + "conditions": { + "block": "minecraft:end_gateway" + }, + "trigger": "minecraft:enter_block" + } + }, + "display": { + "description": { + "translate": "advancements.end.enter_end_gateway.description" + }, + "icon": { + "id": "minecraft:ender_pearl" + }, + "title": { + "translate": "advancements.end.enter_end_gateway.title" + } + }, + "requirements": [ + [ + "entered_end_gateway" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/find_end_city.json b/data/generated/V26_2/data/minecraft/advancement/end/find_end_city.json new file mode 100644 index 00000000..82faae32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/find_end_city.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:end/enter_end_gateway", + "criteria": { + "in_city": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "structures": "minecraft:end_city" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.end.find_end_city.description" + }, + "icon": { + "id": "minecraft:purpur_block" + }, + "title": { + "translate": "advancements.end.find_end_city.title" + } + }, + "requirements": [ + [ + "in_city" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/kill_dragon.json b/data/generated/V26_2/data/minecraft/advancement/end/kill_dragon.json new file mode 100644 index 00000000..8850c8f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/kill_dragon.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:end/root", + "criteria": { + "killed_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.end.kill_dragon.description" + }, + "icon": { + "id": "minecraft:dragon_head" + }, + "title": { + "translate": "advancements.end.kill_dragon.title" + } + }, + "requirements": [ + [ + "killed_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/levitate.json b/data/generated/V26_2/data/minecraft/advancement/end/levitate.json new file mode 100644 index 00000000..43105568 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/levitate.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:end/find_end_city", + "criteria": { + "levitated": { + "conditions": { + "distance": { + "y": { + "min": 50.0 + } + } + }, + "trigger": "minecraft:levitation" + } + }, + "display": { + "description": { + "translate": "advancements.end.levitate.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:shulker_shell" + }, + "title": { + "translate": "advancements.end.levitate.title" + } + }, + "requirements": [ + [ + "levitated" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/respawn_dragon.json b/data/generated/V26_2/data/minecraft/advancement/end/respawn_dragon.json new file mode 100644 index 00000000..a1f469d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/respawn_dragon.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:end/kill_dragon", + "criteria": { + "summoned_dragon": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ender_dragon" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.end.respawn_dragon.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:end_crystal" + }, + "title": { + "translate": "advancements.end.respawn_dragon.title" + } + }, + "requirements": [ + [ + "summoned_dragon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/end/root.json b/data/generated/V26_2/data/minecraft/advancement/end/root.json new file mode 100644 index 00000000..fae702c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/end/root.json @@ -0,0 +1,30 @@ +{ + "criteria": { + "entered_end": { + "conditions": { + "to": "minecraft:the_end" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/end", + "description": { + "translate": "advancements.end.root.description" + }, + "icon": { + "id": "minecraft:end_stone" + }, + "show_toast": false, + "title": { + "translate": "advancements.end.root.title" + } + }, + "requirements": [ + [ + "entered_end" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json new file mode 100644 index 00000000..c1cebdb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_cake_to_note_block.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:husbandry/allay_deliver_item_to_player", + "criteria": { + "allay_deliver_cake_to_note_block": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:note_block" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:cake" + } + } + ] + }, + "trigger": "minecraft:allay_drop_item_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:note_block" + }, + "title": { + "translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title" + } + }, + "requirements": [ + [ + "allay_deliver_cake_to_note_block" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json new file mode 100644 index 00000000..0b7228a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/allay_deliver_item_to_player.json @@ -0,0 +1,37 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "allay_deliver_item_to_player": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:allay" + } + } + ] + }, + "trigger": "minecraft:thrown_item_picked_up_by_player" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.allay_deliver_item_to_player.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:cookie" + }, + "title": { + "translate": "advancements.husbandry.allay_deliver_item_to_player.title" + } + }, + "requirements": [ + [ + "allay_deliver_item_to_player" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json new file mode 100644 index 00000000..de9ba72a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/axolotl_in_a_bucket.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:husbandry/tactical_fishing", + "criteria": { + "axolotl_bucket": { + "conditions": { + "item": { + "items": "minecraft:axolotl_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.axolotl_in_a_bucket.description" + }, + "icon": { + "id": "minecraft:axolotl_bucket" + }, + "title": { + "translate": "advancements.husbandry.axolotl_in_a_bucket.title" + } + }, + "requirements": [ + [ + "axolotl_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/balanced_diet.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/balanced_diet.json new file mode 100644 index 00000000..9760a72c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/balanced_diet.json @@ -0,0 +1,463 @@ +{ + "parent": "minecraft:husbandry/plant_seed", + "criteria": { + "apple": { + "conditions": { + "item": { + "items": "minecraft:apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "baked_potato": { + "conditions": { + "item": { + "items": "minecraft:baked_potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "beef": { + "conditions": { + "item": { + "items": "minecraft:beef" + } + }, + "trigger": "minecraft:consume_item" + }, + "beetroot": { + "conditions": { + "item": { + "items": "minecraft:beetroot" + } + }, + "trigger": "minecraft:consume_item" + }, + "beetroot_soup": { + "conditions": { + "item": { + "items": "minecraft:beetroot_soup" + } + }, + "trigger": "minecraft:consume_item" + }, + "bread": { + "conditions": { + "item": { + "items": "minecraft:bread" + } + }, + "trigger": "minecraft:consume_item" + }, + "carrot": { + "conditions": { + "item": { + "items": "minecraft:carrot" + } + }, + "trigger": "minecraft:consume_item" + }, + "chicken": { + "conditions": { + "item": { + "items": "minecraft:chicken" + } + }, + "trigger": "minecraft:consume_item" + }, + "chorus_fruit": { + "conditions": { + "item": { + "items": "minecraft:chorus_fruit" + } + }, + "trigger": "minecraft:consume_item" + }, + "cod": { + "conditions": { + "item": { + "items": "minecraft:cod" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_beef": { + "conditions": { + "item": { + "items": "minecraft:cooked_beef" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_chicken": { + "conditions": { + "item": { + "items": "minecraft:cooked_chicken" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_cod": { + "conditions": { + "item": { + "items": "minecraft:cooked_cod" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_mutton": { + "conditions": { + "item": { + "items": "minecraft:cooked_mutton" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_porkchop": { + "conditions": { + "item": { + "items": "minecraft:cooked_porkchop" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_rabbit": { + "conditions": { + "item": { + "items": "minecraft:cooked_rabbit" + } + }, + "trigger": "minecraft:consume_item" + }, + "cooked_salmon": { + "conditions": { + "item": { + "items": "minecraft:cooked_salmon" + } + }, + "trigger": "minecraft:consume_item" + }, + "cookie": { + "conditions": { + "item": { + "items": "minecraft:cookie" + } + }, + "trigger": "minecraft:consume_item" + }, + "dried_kelp": { + "conditions": { + "item": { + "items": "minecraft:dried_kelp" + } + }, + "trigger": "minecraft:consume_item" + }, + "enchanted_golden_apple": { + "conditions": { + "item": { + "items": "minecraft:enchanted_golden_apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "glow_berries": { + "conditions": { + "item": { + "items": "minecraft:glow_berries" + } + }, + "trigger": "minecraft:consume_item" + }, + "golden_apple": { + "conditions": { + "item": { + "items": "minecraft:golden_apple" + } + }, + "trigger": "minecraft:consume_item" + }, + "golden_carrot": { + "conditions": { + "item": { + "items": "minecraft:golden_carrot" + } + }, + "trigger": "minecraft:consume_item" + }, + "honey_bottle": { + "conditions": { + "item": { + "items": "minecraft:honey_bottle" + } + }, + "trigger": "minecraft:consume_item" + }, + "melon_slice": { + "conditions": { + "item": { + "items": "minecraft:melon_slice" + } + }, + "trigger": "minecraft:consume_item" + }, + "mushroom_stew": { + "conditions": { + "item": { + "items": "minecraft:mushroom_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "mutton": { + "conditions": { + "item": { + "items": "minecraft:mutton" + } + }, + "trigger": "minecraft:consume_item" + }, + "poisonous_potato": { + "conditions": { + "item": { + "items": "minecraft:poisonous_potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "porkchop": { + "conditions": { + "item": { + "items": "minecraft:porkchop" + } + }, + "trigger": "minecraft:consume_item" + }, + "potato": { + "conditions": { + "item": { + "items": "minecraft:potato" + } + }, + "trigger": "minecraft:consume_item" + }, + "pufferfish": { + "conditions": { + "item": { + "items": "minecraft:pufferfish" + } + }, + "trigger": "minecraft:consume_item" + }, + "pumpkin_pie": { + "conditions": { + "item": { + "items": "minecraft:pumpkin_pie" + } + }, + "trigger": "minecraft:consume_item" + }, + "rabbit": { + "conditions": { + "item": { + "items": "minecraft:rabbit" + } + }, + "trigger": "minecraft:consume_item" + }, + "rabbit_stew": { + "conditions": { + "item": { + "items": "minecraft:rabbit_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "rotten_flesh": { + "conditions": { + "item": { + "items": "minecraft:rotten_flesh" + } + }, + "trigger": "minecraft:consume_item" + }, + "salmon": { + "conditions": { + "item": { + "items": "minecraft:salmon" + } + }, + "trigger": "minecraft:consume_item" + }, + "spider_eye": { + "conditions": { + "item": { + "items": "minecraft:spider_eye" + } + }, + "trigger": "minecraft:consume_item" + }, + "suspicious_stew": { + "conditions": { + "item": { + "items": "minecraft:suspicious_stew" + } + }, + "trigger": "minecraft:consume_item" + }, + "sweet_berries": { + "conditions": { + "item": { + "items": "minecraft:sweet_berries" + } + }, + "trigger": "minecraft:consume_item" + }, + "tropical_fish": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish" + } + }, + "trigger": "minecraft:consume_item" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.balanced_diet.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:apple" + }, + "title": { + "translate": "advancements.husbandry.balanced_diet.title" + } + }, + "requirements": [ + [ + "apple" + ], + [ + "mushroom_stew" + ], + [ + "bread" + ], + [ + "porkchop" + ], + [ + "cooked_porkchop" + ], + [ + "golden_apple" + ], + [ + "enchanted_golden_apple" + ], + [ + "cod" + ], + [ + "salmon" + ], + [ + "tropical_fish" + ], + [ + "pufferfish" + ], + [ + "cooked_cod" + ], + [ + "cooked_salmon" + ], + [ + "cookie" + ], + [ + "melon_slice" + ], + [ + "beef" + ], + [ + "cooked_beef" + ], + [ + "chicken" + ], + [ + "cooked_chicken" + ], + [ + "rotten_flesh" + ], + [ + "spider_eye" + ], + [ + "carrot" + ], + [ + "potato" + ], + [ + "baked_potato" + ], + [ + "poisonous_potato" + ], + [ + "golden_carrot" + ], + [ + "pumpkin_pie" + ], + [ + "rabbit" + ], + [ + "cooked_rabbit" + ], + [ + "rabbit_stew" + ], + [ + "mutton" + ], + [ + "cooked_mutton" + ], + [ + "chorus_fruit" + ], + [ + "beetroot" + ], + [ + "beetroot_soup" + ], + [ + "dried_kelp" + ], + [ + "suspicious_stew" + ], + [ + "sweet_berries" + ], + [ + "honey_bottle" + ], + [ + "glow_berries" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/bred_all_animals.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/bred_all_animals.json new file mode 100644 index 00000000..efd2ab44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/bred_all_animals.json @@ -0,0 +1,492 @@ +{ + "parent": "minecraft:husbandry/breed_an_animal", + "criteria": { + "minecraft:armadillo": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:armadillo" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:axolotl": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:axolotl" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:bee": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:bee" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:camel": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:camel" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:cat": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:cat" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:chicken": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:chicken" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:cow": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:cow" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:donkey": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:donkey" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:fox": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:fox" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:frog": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:frog" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:frog" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:goat": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:goat" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:hoglin": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:hoglin" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:horse": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:horse" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:llama": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:llama" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:mooshroom": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:mooshroom" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:mule": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:mule" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:nautilus": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:nautilus" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:ocelot": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ocelot" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:panda": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:panda" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:pig": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:pig" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:rabbit": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:rabbit" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:sheep": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sheep" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:sniffer": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sniffer" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sniffer" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:strider": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:strider" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:turtle": { + "conditions": { + "parent": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:turtle" + } + } + ], + "partner": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:turtle" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + }, + "minecraft:wolf": { + "conditions": { + "child": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wolf" + } + } + ] + }, + "trigger": "minecraft:bred_animals" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.breed_all_animals.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:golden_carrot" + }, + "title": { + "translate": "advancements.husbandry.breed_all_animals.title" + } + }, + "requirements": [ + [ + "minecraft:horse" + ], + [ + "minecraft:donkey" + ], + [ + "minecraft:mule" + ], + [ + "minecraft:sheep" + ], + [ + "minecraft:cow" + ], + [ + "minecraft:mooshroom" + ], + [ + "minecraft:pig" + ], + [ + "minecraft:chicken" + ], + [ + "minecraft:wolf" + ], + [ + "minecraft:ocelot" + ], + [ + "minecraft:rabbit" + ], + [ + "minecraft:llama" + ], + [ + "minecraft:cat" + ], + [ + "minecraft:panda" + ], + [ + "minecraft:fox" + ], + [ + "minecraft:bee" + ], + [ + "minecraft:hoglin" + ], + [ + "minecraft:strider" + ], + [ + "minecraft:goat" + ], + [ + "minecraft:axolotl" + ], + [ + "minecraft:camel" + ], + [ + "minecraft:armadillo" + ], + [ + "minecraft:nautilus" + ], + [ + "minecraft:turtle" + ], + [ + "minecraft:frog" + ], + [ + "minecraft:sniffer" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/breed_an_animal.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/breed_an_animal.json new file mode 100644 index 00000000..ebda9230 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/breed_an_animal.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "bred": { + "trigger": "minecraft:bred_animals" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.breed_an_animal.description" + }, + "icon": { + "id": "minecraft:wheat" + }, + "title": { + "translate": "advancements.husbandry.breed_an_animal.title" + } + }, + "requirements": [ + [ + "bred" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/complete_catalogue.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/complete_catalogue.json new file mode 100644 index 00000000..db39aa4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/complete_catalogue.json @@ -0,0 +1,232 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "minecraft:all_black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:all_black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:british_shorthair": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:british_shorthair" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:calico": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:calico" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:jellie": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:jellie" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:persian": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:persian" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:ragdoll": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:ragdoll" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:red": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:red" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:siamese": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:siamese" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:tabby": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:tabby" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:white": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:cat/variant": "minecraft:white" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.complete_catalogue.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:cod" + }, + "title": { + "translate": "advancements.husbandry.complete_catalogue.title" + } + }, + "requirements": [ + [ + "minecraft:all_black" + ], + [ + "minecraft:black" + ], + [ + "minecraft:british_shorthair" + ], + [ + "minecraft:calico" + ], + [ + "minecraft:jellie" + ], + [ + "minecraft:persian" + ], + [ + "minecraft:ragdoll" + ], + [ + "minecraft:red" + ], + [ + "minecraft:siamese" + ], + [ + "minecraft:tabby" + ], + [ + "minecraft:white" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/feed_snifflet.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/feed_snifflet.json new file mode 100644 index 00000000..f9cb4742 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/feed_snifflet.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:husbandry/obtain_sniffer_egg", + "criteria": { + "feed_snifflet": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sniffer", + "minecraft:flags": { + "is_baby": true + } + } + } + ], + "item": { + "items": "#minecraft:sniffer_food" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.feed_snifflet.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:torchflower_seeds" + }, + "title": { + "translate": "advancements.husbandry.feed_snifflet.title" + } + }, + "requirements": [ + [ + "feed_snifflet" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/fishy_business.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/fishy_business.json new file mode 100644 index 00000000..8cc0a39b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/fishy_business.json @@ -0,0 +1,57 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "cod": { + "conditions": { + "item": { + "items": "minecraft:cod" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "pufferfish": { + "conditions": { + "item": { + "items": "minecraft:pufferfish" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "salmon": { + "conditions": { + "item": { + "items": "minecraft:salmon" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + }, + "tropical_fish": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish" + } + }, + "trigger": "minecraft:fishing_rod_hooked" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.fishy_business.description" + }, + "icon": { + "id": "minecraft:fishing_rod" + }, + "title": { + "translate": "advancements.husbandry.fishy_business.title" + } + }, + "requirements": [ + [ + "cod", + "tropical_fish", + "pufferfish", + "salmon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/froglights.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/froglights.json new file mode 100644 index 00000000..be680f0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/froglights.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:husbandry/leash_all_frog_variants", + "criteria": { + "froglights": { + "conditions": { + "items": [ + { + "items": "minecraft:ochre_froglight" + }, + { + "items": "minecraft:pearlescent_froglight" + }, + { + "items": "minecraft:verdant_froglight" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.froglights.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:verdant_froglight" + }, + "title": { + "translate": "advancements.husbandry.froglights.title" + } + }, + "requirements": [ + [ + "froglights" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/kill_axolotl_target.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/kill_axolotl_target.json new file mode 100644 index 00000000..b9145345 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/kill_axolotl_target.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/axolotl_in_a_bucket", + "criteria": { + "kill_axolotl_target": { + "conditions": { + "source": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:axolotl" + } + } + ] + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.kill_axolotl_target.description" + }, + "icon": { + "id": "minecraft:tropical_fish_bucket" + }, + "title": { + "translate": "advancements.husbandry.kill_axolotl_target.title" + } + }, + "requirements": [ + [ + "kill_axolotl_target" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/leash_all_frog_variants.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/leash_all_frog_variants.json new file mode 100644 index 00000000..f224e8d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/leash_all_frog_variants.json @@ -0,0 +1,88 @@ +{ + "parent": "minecraft:husbandry/tadpole_in_a_bucket", + "criteria": { + "minecraft:cold": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:cold" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + }, + "minecraft:temperate": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:temperate" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + }, + "minecraft:warm": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:warm" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + ], + "item": { + "items": "minecraft:lead" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.leash_all_frog_variants.description" + }, + "icon": { + "id": "minecraft:lead" + }, + "title": { + "translate": "advancements.husbandry.leash_all_frog_variants.title" + } + }, + "requirements": [ + [ + "minecraft:cold" + ], + [ + "minecraft:temperate" + ], + [ + "minecraft:warm" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/make_a_sign_glow.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/make_a_sign_glow.json new file mode 100644 index 00000000..b6efb827 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/make_a_sign_glow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "make_a_sign_glow": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:all_signs" + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glow_ink_sac" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.make_a_sign_glow.description" + }, + "icon": { + "id": "minecraft:glow_ink_sac" + }, + "title": { + "translate": "advancements.husbandry.make_a_sign_glow.title" + } + }, + "requirements": [ + [ + "make_a_sign_glow" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json new file mode 100644 index 00000000..5e19717f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_netherite_hoe.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/plant_seed", + "criteria": { + "netherite_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.netherite_hoe.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_hoe" + }, + "title": { + "translate": "advancements.husbandry.netherite_hoe.title" + } + }, + "requirements": [ + [ + "netherite_hoe" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json new file mode 100644 index 00000000..26bfff11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/obtain_sniffer_egg.json @@ -0,0 +1,33 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "obtain_sniffer_egg": { + "conditions": { + "items": [ + { + "items": "minecraft:sniffer_egg" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.obtain_sniffer_egg.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:sniffer_egg" + }, + "title": { + "translate": "advancements.husbandry.obtain_sniffer_egg.title" + } + }, + "requirements": [ + [ + "obtain_sniffer_egg" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json new file mode 100644 index 00000000..15605249 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/place_dried_ghast_in_water.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "place_dried_ghast_in_water": { + "conditions": { + "location": [ + { + "block": "minecraft:dried_ghast", + "condition": "minecraft:block_state_property", + "properties": { + "waterlogged": "true" + } + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.place_dried_ghast_in_water.description" + }, + "icon": { + "id": "minecraft:dried_ghast" + }, + "title": { + "translate": "advancements.husbandry.place_dried_ghast_in_water.title" + } + }, + "requirements": [ + [ + "place_dried_ghast_in_water" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json new file mode 100644 index 00000000..83a7cc27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_any_sniffer_seed.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:husbandry/feed_snifflet", + "criteria": { + "pitcher_pod": { + "conditions": { + "location": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "torchflower": { + "conditions": { + "location": [ + { + "block": "minecraft:torchflower_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.plant_any_sniffer_seed.description" + }, + "hidden": true, + "icon": { + "id": "minecraft:pitcher_pod" + }, + "title": { + "translate": "advancements.husbandry.plant_any_sniffer_seed.title" + } + }, + "requirements": [ + [ + "torchflower", + "pitcher_pod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_seed.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_seed.json new file mode 100644 index 00000000..a2477f68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/plant_seed.json @@ -0,0 +1,105 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "beetroots": { + "conditions": { + "location": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "melon_stem": { + "conditions": { + "location": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "nether_wart": { + "conditions": { + "location": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "pitcher_pod": { + "conditions": { + "location": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "pumpkin_stem": { + "conditions": { + "location": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "torchflower": { + "conditions": { + "location": [ + { + "block": "minecraft:torchflower_crop", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + }, + "wheat": { + "conditions": { + "location": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property" + } + ] + }, + "trigger": "minecraft:placed_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.plant_seed.description" + }, + "icon": { + "id": "minecraft:wheat" + }, + "title": { + "translate": "advancements.husbandry.plant_seed.title" + } + }, + "requirements": [ + [ + "wheat", + "pumpkin_stem", + "melon_stem", + "beetroots", + "nether_wart", + "torchflower", + "pitcher_pod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/remove_wolf_armor.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/remove_wolf_armor.json new file mode 100644 index 00000000..044d9704 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/remove_wolf_armor.json @@ -0,0 +1,39 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "remove_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wolf" + } + } + ], + "item": { + "items": "minecraft:wolf_armor" + } + }, + "trigger": "minecraft:player_sheared_equipment" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.remove_wolf_armor.description" + }, + "icon": { + "id": "minecraft:shears" + }, + "title": { + "translate": "advancements.husbandry.remove_wolf_armor.title" + } + }, + "requirements": [ + [ + "remove_wolf_armor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/repair_wolf_armor.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/repair_wolf_armor.json new file mode 100644 index 00000000..b3086577 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/repair_wolf_armor.json @@ -0,0 +1,47 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "repair_wolf_armor": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wolf", + "minecraft:equipment": { + "body": { + "components": { + "minecraft:damage": 0 + }, + "items": "minecraft:wolf_armor" + } + } + } + } + ], + "item": { + "items": "minecraft:armadillo_scute" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.repair_wolf_armor.description" + }, + "icon": { + "id": "minecraft:wolf_armor" + }, + "title": { + "translate": "advancements.husbandry.repair_wolf_armor.title" + } + }, + "requirements": [ + [ + "repair_wolf_armor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json new file mode 100644 index 00000000..9526c3b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/ride_a_boat_with_a_goat.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "ride_a_boat_with_a_goat": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": { + "minecraft:entity_type": "#minecraft:boat", + "minecraft:passenger": { + "minecraft:entity_type": "minecraft:goat" + } + } + } + } + ] + }, + "trigger": "minecraft:started_riding" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.ride_a_boat_with_a_goat.description" + }, + "icon": { + "id": "minecraft:oak_boat" + }, + "title": { + "translate": "advancements.husbandry.ride_a_boat_with_a_goat.title" + } + }, + "requirements": [ + [ + "ride_a_boat_with_a_goat" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/root.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/root.json new file mode 100644 index 00000000..91c4cbcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/root.json @@ -0,0 +1,27 @@ +{ + "criteria": { + "consumed_item": { + "trigger": "minecraft:consume_item" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/husbandry", + "description": { + "translate": "advancements.husbandry.root.description" + }, + "icon": { + "id": "minecraft:hay_block" + }, + "show_toast": false, + "title": { + "translate": "advancements.husbandry.root.title" + } + }, + "requirements": [ + [ + "consumed_item" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/safely_harvest_honey.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/safely_harvest_honey.json new file mode 100644 index 00000000..d35feb03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/safely_harvest_honey.json @@ -0,0 +1,44 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "safely_harvest_honey": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:beehives" + }, + "smokey": true + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glass_bottle" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.safely_harvest_honey.description" + }, + "icon": { + "id": "minecraft:honey_bottle" + }, + "title": { + "translate": "advancements.husbandry.safely_harvest_honey.title" + } + }, + "requirements": [ + [ + "safely_harvest_honey" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/silk_touch_nest.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/silk_touch_nest.json new file mode 100644 index 00000000..57e347f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/silk_touch_nest.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "silk_touch_nest": { + "conditions": { + "block": "minecraft:bee_nest", + "item": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + }, + "num_bees_inside": 3 + }, + "trigger": "minecraft:bee_nest_destroyed" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.silk_touch_nest.description" + }, + "icon": { + "id": "minecraft:bee_nest" + }, + "title": { + "translate": "advancements.husbandry.silk_touch_nest.title" + } + }, + "requirements": [ + [ + "silk_touch_nest" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/tactical_fishing.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/tactical_fishing.json new file mode 100644 index 00000000..826e59df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/tactical_fishing.json @@ -0,0 +1,57 @@ +{ + "parent": "minecraft:husbandry/fishy_business", + "criteria": { + "cod_bucket": { + "conditions": { + "item": { + "items": "minecraft:cod_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "pufferfish_bucket": { + "conditions": { + "item": { + "items": "minecraft:pufferfish_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "salmon_bucket": { + "conditions": { + "item": { + "items": "minecraft:salmon_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + }, + "tropical_fish_bucket": { + "conditions": { + "item": { + "items": "minecraft:tropical_fish_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tactical_fishing.description" + }, + "icon": { + "id": "minecraft:pufferfish_bucket" + }, + "title": { + "translate": "advancements.husbandry.tactical_fishing.title" + } + }, + "requirements": [ + [ + "cod_bucket", + "tropical_fish_bucket", + "pufferfish_bucket", + "salmon_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json new file mode 100644 index 00000000..65cb9ec4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/tadpole_in_a_bucket.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "tadpole_bucket": { + "conditions": { + "item": { + "items": "minecraft:tadpole_bucket" + } + }, + "trigger": "minecraft:filled_bucket" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tadpole_in_a_bucket.description" + }, + "icon": { + "id": "minecraft:tadpole_bucket" + }, + "title": { + "translate": "advancements.husbandry.tadpole_in_a_bucket.title" + } + }, + "requirements": [ + [ + "tadpole_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/tame_an_animal.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/tame_an_animal.json new file mode 100644 index 00000000..fd5602d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/tame_an_animal.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "tamed_animal": { + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.tame_an_animal.description" + }, + "icon": { + "id": "minecraft:lead" + }, + "title": { + "translate": "advancements.husbandry.tame_an_animal.title" + } + }, + "requirements": [ + [ + "tamed_animal" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/uh_oh.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/uh_oh.json new file mode 100644 index 00000000..bbca3e9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/uh_oh.json @@ -0,0 +1,63 @@ +{ + "parent": "minecraft:husbandry/root", + "criteria": { + "give_tnt_directly": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sulfur_cube", + "minecraft:flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "#minecraft:sulfur_cube_archetype/explosive" + } + }, + "trigger": "minecraft:player_interacted_with_entity" + }, + "pick_up_dropped_tnt": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:sulfur_cube", + "minecraft:flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "#minecraft:sulfur_cube_archetype/explosive" + } + }, + "trigger": "minecraft:thrown_item_picked_up_by_entity" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.uh_oh.description" + }, + "icon": { + "id": "minecraft:tnt" + }, + "title": { + "translate": "advancements.husbandry.uh_oh.title" + } + }, + "requirements": [ + [ + "pick_up_dropped_tnt", + "give_tnt_directly" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_off.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_off.json new file mode 100644 index 00000000..a67623ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_off.json @@ -0,0 +1,112 @@ +{ + "parent": "minecraft:husbandry/wax_on", + "criteria": { + "wax_off": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:waxed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:waxed_oxidized_copper_bars", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod", + "minecraft:waxed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern", + "minecraft:waxed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": [ + "minecraft:wooden_axe", + "minecraft:golden_axe", + "minecraft:stone_axe", + "minecraft:copper_axe", + "minecraft:iron_axe", + "minecraft:diamond_axe", + "minecraft:netherite_axe" + ] + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.wax_off.description" + }, + "icon": { + "id": "minecraft:stone_axe" + }, + "title": { + "translate": "advancements.husbandry.wax_off.title" + } + }, + "requirements": [ + [ + "wax_off" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_on.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_on.json new file mode 100644 index 00000000..1bb73c6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/wax_on.json @@ -0,0 +1,104 @@ +{ + "parent": "minecraft:husbandry/safely_harvest_honey", + "criteria": { + "wax_on": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_cut_copper", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:oxidized_copper_chain" + ] + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:honeycomb" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.wax_on.description" + }, + "icon": { + "id": "minecraft:honeycomb" + }, + "title": { + "translate": "advancements.husbandry.wax_on.title" + } + }, + "requirements": [ + [ + "wax_on" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/husbandry/whole_pack.json b/data/generated/V26_2/data/minecraft/advancement/husbandry/whole_pack.json new file mode 100644 index 00000000..497510eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/husbandry/whole_pack.json @@ -0,0 +1,194 @@ +{ + "parent": "minecraft:husbandry/tame_an_animal", + "criteria": { + "minecraft:ashen": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:ashen" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:black": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:black" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:chestnut": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:chestnut" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:pale": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:pale" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:rusty": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:rusty" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:snowy": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:snowy" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:spotted": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:spotted" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:striped": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:striped" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + }, + "minecraft:woods": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:wolf/variant": "minecraft:woods" + } + } + } + ] + }, + "trigger": "minecraft:tame_animal" + } + }, + "display": { + "description": { + "translate": "advancements.husbandry.whole_pack.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:bone" + }, + "title": { + "translate": "advancements.husbandry.whole_pack.title" + } + }, + "requirements": [ + [ + "minecraft:ashen" + ], + [ + "minecraft:black" + ], + [ + "minecraft:chestnut" + ], + [ + "minecraft:pale" + ], + [ + "minecraft:rusty" + ], + [ + "minecraft:snowy" + ], + [ + "minecraft:spotted" + ], + [ + "minecraft:striped" + ], + [ + "minecraft:woods" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/all_effects.json b/data/generated/V26_2/data/minecraft/advancement/nether/all_effects.json new file mode 100644 index 00000000..d125184a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/all_effects.json @@ -0,0 +1,68 @@ +{ + "parent": "minecraft:nether/all_potions", + "criteria": { + "all_effects": { + "conditions": { + "effects": { + "minecraft:absorption": {}, + "minecraft:bad_omen": {}, + "minecraft:blindness": {}, + "minecraft:breath_of_the_nautilus": {}, + "minecraft:conduit_power": {}, + "minecraft:darkness": {}, + "minecraft:dolphins_grace": {}, + "minecraft:fire_resistance": {}, + "minecraft:glowing": {}, + "minecraft:haste": {}, + "minecraft:hero_of_the_village": {}, + "minecraft:hunger": {}, + "minecraft:infested": {}, + "minecraft:invisibility": {}, + "minecraft:jump_boost": {}, + "minecraft:levitation": {}, + "minecraft:mining_fatigue": {}, + "minecraft:nausea": {}, + "minecraft:night_vision": {}, + "minecraft:oozing": {}, + "minecraft:poison": {}, + "minecraft:raid_omen": {}, + "minecraft:regeneration": {}, + "minecraft:resistance": {}, + "minecraft:slow_falling": {}, + "minecraft:slowness": {}, + "minecraft:speed": {}, + "minecraft:strength": {}, + "minecraft:trial_omen": {}, + "minecraft:water_breathing": {}, + "minecraft:weakness": {}, + "minecraft:weaving": {}, + "minecraft:wind_charged": {}, + "minecraft:wither": {} + } + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.all_effects.description" + }, + "frame": "challenge", + "hidden": true, + "icon": { + "id": "minecraft:bucket" + }, + "title": { + "translate": "advancements.nether.all_effects.title" + } + }, + "requirements": [ + [ + "all_effects" + ] + ], + "rewards": { + "experience": 1000 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/all_potions.json b/data/generated/V26_2/data/minecraft/advancement/nether/all_potions.json new file mode 100644 index 00000000..e5654fe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/all_potions.json @@ -0,0 +1,50 @@ +{ + "parent": "minecraft:nether/brew_potion", + "criteria": { + "all_effects": { + "conditions": { + "effects": { + "minecraft:fire_resistance": {}, + "minecraft:infested": {}, + "minecraft:invisibility": {}, + "minecraft:jump_boost": {}, + "minecraft:night_vision": {}, + "minecraft:oozing": {}, + "minecraft:poison": {}, + "minecraft:regeneration": {}, + "minecraft:resistance": {}, + "minecraft:slow_falling": {}, + "minecraft:slowness": {}, + "minecraft:speed": {}, + "minecraft:strength": {}, + "minecraft:water_breathing": {}, + "minecraft:weakness": {}, + "minecraft:weaving": {}, + "minecraft:wind_charged": {} + } + }, + "trigger": "minecraft:effects_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.all_potions.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:milk_bucket" + }, + "title": { + "translate": "advancements.nether.all_potions.title" + } + }, + "requirements": [ + [ + "all_effects" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/brew_potion.json b/data/generated/V26_2/data/minecraft/advancement/nether/brew_potion.json new file mode 100644 index 00000000..3fd5204c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/brew_potion.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:nether/obtain_blaze_rod", + "criteria": { + "potion": { + "trigger": "minecraft:brewed_potion" + } + }, + "display": { + "description": { + "translate": "advancements.nether.brew_potion.description" + }, + "icon": { + "id": "minecraft:potion" + }, + "title": { + "translate": "advancements.nether.brew_potion.title" + } + }, + "requirements": [ + [ + "potion" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/charge_respawn_anchor.json b/data/generated/V26_2/data/minecraft/advancement/nether/charge_respawn_anchor.json new file mode 100644 index 00000000..354b3c25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/charge_respawn_anchor.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:nether/obtain_crying_obsidian", + "criteria": { + "charge_respawn_anchor": { + "conditions": { + "location": [ + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "minecraft:respawn_anchor", + "state": { + "charges": "4" + } + } + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:glowstone" + } + } + ] + }, + "trigger": "minecraft:item_used_on_block" + } + }, + "display": { + "description": { + "translate": "advancements.nether.charge_respawn_anchor.description" + }, + "icon": { + "id": "minecraft:respawn_anchor" + }, + "title": { + "translate": "advancements.nether.charge_respawn_anchor.title" + } + }, + "requirements": [ + [ + "charge_respawn_anchor" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/create_beacon.json b/data/generated/V26_2/data/minecraft/advancement/nether/create_beacon.json new file mode 100644 index 00000000..b3902afc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/create_beacon.json @@ -0,0 +1,30 @@ +{ + "parent": "minecraft:nether/summon_wither", + "criteria": { + "beacon": { + "conditions": { + "level": { + "min": 1 + } + }, + "trigger": "minecraft:construct_beacon" + } + }, + "display": { + "description": { + "translate": "advancements.nether.create_beacon.description" + }, + "icon": { + "id": "minecraft:beacon" + }, + "title": { + "translate": "advancements.nether.create_beacon.title" + } + }, + "requirements": [ + [ + "beacon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/create_full_beacon.json b/data/generated/V26_2/data/minecraft/advancement/nether/create_full_beacon.json new file mode 100644 index 00000000..004c1a75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/create_full_beacon.json @@ -0,0 +1,29 @@ +{ + "parent": "minecraft:nether/create_beacon", + "criteria": { + "beacon": { + "conditions": { + "level": 4 + }, + "trigger": "minecraft:construct_beacon" + } + }, + "display": { + "description": { + "translate": "advancements.nether.create_full_beacon.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:beacon" + }, + "title": { + "translate": "advancements.nether.create_full_beacon.title" + } + }, + "requirements": [ + [ + "beacon" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/distract_piglin.json b/data/generated/V26_2/data/minecraft/advancement/nether/distract_piglin.json new file mode 100644 index 00000000..ba08755f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/distract_piglin.json @@ -0,0 +1,179 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "distract_piglin": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin", + "minecraft:flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "#minecraft:piglin_loved" + }, + "player": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "head": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "chest": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "legs": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "feet": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + } + ] + }, + "trigger": "minecraft:thrown_item_picked_up_by_entity" + }, + "distract_piglin_directly": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin", + "minecraft:flags": { + "is_baby": false + } + } + } + ], + "item": { + "items": "minecraft:gold_ingot" + }, + "player": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "head": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "chest": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "legs": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:equipment": { + "feet": { + "items": "#minecraft:piglin_safe_armor" + } + } + } + } + } + ] + }, + "trigger": "minecraft:player_interacted_with_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.distract_piglin.description" + }, + "icon": { + "id": "minecraft:gold_ingot" + }, + "title": { + "translate": "advancements.nether.distract_piglin.title" + } + }, + "requirements": [ + [ + "distract_piglin", + "distract_piglin_directly" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/explore_nether.json b/data/generated/V26_2/data/minecraft/advancement/nether/explore_nether.json new file mode 100644 index 00000000..88a4ca3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/explore_nether.json @@ -0,0 +1,118 @@ +{ + "parent": "minecraft:nether/ride_strider", + "criteria": { + "minecraft:basalt_deltas": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:basalt_deltas" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:crimson_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:crimson_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:nether_wastes": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:nether_wastes" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:soul_sand_valley": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:soul_sand_valley" + } + } + } + ] + }, + "trigger": "minecraft:location" + }, + "minecraft:warped_forest": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "biomes": "minecraft:warped_forest" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.explore_nether.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_boots" + }, + "title": { + "translate": "advancements.nether.explore_nether.title" + } + }, + "requirements": [ + [ + "minecraft:nether_wastes" + ], + [ + "minecraft:soul_sand_valley" + ], + [ + "minecraft:crimson_forest" + ], + [ + "minecraft:warped_forest" + ], + [ + "minecraft:basalt_deltas" + ] + ], + "rewards": { + "experience": 500 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/fast_travel.json b/data/generated/V26_2/data/minecraft/advancement/nether/fast_travel.json new file mode 100644 index 00000000..4236f3fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/fast_travel.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "travelled": { + "conditions": { + "distance": { + "horizontal": { + "min": 7000.0 + } + } + }, + "trigger": "minecraft:nether_travel" + } + }, + "display": { + "description": { + "translate": "advancements.nether.fast_travel.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:map" + }, + "title": { + "translate": "advancements.nether.fast_travel.title" + } + }, + "requirements": [ + [ + "travelled" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/find_bastion.json b/data/generated/V26_2/data/minecraft/advancement/nether/find_bastion.json new file mode 100644 index 00000000..266617c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/find_bastion.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "bastion": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "structures": "minecraft:bastion_remnant" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.find_bastion.description" + }, + "icon": { + "id": "minecraft:polished_blackstone_bricks" + }, + "title": { + "translate": "advancements.nether.find_bastion.title" + } + }, + "requirements": [ + [ + "bastion" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/find_fortress.json b/data/generated/V26_2/data/minecraft/advancement/nether/find_fortress.json new file mode 100644 index 00000000..770a79d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/find_fortress.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "fortress": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "structures": "minecraft:fortress" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.nether.find_fortress.description" + }, + "icon": { + "id": "minecraft:nether_bricks" + }, + "title": { + "translate": "advancements.nether.find_fortress.title" + } + }, + "requirements": [ + [ + "fortress" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/get_wither_skull.json b/data/generated/V26_2/data/minecraft/advancement/nether/get_wither_skull.json new file mode 100644 index 00000000..2862af8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/get_wither_skull.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/find_fortress", + "criteria": { + "wither_skull": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_skeleton_skull" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.get_wither_skull.description" + }, + "icon": { + "id": "minecraft:wither_skeleton_skull" + }, + "title": { + "translate": "advancements.nether.get_wither_skull.title" + } + }, + "requirements": [ + [ + "wither_skull" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/loot_bastion.json b/data/generated/V26_2/data/minecraft/advancement/nether/loot_bastion.json new file mode 100644 index 00000000..d8ee7522 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/loot_bastion.json @@ -0,0 +1,49 @@ +{ + "parent": "minecraft:nether/find_bastion", + "criteria": { + "loot_bastion_bridge": { + "conditions": { + "loot_table": "minecraft:chests/bastion_bridge" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_hoglin_stable": { + "conditions": { + "loot_table": "minecraft:chests/bastion_hoglin_stable" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_other": { + "conditions": { + "loot_table": "minecraft:chests/bastion_other" + }, + "trigger": "minecraft:player_generates_container_loot" + }, + "loot_bastion_treasure": { + "conditions": { + "loot_table": "minecraft:chests/bastion_treasure" + }, + "trigger": "minecraft:player_generates_container_loot" + } + }, + "display": { + "description": { + "translate": "advancements.nether.loot_bastion.description" + }, + "icon": { + "id": "minecraft:chest" + }, + "title": { + "translate": "advancements.nether.loot_bastion.title" + } + }, + "requirements": [ + [ + "loot_bastion_other", + "loot_bastion_treasure", + "loot_bastion_hoglin_stable", + "loot_bastion_bridge" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/netherite_armor.json b/data/generated/V26_2/data/minecraft/advancement/nether/netherite_armor.json new file mode 100644 index 00000000..0ddd1132 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/netherite_armor.json @@ -0,0 +1,45 @@ +{ + "parent": "minecraft:nether/obtain_ancient_debris", + "criteria": { + "netherite_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_helmet" + }, + { + "items": "minecraft:netherite_chestplate" + }, + { + "items": "minecraft:netherite_leggings" + }, + { + "items": "minecraft:netherite_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.netherite_armor.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:netherite_chestplate" + }, + "title": { + "translate": "advancements.nether.netherite_armor.title" + } + }, + "requirements": [ + [ + "netherite_armor" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/obtain_ancient_debris.json b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_ancient_debris.json new file mode 100644 index 00000000..8f1873a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_ancient_debris.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_ancient_debris.description" + }, + "icon": { + "id": "minecraft:ancient_debris" + }, + "title": { + "translate": "advancements.nether.obtain_ancient_debris.title" + } + }, + "requirements": [ + [ + "ancient_debris" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/obtain_blaze_rod.json b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_blaze_rod.json new file mode 100644 index 00000000..f4512c53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_blaze_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/find_fortress", + "criteria": { + "blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_blaze_rod.description" + }, + "icon": { + "id": "minecraft:blaze_rod" + }, + "title": { + "translate": "advancements.nether.obtain_blaze_rod.title" + } + }, + "requirements": [ + [ + "blaze_rod" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/obtain_crying_obsidian.json b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_crying_obsidian.json new file mode 100644 index 00000000..1d34e771 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/obtain_crying_obsidian.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "crying_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:crying_obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.obtain_crying_obsidian.description" + }, + "icon": { + "id": "minecraft:crying_obsidian" + }, + "title": { + "translate": "advancements.nether.obtain_crying_obsidian.title" + } + }, + "requirements": [ + [ + "crying_obsidian" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/return_to_sender.json b/data/generated/V26_2/data/minecraft/advancement/nether/return_to_sender.json new file mode 100644 index 00000000..686dbd94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/return_to_sender.json @@ -0,0 +1,51 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "killed_ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ghast" + } + } + ], + "killing_blow": { + "direct_entity": { + "minecraft:entity_type": "minecraft:fireball" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.return_to_sender.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:fire_charge" + }, + "title": { + "translate": "advancements.nether.return_to_sender.title" + } + }, + "requirements": [ + [ + "killed_ghast" + ] + ], + "rewards": { + "experience": 50 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider.json b/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider.json new file mode 100644 index 00000000..8117f3a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider.json @@ -0,0 +1,41 @@ +{ + "parent": "minecraft:nether/root", + "criteria": { + "used_warped_fungus_on_a_stick": { + "conditions": { + "item": { + "items": "minecraft:warped_fungus_on_a_stick" + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": { + "minecraft:entity_type": "minecraft:strider" + } + } + } + ] + }, + "trigger": "minecraft:item_durability_changed" + } + }, + "display": { + "description": { + "translate": "advancements.nether.ride_strider.description" + }, + "icon": { + "id": "minecraft:warped_fungus_on_a_stick" + }, + "title": { + "translate": "advancements.nether.ride_strider.title" + } + }, + "requirements": [ + [ + "used_warped_fungus_on_a_stick" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json b/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json new file mode 100644 index 00000000..8320f702 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/ride_strider_in_overworld_lava.json @@ -0,0 +1,46 @@ +{ + "parent": "minecraft:nether/ride_strider", + "criteria": { + "ride_entity_distance": { + "conditions": { + "distance": { + "horizontal": { + "min": 50.0 + } + }, + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "dimension": "minecraft:overworld" + }, + "minecraft:vehicle": { + "minecraft:entity_type": "minecraft:strider" + } + } + } + ] + }, + "trigger": "minecraft:ride_entity_in_lava" + } + }, + "display": { + "description": { + "translate": "advancements.nether.ride_strider_in_overworld_lava.description" + }, + "icon": { + "id": "minecraft:warped_fungus_on_a_stick" + }, + "title": { + "translate": "advancements.nether.ride_strider_in_overworld_lava.title" + } + }, + "requirements": [ + [ + "ride_entity_distance" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/root.json b/data/generated/V26_2/data/minecraft/advancement/nether/root.json new file mode 100644 index 00000000..8cc26181 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/root.json @@ -0,0 +1,30 @@ +{ + "criteria": { + "entered_nether": { + "conditions": { + "to": "minecraft:the_nether" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/nether", + "description": { + "translate": "advancements.nether.root.description" + }, + "icon": { + "id": "minecraft:red_nether_bricks" + }, + "show_toast": false, + "title": { + "translate": "advancements.nether.root.title" + } + }, + "requirements": [ + [ + "entered_nether" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/summon_wither.json b/data/generated/V26_2/data/minecraft/advancement/nether/summon_wither.json new file mode 100644 index 00000000..4bb60629 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/summon_wither.json @@ -0,0 +1,36 @@ +{ + "parent": "minecraft:nether/get_wither_skull", + "criteria": { + "summoned": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither" + } + } + ] + }, + "trigger": "minecraft:summoned_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.summon_wither.description" + }, + "icon": { + "id": "minecraft:nether_star" + }, + "title": { + "translate": "advancements.nether.summon_wither.title" + } + }, + "requirements": [ + [ + "summoned" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/nether/uneasy_alliance.json b/data/generated/V26_2/data/minecraft/advancement/nether/uneasy_alliance.json new file mode 100644 index 00000000..c7a1174e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/nether/uneasy_alliance.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:nether/return_to_sender", + "criteria": { + "killed_ghast": { + "conditions": { + "entity": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:ghast", + "minecraft:location": { + "dimension": "minecraft:overworld" + } + } + } + ] + }, + "trigger": "minecraft:player_killed_entity" + } + }, + "display": { + "description": { + "translate": "advancements.nether.uneasy_alliance.description" + }, + "frame": "challenge", + "icon": { + "id": "minecraft:ghast_tear" + }, + "title": { + "translate": "advancements.nether.uneasy_alliance.title" + } + }, + "requirements": [ + [ + "killed_ghast" + ] + ], + "rewards": { + "experience": 100 + }, + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/blaze_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/blaze_powder.json new file mode 100644 index 00000000..8d1ddddb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/blaze_powder.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blaze_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blaze_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/brewing_stand.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/brewing_stand.json new file mode 100644 index 00000000..0ac47f8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/brewing_stand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brewing_stand" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brewing_stand" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/cauldron.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/cauldron.json new file mode 100644 index 00000000..ff39eb35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/cauldron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cauldron" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_water_bucket": { + "conditions": { + "items": [ + { + "items": "minecraft:water_bucket" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_water_bucket" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cauldron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json new file mode 100644 index 00000000..8a3761dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/fermented_spider_eye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_spider_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:spider_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fermented_spider_eye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_spider_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fermented_spider_eye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glass_bottle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glass_bottle.json new file mode 100644 index 00000000..fe21e431 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glass_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json new file mode 100644 index 00000000..857f041b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/glistering_melon_slice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glistering_melon_slice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glistering_melon_slice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/golden_carrot.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/golden_carrot.json new file mode 100644 index 00000000..08d9c0d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/golden_carrot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_carrot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_carrot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/magma_cream.json b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/magma_cream.json new file mode 100644 index 00000000..fc582504 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/brewing/magma_cream.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magma_cream" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magma_cream" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json new file mode 100644 index 00000000..6ac8ef07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:acacia_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json new file mode 100644 index 00000000..b689bb16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json new file mode 100644 index 00000000..48d940b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json new file mode 100644 index 00000000..3e2bb81a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/acacia_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json new file mode 100644 index 00000000..427da1bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/amethyst_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:amethyst_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:amethyst_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite.json new file mode 100644 index 00000000..66f931d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json new file mode 100644 index 00000000..34f4b6fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..fd703a55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_slab_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_slab_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json new file mode 100644 index 00000000..a5645ee1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..2206f376 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_stairs_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_stairs_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json new file mode 100644 index 00000000..c738c907 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json new file mode 100644 index 00000000..9204c7f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_mosaic": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_mosaic" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_mosaic" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..7ba886be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_mosaic_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_mosaic": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_mosaic" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_mosaic" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json new file mode 100644 index 00000000..f8a7cd8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:bamboo_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json new file mode 100644 index 00000000..bd1270c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json new file mode 100644 index 00000000..671a9915 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bamboo_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_planks.json new file mode 100644 index 00000000..33ff4525 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:birch_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_slab.json new file mode 100644 index 00000000..22b07f02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json new file mode 100644 index 00000000..93c4a0ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_wood.json new file mode 100644 index 00000000..ca814554 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/birch_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json new file mode 100644 index 00000000..cada244c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json new file mode 100644 index 00000000..8cdecae5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json new file mode 100644 index 00000000..da09c67b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/black_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json new file mode 100644 index 00000000..396bfc78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..358fd4b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json new file mode 100644 index 00000000..4d3708f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..41a99daa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json new file mode 100644 index 00000000..9f25469c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_ice.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_ice.json new file mode 100644 index 00000000..da1920a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_ice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_ice": { + "conditions": { + "items": [ + { + "items": "minecraft:packed_ice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_ice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_ice" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json new file mode 100644 index 00000000..abfc34c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json new file mode 100644 index 00000000..76b6ed81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/blue_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bone_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bone_block.json new file mode 100644 index 00000000..efb51c73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_meal": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_meal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_meal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bookshelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bookshelf.json new file mode 100644 index 00000000..940dc9dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bookshelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bookshelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bookshelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab.json new file mode 100644 index 00000000..bfc8c4a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json new file mode 100644 index 00000000..996dd7ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_slab_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_slab_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_slab_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json new file mode 100644 index 00000000..ab6165aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json new file mode 100644 index 00000000..10f026af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brick_stairs_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_stairs_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_stairs_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bricks.json new file mode 100644 index 00000000..e7da1c7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json new file mode 100644 index 00000000..0d704969 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json new file mode 100644 index 00000000..e16a209e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json new file mode 100644 index 00000000..3bccb2ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/brown_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json new file mode 100644 index 00000000..00dde3c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:cherry_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json new file mode 100644 index 00000000..0ec95c01 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json new file mode 100644 index 00000000..50c80f14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json new file mode 100644 index 00000000..083d3a3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cherry_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json new file mode 100644 index 00000000..4cac964b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_bookshelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_bookshelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_bookshelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar.json new file mode 100644 index 00000000..8aff7db5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_cinnabar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_cinnabar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..6fafe23f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_cinnabar_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_cinnabar_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_cinnabar_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json new file mode 100644 index 00000000..af655bcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..5140c19e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..466dcf86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_copper_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_copper_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_copper_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json new file mode 100644 index 00000000..a6d2933b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..ccf8dc07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..c2555331 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json new file mode 100644 index 00000000..abe319f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..0c2324bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_nether_bricks_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_nether_bricks_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json new file mode 100644 index 00000000..3a2d0a76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..affd482b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..f084caa4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_polished_blackstone_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json new file mode 100644 index 00000000..f56f83ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_quartz_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_quartz_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..2a50bf30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_quartz_block_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_quartz_block_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json new file mode 100644 index 00000000..236b2f26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..2ecfb755 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_red_sandstone_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json new file mode 100644 index 00000000..23449ec7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_resin_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_resin_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..77b8a16e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_resin_bricks_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_resin_bricks_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_resin_bricks_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json new file mode 100644 index 00000000..450da418 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..8582a73b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sandstone_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sandstone_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json new file mode 100644 index 00000000..d51c7aef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_tag": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tag" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..d292337f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..3de92701 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_stone_bricks_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_stone_bricks_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur.json new file mode 100644 index 00000000..a0f298e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sulfur" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sulfur" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur_from_sulfur_stonecutting.json new file mode 100644 index 00000000..0a811273 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_sulfur_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_sulfur_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_sulfur_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json new file mode 100644 index 00000000..4050dbf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json new file mode 100644 index 00000000..adc1c7a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_brick_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..d6bcb51c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6a64f40a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..f6f51bac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_bricks_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..b596b5bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/chiseled_tuff_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chiseled_tuff_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chiseled_tuff_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab.json new file mode 100644 index 00000000..2f7ebdd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..e68b233b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_slab_from_cinnabar_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_slab_from_cinnabar_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..59e44fd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_slab_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_slab_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..f5bb7a28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_slab_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_slab_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs.json new file mode 100644 index 00000000..532ba9ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..f803ce25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..d4bd2db5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_stairs_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_stairs_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..e6bd97f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_stairs_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_stairs_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks.json new file mode 100644 index 00000000..ec84fbe0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..d583d051 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_bricks_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_bricks_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..8edf502d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_bricks_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_bricks_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_bricks_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab.json new file mode 100644 index 00000000..39aee782 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..deedf8c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_slab_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_slab_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs.json new file mode 100644 index 00000000..21bcd828 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..be4897d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cinnabar_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_stairs_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_stairs_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/clay.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/clay.json new file mode 100644 index 00000000..ca22e415 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/clay.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:clay_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:clay" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:clay" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coal_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coal_block.json new file mode 100644 index 00000000..fae9443d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coal_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal": { + "conditions": { + "items": [ + { + "items": "minecraft:coal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json new file mode 100644 index 00000000..f554b735 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/coarse_dirt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coarse_dirt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coarse_dirt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..370e665d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json new file mode 100644 index 00000000..514d2f31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..c38bba27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..d30b4bb2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..36881a5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..dc6df980 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..d4740fed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobbled_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json new file mode 100644 index 00000000..c7fed17e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json new file mode 100644 index 00000000..e9137a33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..5a2a0ca5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..1d1ae1bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json new file mode 100644 index 00000000..313f238b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..0d7117d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..51069635 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cobblestone_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_block.json new file mode 100644 index 00000000..ccb1af3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate.json new file mode 100644 index 00000000..0748aaa1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json new file mode 100644 index 00000000..db02a2ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/copper_grate_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_grate_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_grate_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json new file mode 100644 index 00000000..9d01062a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_deepslate_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_deepslate_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json new file mode 100644 index 00000000..a4088a47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_deepslate_tiles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_deepslate_tiles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_deepslate_tiles" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json new file mode 100644 index 00000000..8f52984a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..1c6e2b17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json new file mode 100644 index 00000000..afecad1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cracked_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cracked_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cracked_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json new file mode 100644 index 00000000..ed56eba6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json new file mode 100644 index 00000000..068c734a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:crimson_stems" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json new file mode 100644 index 00000000..6287bba5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json new file mode 100644 index 00000000..54629e82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/crimson_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper.json new file mode 100644 index 00000000..5842a495 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b0f42cef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json new file mode 100644 index 00000000..8cd916bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json new file mode 100644 index 00000000..dd6699e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..1e1d3472 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_slab_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_slab_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_slab_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json new file mode 100644 index 00000000..aa841a4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json new file mode 100644 index 00000000..d6021a03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs_from_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs_from_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..7ec35537 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_copper_stairs_from_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_copper_stairs_from_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_copper_stairs_from_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json new file mode 100644 index 00000000..4f4e56d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..2626bf8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json new file mode 100644 index 00000000..a40ffcc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json new file mode 100644 index 00000000..6e8c882a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..d7c8a632 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_red_sandstone_slab_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json new file mode 100644 index 00000000..a7b5cc6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..73db84e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json new file mode 100644 index 00000000..10affaab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json new file mode 100644 index 00000000..b6346479 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_cut_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab_from_cut_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..3017cd62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cut_sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cut_sandstone_slab_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cut_sandstone_slab_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json new file mode 100644 index 00000000..7e56c077 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json new file mode 100644 index 00000000..392dcac6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json new file mode 100644 index 00000000..88981ad7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/cyan_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json new file mode 100644 index 00000000..c2edc97e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:dark_oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json new file mode 100644 index 00000000..b9b79818 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json new file mode 100644 index 00000000..37fef663 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json new file mode 100644 index 00000000..7f626fbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json new file mode 100644 index 00000000..c7f7a409 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json new file mode 100644 index 00000000..1aebf45f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..b3fb42e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_slab_from_dark_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_slab_from_dark_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json new file mode 100644 index 00000000..50d5dcf1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..911f69e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dark_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dark_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_prismarine_stairs_from_dark_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate.json new file mode 100644 index 00000000..18d876e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json new file mode 100644 index 00000000..9a8c5d77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..32b6d215 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..c0e76246 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..5e898374 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..7fce54ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json new file mode 100644 index 00000000..513cc8f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3739988c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..49efdf86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f54a365f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b194ed1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json new file mode 100644 index 00000000..6f21d28c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..50bb9a99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json new file mode 100644 index 00000000..382199d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..aef6f1ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_bricks_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_bricks_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json new file mode 100644 index 00000000..8b156c17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..a89f85d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..bea52e92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..77324576 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..35cd426f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b79c0f7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json new file mode 100644 index 00000000..7c3c72b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3ee1d0de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..3ba8b113 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..310f2f12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..3fd21053 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..de129b1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json new file mode 100644 index 00000000..3ecb7255 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..5c4cfb25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..afb22edc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f0471ee7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..3236263b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/deepslate_tiles_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tiles_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diamond_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diamond_block.json new file mode 100644 index 00000000..06ac57a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diamond_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite.json new file mode 100644 index 00000000..4f8b5af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json new file mode 100644 index 00000000..666f1f2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..bee31440 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_slab_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_slab_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json new file mode 100644 index 00000000..70fd0448 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..fbb4c7f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_stairs_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_stairs_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json new file mode 100644 index 00000000..dd0457b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_ghast.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ghast_tear": { + "conditions": { + "items": [ + { + "items": "minecraft:ghast_tear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_ghast" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ghast_tear" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_ghast" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json new file mode 100644 index 00000000..6b5058dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dried_kelp_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json new file mode 100644 index 00000000..94c94194 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dripstone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pointed_dripstone": { + "conditions": { + "items": [ + { + "items": "minecraft:pointed_dripstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dripstone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pointed_dripstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dripstone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json new file mode 100644 index 00000000..f3040dca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_black_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json new file mode 100644 index 00000000..66b95b3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_blue_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json new file mode 100644 index 00000000..8345ecb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_brown_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json new file mode 100644 index 00000000..dc500812 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_cyan_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json new file mode 100644 index 00000000..e7d85ca3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_gray_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json new file mode 100644 index 00000000..70830bd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_green_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json new file mode 100644 index 00000000..22148aec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_blue_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json new file mode 100644 index 00000000..97d25d47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_light_gray_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json new file mode 100644 index 00000000..47e5df80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_lime_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json new file mode 100644 index 00000000..f4bf3fbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_magenta_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json new file mode 100644 index 00000000..90541087 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_orange_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json new file mode 100644 index 00000000..9b76b8b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_pink_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json new file mode 100644 index 00000000..f59e38e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_purple_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json new file mode 100644 index 00000000..7b9456e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_red_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json new file mode 100644 index 00000000..c5b267b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_white_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json new file mode 100644 index 00000000..0a0186cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/dye_yellow_wool.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_wool" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_wool" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/emerald_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/emerald_block.json new file mode 100644 index 00000000..7448651d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/emerald_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json new file mode 100644 index 00000000..3b54184d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..cb4860f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json new file mode 100644 index 00000000..00394e8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_slab_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_slab_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_slab_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json new file mode 100644 index 00000000..cf734dbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..d8fab36b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json new file mode 100644 index 00000000..750d97c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_brick_stairs_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_stairs_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json new file mode 100644 index 00000000..3887ba0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json new file mode 100644 index 00000000..69e64180 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/end_stone_bricks_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_bricks_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_bricks_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json new file mode 100644 index 00000000..b25d06a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..4856a0cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..41988aa4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_chiseled_copper_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json new file mode 100644 index 00000000..d0b76a60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..a3935174 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_copper_grate_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_grate_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json new file mode 100644 index 00000000..960ad069 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..32f962b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json new file mode 100644 index 00000000..d815d619 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..426fd674 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e9782fd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..1d2bd270 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ee4a9fed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs_from_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..8b077753 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glass.json new file mode 100644 index 00000000..fea555db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smelts_to_glass": { + "conditions": { + "items": [ + { + "items": "#minecraft:smelts_to_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smelts_to_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glowstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glowstone.json new file mode 100644 index 00000000..aa0f34d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/glowstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone_dust": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone_dust" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glowstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone_dust" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glowstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gold_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gold_block.json new file mode 100644 index 00000000..4e4a46e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite.json new file mode 100644 index 00000000..6bfad774 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab.json new file mode 100644 index 00000000..46331621 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..84cf8f1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_slab_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_slab_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_slab_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json new file mode 100644 index 00000000..6603cc6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..6082c7f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_stairs_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_stairs_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json new file mode 100644 index 00000000..1f952538 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json new file mode 100644 index 00000000..dc962e80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json new file mode 100644 index 00000000..3df2b425 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/gray_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json new file mode 100644 index 00000000..007e2905 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json new file mode 100644 index 00000000..09d32218 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json new file mode 100644 index 00000000..5a827b3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/green_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/hay_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/hay_block.json new file mode 100644 index 00000000..7c3eca36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/hay_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hay_block" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wheat": { + "conditions": { + "items": [ + { + "items": "minecraft:wheat" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wheat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hay_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/iron_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/iron_block.json new file mode 100644 index 00000000..d1f4ad33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json new file mode 100644 index 00000000..2d437a5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jack_o_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carved_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:carved_pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jack_o_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carved_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jack_o_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json new file mode 100644 index 00000000..ef63f549 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:jungle_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json new file mode 100644 index 00000000..1ed3e968 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json new file mode 100644 index 00000000..72e9cb8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json new file mode 100644 index 00000000..9b9f7497 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/jungle_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lapis_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lapis_block.json new file mode 100644 index 00000000..347dcbcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lapis_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_lazuli": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_lazuli" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_lazuli" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json new file mode 100644 index 00000000..99d9edf6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json new file mode 100644 index 00000000..ba006479 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json new file mode 100644 index 00000000..89d3dff3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_blue_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json new file mode 100644 index 00000000..191b17a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json new file mode 100644 index 00000000..e1b47866 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json new file mode 100644 index 00000000..264ebe7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/light_gray_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json new file mode 100644 index 00000000..7b68fd61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json new file mode 100644 index 00000000..b13111b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json new file mode 100644 index 00000000..42f0ed59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/lime_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json new file mode 100644 index 00000000..49b0cde6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json new file mode 100644 index 00000000..8c72a24a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json new file mode 100644 index 00000000..d1c896f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magenta_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magma_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magma_block.json new file mode 100644 index 00000000..e3159511 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/magma_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magma_cream": { + "conditions": { + "items": [ + { + "items": "minecraft:magma_cream" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magma_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magma_cream" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magma_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json new file mode 100644 index 00000000..2a7cecdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:mangrove_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json new file mode 100644 index 00000000..36e234ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json new file mode 100644 index 00000000..921298e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json new file mode 100644 index 00000000..d52aed59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mangrove_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/melon.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/melon.json new file mode 100644 index 00000000..a23ca0f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/melon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:melon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:melon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json new file mode 100644 index 00000000..0113de3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_moss_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_moss_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_moss_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json new file mode 100644 index 00000000..9ff8e895 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_from_vine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_from_vine" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vine": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_from_vine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json new file mode 100644 index 00000000..ab6fcfd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..1a7ce968 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..a35129db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..f6f19ce3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json new file mode 100644 index 00000000..a79f07a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..842ccada --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..71802c6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..5b1103ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json new file mode 100644 index 00000000..d63c5046 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_moss_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_bricks_from_moss_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_bricks_from_moss_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json new file mode 100644 index 00000000..f3b1e2ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mossy_stone_bricks_from_vine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_bricks_from_vine" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vine": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_bricks_from_vine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json new file mode 100644 index 00000000..d2331ff7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..fed8ff7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_slab_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_slab_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_slab_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json new file mode 100644 index 00000000..dce37c82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..6a1a23ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_brick_stairs_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_stairs_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json new file mode 100644 index 00000000..0c6d3aac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/mud_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_packed_mud": { + "conditions": { + "items": [ + { + "items": "minecraft:packed_mud" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_packed_mud" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json new file mode 100644 index 00000000..b704cb58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/muddy_mangrove_roots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mangrove_roots": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_roots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:muddy_mangrove_roots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mangrove_roots" + ] + ], + "rewards": { + "recipes": [ + "minecraft:muddy_mangrove_roots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json new file mode 100644 index 00000000..c808e023 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..9e803c17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_slab_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_slab_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_slab_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json new file mode 100644 index 00000000..b57b9443 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..21500487 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_brick_stairs_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_stairs_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json new file mode 100644 index 00000000..ed2c3ae2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json new file mode 100644 index 00000000..2728873b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/nether_wart_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_wart": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_wart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_wart_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_wart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_wart_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/netherite_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/netherite_block.json new file mode 100644 index 00000000..91d676a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/netherite_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_planks.json new file mode 100644 index 00000000..6c78d047 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_slab.json new file mode 100644 index 00000000..cef0e37e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json new file mode 100644 index 00000000..4a2b6cfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_wood.json new file mode 100644 index 00000000..bd62427e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json new file mode 100644 index 00000000..81168005 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json new file mode 100644 index 00000000..5ae8d6fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json new file mode 100644 index 00000000..ca71a5c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/orange_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json new file mode 100644 index 00000000..98d4e6f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..0a2b0577 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..dab869ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json new file mode 100644 index 00000000..5cea8fc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ecb78079 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_copper_grate_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_grate_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json new file mode 100644 index 00000000..7eb45a16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..6f5bb3bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..3cea579d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ec034dd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..d321f6f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..02118cd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..3001961b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..30b343fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_ice.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_ice.json new file mode 100644 index 00000000..e4ac8a5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_ice.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ice": { + "conditions": { + "items": [ + { + "items": "minecraft:ice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:packed_ice" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ice" + ] + ], + "rewards": { + "recipes": [ + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_mud.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_mud.json new file mode 100644 index 00000000..5cd96a04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/packed_mud.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud": { + "conditions": { + "items": [ + { + "items": "minecraft:mud" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:packed_mud" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud" + ] + ], + "rewards": { + "recipes": [ + "minecraft:packed_mud" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json new file mode 100644 index 00000000..7bcea532 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:pale_oak_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json new file mode 100644 index 00000000..c8f7d94e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json new file mode 100644 index 00000000..8fed8cf9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json new file mode 100644 index 00000000..f1f79a27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pale_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json new file mode 100644 index 00000000..d66ee5ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json new file mode 100644 index 00000000..08559fc8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json new file mode 100644 index 00000000..77497150 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/pink_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json new file mode 100644 index 00000000..ec5ca856 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json new file mode 100644 index 00000000..07256bf0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json new file mode 100644 index 00000000..7836486b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..d60cac02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..54578aee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_slab_from_polished_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_slab_from_polished_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json new file mode 100644 index 00000000..f2083558 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..3d21f9e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..21b84f44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_andesite_stairs_from_polished_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_andesite_stairs_from_polished_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json new file mode 100644 index 00000000..f048e7a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_basalt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json new file mode 100644 index 00000000..fad18170 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_basalt_from_basalt_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_basalt_from_basalt_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_basalt_from_basalt_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json new file mode 100644 index 00000000..13234a34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..e30b651c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..ca112003 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..557a6c16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..e3b0d310 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_slab_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..06d31c5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..7b78a36f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..330d44ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..5570cf00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json new file mode 100644 index 00000000..6d89484a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json new file mode 100644 index 00000000..06d07a1a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..972c995c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_bricks_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..fc8687b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json new file mode 100644 index 00000000..51e8b24c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..28b6e2a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..1f4768be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_slab_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json new file mode 100644 index 00000000..2ef334c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..17146d8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..16749d64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_stairs_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar.json new file mode 100644 index 00000000..f31dad35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..fbd4fadd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab.json new file mode 100644 index 00000000..30c86851 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..d272645e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_slab_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_slab_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..c302ea7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_slab_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_slab_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs.json new file mode 100644 index 00000000..71c0f53b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..2bdebb99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_stairs_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_stairs_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..ef5dcce1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_stairs_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_stairs_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json new file mode 100644 index 00000000..ecbe21c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..0cb2f0cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..aaecce68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json new file mode 100644 index 00000000..5a2f9c98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..f5868a81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..46e0b19d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ea3650ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_slab_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json new file mode 100644 index 00000000..5b98823b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..1018229c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..a603f026 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ac64672a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_stairs_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json new file mode 100644 index 00000000..8e20b110 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json new file mode 100644 index 00000000..002402db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json new file mode 100644 index 00000000..eee8ccf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..911b2abd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..c18e0885 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_slab_from_polished_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_slab_from_polished_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json new file mode 100644 index 00000000..622b47ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..c2a60aed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..ed96087e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_diorite_stairs_from_polished_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_diorite_stairs_from_polished_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite.json new file mode 100644 index 00000000..5f1d37e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json new file mode 100644 index 00000000..1e000496 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json new file mode 100644 index 00000000..ac14683b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..b24757dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..6a43c4d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_slab_from_polished_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_slab_from_polished_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_slab_from_polished_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json new file mode 100644 index 00000000..2c2637b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..b137a4e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..117e9df1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_granite_stairs_from_polished_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_granite_stairs_from_polished_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_granite_stairs_from_polished_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur.json new file mode 100644 index 00000000..f27b044b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_from_sulfur_stonecutting.json new file mode 100644 index 00000000..daa49288 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab.json new file mode 100644 index 00000000..ae1cdd3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..c0482abe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_slab_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_slab_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..f0ff05e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_slab_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_slab_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_slab_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs.json new file mode 100644 index 00000000..bd03365e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..e0d2f939 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_stairs_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_stairs_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..419e0505 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_sulfur_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_stairs_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_stairs_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json new file mode 100644 index 00000000..5e61bb3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..7f1be72b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json new file mode 100644 index 00000000..b4c6d5c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..f4063a23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..8d875be2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..eace7ca0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0633449d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..3b03faee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/polished_tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/potent_sulfur.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/potent_sulfur.json new file mode 100644 index 00000000..ad3d33b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/potent_sulfur.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:potent_sulfur" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:potent_sulfur" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine.json new file mode 100644 index 00000000..dc5eaf99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json new file mode 100644 index 00000000..5614f52b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..4d38034e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_slab_from_prismarine_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_slab_from_prismarine_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json new file mode 100644 index 00000000..27f1f326 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..80c15577 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_brick_stairs_from_prismarine_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_brick_stairs_from_prismarine_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json new file mode 100644 index 00000000..a3176dfd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json new file mode 100644 index 00000000..abd366e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json new file mode 100644 index 00000000..41d9ae0c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_slab_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_slab_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_slab_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json new file mode 100644 index 00000000..a23db5e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json new file mode 100644 index 00000000..5808b086 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/prismarine_stairs_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_stairs_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_stairs_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json new file mode 100644 index 00000000..5de5d7ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json new file mode 100644 index 00000000..8289f1de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json new file mode 100644 index 00000000..81c7336f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purple_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_block.json new file mode 100644 index 00000000..6ce1ad28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit_popped": { + "conditions": { + "items": [ + { + "items": "minecraft:popped_chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit_popped" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json new file mode 100644 index 00000000..5a128cfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_pillar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..9d861ff4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_pillar_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_pillar_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_pillar_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json new file mode 100644 index 00000000..ff760ee4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..21ec6c90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_slab_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_slab_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_slab_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json new file mode 100644 index 00000000..de630a19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..5747d072 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/purpur_stairs_from_purpur_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purpur_block": { + "conditions": { + "items": [ + { + "items": "minecraft:purpur_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purpur_stairs_from_purpur_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purpur_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purpur_stairs_from_purpur_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_block.json new file mode 100644 index 00000000..816d4cd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json new file mode 100644 index 00000000..36432426 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..ca69b17c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_bricks_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_bricks_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_bricks_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json new file mode 100644 index 00000000..482fa9f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_pillar" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_pillar" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..f5d143cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_pillar_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_pillar_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_pillar_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json new file mode 100644 index 00000000..5d18e2bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..369bdffa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_slab_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_slab_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_slab_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json new file mode 100644 index 00000000..de4f0810 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_quartz_pillar": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_pillar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_quartz_block", + "has_quartz_block", + "has_quartz_pillar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..d060a077 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/quartz_stairs_from_quartz_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_stairs_from_quartz_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_stairs_from_quartz_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json new file mode 100644 index 00000000..007b887d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json new file mode 100644 index 00000000..a86e63fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json new file mode 100644 index 00000000..2a415de4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/raw_iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json new file mode 100644 index 00000000..4f2d6392 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json new file mode 100644 index 00000000..4cec61b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3ba4bf24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_slab_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json new file mode 100644 index 00000000..750c3b8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3ca8fe8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_stairs_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json new file mode 100644 index 00000000..fcbfe155 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_nether_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_wart": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_wart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_wart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json new file mode 100644 index 00000000..c6932f48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json new file mode 100644 index 00000000..37ffc7fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ae459a48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_slab_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json new file mode 100644 index 00000000..050e62eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone", + "has_chiseled_red_sandstone", + "has_cut_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..6d5bc3e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_sandstone_stairs_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_stairs_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json new file mode 100644 index 00000000..b65c87a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json new file mode 100644 index 00000000..6b9f6fdd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/red_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_block.json new file mode 100644 index 00000000..22188009 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_clump": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_clump" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_clump" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json new file mode 100644 index 00000000..b5ea3c4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..0d4173bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_slab_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_slab_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_slab_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json new file mode 100644 index 00000000..25305d7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..5acd47e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_brick_stairs_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_stairs_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_stairs_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json new file mode 100644 index 00000000..1b20dfcd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/resin_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone.json new file mode 100644 index 00000000..05ac5881 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json new file mode 100644 index 00000000..5ea1df31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone", + "has_chiseled_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..86898830 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_slab_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_slab_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json new file mode 100644 index 00000000..aff96ef7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_cut_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone", + "has_chiseled_sandstone", + "has_cut_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json new file mode 100644 index 00000000..714dfad1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sandstone_stairs_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_stairs_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_stairs_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json new file mode 100644 index 00000000..1397713c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sea_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine_crystals": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine_crystals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sea_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine_crystals" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sea_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json new file mode 100644 index 00000000..4ded68bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_basalt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_basalt": { + "conditions": { + "items": [ + { + "items": "minecraft:basalt" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_basalt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_basalt" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_basalt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json new file mode 100644 index 00000000..b3866b8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz_block": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json new file mode 100644 index 00000000..e5ad9a90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..f14f27a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_slab_from_smooth_quartz_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_slab_from_smooth_quartz_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json new file mode 100644 index 00000000..915eb347 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..7df6a2fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_quartz_stairs_from_smooth_quartz_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json new file mode 100644 index 00000000..f905834d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..53a07500 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..d7800ef4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..e3bb9a35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ce5fe098 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json new file mode 100644 index 00000000..0e7072e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json new file mode 100644 index 00000000..0bd95f73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..f420e673 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_slab_from_smooth_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json new file mode 100644 index 00000000..ce61f570 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..89fff18d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_sandstone_stairs_from_smooth_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json new file mode 100644 index 00000000..89b2fb04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json new file mode 100644 index 00000000..c8a50e84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json new file mode 100644 index 00000000..3023896e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/smooth_stone_slab_from_smooth_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smooth_stone_slab_from_smooth_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/snow_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/snow_block.json new file mode 100644 index 00000000..1daf6154 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/snow_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snowball": { + "conditions": { + "items": [ + { + "items": "minecraft:snowball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snow_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snowball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snow_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sponge.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sponge.json new file mode 100644 index 00000000..4295d894 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sponge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sponge" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wet_sponge": { + "conditions": { + "items": [ + { + "items": "minecraft:wet_sponge" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wet_sponge" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sponge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json new file mode 100644 index 00000000..67128d16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:spruce_logs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json new file mode 100644 index 00000000..9ab2ca88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json new file mode 100644 index 00000000..6c921e42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json new file mode 100644 index 00000000..049df90f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/spruce_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone.json new file mode 100644 index 00000000..edf15f5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json new file mode 100644 index 00000000..c8f46fca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..1315d2da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..1dca74f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json new file mode 100644 index 00000000..cf2ece4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..e5d0039e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..6d540f19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_brick_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json new file mode 100644 index 00000000..22788b02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..389841bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_bricks_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_bricks_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab.json new file mode 100644 index 00000000..52b39624 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..9772a6ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_slab_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_slab_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_slab_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json new file mode 100644 index 00000000..59942e14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..c10f6cd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stone_stairs_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_stairs_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_stairs_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json new file mode 100644 index 00000000..6b9f12fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_acacia_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_acacia_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_acacia_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json new file mode 100644 index 00000000..d8dc4d55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_birch_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_birch_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_birch_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json new file mode 100644 index 00000000..dbbe1592 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_cherry_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_cherry_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_cherry_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json new file mode 100644 index 00000000..51c71c3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_crimson_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_crimson_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_crimson_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json new file mode 100644 index 00000000..85bea3e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_dark_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_dark_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_dark_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json new file mode 100644 index 00000000..04a87235 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_jungle_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_jungle_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_jungle_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json new file mode 100644 index 00000000..7c021353 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_mangrove_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_mangrove_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_mangrove_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json new file mode 100644 index 00000000..fc3cc865 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json new file mode 100644 index 00000000..45a19e7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_pale_oak_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_pale_oak_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_pale_oak_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json new file mode 100644 index 00000000..7bdbfb28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_spruce_wood.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_spruce_wood" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_spruce_wood" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json new file mode 100644 index 00000000..b0d9a4e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/stripped_warped_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stripped_warped_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stripped_warped_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab.json new file mode 100644 index 00000000..5c4bef5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..d6674ad1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_slab_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_slab_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..f99cee4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_slab_from_sulfur_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_slab_from_sulfur_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..96e98fea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_slab_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_slab_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_slab_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs.json new file mode 100644 index 00000000..648664b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..005dd887 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_stairs_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_stairs_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..bde4bbe9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_stairs_from_sulfur_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_stairs_from_sulfur_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..ce855788 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_brick_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_stairs_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_stairs_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks.json new file mode 100644 index 00000000..da451633 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..50c44304 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_bricks_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_bricks_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_sulfur_stonecutting.json new file mode 100644 index 00000000..a4b7b47b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_bricks_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_bricks_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_bricks_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_from_sulfur_spikes.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_from_sulfur_spikes.json new file mode 100644 index 00000000..a702d42a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_from_sulfur_spikes.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_spike": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_spike" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_from_sulfur_spikes" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_spike" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_from_sulfur_spikes" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab.json new file mode 100644 index 00000000..d64453be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..bcc1f302 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_slab_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_slab_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_slab_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs.json new file mode 100644 index 00000000..55640f88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..3452f8b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/sulfur_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_stairs_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_stairs_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/terracotta.json new file mode 100644 index 00000000..81d3a796 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:clay" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json new file mode 100644 index 00000000..fedd8daf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tinted_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tinted_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tinted_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json new file mode 100644 index 00000000..5af88e65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..6fc042a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6d86a383 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..997afe63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json new file mode 100644 index 00000000..b1b6ead9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..f0ff02ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..a28481c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..9480f34d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_brick_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json new file mode 100644 index 00000000..56c6a18f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..56159bee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..ebad311e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_bricks_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_bricks_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json new file mode 100644 index 00000000..28dbd47a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..498bb7b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_slab_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_slab_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json new file mode 100644 index 00000000..1ac13897 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..561d405e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_stairs_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_stairs_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json new file mode 100644 index 00000000..46525e23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_hyphae.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_hyphae" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_hyphae" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_planks.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_planks.json new file mode 100644 index 00000000..21ccebc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_planks.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_logs": { + "conditions": { + "items": [ + { + "items": "#minecraft:warped_stems" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_planks" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_logs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_planks" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_slab.json new file mode 100644 index 00000000..2d302c6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_slab" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json new file mode 100644 index 00000000..bd52cf37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/warped_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json new file mode 100644 index 00000000..20d25a37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..23ebad7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..629cf874 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..83327907 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_chiseled_copper_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..1429e034 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json new file mode 100644 index 00000000..a65972d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_block_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_block_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_block_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..49bf60b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..d58b0a4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..f44fb027 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json new file mode 100644 index 00000000..7e38162a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..b2e996eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..56c39a24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_grate_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_grate_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..6aa597c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json new file mode 100644 index 00000000..a8f00595 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..99c3cde1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..d96b28da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json new file mode 100644 index 00000000..159a33e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..08b2f6e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..0253a88d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..aa1b052c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..39346145 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..222709f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a058f90a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..ef6d1c06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..09a9daef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..aac7b5a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..e061d518 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..ffff639f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..43320f30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..f7688dec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..80edb4da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json new file mode 100644 index 00000000..ee54119a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..41eb7856 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..32d24008 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..2e0b6b5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..08897f0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..7ba78279 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..02896bc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..ee22aede --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..09c272ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..1817e0c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..64483506 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ec5c46f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..7d9cc7c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..c8b842f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..b013c6ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..2049c56b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..3aebaf73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..ac0ebc02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_exposed_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..fb747290 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..3d577204 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..cd81b902 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ac054612 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..00468ce4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..291c40bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..2edc2da2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..71e0504d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json new file mode 100644 index 00000000..bc670d4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..7db95676 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..eb64938f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..acc1d3c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..d2554e13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..c80956cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..07cf847f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..7443a840 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..b4d1d1cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..802efadc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..a11599c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..ae7d1e66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..e85f4455 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..5e41ffe7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..8af01a83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..40de729e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..88f608e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..f2e84834 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_oxidized_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..67c1bed5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..64dfa3ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_chiseled_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_chiseled_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_chiseled_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..756dd418 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..c2c95198 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..16e60e00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_bars_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bars_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_bars": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_bars" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_bars" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bars_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..443a0f88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chain_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_chain_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_chain": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_chain" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_chain" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_chain_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..70ee37ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_chest_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_chest_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_chest_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json new file mode 100644 index 00000000..0655153b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..19804e15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_golem_statue_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_golem_statue": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_golem_statue" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_golem_statue" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_golem_statue_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..136661a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..c4d3064c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_grate": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_grate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_grate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..a1921007 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..a49e5793 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_copper_lantern_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_lantern_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_lantern": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_lantern" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_lantern" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_lantern_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..8e49d5b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..6c6aac2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..2683a9bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..9400c115 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..d99fbf9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c9dfd3a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..ac6ccdc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..80eebfe7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..72cf96eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper_stairs": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_stairs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper_stairs" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..df3df9a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..82243853 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..dc84e091 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/waxed_weathered_lightning_rod_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_lightning_rod_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_lightning_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_lightning_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_lightning_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_lightning_rod_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json new file mode 100644 index 00000000..cfef331c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..95c49ebb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..c0500e09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_chiseled_copper_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json new file mode 100644 index 00000000..126185ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_grate" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_grate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..4fea89fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_copper_grate_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_grate_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json new file mode 100644 index 00000000..c65fd54b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..a5353723 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json new file mode 100644 index 00000000..ca088625 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c63d0b91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..63e0cfa1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..346f9250 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..fa296b12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs_from_weathered_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..0a7bea31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_cut_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_cut_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_cut_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json new file mode 100644 index 00000000..ac35a8ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json new file mode 100644 index 00000000..55062706 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json new file mode 100644 index 00000000..95ae5884 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json new file mode 100644 index 00000000..dced3658 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/white_wool_from_string.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_wool_from_string" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_wool_from_string" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json new file mode 100644 index 00000000..4e540872 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_concrete_powder.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gravel": { + "conditions": { + "items": [ + { + "items": "minecraft:gravel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_sand": { + "conditions": { + "items": [ + { + "items": "minecraft:sand" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_concrete_powder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sand", + "has_gravel" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_concrete_powder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json new file mode 100644 index 00000000..7a414594 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_stained_glass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json new file mode 100644 index 00000000..b0f4b8cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/building_blocks/yellow_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/arrow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/arrow.json new file mode 100644 index 00000000..d9a949b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/arrow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_feather": { + "conditions": { + "items": [ + { + "items": "minecraft:feather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_feather", + "has_flint" + ] + ], + "rewards": { + "recipes": [ + "minecraft:arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/black_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/black_harness.json new file mode 100644 index 00000000..1dae0d67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/black_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/blue_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/blue_harness.json new file mode 100644 index 00000000..2aa627e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/bow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/bow.json new file mode 100644 index 00000000..475ddb24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/bow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/brown_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/brown_harness.json new file mode 100644 index 00000000..c881b49e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/brown_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_boots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_boots.json new file mode 100644 index 00000000..8c456ed1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_chestplate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_chestplate.json new file mode 100644 index 00000000..4fe1fdb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_helmet.json new file mode 100644 index 00000000..21228c1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_leggings.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_leggings.json new file mode 100644 index 00000000..aadb1217 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_spear.json new file mode 100644 index 00000000..1f89768c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_sword.json new file mode 100644 index 00000000..e9f59204 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/copper_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/crossbow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/crossbow.json new file mode 100644 index 00000000..5690c1ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/crossbow.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crossbow" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tripwire_hook": { + "conditions": { + "items": [ + { + "items": "minecraft:tripwire_hook" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string", + "has_iron_ingot", + "has_tripwire_hook" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crossbow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/cyan_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/cyan_harness.json new file mode 100644 index 00000000..7a64ee5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/cyan_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_boots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_boots.json new file mode 100644 index 00000000..1bbffa7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_chestplate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_chestplate.json new file mode 100644 index 00000000..22c62735 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_helmet.json new file mode 100644 index 00000000..9eb5c199 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_leggings.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_leggings.json new file mode 100644 index 00000000..4107beaf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_spear.json new file mode 100644 index 00000000..6a95cf15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_sword.json new file mode 100644 index 00000000..6d945b11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/diamond_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_black_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_black_harness.json new file mode 100644 index 00000000..9106bcfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_black_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_blue_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_blue_harness.json new file mode 100644 index 00000000..45a1224b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_brown_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_brown_harness.json new file mode 100644 index 00000000..488d3b31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_brown_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json new file mode 100644 index 00000000..7265f72d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_cyan_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_gray_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_gray_harness.json new file mode 100644 index 00000000..bbca3b0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_green_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_green_harness.json new file mode 100644 index 00000000..1b628ebe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_green_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json new file mode 100644 index 00000000..711e4f53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json new file mode 100644 index 00000000..d12b45c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_light_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_lime_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_lime_harness.json new file mode 100644 index 00000000..598aa402 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_lime_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json new file mode 100644 index 00000000..600c22ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_magenta_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_orange_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_orange_harness.json new file mode 100644 index 00000000..3156e92d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_orange_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_pink_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_pink_harness.json new file mode 100644 index 00000000..f04fd583 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_pink_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_purple_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_purple_harness.json new file mode 100644 index 00000000..06cdfd0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_purple_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_red_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_red_harness.json new file mode 100644 index 00000000..78efa4cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_red_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_white_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_white_harness.json new file mode 100644 index 00000000..525dae8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_white_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json new file mode 100644 index 00000000..734e65e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/dye_yellow_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_boots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_boots.json new file mode 100644 index 00000000..ce4e66db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_chestplate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_chestplate.json new file mode 100644 index 00000000..1c40b6b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_helmet.json new file mode 100644 index 00000000..ee9bd55f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_leggings.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_leggings.json new file mode 100644 index 00000000..122729ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_spear.json new file mode 100644 index 00000000..1995655e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_sword.json new file mode 100644 index 00000000..a6b8a22e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/golden_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/gray_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/gray_harness.json new file mode 100644 index 00000000..2408659b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/green_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/green_harness.json new file mode 100644 index 00000000..7d65884b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/green_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_boots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_boots.json new file mode 100644 index 00000000..04a213f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_chestplate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_chestplate.json new file mode 100644 index 00000000..0b2f5852 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_helmet.json new file mode 100644 index 00000000..53a1667d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_leggings.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_leggings.json new file mode 100644 index 00000000..0a5c437f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_spear.json new file mode 100644 index 00000000..2f2ed934 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_sword.json new file mode 100644 index 00000000..5899a6a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/iron_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_boots.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_boots.json new file mode 100644 index 00000000..8394fc24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_boots.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_boots" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_boots" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_chestplate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_chestplate.json new file mode 100644 index 00000000..a6626bcf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_chestplate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_chestplate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_chestplate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_helmet.json new file mode 100644 index 00000000..1b4e445d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_leggings.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_leggings.json new file mode 100644 index 00000000..726c89aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/leather_leggings.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_leggings" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_leggings" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_blue_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_blue_harness.json new file mode 100644 index 00000000..e417b9db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_blue_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_gray_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_gray_harness.json new file mode 100644 index 00000000..5fe6b90f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/light_gray_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/lime_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/lime_harness.json new file mode 100644 index 00000000..06a00932 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/lime_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/mace.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/mace.json new file mode 100644 index 00000000..ba0263ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/mace.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_breeze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:breeze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_heavy_core": { + "conditions": { + "items": [ + { + "items": "minecraft:heavy_core" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_breeze_rod", + "has_heavy_core" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/magenta_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/magenta_harness.json new file mode 100644 index 00000000..f0bda003 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/magenta_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json new file mode 100644 index 00000000..0ca28531 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_boots_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_boots_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_boots_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json new file mode 100644 index 00000000..fec2f5cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_chestplate_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_chestplate_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_chestplate_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json new file mode 100644 index 00000000..afc1f9cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_helmet_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_helmet_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_helmet_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json new file mode 100644 index 00000000..c2fd615b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_horse_armor_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_horse_armor_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_horse_armor_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json new file mode 100644 index 00000000..f2c162dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_leggings_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_leggings_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_leggings_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json new file mode 100644 index 00000000..5313ca38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_nautilus_armor_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_nautilus_armor_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_nautilus_armor_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json new file mode 100644 index 00000000..9fc631f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_spear_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_spear_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_spear_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json new file mode 100644 index 00000000..0280ef80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/netherite_sword_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_sword_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_sword_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/orange_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/orange_harness.json new file mode 100644 index 00000000..84963abd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/orange_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/pink_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/pink_harness.json new file mode 100644 index 00000000..a35a0459 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/pink_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/purple_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/purple_harness.json new file mode 100644 index 00000000..43be1672 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/purple_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/red_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/red_harness.json new file mode 100644 index 00000000..04a19361 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/red_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/saddle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/saddle.json new file mode 100644 index 00000000..1df7e159 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/saddle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:saddle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:saddle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/shield.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/shield.json new file mode 100644 index 00000000..b3e26b81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/shield.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shield" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shield" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/spectral_arrow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/spectral_arrow.json new file mode 100644 index 00000000..af318e41 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/spectral_arrow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone_dust": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone_dust" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spectral_arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone_dust" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spectral_arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_spear.json new file mode 100644 index 00000000..3b33c8c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_sword.json new file mode 100644 index 00000000..9d3a6e91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/stone_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/turtle_helmet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/turtle_helmet.json new file mode 100644 index 00000000..81e034cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/turtle_helmet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:turtle_helmet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_turtle_scute": { + "conditions": { + "items": [ + { + "items": "minecraft:turtle_scute" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_turtle_scute" + ] + ], + "rewards": { + "recipes": [ + "minecraft:turtle_helmet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/white_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/white_harness.json new file mode 100644 index 00000000..6a9fd00d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/white_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wolf_armor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wolf_armor.json new file mode 100644 index 00000000..a280d0b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wolf_armor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_armadillo_scute": { + "conditions": { + "items": [ + { + "items": "minecraft:armadillo_scute" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wolf_armor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_armadillo_scute" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wolf_armor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_spear.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_spear.json new file mode 100644 index 00000000..88a532eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_spear.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_spear" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_spear" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_sword.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_sword.json new file mode 100644 index 00000000..806742f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/wooden_sword.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_sword" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_sword" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/combat/yellow_harness.json b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/yellow_harness.json new file mode 100644 index 00000000..4209d18a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/combat/yellow_harness.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_ghast": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_ghast" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_harness" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_ghast" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_harness" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_fence.json new file mode 100644 index 00000000..679b762c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json new file mode 100644 index 00000000..82d24a0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_shelf.json new file mode 100644 index 00000000..05cee9bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_acacia_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_acacia_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_acacia_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_sign.json new file mode 100644 index 00000000..eb4acbdd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/acacia_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall.json new file mode 100644 index 00000000..540978aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json new file mode 100644 index 00000000..5cc823b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/andesite_wall_from_andesite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_andesite": { + "conditions": { + "items": [ + { + "items": "minecraft:andesite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:andesite_wall_from_andesite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_andesite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:andesite_wall_from_andesite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/anvil.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/anvil.json new file mode 100644 index 00000000..f8749cd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/anvil.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:anvil" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:anvil" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/armor_stand.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/armor_stand.json new file mode 100644 index 00000000..9184521b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/armor_stand.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:armor_stand" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:armor_stand" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_fence.json new file mode 100644 index 00000000..8d8ae16a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json new file mode 100644 index 00000000..142b6797 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_bamboo_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json new file mode 100644 index 00000000..a300333d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_mosaic.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_mosaic" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_mosaic" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json new file mode 100644 index 00000000..eb3d7379 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_bamboo_block": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_bamboo_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_bamboo_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_sign.json new file mode 100644 index 00000000..360d08a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/bamboo_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/barrel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/barrel.json new file mode 100644 index 00000000..a78609db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/barrel.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "#minecraft:planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:barrel" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wood_slab": { + "conditions": { + "items": [ + { + "items": "#minecraft:wooden_slabs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks", + "has_wood_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:barrel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/beehive.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/beehive.json new file mode 100644 index 00000000..f1b9dc72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/beehive.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beehive" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beehive" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_fence.json new file mode 100644 index 00000000..c13058b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json new file mode 100644 index 00000000..93cacf22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_shelf.json new file mode 100644 index 00000000..34258e3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_birch_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_birch_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_birch_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_sign.json new file mode 100644 index 00000000..66c8ce8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/birch_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_banner.json new file mode 100644 index 00000000..e10a4d48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_bed.json new file mode 100644 index 00000000..46216736 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_candle.json new file mode 100644 index 00000000..37fed0ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_carpet.json new file mode 100644 index 00000000..a1d68c3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:black_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json new file mode 100644 index 00000000..98fd4a64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:black_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_shulker_box.json new file mode 100644 index 00000000..0206b688 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json new file mode 100644 index 00000000..88db2846 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:black_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..769364b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/black_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall.json new file mode 100644 index 00000000..e567cb89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..e4855a9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blackstone_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blackstone_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blast_furnace.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blast_furnace.json new file mode 100644 index 00000000..d1a6817e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blast_furnace.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smooth_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:smooth_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blast_furnace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smooth_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blast_furnace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_banner.json new file mode 100644 index 00000000..12fe9666 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_bed.json new file mode 100644 index 00000000..d27e9652 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_candle.json new file mode 100644 index 00000000..e793487f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_carpet.json new file mode 100644 index 00000000..a8901ae0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json new file mode 100644 index 00000000..dd3a4fda --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json new file mode 100644 index 00000000..63af0808 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json new file mode 100644 index 00000000..a986fe40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..b63151ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall.json new file mode 100644 index 00000000..e2f5d6d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json new file mode 100644 index 00000000..ed610d9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brick_wall_from_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick_wall_from_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick_wall_from_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_banner.json new file mode 100644 index 00000000..8ec9f5d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_bed.json new file mode 100644 index 00000000..03d31f4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_candle.json new file mode 100644 index 00000000..ac9060c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_carpet.json new file mode 100644 index 00000000..482d9674 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json new file mode 100644 index 00000000..cfb97244 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json new file mode 100644 index 00000000..2084251e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json new file mode 100644 index 00000000..b446f5fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..e13a7278 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/brown_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/campfire.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/campfire.json new file mode 100644 index 00000000..66bca0ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/campfire.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal": { + "conditions": { + "items": [ + { + "items": "#minecraft:coals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:campfire" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick", + "has_coal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:campfire" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/candle.json new file mode 100644 index 00000000..13521a09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/candle.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cartography_table.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cartography_table.json new file mode 100644 index 00000000..d3d9de0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cartography_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cartography_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cartography_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_fence.json new file mode 100644 index 00000000..2d21e1ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json new file mode 100644 index 00000000..912d731e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_shelf.json new file mode 100644 index 00000000..1b20c435 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_cherry_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_cherry_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_cherry_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_sign.json new file mode 100644 index 00000000..c1e2114d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cherry_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/chest.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/chest.json new file mode 100644 index 00000000..6e00416a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lots_of_items": { + "conditions": { + "slots": { + "occupied": { + "min": 10 + } + } + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lots_of_items" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall.json new file mode 100644 index 00000000..d9e7655f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..83c8e5c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_wall_from_cinnabar_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_wall_from_cinnabar_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..a46aabc4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_wall_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_wall_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..44c8f6ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_brick_wall_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_brick_wall_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall.json new file mode 100644 index 00000000..e974bcde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..c71365a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cinnabar_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cinnabar_wall_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cinnabar_wall_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json new file mode 100644 index 00000000..b695980b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..caeac7f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..e88773d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobbled_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobbled_deepslate_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobbled_deepslate_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json new file mode 100644 index 00000000..cde03a7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..9cf1be91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall_from_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall_from_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..391819c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cobblestone_wall_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cobblestone_wall_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cobblestone_wall_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/composter.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/composter.json new file mode 100644 index 00000000..eeb7a2eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/composter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:composter" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wood_slab": { + "conditions": { + "items": [ + { + "items": "#minecraft:wooden_slabs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wood_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:composter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_bars.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_bars.json new file mode 100644 index 00000000..68a05dc4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_bars.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_bars" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_bars" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chain.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chain.json new file mode 100644 index 00000000..f9af61c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chain.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chain" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chain" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chest.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chest.json new file mode 100644 index 00000000..46344970 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_chest": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chest" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_chest" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_lantern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_lantern.json new file mode 100644 index 00000000..8ca9c75b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_torch.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_torch.json new file mode 100644 index 00000000..0b1a5953 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/copper_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crafting_table.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crafting_table.json new file mode 100644 index 00000000..a040c876 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crafting_table.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crafting_table" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "unlock_right_away": { + "trigger": "minecraft:tick" + } + }, + "requirements": [ + [ + "has_the_recipe", + "unlock_right_away" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crafting_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_fence.json new file mode 100644 index 00000000..0d2c70e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json new file mode 100644 index 00000000..583714cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_shelf.json new file mode 100644 index 00000000..80113f9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_crimson_stem": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_crimson_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_crimson_stem" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_sign.json new file mode 100644 index 00000000..270f36a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/crimson_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_banner.json new file mode 100644 index 00000000..acd7aebb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_bed.json new file mode 100644 index 00000000..7ea83de7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_candle.json new file mode 100644 index 00000000..b7b8f75e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_carpet.json new file mode 100644 index 00000000..dea236e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json new file mode 100644 index 00000000..90da75ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json new file mode 100644 index 00000000..36c766a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json new file mode 100644 index 00000000..3b993179 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..ff50f603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/cyan_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json new file mode 100644 index 00000000..971316cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json new file mode 100644 index 00000000..fe851417 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json new file mode 100644 index 00000000..f5a91268 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_dark_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_dark_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_dark_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json new file mode 100644 index 00000000..119fcef6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dark_oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json new file mode 100644 index 00000000..0b336480 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/decorated_pot_simple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "#minecraft:decorated_pot_ingredients" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:decorated_pot_simple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:decorated_pot_simple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json new file mode 100644 index 00000000..ef37f9b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..5563bd2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..b16dae6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..67b5a7c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..e9c3bbd6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_brick_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_brick_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json new file mode 100644 index 00000000..9e33f69e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..d4dc2563 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..f41a111c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..668360d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..ef25a723 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_tiles": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_tiles" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_tiles" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_deepslate_tiles_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..d07c0242 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/deepslate_tile_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:deepslate_tile_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall.json new file mode 100644 index 00000000..44e7acd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json new file mode 100644 index 00000000..f1bb5f13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/diorite_wall_from_diorite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diorite": { + "conditions": { + "items": [ + { + "items": "minecraft:diorite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diorite_wall_from_diorite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diorite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diorite_wall_from_diorite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_bed.json new file mode 100644 index 00000000..cf361c11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json new file mode 100644 index 00000000..39000276 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_black_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_black_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_black_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json new file mode 100644 index 00000000..dc6607d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json new file mode 100644 index 00000000..f1efd205 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json new file mode 100644 index 00000000..f57f8d7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json new file mode 100644 index 00000000..c6754e22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_brown_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_brown_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_brown_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json new file mode 100644 index 00000000..30eb18aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json new file mode 100644 index 00000000..6dd04f3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_cyan_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_cyan_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_cyan_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json new file mode 100644 index 00000000..1b0e6ea6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json new file mode 100644 index 00000000..bcc80ed4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_bed.json new file mode 100644 index 00000000..6211d9db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json new file mode 100644 index 00000000..c77daaec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_green_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_green_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_green_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json new file mode 100644 index 00000000..dd1cd70e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json new file mode 100644 index 00000000..2d3c370c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json new file mode 100644 index 00000000..ef1f2b65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json new file mode 100644 index 00000000..15d9cd20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_light_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_light_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_light_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json new file mode 100644 index 00000000..775ac651 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json new file mode 100644 index 00000000..376f1be9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_lime_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_lime_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_lime_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json new file mode 100644 index 00000000..d950fc6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json new file mode 100644 index 00000000..e6bc516c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_magenta_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_magenta_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_magenta_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json new file mode 100644 index 00000000..1cdd1483 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json new file mode 100644 index 00000000..75628c75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_orange_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_orange_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_orange_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json new file mode 100644 index 00000000..48541cf1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json new file mode 100644 index 00000000..cd85f0a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_pink_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_pink_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_pink_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json new file mode 100644 index 00000000..f3d0e29b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json new file mode 100644 index 00000000..9072913f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_purple_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_purple_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_purple_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_bed.json new file mode 100644 index 00000000..9ca7efcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json new file mode 100644 index 00000000..26226afa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_red_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_red_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_red_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_bed.json new file mode 100644 index 00000000..ac91e955 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json new file mode 100644 index 00000000..3ee77f15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_white_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_white_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_white_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json new file mode 100644 index 00000000..4945ceb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json new file mode 100644 index 00000000..514a0403 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/dye_yellow_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_needed_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dye_yellow_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_needed_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dye_yellow_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/enchanting_table.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/enchanting_table.json new file mode 100644 index 00000000..771cfc3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/enchanting_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:enchanting_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:enchanting_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_crystal.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_crystal.json new file mode 100644 index 00000000..3ac71d8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_crystal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ender_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:ender_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_crystal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ender_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_crystal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_rod.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_rod.json new file mode 100644 index 00000000..e5a5de92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit_popped": { + "conditions": { + "items": [ + { + "items": "minecraft:popped_chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit_popped" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json new file mode 100644 index 00000000..2fa03c7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..6975a52f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall_from_end_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall_from_end_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json new file mode 100644 index 00000000..eb59cb84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/end_stone_brick_wall_from_end_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_end_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:end_stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:end_stone_brick_wall_from_end_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_end_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:end_stone_brick_wall_from_end_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ender_chest.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ender_chest.json new file mode 100644 index 00000000..75cc0f3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ender_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ender_eye": { + "conditions": { + "items": [ + { + "items": "minecraft:ender_eye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ender_chest" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ender_eye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ender_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/fletching_table.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/fletching_table.json new file mode 100644 index 00000000..c35a3250 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/fletching_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fletching_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flint" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fletching_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/flower_pot.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/flower_pot.json new file mode 100644 index 00000000..8cc4c029 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/flower_pot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brick": { + "conditions": { + "items": [ + { + "items": "minecraft:brick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flower_pot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flower_pot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/furnace.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/furnace.json new file mode 100644 index 00000000..9e131324 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/furnace.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_crafting_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:furnace" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:furnace" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glass_pane.json new file mode 100644 index 00000000..4a55af0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glow_item_frame.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glow_item_frame.json new file mode 100644 index 00000000..60b0e3a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/glow_item_frame.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glow_ink_sac": { + "conditions": { + "items": [ + { + "items": "minecraft:glow_ink_sac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_item_frame": { + "conditions": { + "items": [ + { + "items": "minecraft:item_frame" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:glow_item_frame" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_item_frame", + "has_glow_ink_sac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:glow_item_frame" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/golden_dandelion.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/golden_dandelion.json new file mode 100644 index 00000000..4f360276 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/golden_dandelion.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall.json new file mode 100644 index 00000000..abf17098 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json new file mode 100644 index 00000000..bd0796c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/granite_wall_from_granite_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_granite": { + "conditions": { + "items": [ + { + "items": "minecraft:granite" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:granite_wall_from_granite_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_granite" + ] + ], + "rewards": { + "recipes": [ + "minecraft:granite_wall_from_granite_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_banner.json new file mode 100644 index 00000000..0f5cdb66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_bed.json new file mode 100644 index 00000000..5976b3a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_candle.json new file mode 100644 index 00000000..819761c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_carpet.json new file mode 100644 index 00000000..3e17033a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json new file mode 100644 index 00000000..37f33e67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json new file mode 100644 index 00000000..0b180cd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json new file mode 100644 index 00000000..51b306c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..41997e58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_banner.json new file mode 100644 index 00000000..550a7fb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_bed.json new file mode 100644 index 00000000..acf62aa3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_candle.json new file mode 100644 index 00000000..4b3a88cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_carpet.json new file mode 100644 index 00000000..e10b5923 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:green_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json new file mode 100644 index 00000000..6e8830c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:green_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_shulker_box.json new file mode 100644 index 00000000..632a386c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json new file mode 100644 index 00000000..2d081cfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:green_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..6c03183e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/green_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/grindstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/grindstone.json new file mode 100644 index 00000000..57e51491 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/grindstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_slab": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_slab" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:grindstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_slab" + ] + ], + "rewards": { + "recipes": [ + "minecraft:grindstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/honeycomb_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/honeycomb_block.json new file mode 100644 index 00000000..77367ece --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/honeycomb_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honeycomb": { + "conditions": { + "items": [ + { + "items": "minecraft:honeycomb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honeycomb_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honeycomb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honeycomb_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_bars.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_bars.json new file mode 100644 index 00000000..0b0b56cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_bars.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_bars" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_bars" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_chain.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_chain.json new file mode 100644 index 00000000..ba21e93a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/iron_chain.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_chain" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_chain" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/item_frame.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/item_frame.json new file mode 100644 index 00000000..b9a85d94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/item_frame.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:item_frame" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:item_frame" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jukebox.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jukebox.json new file mode 100644 index 00000000..d4a6202d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jukebox.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jukebox" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jukebox" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_fence.json new file mode 100644 index 00000000..589f773b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json new file mode 100644 index 00000000..17165a35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_shelf.json new file mode 100644 index 00000000..578798eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_jungle_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_jungle_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_jungle_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_sign.json new file mode 100644 index 00000000..e432d535 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/jungle_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ladder.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ladder.json new file mode 100644 index 00000000..6d3f284d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/ladder.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ladder" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ladder" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lantern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lantern.json new file mode 100644 index 00000000..115abdb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lantern.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_banner.json new file mode 100644 index 00000000..6a4fd4c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_bed.json new file mode 100644 index 00000000..bfa709af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_candle.json new file mode 100644 index 00000000..ddf547ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json new file mode 100644 index 00000000..d68bc4b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..8648482a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json new file mode 100644 index 00000000..53475fed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..959f02d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..f21a4d14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_banner.json new file mode 100644 index 00000000..25d833f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_bed.json new file mode 100644 index 00000000..264c7085 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_candle.json new file mode 100644 index 00000000..4d9e477a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json new file mode 100644 index 00000000..f378a58f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..34d2cdde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json new file mode 100644 index 00000000..70574ede --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..0a813c4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..ff3c07ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/light_gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_banner.json new file mode 100644 index 00000000..525efd7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_bed.json new file mode 100644 index 00000000..ebe169e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_candle.json new file mode 100644 index 00000000..f11f19ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_carpet.json new file mode 100644 index 00000000..d8096332 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json new file mode 100644 index 00000000..e573f1dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json new file mode 100644 index 00000000..908856a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json new file mode 100644 index 00000000..7ddc0d34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..12eef0c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lime_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lodestone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lodestone.json new file mode 100644 index 00000000..de00977e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/lodestone.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_lodestone": { + "conditions": { + "items": [ + { + "items": "minecraft:lodestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lodestone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot", + "has_lodestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lodestone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/loom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/loom.json new file mode 100644 index 00000000..c1829b79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/loom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:loom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:loom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_banner.json new file mode 100644 index 00000000..b9a0ce2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_bed.json new file mode 100644 index 00000000..eda1465d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_candle.json new file mode 100644 index 00000000..201b5296 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_carpet.json new file mode 100644 index 00000000..01b52ff7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json new file mode 100644 index 00000000..9d3ebde0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json new file mode 100644 index 00000000..2202d88a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json new file mode 100644 index 00000000..43b98405 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..0f1e26ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/magenta_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_fence.json new file mode 100644 index 00000000..103f4d12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json new file mode 100644 index 00000000..9d4d32a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json new file mode 100644 index 00000000..1cc32c48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_mangrove_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_mangrove_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_mangrove_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_sign.json new file mode 100644 index 00000000..172ecacd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mangrove_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/moss_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/moss_carpet.json new file mode 100644 index 00000000..cec3703c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/moss_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:moss_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:moss_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json new file mode 100644 index 00000000..84af20f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..672880e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json new file mode 100644 index 00000000..41ec8830 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..3f2cd0ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mossy_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mossy_stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mossy_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json new file mode 100644 index 00000000..03ecfc9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..60f73b68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mud_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:mud_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mud_brick_wall_from_mud_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mud_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mud_brick_wall_from_mud_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json new file mode 100644 index 00000000..689f18ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json new file mode 100644 index 00000000..7742728b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..0cdfae72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/nether_brick_wall_from_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick_wall_from_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick_wall_from_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_fence.json new file mode 100644 index 00000000..209d0d64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json new file mode 100644 index 00000000..20aab6dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_shelf.json new file mode 100644 index 00000000..52832e6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_sign.json new file mode 100644 index 00000000..d18ded65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_banner.json new file mode 100644 index 00000000..0295ee43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_bed.json new file mode 100644 index 00000000..46082788 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_candle.json new file mode 100644 index 00000000..d99adc25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_carpet.json new file mode 100644 index 00000000..2ff38e0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json new file mode 100644 index 00000000..b833cdf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json new file mode 100644 index 00000000..a9f88b04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json new file mode 100644 index 00000000..f5ec07f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..293807ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/orange_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/painting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/painting.json new file mode 100644 index 00000000..fe37a2d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/painting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:painting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wool": { + "conditions": { + "items": [ + { + "items": "#minecraft:wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:painting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json new file mode 100644 index 00000000..da87d689 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_moss_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pale_moss_block": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_moss_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_moss_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pale_moss_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_moss_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json new file mode 100644 index 00000000..a42d55c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json new file mode 100644 index 00000000..561bbe41 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json new file mode 100644 index 00000000..d9d7cb22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_pale_oak_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_pale_oak_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_pale_oak_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json new file mode 100644 index 00000000..6319907f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pale_oak_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_banner.json new file mode 100644 index 00000000..20afae63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_bed.json new file mode 100644 index 00000000..87d48fa4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_candle.json new file mode 100644 index 00000000..131449fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_carpet.json new file mode 100644 index 00000000..35f60795 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json new file mode 100644 index 00000000..2fdcf7f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json new file mode 100644 index 00000000..de707e6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json new file mode 100644 index 00000000..c85bffd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..9b632ef9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/pink_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..e1fa93f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..5d31d82e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..13e22987 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..04ae817f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_brick_wall_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json new file mode 100644 index 00000000..739c693d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..82b745e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall_from_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall_from_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..530da8da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_blackstone_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_wall_from_polished_blackstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall.json new file mode 100644 index 00000000..56a6066d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..771ca620 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_wall_from_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_wall_from_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..d36b2611 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_cinnabar": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_cinnabar" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_cinnabar_wall_from_polished_cinnabar_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_cinnabar" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_cinnabar_wall_from_polished_cinnabar_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json new file mode 100644 index 00000000..a58bfdad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..71e72510 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobbled_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:cobbled_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobbled_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_cobbled_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..38472716 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..b6299852 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_deepslate_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_deepslate": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_deepslate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_deepslate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_deepslate_wall_from_polished_deepslate_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall.json new file mode 100644 index 00000000..9c3360ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..580f69ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_wall_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_wall_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..a043b0a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_sulfur_wall_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_sulfur_wall_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_sulfur_wall_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json new file mode 100644 index 00000000..401bcf28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..5181c799 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..98f98157 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/polished_tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_tuff_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_tuff_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall.json new file mode 100644 index 00000000..fbe39219 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json new file mode 100644 index 00000000..3d076295 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/prismarine_wall_from_prismarine_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_prismarine": { + "conditions": { + "items": [ + { + "items": "minecraft:prismarine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:prismarine_wall_from_prismarine_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_prismarine" + ] + ], + "rewards": { + "recipes": [ + "minecraft:prismarine_wall_from_prismarine_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_banner.json new file mode 100644 index 00000000..7ae53c0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_bed.json new file mode 100644 index 00000000..6386d4c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_candle.json new file mode 100644 index 00000000..3f4d76da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_carpet.json new file mode 100644 index 00000000..5275850d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json new file mode 100644 index 00000000..01c9ed29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json new file mode 100644 index 00000000..adfef665 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json new file mode 100644 index 00000000..bb779838 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..7e0bf03d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/purple_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_banner.json new file mode 100644 index 00000000..77b5d97f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_banner" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_bed.json new file mode 100644 index 00000000..7e5754fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_bed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_candle.json new file mode 100644 index 00000000..63bf3d66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_candle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_carpet.json new file mode 100644 index 00000000..88d6459c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:red_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json new file mode 100644 index 00000000..989a4504 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:red_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json new file mode 100644 index 00000000..c82f4069 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..5a21584f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_nether_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:red_nether_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_nether_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_nether_brick_wall_from_red_nether_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json new file mode 100644 index 00000000..40242a45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..f9748732 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_sandstone_wall_from_red_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:red_sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_sandstone_wall_from_red_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_shulker_box.json new file mode 100644 index 00000000..598f0009 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json new file mode 100644 index 00000000..86e58b98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:red_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..94cb1aed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/red_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json new file mode 100644 index 00000000..64cdcde5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..d6871b65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/resin_brick_wall_from_resin_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick_wall_from_resin_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick_wall_from_resin_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/respawn_anchor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/respawn_anchor.json new file mode 100644 index 00000000..ca1ad366 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/respawn_anchor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:crying_obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:respawn_anchor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:respawn_anchor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall.json new file mode 100644 index 00000000..25e00a10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json new file mode 100644 index 00000000..fa177930 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sandstone_wall_from_sandstone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sandstone": { + "conditions": { + "items": [ + { + "items": "minecraft:sandstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sandstone_wall_from_sandstone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sandstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sandstone_wall_from_sandstone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/scaffolding.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/scaffolding.json new file mode 100644 index 00000000..fc54ea8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/scaffolding.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:scaffolding" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:scaffolding" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/shulker_box.json new file mode 100644 index 00000000..05315846 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_shell": { + "conditions": { + "items": [ + { + "items": "minecraft:shulker_shell" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_shell" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smithing_table.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smithing_table.json new file mode 100644 index 00000000..bfc7a13f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smithing_table.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smithing_table" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smithing_table" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smoker.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smoker.json new file mode 100644 index 00000000..5a47eb48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/smoker.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_furnace": { + "conditions": { + "items": [ + { + "items": "minecraft:furnace" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:smoker" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_furnace" + ] + ], + "rewards": { + "recipes": [ + "minecraft:smoker" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/snow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/snow.json new file mode 100644 index 00000000..4d987ac0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/snow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snowball": { + "conditions": { + "items": [ + { + "items": "minecraft:snowball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snowball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_campfire.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_campfire.json new file mode 100644 index 00000000..b96e10fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_campfire.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_sand": { + "conditions": { + "items": [ + { + "items": "#minecraft:soul_fire_base_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_campfire" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_campfire" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_lantern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_lantern.json new file mode 100644 index 00000000..d9cbfea1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_lantern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:soul_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_lantern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_lantern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_torch.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_torch.json new file mode 100644 index 00000000..cb9bdd3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/soul_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_soul_sand": { + "conditions": { + "items": [ + { + "items": "#minecraft:soul_fire_base_blocks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:soul_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_soul_sand" + ] + ], + "rewards": { + "recipes": [ + "minecraft:soul_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_fence.json new file mode 100644 index 00000000..235f7614 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json new file mode 100644 index 00000000..4a1464ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_shelf.json new file mode 100644 index 00000000..692ceaf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_spruce_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_spruce_log" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_spruce_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_sign.json new file mode 100644 index 00000000..8087b5bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/spruce_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json new file mode 100644 index 00000000..b02a9026 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..dd565944 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall_from_stone_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall_from_stone_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..be9e4bf2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stone_brick_wall_from_stone_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_brick_wall_from_stone_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_brick_wall_from_stone_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stonecutter.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stonecutter.json new file mode 100644 index 00000000..9965629d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/stonecutter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stonecutter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stonecutter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall.json new file mode 100644 index 00000000..a7c10463 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..3d1e9c1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_polished_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_wall_from_polished_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_wall_from_polished_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..e546a955 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_wall_from_sulfur_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_wall_from_sulfur_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..9f9d1ae1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_brick_wall_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_brick_wall_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_brick_wall_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall.json new file mode 100644 index 00000000..77431d2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_wall" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..d5c03ba2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/sulfur_wall_from_sulfur_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sulfur": { + "conditions": { + "items": [ + { + "items": "minecraft:sulfur" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sulfur_wall_from_sulfur_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sulfur" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sulfur_wall_from_sulfur_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/torch.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/torch.json new file mode 100644 index 00000000..2c86ba82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone_pickaxe" + ] + ], + "rewards": { + "recipes": [ + "minecraft:torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json new file mode 100644 index 00000000..d42903ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..1c9055b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_polished_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..6b311d71 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_bricks_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff_bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_tuff_bricks_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..f5369992 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_brick_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_brick_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_brick_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall.json new file mode 100644 index 00000000..a9456cf0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_wall" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_wall" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..6a83e7af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tuff_wall_from_tuff_stonecutting" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tuff": { + "conditions": { + "items": [ + { + "items": "minecraft:tuff" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tuff" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tuff_wall_from_tuff_stonecutting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_fence.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_fence.json new file mode 100644 index 00000000..d021617b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_fence.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fence" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fence" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json new file mode 100644 index 00000000..460b977a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_hanging_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_log": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_hanging_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_hanging_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_shelf.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_shelf.json new file mode 100644 index 00000000..f8113728 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_shelf.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stripped_warped_stem": { + "conditions": { + "items": [ + { + "items": "minecraft:stripped_warped_stem" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_shelf" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stripped_warped_stem" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_shelf" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_sign.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_sign.json new file mode 100644 index 00000000..6d4cc769 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/warped_sign.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_sign" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_sign" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_banner.json new file mode 100644 index 00000000..b6c95cd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_banner" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_bed.json new file mode 100644 index 00000000..85620b16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_bed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_candle.json new file mode 100644 index 00000000..0ce919aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_candle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_carpet.json new file mode 100644 index 00000000..58c14de6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:white_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json new file mode 100644 index 00000000..a1fa24d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:white_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_shulker_box.json new file mode 100644 index 00000000..adecba50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json new file mode 100644 index 00000000..60545827 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:white_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8dafc5c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/white_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_banner.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_banner.json new file mode 100644 index 00000000..b3280824 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_banner.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_banner" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_banner" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_bed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_bed.json new file mode 100644 index 00000000..00de75dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_bed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_bed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_bed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_candle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_candle.json new file mode 100644 index 00000000..75123753 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_candle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_candle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_candle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_carpet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_carpet.json new file mode 100644 index 00000000..aa60ede0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_carpet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_carpet" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_wool": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_wool" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_wool" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_carpet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json new file mode 100644 index 00000000..b1a4dca1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_glazed_terracotta.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_glazed_terracotta" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_terracotta": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_terracotta" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_terracotta" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_glazed_terracotta" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json new file mode 100644 index 00000000..a43160e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_shulker_box.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shulker_box": { + "conditions": { + "items": [ + { + "items": "#minecraft:shulker_boxes" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_shulker_box" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shulker_box" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_shulker_box" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json new file mode 100644 index 00000000..3fb7b04e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_stained_glass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..76a23474 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/decorations/yellow_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glass_pane": { + "conditions": { + "items": [ + { + "items": "minecraft:glass_pane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_stained_glass_pane_from_glass_pane" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glass_pane", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_stained_glass_pane_from_glass_pane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato.json new file mode 100644 index 00000000..7f2a44f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json new file mode 100644 index 00000000..fd3565bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json new file mode 100644 index 00000000..73843d57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/baked_potato_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_potato": { + "conditions": { + "items": [ + { + "items": "minecraft:potato" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:baked_potato_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_potato" + ] + ], + "rewards": { + "recipes": [ + "minecraft:baked_potato_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/beetroot_soup.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/beetroot_soup.json new file mode 100644 index 00000000..e04cda7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/beetroot_soup.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beetroot": { + "conditions": { + "items": [ + { + "items": "minecraft:beetroot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beetroot_soup" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beetroot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beetroot_soup" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/bread.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/bread.json new file mode 100644 index 00000000..b092f4e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/bread.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bread" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wheat": { + "conditions": { + "items": [ + { + "items": "minecraft:wheat" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wheat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bread" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cake.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cake.json new file mode 100644 index 00000000..beb3219d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cake.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_egg": { + "conditions": { + "items": [ + { + "items": "#minecraft:eggs" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cake" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_egg" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cake" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef.json new file mode 100644 index 00000000..81d289ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json new file mode 100644 index 00000000..0fac9bbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json new file mode 100644 index 00000000..d8dc3f16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_beef_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beef": { + "conditions": { + "items": [ + { + "items": "minecraft:beef" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_beef_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beef" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_beef_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken.json new file mode 100644 index 00000000..4174832c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json new file mode 100644 index 00000000..d2e1eb21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json new file mode 100644 index 00000000..4d13c860 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_chicken_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chicken": { + "conditions": { + "items": [ + { + "items": "minecraft:chicken" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_chicken_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chicken" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_chicken_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod.json new file mode 100644 index 00000000..7e51363a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json new file mode 100644 index 00000000..d50367b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json new file mode 100644 index 00000000..e27bd2ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_cod_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cod": { + "conditions": { + "items": [ + { + "items": "minecraft:cod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_cod_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_cod_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton.json new file mode 100644 index 00000000..f49a02a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json new file mode 100644 index 00000000..da7a4a46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json new file mode 100644 index 00000000..9f3ed831 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_mutton_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_mutton": { + "conditions": { + "items": [ + { + "items": "minecraft:mutton" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_mutton_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mutton" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_mutton_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop.json new file mode 100644 index 00000000..3dbb5d6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json new file mode 100644 index 00000000..7e42247e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json new file mode 100644 index 00000000..8c3d33bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_porkchop_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_porkchop": { + "conditions": { + "items": [ + { + "items": "minecraft:porkchop" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_porkchop_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_porkchop" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_porkchop_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit.json new file mode 100644 index 00000000..df3b5749 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json new file mode 100644 index 00000000..7faa2567 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json new file mode 100644 index 00000000..46489a8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_rabbit_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_rabbit_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_rabbit_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon.json new file mode 100644 index 00000000..f0eb80aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json new file mode 100644 index 00000000..0cc70d99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json new file mode 100644 index 00000000..0fa18094 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cooked_salmon_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_salmon": { + "conditions": { + "items": [ + { + "items": "minecraft:salmon" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cooked_salmon_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_salmon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cooked_salmon_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/cookie.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cookie.json new file mode 100644 index 00000000..d225100e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/cookie.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cocoa": { + "conditions": { + "items": [ + { + "items": "minecraft:cocoa_beans" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cookie" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cocoa" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cookie" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp.json new file mode 100644 index 00000000..e229120c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dried_kelp_block": { + "conditions": { + "items": [ + { + "items": "minecraft:dried_kelp_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dried_kelp_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json new file mode 100644 index 00000000..3ad3fd82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_campfire_cooking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_campfire_cooking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_campfire_cooking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json new file mode 100644 index 00000000..82bdc4fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json new file mode 100644 index 00000000..146078a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/dried_kelp_from_smoking.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_kelp": { + "conditions": { + "items": [ + { + "items": "minecraft:kelp" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dried_kelp_from_smoking" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_kelp" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dried_kelp_from_smoking" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/golden_apple.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/golden_apple.json new file mode 100644 index 00000000..69a539d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/golden_apple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_apple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_apple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/honey_bottle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/honey_bottle.json new file mode 100644 index 00000000..53930599 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/honey_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_block": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honey_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honey_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/mushroom_stew.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/mushroom_stew.json new file mode 100644 index 00000000..976a5fc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/mushroom_stew.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bowl": { + "conditions": { + "items": [ + { + "items": "minecraft:bowl" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_brown_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mushroom_stew": { + "conditions": { + "items": [ + { + "items": "minecraft:mushroom_stew" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:red_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mushroom_stew" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_mushroom_stew", + "has_bowl", + "has_brown_mushroom", + "has_red_mushroom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mushroom_stew" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/pumpkin_pie.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/pumpkin_pie.json new file mode 100644 index 00000000..9819648d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/pumpkin_pie.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carved_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:carved_pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pumpkin_pie" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carved_pumpkin", + "has_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pumpkin_pie" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json new file mode 100644 index 00000000..c9e2eaf0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_brown_mushroom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cooked_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:cooked_rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rabbit_stew_from_brown_mushroom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cooked_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rabbit_stew_from_brown_mushroom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json new file mode 100644 index 00000000..bec51966 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/rabbit_stew_from_red_mushroom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cooked_rabbit": { + "conditions": { + "items": [ + { + "items": "minecraft:cooked_rabbit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rabbit_stew_from_red_mushroom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cooked_rabbit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rabbit_stew_from_red_mushroom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json new file mode 100644 index 00000000..7db1e637 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_allium.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_allium": { + "conditions": { + "items": [ + { + "items": "minecraft:allium" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_allium" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_allium" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_allium" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json new file mode 100644 index 00000000..75568ad2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_azure_bluet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azure_bluet": { + "conditions": { + "items": [ + { + "items": "minecraft:azure_bluet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_azure_bluet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azure_bluet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_azure_bluet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json new file mode 100644 index 00000000..d7ca7e53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_blue_orchid.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_orchid": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_orchid" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_blue_orchid" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_orchid" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_blue_orchid" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json new file mode 100644 index 00000000..86399a3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_closed_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_closed_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:closed_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_closed_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_closed_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_closed_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json new file mode 100644 index 00000000..9b8e604a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_cornflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cornflower": { + "conditions": { + "items": [ + { + "items": "minecraft:cornflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_cornflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cornflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_cornflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json new file mode 100644 index 00000000..b622eb31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json new file mode 100644 index 00000000..fc60c2a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_golden_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json new file mode 100644 index 00000000..04349bf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_lily_of_the_valley.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lily_of_the_valley": { + "conditions": { + "items": [ + { + "items": "minecraft:lily_of_the_valley" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_lily_of_the_valley" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lily_of_the_valley" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_lily_of_the_valley" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json new file mode 100644 index 00000000..54e096cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_open_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_open_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:open_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_open_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_open_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_open_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json new file mode 100644 index 00000000..44b027be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_orange_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_orange_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_orange_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json new file mode 100644 index 00000000..274a2d61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_oxeye_daisy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_oxeye_daisy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_oxeye_daisy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json new file mode 100644 index 00000000..54e91382 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_pink_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_pink_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_pink_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json new file mode 100644 index 00000000..c1cdb32a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_poppy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_poppy": { + "conditions": { + "items": [ + { + "items": "minecraft:poppy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_poppy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_poppy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_poppy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json new file mode 100644 index 00000000..a9ae49a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_red_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:red_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_red_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_red_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json new file mode 100644 index 00000000..367b11f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_torchflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_torchflower" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torchflower": { + "conditions": { + "items": [ + { + "items": "minecraft:torchflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_torchflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_torchflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json new file mode 100644 index 00000000..3f5bd1ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_white_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_white_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:white_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_white_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json new file mode 100644 index 00000000..fc8b1643 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/food/suspicious_stew_from_wither_rose.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:suspicious_stew_from_wither_rose" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_rose": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_rose" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_rose" + ] + ], + "rewards": { + "recipes": [ + "minecraft:suspicious_stew_from_wither_rose" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/beacon.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/beacon.json new file mode 100644 index 00000000..b14a3492 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/beacon.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_star": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_star" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:beacon" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_star" + ] + ], + "rewards": { + "recipes": [ + "minecraft:beacon" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye.json new file mode 100644 index 00000000..d06cfdb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ink_sac": { + "conditions": { + "items": [ + { + "items": "minecraft:ink_sac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ink_sac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json new file mode 100644 index 00000000..2dfe2bb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/black_dye_from_wither_rose.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_dye_from_wither_rose" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_rose": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_rose" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_rose" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_dye_from_wither_rose" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye.json new file mode 100644 index 00000000..e8af8c79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_lazuli": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_lazuli" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_lazuli" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json new file mode 100644 index 00000000..d57f3926 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/blue_dye_from_cornflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cornflower": { + "conditions": { + "items": [ + { + "items": "minecraft:cornflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_dye_from_cornflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cornflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_dye_from_cornflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..d98a2829 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bolt_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:bolt_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bolt_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bolt_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bolt_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..d33371a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bolt_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:bolt_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bolt_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal.json new file mode 100644 index 00000000..ca492283 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone": { + "conditions": { + "items": [ + { + "items": "minecraft:bone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_meal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_meal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json new file mode 100644 index 00000000..557e21ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bone_meal_from_bone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_block": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bone_meal_from_bone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bone_meal_from_bone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/book.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/book.json new file mode 100644 index 00000000..1495fbd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/book.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:book" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_paper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:book" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..a2326600 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bordure_indented_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bordure_indented_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vines": { + "conditions": { + "items": [ + { + "items": "minecraft:vine" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vines" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bordure_indented_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bowl.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bowl.json new file mode 100644 index 00000000..0c6dad6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bowl.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_mushroom_stew": { + "conditions": { + "items": [ + { + "items": "minecraft:mushroom_stew" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_mushroom": { + "conditions": { + "items": [ + { + "items": "minecraft:red_mushroom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bowl" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_mushroom", + "has_red_mushroom", + "has_mushroom_stew" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bowl" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brick.json new file mode 100644 index 00000000..ca618ad0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_clay_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:clay_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_clay_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brown_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brown_dye.json new file mode 100644 index 00000000..2e28670a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/brown_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cocoa_beans": { + "conditions": { + "items": [ + { + "items": "minecraft:cocoa_beans" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cocoa_beans" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bucket.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bucket.json new file mode 100644 index 00000000..4c60b01c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/bucket.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bucket" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bucket" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/charcoal.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/charcoal.json new file mode 100644 index 00000000..0b8ef61e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/charcoal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_log": { + "conditions": { + "items": [ + { + "items": "#minecraft:logs_that_burn" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:charcoal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_log" + ] + ], + "rewards": { + "recipes": [ + "minecraft:charcoal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal.json new file mode 100644 index 00000000..3c91cfb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_block": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json new file mode 100644 index 00000000..cdef977d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_blasting_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_blasting_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json new file mode 100644 index 00000000..c1986a92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_blasting_deepslate_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_blasting_deepslate_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_blasting_deepslate_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json new file mode 100644 index 00000000..989271bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_smelting_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_smelting_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json new file mode 100644 index 00000000..e1b9837d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coal_from_smelting_deepslate_coal_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_coal_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_coal_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coal_from_smelting_deepslate_coal_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_coal_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coal_from_smelting_deepslate_coal_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..96dfc374 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_coast_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:coast_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coast_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_coast_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coast_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..1d0c534f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/coast_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:coast_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:coast_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:coast_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/conduit.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/conduit.json new file mode 100644 index 00000000..b9efe8b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/conduit.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nautilus_core": { + "conditions": { + "items": [ + { + "items": "minecraft:heart_of_the_sea" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_nautilus_shell": { + "conditions": { + "items": [ + { + "items": "minecraft:nautilus_shell" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:conduit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nautilus_core", + "has_nautilus_shell" + ] + ], + "rewards": { + "recipes": [ + "minecraft:conduit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot.json new file mode 100644 index 00000000..2e8f4119 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json new file mode 100644 index 00000000..37c06adb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json new file mode 100644 index 00000000..ac09de74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_deepslate_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_deepslate_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_deepslate_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json new file mode 100644 index 00000000..0b7081c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_blasting_raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_blasting_raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_blasting_raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json new file mode 100644 index 00000000..aaa5f5d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json new file mode 100644 index 00000000..4a5b2d55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json new file mode 100644 index 00000000..f43f7adc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_deepslate_copper_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_copper_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_copper_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_deepslate_copper_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_copper_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_deepslate_copper_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json new file mode 100644 index 00000000..caf783c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_smelting_raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_smelting_raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_smelting_raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json new file mode 100644 index 00000000..6779c8f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_ingot_from_waxed_copper_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_ingot_from_waxed_copper_block" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_ingot_from_waxed_copper_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget.json new file mode 100644 index 00000000..c08cfad1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json new file mode 100644 index 00000000..d2efb350 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_blasting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_pickaxe", + "has_copper_shovel", + "has_copper_axe", + "has_copper_hoe", + "has_copper_sword", + "has_copper_spear", + "has_copper_helmet", + "has_copper_chestplate", + "has_copper_leggings", + "has_copper_boots", + "has_copper_horse_armor", + "has_copper_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json new file mode 100644 index 00000000..73f29c08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/copper_nugget_from_smelting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_copper_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_pickaxe", + "has_copper_shovel", + "has_copper_axe", + "has_copper_hoe", + "has_copper_sword", + "has_copper_spear", + "has_copper_helmet", + "has_copper_chestplate", + "has_copper_leggings", + "has_copper_boots", + "has_copper_horse_armor", + "has_copper_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creaking_heart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creaking_heart.json new file mode 100644 index 00000000..cffc161a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creaking_heart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_block": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:creaking_heart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:creaking_heart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json new file mode 100644 index 00000000..324e408b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/creeper_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_creeper_head": { + "conditions": { + "items": [ + { + "items": "minecraft:creeper_head" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:creeper_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_creeper_head" + ] + ], + "rewards": { + "recipes": [ + "minecraft:creeper_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye.json new file mode 100644 index 00000000..6c4f40c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json new file mode 100644 index 00000000..116d15df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/cyan_dye_from_pitcher_plant.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pitcher_plant": { + "conditions": { + "items": [ + { + "items": "minecraft:pitcher_plant" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_dye_from_pitcher_plant" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pitcher_plant" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_dye_from_pitcher_plant" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond.json new file mode 100644 index 00000000..e6fed724 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_block": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json new file mode 100644 index 00000000..65f3bb48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_deepslate_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_blasting_deepslate_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_blasting_deepslate_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json new file mode 100644 index 00000000..61e4459d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_blasting_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_blasting_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_blasting_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json new file mode 100644 index 00000000..ebeb39b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_deepslate_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_smelting_deepslate_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_smelting_deepslate_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json new file mode 100644 index 00000000..2b1afe88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/diamond_from_smelting_diamond_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_from_smelting_diamond_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_from_smelting_diamond_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..e696da78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dune_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:dune_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dune_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dune_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dune_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..297a8829 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/dune_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:dune_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dune_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dune_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald.json new file mode 100644 index 00000000..2cd28b7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_block": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json new file mode 100644 index 00000000..d7774a7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_deepslate_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_blasting_deepslate_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_blasting_deepslate_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json new file mode 100644 index 00000000..0876a9ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_blasting_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_blasting_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_blasting_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json new file mode 100644 index 00000000..2ca8e2f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_deepslate_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_smelting_deepslate_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_smelting_deepslate_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json new file mode 100644 index 00000000..a7e2e784 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/emerald_from_smelting_emerald_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_emerald_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:emerald_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:emerald_from_smelting_emerald_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_emerald_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:emerald_from_smelting_emerald_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ender_eye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ender_eye.json new file mode 100644 index 00000000..796e5948 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ender_eye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ender_eye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ender_eye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..80ecd636 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_eye_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:eye_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:eye_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_eye_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:eye_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9a9412bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/eye_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:eye_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:eye_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:eye_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json new file mode 100644 index 00000000..6709a6d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/field_masoned_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bricks": { + "conditions": { + "items": [ + { + "items": "minecraft:bricks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:field_masoned_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bricks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:field_masoned_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/fire_charge.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/fire_charge.json new file mode 100644 index 00000000..8104ff1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/fire_charge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blaze_powder": { + "conditions": { + "items": [ + { + "items": "minecraft:blaze_powder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fire_charge" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blaze_powder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fire_charge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json new file mode 100644 index 00000000..6a35e5c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/firework_rocket_simple.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gunpowder": { + "conditions": { + "items": [ + { + "items": "minecraft:gunpowder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:firework_rocket_simple" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gunpowder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:firework_rocket_simple" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..e6648847 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flow_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:flow_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flow_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flow_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flow_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..de75086b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flow_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:flow_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flow_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flow_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json new file mode 100644 index 00000000..43678b87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/flower_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flower_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flower_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json new file mode 100644 index 00000000..5f1ac8a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_deepslate_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_deepslate_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_deepslate_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json new file mode 100644 index 00000000..9482a9b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json new file mode 100644 index 00000000..71a722d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_nether_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_nether_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_nether_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json new file mode 100644 index 00000000..a04bbd66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_blasting_raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_blasting_raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_blasting_raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json new file mode 100644 index 00000000..989fc724 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_gold_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_block": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_gold_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_gold_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json new file mode 100644 index 00000000..849a182c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json new file mode 100644 index 00000000..f080f27b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_deepslate_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_deepslate_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_deepslate_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json new file mode 100644 index 00000000..d2331d3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json new file mode 100644 index 00000000..556d16a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_nether_gold_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_gold_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_gold_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_nether_gold_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_gold_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_nether_gold_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json new file mode 100644 index 00000000..18fe8e0c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_ingot_from_smelting_raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_ingot_from_smelting_raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_ingot_from_smelting_raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget.json new file mode 100644 index 00000000..6eeaf564 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json new file mode 100644 index 00000000..fe24aff6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_blasting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_pickaxe", + "has_golden_shovel", + "has_golden_axe", + "has_golden_hoe", + "has_golden_sword", + "has_golden_spear", + "has_golden_helmet", + "has_golden_chestplate", + "has_golden_leggings", + "has_golden_boots", + "has_golden_horse_armor", + "has_golden_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json new file mode 100644 index 00000000..21e15e91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gold_nugget_from_smelting.json @@ -0,0 +1,153 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_golden_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gold_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_pickaxe", + "has_golden_shovel", + "has_golden_axe", + "has_golden_hoe", + "has_golden_sword", + "has_golden_spear", + "has_golden_helmet", + "has_golden_chestplate", + "has_golden_leggings", + "has_golden_boots", + "has_golden_horse_armor", + "has_golden_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gold_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye.json new file mode 100644 index 00000000..55be0c29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json new file mode 100644 index 00000000..4b28341d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/gray_dye_from_closed_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_closed_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:closed_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_dye_from_closed_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_closed_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_dye_from_closed_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/green_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/green_dye.json new file mode 100644 index 00000000..aca5bc6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/green_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cactus": { + "conditions": { + "items": [ + { + "items": "minecraft:cactus" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cactus" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..94be097a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_host_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:host_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:host_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_host_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:host_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..ab6ffc49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/host_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:host_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:host_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:host_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json new file mode 100644 index 00000000..ddbdc90c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_deepslate_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_deepslate_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_deepslate_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json new file mode 100644 index 00000000..76bad9a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json new file mode 100644 index 00000000..1d02a7f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_blasting_raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_blasting_raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_blasting_raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json new file mode 100644 index 00000000..9de9119f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_iron_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_iron_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_iron_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json new file mode 100644 index 00000000..d344b901 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_nuggets.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_nugget": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nugget" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_nuggets" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_nugget" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_nuggets" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json new file mode 100644 index 00000000..3515fe9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_deepslate_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_deepslate_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_deepslate_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json new file mode 100644 index 00000000..1f59473f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_iron_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_iron_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_iron_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json new file mode 100644 index 00000000..997b86c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_ingot_from_smelting_raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_ingot_from_smelting_raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_ingot_from_smelting_raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget.json new file mode 100644 index 00000000..b6f1d12b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json new file mode 100644 index 00000000..59992e18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_blasting.json @@ -0,0 +1,197 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chainmail_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_pickaxe", + "has_iron_shovel", + "has_iron_axe", + "has_iron_hoe", + "has_iron_sword", + "has_iron_spear", + "has_iron_helmet", + "has_iron_chestplate", + "has_iron_leggings", + "has_iron_boots", + "has_iron_horse_armor", + "has_chainmail_helmet", + "has_chainmail_chestplate", + "has_chainmail_leggings", + "has_chainmail_boots", + "has_iron_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json new file mode 100644 index 00000000..851aa764 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/iron_nugget_from_smelting.json @@ -0,0 +1,197 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chainmail_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_chainmail_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:chainmail_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_axe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_axe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_hoe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_hoe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_nautilus_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_nautilus_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_shovel": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_shovel" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_spear": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_spear" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_iron_sword": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_sword" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_nugget_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_pickaxe", + "has_iron_shovel", + "has_iron_axe", + "has_iron_hoe", + "has_iron_sword", + "has_iron_spear", + "has_iron_helmet", + "has_iron_chestplate", + "has_iron_leggings", + "has_iron_boots", + "has_iron_horse_armor", + "has_chainmail_helmet", + "has_chainmail_chestplate", + "has_chainmail_leggings", + "has_chainmail_boots", + "has_iron_nautilus_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_nugget_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli.json new file mode 100644 index 00000000..14e93292 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_block": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json new file mode 100644 index 00000000..04418e80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_deepslate_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_blasting_deepslate_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json new file mode 100644 index 00000000..b72a2c3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_blasting_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_blasting_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_blasting_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json new file mode 100644 index 00000000..99265db5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_deepslate_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_smelting_deepslate_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json new file mode 100644 index 00000000..8830f060 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lapis_lazuli_from_smelting_lapis_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lapis_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:lapis_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lapis_lazuli_from_smelting_lapis_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lapis_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lapis_lazuli_from_smelting_lapis_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leaf_litter.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leaf_litter.json new file mode 100644 index 00000000..c6b83cb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leaf_litter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leaves": { + "conditions": { + "items": [ + { + "items": "#minecraft:leaves" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leaf_litter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leaves" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leaf_litter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather.json new file mode 100644 index 00000000..125ece1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rabbit_hide": { + "conditions": { + "items": [ + { + "items": "minecraft:rabbit_hide" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rabbit_hide" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json new file mode 100644 index 00000000..f8c7d4ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_boots_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_boots_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_boots" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_boots_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json new file mode 100644 index 00000000..1ea793a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_chestplate_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_chestplate_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_chestplate" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_chestplate_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json new file mode 100644 index 00000000..8fe7df14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_helmet_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_helmet_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_helmet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_helmet_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor.json new file mode 100644 index 00000000..ba8c8914 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather": { + "conditions": { + "items": [ + { + "items": "minecraft:leather" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_horse_armor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_horse_armor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json new file mode 100644 index 00000000..341eb825 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_horse_armor_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_horse_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_horse_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_horse_armor_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_horse_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_horse_armor_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json new file mode 100644 index 00000000..3b2e5b2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/leather_leggings_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_leather_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:leather_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:leather_leggings_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_leather_leggings" + ] + ], + "rewards": { + "recipes": [ + "minecraft:leather_leggings_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json new file mode 100644 index 00000000..3e1a7ce2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_orchid.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_orchid": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_orchid" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_dye_from_blue_orchid" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_orchid" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_dye_from_blue_orchid" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json new file mode 100644 index 00000000..db51ab9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_blue_dye_from_blue_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_dye_from_blue_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_dye_from_blue_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json new file mode 100644 index 00000000..16d5a695 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_azure_bluet.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_azure_bluet": { + "conditions": { + "items": [ + { + "items": "minecraft:azure_bluet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_azure_bluet" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_azure_bluet" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_azure_bluet" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json new file mode 100644 index 00000000..5bcb43d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_black_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_black_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_black_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json new file mode 100644 index 00000000..70baee04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_gray_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_gray_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_gray_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json new file mode 100644 index 00000000..ba5e104f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_oxeye_daisy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxeye_daisy": { + "conditions": { + "items": [ + { + "items": "minecraft:oxeye_daisy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_oxeye_daisy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxeye_daisy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_oxeye_daisy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json new file mode 100644 index 00000000..0dcf3613 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/light_gray_dye_from_white_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_dye_from_white_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:white_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_dye_from_white_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye.json new file mode 100644 index 00000000..0e3495e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json new file mode 100644 index 00000000..acda1076 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/lime_dye_from_smelting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sea_pickle": { + "conditions": { + "items": [ + { + "items": "minecraft:sea_pickle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_dye_from_smelting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sea_pickle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_dye_from_smelting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json new file mode 100644 index 00000000..ae728273 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_allium.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_allium": { + "conditions": { + "items": [ + { + "items": "minecraft:allium" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_allium" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_allium" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_allium" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json new file mode 100644 index 00000000..6b147f6d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_pink.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_blue_red_pink" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye", + "has_blue_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_blue_red_pink" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json new file mode 100644 index 00000000..9c5f1010 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_blue_red_white_dye.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_rose_red": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_blue_red_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_rose_red", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_blue_red_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json new file mode 100644 index 00000000..56f9ba23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_lilac.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lilac": { + "conditions": { + "items": [ + { + "items": "minecraft:lilac" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_lilac" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lilac" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_lilac" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json new file mode 100644 index 00000000..687b375d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/magenta_dye_from_purple_and_pink.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_dye_from_purple_and_pink" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_dye_from_purple_and_pink" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map.json new file mode 100644 index 00000000..016bfe2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_compass": { + "conditions": { + "items": [ + { + "items": "minecraft:compass" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:map" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_compass" + ] + ], + "rewards": { + "recipes": [ + "minecraft:map" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map_cloning.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map_cloning.json new file mode 100644 index 00000000..3f8361ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/map_cloning.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_filled_map": { + "conditions": { + "items": [ + { + "items": "minecraft:filled_map" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:map_cloning" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_filled_map" + ] + ], + "rewards": { + "recipes": [ + "minecraft:map_cloning" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/melon_seeds.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/melon_seeds.json new file mode 100644 index 00000000..64b5c509 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/melon_seeds.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_melon": { + "conditions": { + "items": [ + { + "items": "minecraft:melon_slice" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:melon_seeds" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_melon" + ] + ], + "rewards": { + "recipes": [ + "minecraft:melon_seeds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json new file mode 100644 index 00000000..4051b979 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/mojang_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_enchanted_golden_apple": { + "conditions": { + "items": [ + { + "items": "minecraft:enchanted_golden_apple" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mojang_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_enchanted_golden_apple" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mojang_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/music_disc_5.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/music_disc_5.json new file mode 100644 index 00000000..c0ae1449 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/music_disc_5.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_disc_fragment_5": { + "conditions": { + "items": [ + { + "items": "minecraft:disc_fragment_5" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:music_disc_5" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_disc_fragment_5" + ] + ], + "rewards": { + "recipes": [ + "minecraft:music_disc_5" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/nether_brick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/nether_brick.json new file mode 100644 index 00000000..6be93064 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/nether_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherrack": { + "conditions": { + "items": [ + { + "items": "minecraft:netherrack" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:nether_brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherrack" + ] + ], + "rewards": { + "recipes": [ + "minecraft:nether_brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot.json new file mode 100644 index 00000000..e302547e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_scrap": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_scrap" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_ingot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_scrap" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_ingot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json new file mode 100644 index 00000000..058f380b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_ingot_from_netherite_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_block": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_ingot_from_netherite_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_ingot_from_netherite_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap.json new file mode 100644 index 00000000..ff6c6376 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_scrap" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ancient_debris" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_scrap" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json new file mode 100644 index 00000000..999fa98f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_scrap_from_blasting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_ancient_debris": { + "conditions": { + "items": [ + { + "items": "minecraft:ancient_debris" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_scrap_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ancient_debris" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_scrap_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..b8234c13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/netherite_upgrade_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_upgrade_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:netherite_upgrade_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_upgrade_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_upgrade_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_upgrade_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json new file mode 100644 index 00000000..2183c653 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_open_eyeblossom.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_open_eyeblossom": { + "conditions": { + "items": [ + { + "items": "minecraft:open_eyeblossom" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_open_eyeblossom" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_open_eyeblossom" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_open_eyeblossom" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json new file mode 100644 index 00000000..4f415e10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_orange_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_orange_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_orange_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json new file mode 100644 index 00000000..e0b836f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_red_yellow.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_red_yellow" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_red_yellow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json new file mode 100644 index 00000000..87b4a3a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/orange_dye_from_torchflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_dye_from_torchflower" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_torchflower": { + "conditions": { + "items": [ + { + "items": "minecraft:torchflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_torchflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_dye_from_torchflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/paper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/paper.json new file mode 100644 index 00000000..7d00fd6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/paper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_reeds": { + "conditions": { + "items": [ + { + "items": "minecraft:sugar_cane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:paper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_reeds" + ] + ], + "rewards": { + "recipes": [ + "minecraft:paper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json new file mode 100644 index 00000000..37b918ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_cactus_flower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cactus_flower": { + "conditions": { + "items": [ + { + "items": "minecraft:cactus_flower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_cactus_flower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cactus_flower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_cactus_flower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json new file mode 100644 index 00000000..2a417b0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_peony.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_peony": { + "conditions": { + "items": [ + { + "items": "minecraft:peony" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_peony" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_peony" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_peony" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json new file mode 100644 index 00000000..5f7f04c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_petals.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_petals": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_petals" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_pink_petals" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_petals" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_pink_petals" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json new file mode 100644 index 00000000..205ec848 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_pink_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_tulip": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_pink_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_tulip" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_pink_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json new file mode 100644 index 00000000..003371ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pink_dye_from_red_white_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_dye_from_red_white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_dye_from_red_white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json new file mode 100644 index 00000000..565ca38e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/popped_chorus_fruit.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_chorus_fruit": { + "conditions": { + "items": [ + { + "items": "minecraft:chorus_fruit" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:popped_chorus_fruit" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_chorus_fruit" + ] + ], + "rewards": { + "recipes": [ + "minecraft:popped_chorus_fruit" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json new file mode 100644 index 00000000..b2681bdf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/pumpkin_seeds.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pumpkin": { + "conditions": { + "items": [ + { + "items": "minecraft:pumpkin" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pumpkin_seeds" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pumpkin" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pumpkin_seeds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/purple_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/purple_dye.json new file mode 100644 index 00000000..283c4be4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/purple_dye.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz.json new file mode 100644 index 00000000..617b0828 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_quartz_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_quartz_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_quartz_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json new file mode 100644 index 00000000..497982d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/quartz_from_blasting.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_nether_quartz_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:nether_quartz_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:quartz_from_blasting" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_nether_quartz_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:quartz_from_blasting" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..acf39ca6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raiser_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:raiser_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raiser_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raiser_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raiser_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..477d3668 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raiser_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:raiser_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raiser_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_copper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_copper.json new file mode 100644 index 00000000..4fe7ab70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_copper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_copper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_copper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_gold.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_gold.json new file mode 100644 index 00000000..e81635d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_gold.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_gold_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_gold_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_gold" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_gold_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_gold" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_iron.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_iron.json new file mode 100644 index 00000000..f97f6053 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/raw_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_raw_iron_block": { + "conditions": { + "items": [ + { + "items": "minecraft:raw_iron_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:raw_iron" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_raw_iron_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:raw_iron" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json new file mode 100644 index 00000000..7c0c252e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_beetroot.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_beetroot": { + "conditions": { + "items": [ + { + "items": "minecraft:beetroot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_beetroot" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_beetroot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_beetroot" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json new file mode 100644 index 00000000..448bb810 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_poppy.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_poppy": { + "conditions": { + "items": [ + { + "items": "minecraft:poppy" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_poppy" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_poppy" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_poppy" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json new file mode 100644 index 00000000..bbb00fd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_rose_bush.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rose_bush": { + "conditions": { + "items": [ + { + "items": "minecraft:rose_bush" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_rose_bush" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rose_bush" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_rose_bush" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json new file mode 100644 index 00000000..e044398e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/red_dye_from_tulip.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_flower": { + "conditions": { + "items": [ + { + "items": "minecraft:red_tulip" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_dye_from_tulip" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_flower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_dye_from_tulip" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_brick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_brick.json new file mode 100644 index 00000000..1a30bf38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_brick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_clump": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_clump" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_brick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_clump" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_brick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_clump.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_clump.json new file mode 100644 index 00000000..9a5c3895 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/resin_clump.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_resin_block": { + "conditions": { + "items": [ + { + "items": "minecraft:resin_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:resin_clump" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_resin_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:resin_clump" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..cc02cd3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rib_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:rib_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rib_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rib_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rib_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..732193e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/rib_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:rib_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rib_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rib_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..944a2fb8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sentry_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:sentry_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sentry_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sentry_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sentry_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..efaf125b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sentry_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:sentry_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sentry_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..a68b9cba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_shaper_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:shaper_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shaper_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_shaper_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shaper_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..c743861e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/shaper_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:shaper_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shaper_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..15b8cc37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_silence_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:silence_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:silence_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_silence_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:silence_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..e07c7070 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/silence_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:silence_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:silence_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:silence_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json new file mode 100644 index 00000000..de66343e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/skull_banner_pattern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:skull_banner_pattern" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wither_skeleton_skull": { + "conditions": { + "items": [ + { + "items": "minecraft:wither_skeleton_skull" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wither_skeleton_skull" + ] + ], + "rewards": { + "recipes": [ + "minecraft:skull_banner_pattern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/slime_ball.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/slime_ball.json new file mode 100644 index 00000000..38c8a952 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/slime_ball.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_block": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:slime_ball" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:slime_ball" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..87b4beba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_snout_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:snout_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snout_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_snout_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snout_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..47d3d3da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/snout_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:snout_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:snout_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:snout_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..ddb5562c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_spire_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:spire_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spire_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_spire_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spire_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..de70999d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/spire_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:spire_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spire_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spire_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick.json new file mode 100644 index 00000000..74165bb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "#minecraft:planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json new file mode 100644 index 00000000..5e481f21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/stick_from_bamboo_item.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bamboo": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stick_from_bamboo_item" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bamboo" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stick_from_bamboo_item" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json new file mode 100644 index 00000000..57fddc97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_honey_bottle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_bottle": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_bottle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sugar_from_honey_bottle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_bottle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sugar_from_honey_bottle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json new file mode 100644 index 00000000..3981894c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/sugar_from_sugar_cane.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sugar_cane": { + "conditions": { + "items": [ + { + "items": "minecraft:sugar_cane" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sugar_from_sugar_cane" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sugar_cane" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sugar_from_sugar_cane" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..e25917d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tide_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tide_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:tide_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tide_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tide_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6155cc6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tide_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:tide_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tide_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tide_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tipped_arrow.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tipped_arrow.json new file mode 100644 index 00000000..fa6b310a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/tipped_arrow.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lingering_potion": { + "conditions": { + "items": [ + { + "items": "minecraft:lingering_potion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tipped_arrow" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lingering_potion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tipped_arrow" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..0f691a66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:vex_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_vex_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:vex_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_vex_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:vex_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6820f5dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/vex_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:vex_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:vex_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:vex_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..5f4a3a77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ward_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_ward_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:ward_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_ward_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ward_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..a48941b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/ward_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:ward_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:ward_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:ward_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..b713cb00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wayfinder_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wayfinder_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wayfinder_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wayfinder_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wayfinder_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..173ea22c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wayfinder_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wayfinder_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wheat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wheat.json new file mode 100644 index 00000000..32380a84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wheat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_hay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:hay_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wheat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_hay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wheat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye.json new file mode 100644 index 00000000..53f5a0a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bone_meal": { + "conditions": { + "items": [ + { + "items": "minecraft:bone_meal" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_dye" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bone_meal" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_dye" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json new file mode 100644 index 00000000..8dfcad0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/white_dye_from_lily_of_the_valley.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lily_of_the_valley": { + "conditions": { + "items": [ + { + "items": "minecraft:lily_of_the_valley" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_dye_from_lily_of_the_valley" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lily_of_the_valley" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_dye_from_lily_of_the_valley" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..6766be1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wild_armor_trim_smithing_template" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wild_armor_trim_smithing_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wild_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wild_armor_trim_smithing_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wild_armor_trim_smithing_template" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..64ffff58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wild_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_smithing_trim_template": { + "conditions": { + "items": [ + { + "items": "minecraft:wild_armor_trim_smithing_template" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wild_armor_trim_smithing_template_smithing_trim" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_smithing_trim_template" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wild_armor_trim_smithing_template_smithing_trim" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wind_charge.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wind_charge.json new file mode 100644 index 00000000..059e1e33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wind_charge.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_breeze_rod": { + "conditions": { + "items": [ + { + "items": "minecraft:breeze_rod" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wind_charge" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_breeze_rod" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wind_charge" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json new file mode 100644 index 00000000..cde729c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/wolf_armor_dyed.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wolf_armor_dyed" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wolf_armor": { + "conditions": { + "items": [ + { + "items": "minecraft:wolf_armor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wolf_armor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wolf_armor_dyed" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/writable_book.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/writable_book.json new file mode 100644 index 00000000..2763d8a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/writable_book.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:writable_book" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:writable_book" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json new file mode 100644 index 00000000..abec5f12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json new file mode 100644 index 00000000..6783a9d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_golden_dandelion.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_golden_dandelion": { + "conditions": { + "items": [ + { + "items": "minecraft:golden_dandelion" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_golden_dandelion" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_golden_dandelion" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_golden_dandelion" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json new file mode 100644 index 00000000..4f6e4946 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_sunflower.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_sunflower": { + "conditions": { + "items": [ + { + "items": "minecraft:sunflower" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_sunflower" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_sunflower" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_sunflower" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json new file mode 100644 index 00000000..872f6c51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/misc/yellow_dye_from_wildflowers.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_dye_from_wildflowers" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_wildflowers": { + "conditions": { + "items": [ + { + "items": "minecraft:wildflowers" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_wildflowers" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_dye_from_wildflowers" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_button.json new file mode 100644 index 00000000..6fffe347 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_door.json new file mode 100644 index 00000000..2f90170a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json new file mode 100644 index 00000000..be861e2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json new file mode 100644 index 00000000..fc492faa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json new file mode 100644 index 00000000..e515bb25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/acacia_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:acacia_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_button.json new file mode 100644 index 00000000..8804b515 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_door.json new file mode 100644 index 00000000..bec8191f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json new file mode 100644 index 00000000..b089d016 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json new file mode 100644 index 00000000..7ab171fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json new file mode 100644 index 00000000..3f90d161 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/bamboo_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:bamboo_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_button.json new file mode 100644 index 00000000..d3e4b7f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_door.json new file mode 100644 index 00000000..b35c30c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json new file mode 100644 index 00000000..6af682c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json new file mode 100644 index 00000000..58089b3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json new file mode 100644 index 00000000..b5eb36ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/birch_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:birch_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json new file mode 100644 index 00000000..4d0d6eb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/calibrated_sculk_sensor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:calibrated_sculk_sensor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:calibrated_sculk_sensor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_button.json new file mode 100644 index 00000000..342c373c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_door.json new file mode 100644 index 00000000..7b8cc4f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json new file mode 100644 index 00000000..40114d1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json new file mode 100644 index 00000000..9cf12d45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json new file mode 100644 index 00000000..dad9882d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/cherry_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:cherry_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/comparator.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/comparator.json new file mode 100644 index 00000000..7fc1301e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/comparator.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:comparator" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:comparator" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_bulb.json new file mode 100644 index 00000000..f9452a6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_door.json new file mode 100644 index 00000000..39580b4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json new file mode 100644 index 00000000..2dcecaa1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/copper_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crafter.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crafter.json new file mode 100644 index 00000000..faf8ca37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crafter.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_dropper": { + "conditions": { + "items": [ + { + "items": "minecraft:dropper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crafter" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_dropper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crafter" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_button.json new file mode 100644 index 00000000..e0da592f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_door.json new file mode 100644 index 00000000..a6834bee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json new file mode 100644 index 00000000..56414eb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json new file mode 100644 index 00000000..09dfec89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json new file mode 100644 index 00000000..70d978bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/crimson_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:crimson_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:crimson_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:crimson_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_button.json new file mode 100644 index 00000000..c5c28603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_door.json new file mode 100644 index 00000000..bba6f2ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json new file mode 100644 index 00000000..54568b59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json new file mode 100644 index 00000000..dd90b8cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json new file mode 100644 index 00000000..47e2dd63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dark_oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:dark_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/daylight_detector.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/daylight_detector.json new file mode 100644 index 00000000..20df85be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/daylight_detector.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:daylight_detector" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:daylight_detector" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dispenser.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dispenser.json new file mode 100644 index 00000000..721489b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dispenser.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_bow": { + "conditions": { + "items": [ + { + "items": "minecraft:bow" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dispenser" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_bow" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dispenser" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dropper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dropper.json new file mode 100644 index 00000000..6defab3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/dropper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dropper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dropper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json new file mode 100644 index 00000000..96242b4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/exposed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:exposed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:exposed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..4b2bdd34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/heavy_weighted_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:heavy_weighted_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:heavy_weighted_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/honey_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/honey_block.json new file mode 100644 index 00000000..89de00ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/honey_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_honey_bottle": { + "conditions": { + "items": [ + { + "items": "minecraft:honey_bottle" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:honey_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_honey_bottle" + ] + ], + "rewards": { + "recipes": [ + "minecraft:honey_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/hopper.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/hopper.json new file mode 100644 index 00000000..4ce4826d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/hopper.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hopper" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hopper" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_door.json new file mode 100644 index 00000000..807388c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json new file mode 100644 index 00000000..6e3d0559 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/iron_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_button.json new file mode 100644 index 00000000..a152c028 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_door.json new file mode 100644 index 00000000..5c956ee8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json new file mode 100644 index 00000000..7772dec1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json new file mode 100644 index 00000000..3010d9a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json new file mode 100644 index 00000000..2a27a611 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/jungle_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:jungle_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lectern.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lectern.json new file mode 100644 index 00000000..d27109e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lectern.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_book": { + "conditions": { + "items": [ + { + "items": "minecraft:book" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lectern" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_book" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lectern" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lever.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lever.json new file mode 100644 index 00000000..80e0dba4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lever.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "minecraft:cobblestone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lever" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lever" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json new file mode 100644 index 00000000..c11838e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/light_weighted_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:gold_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_weighted_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_weighted_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lightning_rod.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lightning_rod.json new file mode 100644 index 00000000..1f27834a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/lightning_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lightning_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lightning_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_button.json new file mode 100644 index 00000000..d7a409b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_door.json new file mode 100644 index 00000000..8479072a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json new file mode 100644 index 00000000..eda78b19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json new file mode 100644 index 00000000..1d851e98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json new file mode 100644 index 00000000..7ea289ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/mangrove_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:mangrove_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/note_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/note_block.json new file mode 100644 index 00000000..d7ec664a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/note_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:note_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:note_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_button.json new file mode 100644 index 00000000..62a2145f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_door.json new file mode 100644 index 00000000..34a710b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json new file mode 100644 index 00000000..d8153775 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json new file mode 100644 index 00000000..8f9a353c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json new file mode 100644 index 00000000..873d96e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/observer.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/observer.json new file mode 100644 index 00000000..e40f179a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/observer.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_quartz": { + "conditions": { + "items": [ + { + "items": "minecraft:quartz" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:observer" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_quartz" + ] + ], + "rewards": { + "recipes": [ + "minecraft:observer" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json new file mode 100644 index 00000000..c5c57e28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/oxidized_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oxidized_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oxidized_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_button.json new file mode 100644 index 00000000..9789127a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_door.json new file mode 100644 index 00000000..3185caa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json new file mode 100644 index 00000000..66a72265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json new file mode 100644 index 00000000..953ddd67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json new file mode 100644 index 00000000..11749685 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/pale_oak_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:pale_oak_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/piston.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/piston.json new file mode 100644 index 00000000..191c268f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/piston.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:piston" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:piston" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json new file mode 100644 index 00000000..19b612ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..ed1d1945 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/polished_blackstone_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_polished_blackstone": { + "conditions": { + "items": [ + { + "items": "minecraft:polished_blackstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:polished_blackstone_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_polished_blackstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:polished_blackstone_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone.json new file mode 100644 index 00000000..4660d21f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_block": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_block.json new file mode 100644 index 00000000..d6fe3b27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json new file mode 100644 index 00000000..c5437d0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_deepslate_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_blasting_deepslate_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_blasting_deepslate_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json new file mode 100644 index 00000000..7235f217 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_blasting_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_blasting_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_blasting_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json new file mode 100644 index 00000000..aa1748df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_deepslate_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_deepslate_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:deepslate_redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_smelting_deepslate_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_deepslate_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_smelting_deepslate_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json new file mode 100644 index 00000000..739f04a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_from_smelting_redstone_ore.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_ore": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_ore" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_from_smelting_redstone_ore" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_ore" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_from_smelting_redstone_ore" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_lamp.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_lamp.json new file mode 100644 index 00000000..851832a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_lamp.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_glowstone": { + "conditions": { + "items": [ + { + "items": "minecraft:glowstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_lamp" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_glowstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_lamp" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_torch.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_torch.json new file mode 100644 index 00000000..d905287a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/redstone_torch.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:redstone_torch" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:redstone_torch" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/repeater.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/repeater.json new file mode 100644 index 00000000..6d70605a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/repeater.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone_torch": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone_torch" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:repeater" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone_torch" + ] + ], + "rewards": { + "recipes": [ + "minecraft:repeater" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/slime_block.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/slime_block.json new file mode 100644 index 00000000..8f41914b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/slime_block.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:slime_block" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:slime_block" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_button.json new file mode 100644 index 00000000..d2117888 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_door.json new file mode 100644 index 00000000..f23de9f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json new file mode 100644 index 00000000..818987e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json new file mode 100644 index 00000000..ae4e166f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json new file mode 100644 index 00000000..20f57594 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/spruce_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:spruce_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/sticky_piston.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/sticky_piston.json new file mode 100644 index 00000000..60011ec2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/sticky_piston.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_slime_ball": { + "conditions": { + "items": [ + { + "items": "minecraft:slime_ball" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:sticky_piston" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_slime_ball" + ] + ], + "rewards": { + "recipes": [ + "minecraft:sticky_piston" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_button.json new file mode 100644 index 00000000..f8020133 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json new file mode 100644 index 00000000..e2af12eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/stone_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stone": { + "conditions": { + "items": [ + { + "items": "minecraft:stone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/target.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/target.json new file mode 100644 index 00000000..21b2ae11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/target.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_hay_block": { + "conditions": { + "items": [ + { + "items": "minecraft:hay_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:target" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone", + "has_hay_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:target" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tnt.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tnt.json new file mode 100644 index 00000000..bf956522 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tnt.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gunpowder": { + "conditions": { + "items": [ + { + "items": "minecraft:gunpowder" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tnt" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gunpowder" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tnt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/trapped_chest.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/trapped_chest.json new file mode 100644 index 00000000..e5033bc2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/trapped_chest.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:trapped_chest" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_tripwire_hook": { + "conditions": { + "items": [ + { + "items": "minecraft:tripwire_hook" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_tripwire_hook" + ] + ], + "rewards": { + "recipes": [ + "minecraft:trapped_chest" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tripwire_hook.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tripwire_hook.json new file mode 100644 index 00000000..3a3cf54d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/tripwire_hook.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tripwire_hook" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tripwire_hook" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_button.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_button.json new file mode 100644 index 00000000..267ac24f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_button.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_button" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_button" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_door.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_door.json new file mode 100644 index 00000000..4088dbbc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_door.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_door" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_door" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json new file mode 100644 index 00000000..ed7cfa67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_fence_gate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fence_gate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fence_gate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json new file mode 100644 index 00000000..5b9b5816 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_pressure_plate.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_pressure_plate" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_pressure_plate" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json new file mode 100644 index 00000000..6b3ceaee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/warped_trapdoor.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_planks": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_planks" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_trapdoor" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_planks" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_trapdoor" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json new file mode 100644 index 00000000..334612b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_copper_block": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_copper_block" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_copper_block" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..35a26766 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..cda86792 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..67fe651b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..4cfd14c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_exposed_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_exposed_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_exposed_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..71379ea9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..72d19907 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..3b9514e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_exposed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_exposed_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:exposed_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_exposed_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_exposed_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..77d0bb2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_oxidized_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_oxidized_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_oxidized_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..9371e389 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json new file mode 100644 index 00000000..f943e07a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..4e7e1f35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_oxidized_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_oxidized_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:oxidized_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_oxidized_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_oxidized_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..3ac483c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_waxed_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:waxed_weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_waxed_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..f96fb0dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_bulb_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_bulb_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_bulb": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_bulb" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_bulb" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_bulb_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json new file mode 100644 index 00000000..b9b5c909 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_door_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_door_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_door": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_door" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_door" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_door_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..3f22f842 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/waxed_weathered_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper_trapdoor": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper_trapdoor" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper_trapdoor" + ] + ], + "rewards": { + "recipes": [ + "minecraft:waxed_weathered_copper_trapdoor_from_honeycomb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json new file mode 100644 index 00000000..b19eb0bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/redstone/weathered_copper_bulb.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:weathered_copper_bulb" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_weathered_copper": { + "conditions": { + "items": [ + { + "items": "minecraft:weathered_copper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_weathered_copper" + ] + ], + "rewards": { + "recipes": [ + "minecraft:weathered_copper_bulb" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/root.json b/data/generated/V26_2/data/minecraft/advancement/recipes/root.json new file mode 100644 index 00000000..78142c57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/root.json @@ -0,0 +1,12 @@ +{ + "criteria": { + "impossible": { + "trigger": "minecraft:impossible" + } + }, + "requirements": [ + [ + "impossible" + ] + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/black_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/black_bundle.json new file mode 100644 index 00000000..91ccc873 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/black_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_black_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:black_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:black_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_black_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:black_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/blue_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/blue_bundle.json new file mode 100644 index 00000000..43a67260 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/blue_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:blue_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:blue_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brown_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brown_bundle.json new file mode 100644 index 00000000..18d75fcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brown_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_brown_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:brown_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brown_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_brown_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brown_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brush.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brush.json new file mode 100644 index 00000000..00aafb53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/brush.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:copper_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:brush" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:brush" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/bundle.json new file mode 100644 index 00000000..5c589f86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/clock.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/clock.json new file mode 100644 index 00000000..dd3f2c49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/clock.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:clock" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:clock" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/compass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/compass.json new file mode 100644 index 00000000..627cfb31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/compass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_redstone": { + "conditions": { + "items": [ + { + "items": "minecraft:redstone" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:compass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_redstone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:compass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_axe.json new file mode 100644 index 00000000..71e1c174 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_hoe.json new file mode 100644 index 00000000..883515e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_pickaxe.json new file mode 100644 index 00000000..5b8f6b8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_shovel.json new file mode 100644 index 00000000..9ffea9cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/copper_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_copper_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:copper_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:copper_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_copper_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:copper_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/cyan_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/cyan_bundle.json new file mode 100644 index 00000000..68f8c387 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/cyan_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cyan_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:cyan_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cyan_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cyan_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cyan_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_axe.json new file mode 100644 index 00000000..f72454f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_hoe.json new file mode 100644 index 00000000..7be4e4a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json new file mode 100644 index 00000000..8e9b1b07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_shovel.json new file mode 100644 index 00000000..dc30177a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/diamond_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_diamond": { + "conditions": { + "items": [ + { + "items": "#minecraft:diamond_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:diamond_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_diamond" + ] + ], + "rewards": { + "recipes": [ + "minecraft:diamond_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/fishing_rod.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/fishing_rod.json new file mode 100644 index 00000000..95b6b72a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/fishing_rod.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:fishing_rod" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:fishing_rod" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/flint_and_steel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/flint_and_steel.json new file mode 100644 index 00000000..8950af6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/flint_and_steel.json @@ -0,0 +1,43 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_flint": { + "conditions": { + "items": [ + { + "items": "minecraft:flint" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:flint_and_steel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_flint", + "has_obsidian" + ] + ], + "rewards": { + "recipes": [ + "minecraft:flint_and_steel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_axe.json new file mode 100644 index 00000000..146169b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_hoe.json new file mode 100644 index 00000000..bfc7e725 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_pickaxe.json new file mode 100644 index 00000000..b8855c3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_shovel.json new file mode 100644 index 00000000..0e643c0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/golden_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gold_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:gold_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:golden_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gold_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:golden_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/gray_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/gray_bundle.json new file mode 100644 index 00000000..b8ff6a2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/gray_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:gray_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:gray_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/green_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/green_bundle.json new file mode 100644 index 00000000..fc75d8ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/green_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_green_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:green_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:green_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_green_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:green_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_axe.json new file mode 100644 index 00000000..bba795e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_hoe.json new file mode 100644 index 00000000..3e28715f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_pickaxe.json new file mode 100644 index 00000000..0bbdbdef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_shovel.json new file mode 100644 index 00000000..38835c37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/iron_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:iron_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:iron_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:iron_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lead.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lead.json new file mode 100644 index 00000000..750f4e84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lead.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_string": { + "conditions": { + "items": [ + { + "items": "minecraft:string" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lead" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_string" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lead" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_blue_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_blue_bundle.json new file mode 100644 index 00000000..880e5d90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_blue_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_blue_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_blue_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_blue_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_blue_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_blue_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_gray_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_gray_bundle.json new file mode 100644 index 00000000..5b190fb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/light_gray_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_light_gray_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:light_gray_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:light_gray_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_light_gray_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:light_gray_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lime_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lime_bundle.json new file mode 100644 index 00000000..2ac8c127 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/lime_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_lime_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:lime_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:lime_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_lime_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:lime_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/magenta_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/magenta_bundle.json new file mode 100644 index 00000000..6ae38bc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/magenta_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_magenta_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:magenta_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:magenta_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_magenta_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:magenta_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/name_tag.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/name_tag.json new file mode 100644 index 00000000..241cae89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/name_tag.json @@ -0,0 +1,54 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_metal_nugget": { + "conditions": { + "items": [ + { + "items": "#minecraft:metal_nuggets" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_name_tag": { + "conditions": { + "items": [ + { + "items": "minecraft:name_tag" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_paper": { + "conditions": { + "items": [ + { + "items": "minecraft:paper" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:name_tag" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_metal_nugget", + "has_paper", + "has_name_tag" + ] + ], + "rewards": { + "recipes": [ + "minecraft:name_tag" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json new file mode 100644 index 00000000..20a08b73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_axe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_axe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_axe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json new file mode 100644 index 00000000..186f0b05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_hoe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_hoe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_hoe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json new file mode 100644 index 00000000..74feb952 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_pickaxe_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_pickaxe_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_pickaxe_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json new file mode 100644 index 00000000..0f3426a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/netherite_shovel_smithing.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_netherite_ingot": { + "conditions": { + "items": [ + { + "items": "#minecraft:netherite_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:netherite_shovel_smithing" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_netherite_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:netherite_shovel_smithing" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/orange_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/orange_bundle.json new file mode 100644 index 00000000..e0c6a980 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/orange_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_orange_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:orange_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:orange_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_orange_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:orange_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/pink_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/pink_bundle.json new file mode 100644 index 00000000..ba94bca7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/pink_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_pink_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:pink_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pink_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_pink_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pink_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/purple_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/purple_bundle.json new file mode 100644 index 00000000..174244fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/purple_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_purple_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:purple_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:purple_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_purple_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:purple_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/recovery_compass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/recovery_compass.json new file mode 100644 index 00000000..22a7b883 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/recovery_compass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_echo_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:echo_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:recovery_compass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_echo_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:recovery_compass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/red_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/red_bundle.json new file mode 100644 index 00000000..bc7abd62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/red_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_red_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:red_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:red_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_red_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:red_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/shears.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/shears.json new file mode 100644 index 00000000..4bf08acd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/shears.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:shears" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:shears" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/spyglass.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/spyglass.json new file mode 100644 index 00000000..de0605c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/spyglass.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_amethyst_shard": { + "conditions": { + "items": [ + { + "items": "minecraft:amethyst_shard" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spyglass" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_amethyst_shard" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spyglass" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_axe.json new file mode 100644 index 00000000..b2fd156a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_hoe.json new file mode 100644 index 00000000..ef5185ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_pickaxe.json new file mode 100644 index 00000000..1377811c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_shovel.json new file mode 100644 index 00000000..cf566f50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/stone_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_cobblestone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:stone_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_cobblestone" + ] + ], + "rewards": { + "recipes": [ + "minecraft:stone_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/white_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/white_bundle.json new file mode 100644 index 00000000..33061545 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/white_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:white_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_white_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:white_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_white_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:white_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_axe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_axe.json new file mode 100644 index 00000000..f058032c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_axe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_axe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_axe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_hoe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_hoe.json new file mode 100644 index 00000000..35cefbdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_hoe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_hoe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_hoe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json new file mode 100644 index 00000000..e88dc29f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_pickaxe.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_pickaxe" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_pickaxe" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_shovel.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_shovel.json new file mode 100644 index 00000000..8fab2e74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/wooden_shovel.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_stick": { + "conditions": { + "items": [ + { + "items": "minecraft:stick" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:wooden_shovel" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_stick" + ] + ], + "rewards": { + "recipes": [ + "minecraft:wooden_shovel" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/tools/yellow_bundle.json b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/yellow_bundle.json new file mode 100644 index 00000000..691e1fff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/tools/yellow_bundle.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:yellow_bundle" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_yellow_dye": { + "conditions": { + "items": [ + { + "items": "minecraft:yellow_dye" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_yellow_dye" + ] + ], + "rewards": { + "recipes": [ + "minecraft:yellow_bundle" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_boat.json new file mode 100644 index 00000000..ea11dff8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json new file mode 100644 index 00000000..abe7cd39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/acacia_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:acacia_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:acacia_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/activator_rail.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/activator_rail.json new file mode 100644 index 00000000..45aabf4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/activator_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:activator_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:activator_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json new file mode 100644 index 00000000..3c35ddc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_chest_raft.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_chest_raft" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_chest_raft" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_raft.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_raft.json new file mode 100644 index 00000000..cd845a7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/bamboo_raft.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:bamboo_raft" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:bamboo_raft" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_boat.json new file mode 100644 index 00000000..aabc78e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json new file mode 100644 index 00000000..a3467b94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/birch_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:birch_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:birch_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json new file mode 100644 index 00000000..e7b31019 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/carrot_on_a_stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_carrot": { + "conditions": { + "items": [ + { + "items": "minecraft:carrot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:carrot_on_a_stick" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_carrot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:carrot_on_a_stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_boat.json new file mode 100644 index 00000000..e72ccdf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json new file mode 100644 index 00000000..8b87f01f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/cherry_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:cherry_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:cherry_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/chest_minecart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/chest_minecart.json new file mode 100644 index 00000000..5d5ba034 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/chest_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:chest_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:chest_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json new file mode 100644 index 00000000..6557ca3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json new file mode 100644 index 00000000..98236f77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/dark_oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:dark_oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:dark_oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/detector_rail.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/detector_rail.json new file mode 100644 index 00000000..cd2915ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/detector_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:detector_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:detector_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/furnace_minecart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/furnace_minecart.json new file mode 100644 index 00000000..a095f3f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/furnace_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:furnace_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:furnace_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/hopper_minecart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/hopper_minecart.json new file mode 100644 index 00000000..7ba8f538 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/hopper_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:hopper_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:hopper_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_boat.json new file mode 100644 index 00000000..604555d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json new file mode 100644 index 00000000..506945c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/jungle_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:jungle_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:jungle_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_boat.json new file mode 100644 index 00000000..2b778cdc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json new file mode 100644 index 00000000..8b2d68fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/mangrove_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:mangrove_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:mangrove_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/minecart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/minecart.json new file mode 100644 index 00000000..0bc6a688 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_iron_ingot": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_iron_ingot" + ] + ], + "rewards": { + "recipes": [ + "minecraft:minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_boat.json new file mode 100644 index 00000000..6ffdc386 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json new file mode 100644 index 00000000..141388f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json new file mode 100644 index 00000000..b060cc40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json new file mode 100644 index 00000000..06846142 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/pale_oak_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:pale_oak_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:pale_oak_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/powered_rail.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/powered_rail.json new file mode 100644 index 00000000..5e504c54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/powered_rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_rail": { + "conditions": { + "items": [ + { + "items": "minecraft:rail" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:powered_rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_rail" + ] + ], + "rewards": { + "recipes": [ + "minecraft:powered_rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/rail.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/rail.json new file mode 100644 index 00000000..78e0b5ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/rail.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:rail" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:rail" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_boat.json new file mode 100644 index 00000000..70ae85eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_boat.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_boat" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "in_water": { + "conditions": { + "block": "minecraft:water" + }, + "trigger": "minecraft:enter_block" + } + }, + "requirements": [ + [ + "has_the_recipe", + "in_water" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json new file mode 100644 index 00000000..b365bc28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/spruce_chest_boat.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_boat": { + "conditions": { + "items": [ + { + "items": "#minecraft:boats" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:spruce_chest_boat" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_boat" + ] + ], + "rewards": { + "recipes": [ + "minecraft:spruce_chest_boat" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/tnt_minecart.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/tnt_minecart.json new file mode 100644 index 00000000..86146c6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/tnt_minecart.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_minecart": { + "conditions": { + "items": [ + { + "items": "minecraft:minecart" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:tnt_minecart" + }, + "trigger": "minecraft:recipe_unlocked" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_minecart" + ] + ], + "rewards": { + "recipes": [ + "minecraft:tnt_minecart" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..8cdeba35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/recipes/transportation/warped_fungus_on_a_stick.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:recipes/root", + "criteria": { + "has_the_recipe": { + "conditions": { + "recipe": "minecraft:warped_fungus_on_a_stick" + }, + "trigger": "minecraft:recipe_unlocked" + }, + "has_warped_fungus": { + "conditions": { + "items": [ + { + "items": "minecraft:warped_fungus" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "requirements": [ + [ + "has_the_recipe", + "has_warped_fungus" + ] + ], + "rewards": { + "recipes": [ + "minecraft:warped_fungus_on_a_stick" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/cure_zombie_villager.json b/data/generated/V26_2/data/minecraft/advancement/story/cure_zombie_villager.json new file mode 100644 index 00000000..e1c12dd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/cure_zombie_villager.json @@ -0,0 +1,26 @@ +{ + "parent": "minecraft:story/enter_the_nether", + "criteria": { + "cured_zombie": { + "trigger": "minecraft:cured_zombie_villager" + } + }, + "display": { + "description": { + "translate": "advancements.story.cure_zombie_villager.description" + }, + "frame": "goal", + "icon": { + "id": "minecraft:golden_apple" + }, + "title": { + "translate": "advancements.story.cure_zombie_villager.title" + } + }, + "requirements": [ + [ + "cured_zombie" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/deflect_arrow.json b/data/generated/V26_2/data/minecraft/advancement/story/deflect_arrow.json new file mode 100644 index 00000000..1ae408d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/deflect_arrow.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:story/obtain_armor", + "criteria": { + "deflected_projectile": { + "conditions": { + "damage": { + "type": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + }, + "blocked": true + } + }, + "trigger": "minecraft:entity_hurt_player" + } + }, + "display": { + "description": { + "translate": "advancements.story.deflect_arrow.description" + }, + "icon": { + "id": "minecraft:shield" + }, + "title": { + "translate": "advancements.story.deflect_arrow.title" + } + }, + "requirements": [ + [ + "deflected_projectile" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/enchant_item.json b/data/generated/V26_2/data/minecraft/advancement/story/enchant_item.json new file mode 100644 index 00000000..83ec7e9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/enchant_item.json @@ -0,0 +1,25 @@ +{ + "parent": "minecraft:story/mine_diamond", + "criteria": { + "enchanted_item": { + "trigger": "minecraft:enchanted_item" + } + }, + "display": { + "description": { + "translate": "advancements.story.enchant_item.description" + }, + "icon": { + "id": "minecraft:enchanted_book" + }, + "title": { + "translate": "advancements.story.enchant_item.title" + } + }, + "requirements": [ + [ + "enchanted_item" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/enter_the_end.json b/data/generated/V26_2/data/minecraft/advancement/story/enter_the_end.json new file mode 100644 index 00000000..8af99272 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/enter_the_end.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:story/follow_ender_eye", + "criteria": { + "entered_end": { + "conditions": { + "to": "minecraft:the_end" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "description": { + "translate": "advancements.story.enter_the_end.description" + }, + "icon": { + "id": "minecraft:end_stone" + }, + "title": { + "translate": "advancements.story.enter_the_end.title" + } + }, + "requirements": [ + [ + "entered_end" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/enter_the_nether.json b/data/generated/V26_2/data/minecraft/advancement/story/enter_the_nether.json new file mode 100644 index 00000000..21f419b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/enter_the_nether.json @@ -0,0 +1,28 @@ +{ + "parent": "minecraft:story/form_obsidian", + "criteria": { + "entered_nether": { + "conditions": { + "to": "minecraft:the_nether" + }, + "trigger": "minecraft:changed_dimension" + } + }, + "display": { + "description": { + "translate": "advancements.story.enter_the_nether.description" + }, + "icon": { + "id": "minecraft:flint_and_steel" + }, + "title": { + "translate": "advancements.story.enter_the_nether.title" + } + }, + "requirements": [ + [ + "entered_nether" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/follow_ender_eye.json b/data/generated/V26_2/data/minecraft/advancement/story/follow_ender_eye.json new file mode 100644 index 00000000..33e9037a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/follow_ender_eye.json @@ -0,0 +1,38 @@ +{ + "parent": "minecraft:story/enter_the_nether", + "criteria": { + "in_stronghold": { + "conditions": { + "player": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "structures": "minecraft:stronghold" + } + } + } + ] + }, + "trigger": "minecraft:location" + } + }, + "display": { + "description": { + "translate": "advancements.story.follow_ender_eye.description" + }, + "icon": { + "id": "minecraft:ender_eye" + }, + "title": { + "translate": "advancements.story.follow_ender_eye.title" + } + }, + "requirements": [ + [ + "in_stronghold" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/form_obsidian.json b/data/generated/V26_2/data/minecraft/advancement/story/form_obsidian.json new file mode 100644 index 00000000..01f05643 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/form_obsidian.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/lava_bucket", + "criteria": { + "obsidian": { + "conditions": { + "items": [ + { + "items": "minecraft:obsidian" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.form_obsidian.description" + }, + "icon": { + "id": "minecraft:obsidian" + }, + "title": { + "translate": "advancements.story.form_obsidian.title" + } + }, + "requirements": [ + [ + "obsidian" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/iron_tools.json b/data/generated/V26_2/data/minecraft/advancement/story/iron_tools.json new file mode 100644 index 00000000..308a7738 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/iron_tools.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "iron_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.iron_tools.description" + }, + "icon": { + "id": "minecraft:iron_pickaxe" + }, + "title": { + "translate": "advancements.story.iron_tools.title" + } + }, + "requirements": [ + [ + "iron_pickaxe" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/lava_bucket.json b/data/generated/V26_2/data/minecraft/advancement/story/lava_bucket.json new file mode 100644 index 00000000..77ace85d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/lava_bucket.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "lava_bucket": { + "conditions": { + "items": [ + { + "items": "minecraft:lava_bucket" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.lava_bucket.description" + }, + "icon": { + "id": "minecraft:lava_bucket" + }, + "title": { + "translate": "advancements.story.lava_bucket.title" + } + }, + "requirements": [ + [ + "lava_bucket" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/mine_diamond.json b/data/generated/V26_2/data/minecraft/advancement/story/mine_diamond.json new file mode 100644 index 00000000..bb0c3cf6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/mine_diamond.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/iron_tools", + "criteria": { + "diamond": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.mine_diamond.description" + }, + "icon": { + "id": "minecraft:diamond" + }, + "title": { + "translate": "advancements.story.mine_diamond.title" + } + }, + "requirements": [ + [ + "diamond" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/mine_stone.json b/data/generated/V26_2/data/minecraft/advancement/story/mine_stone.json new file mode 100644 index 00000000..ebc2f0d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/mine_stone.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/root", + "criteria": { + "get_stone": { + "conditions": { + "items": [ + { + "items": "#minecraft:stone_tool_materials" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.mine_stone.description" + }, + "icon": { + "id": "minecraft:wooden_pickaxe" + }, + "title": { + "translate": "advancements.story.mine_stone.title" + } + }, + "requirements": [ + [ + "get_stone" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/obtain_armor.json b/data/generated/V26_2/data/minecraft/advancement/story/obtain_armor.json new file mode 100644 index 00000000..17291800 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/obtain_armor.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:story/smelt_iron", + "criteria": { + "iron_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "iron_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.obtain_armor.description" + }, + "icon": { + "id": "minecraft:iron_chestplate" + }, + "title": { + "translate": "advancements.story.obtain_armor.title" + } + }, + "requirements": [ + [ + "iron_helmet", + "iron_chestplate", + "iron_leggings", + "iron_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/root.json b/data/generated/V26_2/data/minecraft/advancement/story/root.json new file mode 100644 index 00000000..40b31c9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/root.json @@ -0,0 +1,34 @@ +{ + "criteria": { + "crafting_table": { + "conditions": { + "items": [ + { + "items": "minecraft:crafting_table" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "announce_to_chat": false, + "background": "minecraft:gui/advancements/backgrounds/stone", + "description": { + "translate": "advancements.story.root.description" + }, + "icon": { + "id": "minecraft:grass_block" + }, + "show_toast": false, + "title": { + "translate": "advancements.story.root.title" + } + }, + "requirements": [ + [ + "crafting_table" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/shiny_gear.json b/data/generated/V26_2/data/minecraft/advancement/story/shiny_gear.json new file mode 100644 index 00000000..46fd0dfd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/shiny_gear.json @@ -0,0 +1,65 @@ +{ + "parent": "minecraft:story/mine_diamond", + "criteria": { + "diamond_boots": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_boots" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_chestplate": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_chestplate" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_helmet": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_helmet" + } + ] + }, + "trigger": "minecraft:inventory_changed" + }, + "diamond_leggings": { + "conditions": { + "items": [ + { + "items": "minecraft:diamond_leggings" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.shiny_gear.description" + }, + "icon": { + "id": "minecraft:diamond_chestplate" + }, + "title": { + "translate": "advancements.story.shiny_gear.title" + } + }, + "requirements": [ + [ + "diamond_helmet", + "diamond_chestplate", + "diamond_leggings", + "diamond_boots" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/smelt_iron.json b/data/generated/V26_2/data/minecraft/advancement/story/smelt_iron.json new file mode 100644 index 00000000..1c06c4f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/smelt_iron.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/upgrade_tools", + "criteria": { + "iron": { + "conditions": { + "items": [ + { + "items": "minecraft:iron_ingot" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.smelt_iron.description" + }, + "icon": { + "id": "minecraft:iron_ingot" + }, + "title": { + "translate": "advancements.story.smelt_iron.title" + } + }, + "requirements": [ + [ + "iron" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/advancement/story/upgrade_tools.json b/data/generated/V26_2/data/minecraft/advancement/story/upgrade_tools.json new file mode 100644 index 00000000..4c5bbd51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/advancement/story/upgrade_tools.json @@ -0,0 +1,32 @@ +{ + "parent": "minecraft:story/mine_stone", + "criteria": { + "stone_pickaxe": { + "conditions": { + "items": [ + { + "items": "minecraft:stone_pickaxe" + } + ] + }, + "trigger": "minecraft:inventory_changed" + } + }, + "display": { + "description": { + "translate": "advancements.story.upgrade_tools.description" + }, + "icon": { + "id": "minecraft:stone_pickaxe" + }, + "title": { + "translate": "advancements.story.upgrade_tools.title" + } + }, + "requirements": [ + [ + "stone_pickaxe" + ] + ], + "sends_telemetry_event": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/base.json b/data/generated/V26_2/data/minecraft/banner_pattern/base.json new file mode 100644 index 00000000..2b9ca993 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/base.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:base", + "translation_key": "block.minecraft.banner.base" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/border.json b/data/generated/V26_2/data/minecraft/banner_pattern/border.json new file mode 100644 index 00000000..02a7140b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/border.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:border", + "translation_key": "block.minecraft.banner.border" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/bricks.json b/data/generated/V26_2/data/minecraft/banner_pattern/bricks.json new file mode 100644 index 00000000..96fb4afa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/bricks.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:bricks", + "translation_key": "block.minecraft.banner.bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/circle.json b/data/generated/V26_2/data/minecraft/banner_pattern/circle.json new file mode 100644 index 00000000..6be3abb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/circle.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:circle", + "translation_key": "block.minecraft.banner.circle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/creeper.json b/data/generated/V26_2/data/minecraft/banner_pattern/creeper.json new file mode 100644 index 00000000..d40f1a04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/creeper.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:creeper", + "translation_key": "block.minecraft.banner.creeper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/cross.json b/data/generated/V26_2/data/minecraft/banner_pattern/cross.json new file mode 100644 index 00000000..7aaebd17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/cross.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:cross", + "translation_key": "block.minecraft.banner.cross" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/curly_border.json b/data/generated/V26_2/data/minecraft/banner_pattern/curly_border.json new file mode 100644 index 00000000..075a738c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/curly_border.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:curly_border", + "translation_key": "block.minecraft.banner.curly_border" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_left.json b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_left.json new file mode 100644 index 00000000..aded65eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_left", + "translation_key": "block.minecraft.banner.diagonal_left" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_right.json new file mode 100644 index 00000000..118712e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_right", + "translation_key": "block.minecraft.banner.diagonal_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_left.json b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_left.json new file mode 100644 index 00000000..03568b57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_up_left", + "translation_key": "block.minecraft.banner.diagonal_up_left" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_right.json new file mode 100644 index 00000000..fd565eb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/diagonal_up_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:diagonal_up_right", + "translation_key": "block.minecraft.banner.diagonal_up_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/flow.json b/data/generated/V26_2/data/minecraft/banner_pattern/flow.json new file mode 100644 index 00000000..00ec9c54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/flow.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:flow", + "translation_key": "block.minecraft.banner.flow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/flower.json b/data/generated/V26_2/data/minecraft/banner_pattern/flower.json new file mode 100644 index 00000000..61d1dac7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/flower.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:flower", + "translation_key": "block.minecraft.banner.flower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/globe.json b/data/generated/V26_2/data/minecraft/banner_pattern/globe.json new file mode 100644 index 00000000..8de960df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/globe.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:globe", + "translation_key": "block.minecraft.banner.globe" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/gradient.json b/data/generated/V26_2/data/minecraft/banner_pattern/gradient.json new file mode 100644 index 00000000..a006dee9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/gradient.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:gradient", + "translation_key": "block.minecraft.banner.gradient" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/gradient_up.json b/data/generated/V26_2/data/minecraft/banner_pattern/gradient_up.json new file mode 100644 index 00000000..13e3ec05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/gradient_up.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:gradient_up", + "translation_key": "block.minecraft.banner.gradient_up" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/guster.json b/data/generated/V26_2/data/minecraft/banner_pattern/guster.json new file mode 100644 index 00000000..99f7d6b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/guster.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:guster", + "translation_key": "block.minecraft.banner.guster" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal.json b/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal.json new file mode 100644 index 00000000..79f588c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_horizontal", + "translation_key": "block.minecraft.banner.half_horizontal" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal_bottom.json b/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal_bottom.json new file mode 100644 index 00000000..ae9e1b27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/half_horizontal_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_horizontal_bottom", + "translation_key": "block.minecraft.banner.half_horizontal_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical.json b/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical.json new file mode 100644 index 00000000..402cb016 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_vertical", + "translation_key": "block.minecraft.banner.half_vertical" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical_right.json new file mode 100644 index 00000000..0f3d7226 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/half_vertical_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:half_vertical_right", + "translation_key": "block.minecraft.banner.half_vertical_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/mojang.json b/data/generated/V26_2/data/minecraft/banner_pattern/mojang.json new file mode 100644 index 00000000..fb8de92c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/mojang.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:mojang", + "translation_key": "block.minecraft.banner.mojang" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/piglin.json b/data/generated/V26_2/data/minecraft/banner_pattern/piglin.json new file mode 100644 index 00000000..7250324f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/piglin.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:piglin", + "translation_key": "block.minecraft.banner.piglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/rhombus.json b/data/generated/V26_2/data/minecraft/banner_pattern/rhombus.json new file mode 100644 index 00000000..445cc9c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/rhombus.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:rhombus", + "translation_key": "block.minecraft.banner.rhombus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/skull.json b/data/generated/V26_2/data/minecraft/banner_pattern/skull.json new file mode 100644 index 00000000..10476189 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/skull.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:skull", + "translation_key": "block.minecraft.banner.skull" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/small_stripes.json b/data/generated/V26_2/data/minecraft/banner_pattern/small_stripes.json new file mode 100644 index 00000000..fd76fc03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/small_stripes.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:small_stripes", + "translation_key": "block.minecraft.banner.small_stripes" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_left.json b/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_left.json new file mode 100644 index 00000000..f7376d61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_bottom_left", + "translation_key": "block.minecraft.banner.square_bottom_left" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_right.json new file mode 100644 index 00000000..b78aafa5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/square_bottom_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_bottom_right", + "translation_key": "block.minecraft.banner.square_bottom_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/square_top_left.json b/data/generated/V26_2/data/minecraft/banner_pattern/square_top_left.json new file mode 100644 index 00000000..a1505ad0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/square_top_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_top_left", + "translation_key": "block.minecraft.banner.square_top_left" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/square_top_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/square_top_right.json new file mode 100644 index 00000000..3b099655 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/square_top_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:square_top_right", + "translation_key": "block.minecraft.banner.square_top_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/straight_cross.json b/data/generated/V26_2/data/minecraft/banner_pattern/straight_cross.json new file mode 100644 index 00000000..8df6cdc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/straight_cross.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:straight_cross", + "translation_key": "block.minecraft.banner.straight_cross" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_bottom.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_bottom.json new file mode 100644 index 00000000..0aa50a51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_bottom", + "translation_key": "block.minecraft.banner.stripe_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_center.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_center.json new file mode 100644 index 00000000..98fc7aba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_center.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_center", + "translation_key": "block.minecraft.banner.stripe_center" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downleft.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downleft.json new file mode 100644 index 00000000..4034606d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downleft.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_downleft", + "translation_key": "block.minecraft.banner.stripe_downleft" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downright.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downright.json new file mode 100644 index 00000000..3d5d1858 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_downright.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_downright", + "translation_key": "block.minecraft.banner.stripe_downright" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_left.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_left.json new file mode 100644 index 00000000..e47d144c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_left.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_left", + "translation_key": "block.minecraft.banner.stripe_left" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_middle.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_middle.json new file mode 100644 index 00000000..2a45a922 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_middle.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_middle", + "translation_key": "block.minecraft.banner.stripe_middle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_right.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_right.json new file mode 100644 index 00000000..d36b02ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_right.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_right", + "translation_key": "block.minecraft.banner.stripe_right" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/stripe_top.json b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_top.json new file mode 100644 index 00000000..620c2b58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/stripe_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:stripe_top", + "translation_key": "block.minecraft.banner.stripe_top" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/triangle_bottom.json b/data/generated/V26_2/data/minecraft/banner_pattern/triangle_bottom.json new file mode 100644 index 00000000..b6d0952d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/triangle_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangle_bottom", + "translation_key": "block.minecraft.banner.triangle_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/triangle_top.json b/data/generated/V26_2/data/minecraft/banner_pattern/triangle_top.json new file mode 100644 index 00000000..291315d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/triangle_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangle_top", + "translation_key": "block.minecraft.banner.triangle_top" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/triangles_bottom.json b/data/generated/V26_2/data/minecraft/banner_pattern/triangles_bottom.json new file mode 100644 index 00000000..b837ad05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/triangles_bottom.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangles_bottom", + "translation_key": "block.minecraft.banner.triangles_bottom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/banner_pattern/triangles_top.json b/data/generated/V26_2/data/minecraft/banner_pattern/triangles_top.json new file mode 100644 index 00000000..370c045c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/banner_pattern/triangles_top.json @@ -0,0 +1,4 @@ +{ + "asset_id": "minecraft:triangles_top", + "translation_key": "block.minecraft.banner.triangles_top" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_sound_variant/classic.json b/data/generated/V26_2/data/minecraft/cat_sound_variant/classic.json new file mode 100644 index 00000000..0619322f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_sound_variant/classic.json @@ -0,0 +1,24 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.cat.ambient", + "beg_for_food_sound": "minecraft:entity.cat.beg_for_food", + "death_sound": "minecraft:entity.cat.death", + "eat_sound": "minecraft:entity.cat.eat", + "hiss_sound": "minecraft:entity.cat.hiss", + "hurt_sound": "minecraft:entity.cat.hurt", + "purr_sound": "minecraft:entity.cat.purr", + "purreow_sound": "minecraft:entity.cat.purreow", + "stray_ambient_sound": "minecraft:entity.cat.stray_ambient" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_cat.ambient", + "beg_for_food_sound": "minecraft:entity.baby_cat.beg_for_food", + "death_sound": "minecraft:entity.baby_cat.death", + "eat_sound": "minecraft:entity.baby_cat.eat", + "hiss_sound": "minecraft:entity.baby_cat.hiss", + "hurt_sound": "minecraft:entity.baby_cat.hurt", + "purr_sound": "minecraft:entity.baby_cat.purr", + "purreow_sound": "minecraft:entity.baby_cat.purreow", + "stray_ambient_sound": "minecraft:entity.baby_cat.stray_ambient" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_sound_variant/royal.json b/data/generated/V26_2/data/minecraft/cat_sound_variant/royal.json new file mode 100644 index 00000000..64407950 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_sound_variant/royal.json @@ -0,0 +1,24 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.cat_royal.ambient", + "beg_for_food_sound": "minecraft:entity.cat_royal.beg_for_food", + "death_sound": "minecraft:entity.cat_royal.death", + "eat_sound": "minecraft:entity.cat_royal.eat", + "hiss_sound": "minecraft:entity.cat_royal.hiss", + "hurt_sound": "minecraft:entity.cat_royal.hurt", + "purr_sound": "minecraft:entity.cat_royal.purr", + "purreow_sound": "minecraft:entity.cat_royal.purreow", + "stray_ambient_sound": "minecraft:entity.cat_royal.stray_ambient" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_cat.ambient", + "beg_for_food_sound": "minecraft:entity.baby_cat.beg_for_food", + "death_sound": "minecraft:entity.baby_cat.death", + "eat_sound": "minecraft:entity.baby_cat.eat", + "hiss_sound": "minecraft:entity.baby_cat.hiss", + "hurt_sound": "minecraft:entity.baby_cat.hurt", + "purr_sound": "minecraft:entity.baby_cat.purr", + "purreow_sound": "minecraft:entity.baby_cat.purreow", + "stray_ambient_sound": "minecraft:entity.baby_cat.stray_ambient" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/all_black.json b/data/generated/V26_2/data/minecraft/cat_variant/all_black.json new file mode 100644 index 00000000..07453da3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/all_black.json @@ -0,0 +1,22 @@ +{ + "asset_id": "minecraft:entity/cat/cat_all_black", + "baby_asset_id": "minecraft:entity/cat/cat_all_black_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:structure", + "structures": "#minecraft:cats_spawn_as_black" + }, + "priority": 1 + }, + { + "condition": { + "type": "minecraft:moon_brightness", + "range": { + "min": 0.9 + } + }, + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/black.json b/data/generated/V26_2/data/minecraft/cat_variant/black.json new file mode 100644 index 00000000..b73cbe10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/black.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_black", + "baby_asset_id": "minecraft:entity/cat/cat_black_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/british_shorthair.json b/data/generated/V26_2/data/minecraft/cat_variant/british_shorthair.json new file mode 100644 index 00000000..fe984537 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/british_shorthair.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_british_shorthair", + "baby_asset_id": "minecraft:entity/cat/cat_british_shorthair_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/calico.json b/data/generated/V26_2/data/minecraft/cat_variant/calico.json new file mode 100644 index 00000000..aa934c45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/calico.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_calico", + "baby_asset_id": "minecraft:entity/cat/cat_calico_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/jellie.json b/data/generated/V26_2/data/minecraft/cat_variant/jellie.json new file mode 100644 index 00000000..ec4e45ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/jellie.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_jellie", + "baby_asset_id": "minecraft:entity/cat/cat_jellie_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/persian.json b/data/generated/V26_2/data/minecraft/cat_variant/persian.json new file mode 100644 index 00000000..7b34a4f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/persian.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_persian", + "baby_asset_id": "minecraft:entity/cat/cat_persian_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/ragdoll.json b/data/generated/V26_2/data/minecraft/cat_variant/ragdoll.json new file mode 100644 index 00000000..ba7e6188 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/ragdoll.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_ragdoll", + "baby_asset_id": "minecraft:entity/cat/cat_ragdoll_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/red.json b/data/generated/V26_2/data/minecraft/cat_variant/red.json new file mode 100644 index 00000000..71112cd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/red.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_red", + "baby_asset_id": "minecraft:entity/cat/cat_red_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/siamese.json b/data/generated/V26_2/data/minecraft/cat_variant/siamese.json new file mode 100644 index 00000000..e0efc955 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/siamese.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_siamese", + "baby_asset_id": "minecraft:entity/cat/cat_siamese_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/tabby.json b/data/generated/V26_2/data/minecraft/cat_variant/tabby.json new file mode 100644 index 00000000..e35a735b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/tabby.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_tabby", + "baby_asset_id": "minecraft:entity/cat/cat_tabby_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cat_variant/white.json b/data/generated/V26_2/data/minecraft/cat_variant/white.json new file mode 100644 index 00000000..96d1e101 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cat_variant/white.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cat/cat_white", + "baby_asset_id": "minecraft:entity/cat/cat_white_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/chat.json b/data/generated/V26_2/data/minecraft/chat_type/chat.json new file mode 100644 index 00000000..f84c68ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/chat.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/emote_command.json b/data/generated/V26_2/data/minecraft/chat_type/emote_command.json new file mode 100644 index 00000000..93aa7a27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/emote_command.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.emote" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.emote" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/msg_command_incoming.json b/data/generated/V26_2/data/minecraft/chat_type/msg_command_incoming.json new file mode 100644 index 00000000..67ed0870 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/msg_command_incoming.json @@ -0,0 +1,20 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "style": { + "color": "gray", + "italic": true + }, + "translation_key": "commands.message.display.incoming" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/msg_command_outgoing.json b/data/generated/V26_2/data/minecraft/chat_type/msg_command_outgoing.json new file mode 100644 index 00000000..a8c2eb7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/msg_command_outgoing.json @@ -0,0 +1,20 @@ +{ + "chat": { + "parameters": [ + "target", + "content" + ], + "style": { + "color": "gray", + "italic": true + }, + "translation_key": "commands.message.display.outgoing" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/say_command.json b/data/generated/V26_2/data/minecraft/chat_type/say_command.json new file mode 100644 index 00000000..8a587a05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/say_command.json @@ -0,0 +1,16 @@ +{ + "chat": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.announcement" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_incoming.json b/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_incoming.json new file mode 100644 index 00000000..e25ecedd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_incoming.json @@ -0,0 +1,17 @@ +{ + "chat": { + "parameters": [ + "target", + "sender", + "content" + ], + "translation_key": "chat.type.team.text" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_outgoing.json b/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_outgoing.json new file mode 100644 index 00000000..f488846f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chat_type/team_msg_command_outgoing.json @@ -0,0 +1,17 @@ +{ + "chat": { + "parameters": [ + "target", + "sender", + "content" + ], + "translation_key": "chat.type.team.sent" + }, + "narration": { + "parameters": [ + "sender", + "content" + ], + "translation_key": "chat.type.text.narrate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chicken_sound_variant/classic.json b/data/generated/V26_2/data/minecraft/chicken_sound_variant/classic.json new file mode 100644 index 00000000..b048af70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chicken_sound_variant/classic.json @@ -0,0 +1,14 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.chicken.ambient", + "death_sound": "minecraft:entity.chicken.death", + "hurt_sound": "minecraft:entity.chicken.hurt", + "step_sound": "minecraft:entity.chicken.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_chicken.ambient", + "death_sound": "minecraft:entity.baby_chicken.death", + "hurt_sound": "minecraft:entity.baby_chicken.hurt", + "step_sound": "minecraft:entity.baby_chicken.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chicken_sound_variant/picky.json b/data/generated/V26_2/data/minecraft/chicken_sound_variant/picky.json new file mode 100644 index 00000000..11fb3376 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chicken_sound_variant/picky.json @@ -0,0 +1,14 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.chicken_picky.ambient", + "death_sound": "minecraft:entity.chicken_picky.death", + "hurt_sound": "minecraft:entity.chicken_picky.hurt", + "step_sound": "minecraft:entity.chicken.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_chicken.ambient", + "death_sound": "minecraft:entity.baby_chicken.death", + "hurt_sound": "minecraft:entity.baby_chicken.hurt", + "step_sound": "minecraft:entity.baby_chicken.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chicken_variant/cold.json b/data/generated/V26_2/data/minecraft/chicken_variant/cold.json new file mode 100644 index 00000000..883832a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chicken_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_cold", + "baby_asset_id": "minecraft:entity/chicken/chicken_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chicken_variant/temperate.json b/data/generated/V26_2/data/minecraft/chicken_variant/temperate.json new file mode 100644 index 00000000..9d7a1a9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chicken_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_temperate", + "baby_asset_id": "minecraft:entity/chicken/chicken_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/chicken_variant/warm.json b/data/generated/V26_2/data/minecraft/chicken_variant/warm.json new file mode 100644 index 00000000..347b57d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/chicken_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/chicken/chicken_warm", + "baby_asset_id": "minecraft:entity/chicken/chicken_warm_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cow_sound_variant/classic.json b/data/generated/V26_2/data/minecraft/cow_sound_variant/classic.json new file mode 100644 index 00000000..7d42614b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cow_sound_variant/classic.json @@ -0,0 +1,6 @@ +{ + "ambient_sound": "minecraft:entity.cow.ambient", + "death_sound": "minecraft:entity.cow.death", + "hurt_sound": "minecraft:entity.cow.hurt", + "step_sound": "minecraft:entity.cow.step" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cow_sound_variant/moody.json b/data/generated/V26_2/data/minecraft/cow_sound_variant/moody.json new file mode 100644 index 00000000..cb4767e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cow_sound_variant/moody.json @@ -0,0 +1,6 @@ +{ + "ambient_sound": "minecraft:entity.cow_moody.ambient", + "death_sound": "minecraft:entity.cow_moody.death", + "hurt_sound": "minecraft:entity.cow_moody.hurt", + "step_sound": "minecraft:entity.cow_moody.step" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cow_variant/cold.json b/data/generated/V26_2/data/minecraft/cow_variant/cold.json new file mode 100644 index 00000000..3254eb57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cow_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/cow/cow_cold", + "baby_asset_id": "minecraft:entity/cow/cow_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cow_variant/temperate.json b/data/generated/V26_2/data/minecraft/cow_variant/temperate.json new file mode 100644 index 00000000..b1684a26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cow_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/cow/cow_temperate", + "baby_asset_id": "minecraft:entity/cow/cow_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/cow_variant/warm.json b/data/generated/V26_2/data/minecraft/cow_variant/warm.json new file mode 100644 index 00000000..28fa95fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/cow_variant/warm.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/cow/cow_warm", + "baby_asset_id": "minecraft:entity/cow/cow_warm_baby", + "model": "warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/arrow.json b/data/generated/V26_2/data/minecraft/damage_type/arrow.json new file mode 100644 index 00000000..62e94695 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/arrow.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "arrow", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/bad_respawn_point.json b/data/generated/V26_2/data/minecraft/damage_type/bad_respawn_point.json new file mode 100644 index 00000000..0970fd56 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/bad_respawn_point.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "intentional_game_design", + "exhaustion": 0.1, + "message_id": "badRespawnPoint", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/cactus.json b/data/generated/V26_2/data/minecraft/damage_type/cactus.json new file mode 100644 index 00000000..23877ae6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/cactus.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "cactus", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/campfire.json b/data/generated/V26_2/data/minecraft/damage_type/campfire.json new file mode 100644 index 00000000..53255eed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/campfire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "inFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/cramming.json b/data/generated/V26_2/data/minecraft/damage_type/cramming.json new file mode 100644 index 00000000..2dd8c786 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/cramming.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "cramming", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/dragon_breath.json b/data/generated/V26_2/data/minecraft/damage_type/dragon_breath.json new file mode 100644 index 00000000..902f0275 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/dragon_breath.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "dragonBreath", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/drown.json b/data/generated/V26_2/data/minecraft/damage_type/drown.json new file mode 100644 index 00000000..5d1d3ef6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/drown.json @@ -0,0 +1,6 @@ +{ + "effects": "drowning", + "exhaustion": 0.0, + "message_id": "drown", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/dry_out.json b/data/generated/V26_2/data/minecraft/damage_type/dry_out.json new file mode 100644 index 00000000..2bfa7428 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/dry_out.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "dryout", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/ender_pearl.json b/data/generated/V26_2/data/minecraft/damage_type/ender_pearl.json new file mode 100644 index 00000000..511ec358 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/ender_pearl.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "fall_variants", + "exhaustion": 0.0, + "message_id": "fall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/explosion.json b/data/generated/V26_2/data/minecraft/damage_type/explosion.json new file mode 100644 index 00000000..fb4317a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "explosion", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/fall.json b/data/generated/V26_2/data/minecraft/damage_type/fall.json new file mode 100644 index 00000000..511ec358 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/fall.json @@ -0,0 +1,6 @@ +{ + "death_message_type": "fall_variants", + "exhaustion": 0.0, + "message_id": "fall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/falling_anvil.json b/data/generated/V26_2/data/minecraft/damage_type/falling_anvil.json new file mode 100644 index 00000000..7fe7d18c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/falling_anvil.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "anvil", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/falling_block.json b/data/generated/V26_2/data/minecraft/damage_type/falling_block.json new file mode 100644 index 00000000..05599028 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/falling_block.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fallingBlock", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/falling_stalactite.json b/data/generated/V26_2/data/minecraft/damage_type/falling_stalactite.json new file mode 100644 index 00000000..dab896d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/falling_stalactite.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fallingStalactite", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/fireball.json b/data/generated/V26_2/data/minecraft/damage_type/fireball.json new file mode 100644 index 00000000..48c8e315 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/fireball.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "fireball", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/fireworks.json b/data/generated/V26_2/data/minecraft/damage_type/fireworks.json new file mode 100644 index 00000000..0ec54467 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/fireworks.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "fireworks", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/fly_into_wall.json b/data/generated/V26_2/data/minecraft/damage_type/fly_into_wall.json new file mode 100644 index 00000000..649336ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/fly_into_wall.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "flyIntoWall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/freeze.json b/data/generated/V26_2/data/minecraft/damage_type/freeze.json new file mode 100644 index 00000000..d4b28da2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/freeze.json @@ -0,0 +1,6 @@ +{ + "effects": "freezing", + "exhaustion": 0.0, + "message_id": "freeze", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/generic.json b/data/generated/V26_2/data/minecraft/damage_type/generic.json new file mode 100644 index 00000000..3e83b89f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/generic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "generic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/generic_kill.json b/data/generated/V26_2/data/minecraft/damage_type/generic_kill.json new file mode 100644 index 00000000..1dc198a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/generic_kill.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "genericKill", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/hot_floor.json b/data/generated/V26_2/data/minecraft/damage_type/hot_floor.json new file mode 100644 index 00000000..52f8ac30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/hot_floor.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "hotFloor", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/in_fire.json b/data/generated/V26_2/data/minecraft/damage_type/in_fire.json new file mode 100644 index 00000000..53255eed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/in_fire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "inFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/in_wall.json b/data/generated/V26_2/data/minecraft/damage_type/in_wall.json new file mode 100644 index 00000000..8ad45036 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/in_wall.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "inWall", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/indirect_magic.json b/data/generated/V26_2/data/minecraft/damage_type/indirect_magic.json new file mode 100644 index 00000000..86fb3ec9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/indirect_magic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "indirectMagic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/lava.json b/data/generated/V26_2/data/minecraft/damage_type/lava.json new file mode 100644 index 00000000..a164a6a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/lava.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "lava", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/lightning_bolt.json b/data/generated/V26_2/data/minecraft/damage_type/lightning_bolt.json new file mode 100644 index 00000000..6d302c83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/lightning_bolt.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "lightningBolt", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/mace_smash.json b/data/generated/V26_2/data/minecraft/damage_type/mace_smash.json new file mode 100644 index 00000000..931f77c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/mace_smash.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mace_smash", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/magic.json b/data/generated/V26_2/data/minecraft/damage_type/magic.json new file mode 100644 index 00000000..ef634d5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/magic.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "magic", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/mob_attack.json b/data/generated/V26_2/data/minecraft/damage_type/mob_attack.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/mob_attack.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/mob_attack_no_aggro.json b/data/generated/V26_2/data/minecraft/damage_type/mob_attack_no_aggro.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/mob_attack_no_aggro.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/mob_projectile.json b/data/generated/V26_2/data/minecraft/damage_type/mob_projectile.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/mob_projectile.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/on_fire.json b/data/generated/V26_2/data/minecraft/damage_type/on_fire.json new file mode 100644 index 00000000..bc19ee2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/on_fire.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.0, + "message_id": "onFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/out_of_world.json b/data/generated/V26_2/data/minecraft/damage_type/out_of_world.json new file mode 100644 index 00000000..f67d3f6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/out_of_world.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "outOfWorld", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/outside_border.json b/data/generated/V26_2/data/minecraft/damage_type/outside_border.json new file mode 100644 index 00000000..09c30641 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/outside_border.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "outsideBorder", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/player_attack.json b/data/generated/V26_2/data/minecraft/damage_type/player_attack.json new file mode 100644 index 00000000..674995e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/player_attack.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "player", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/player_explosion.json b/data/generated/V26_2/data/minecraft/damage_type/player_explosion.json new file mode 100644 index 00000000..360c81e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/player_explosion.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "explosion.player", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/sonic_boom.json b/data/generated/V26_2/data/minecraft/damage_type/sonic_boom.json new file mode 100644 index 00000000..0959660c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/sonic_boom.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "sonic_boom", + "scaling": "always" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/spear.json b/data/generated/V26_2/data/minecraft/damage_type/spear.json new file mode 100644 index 00000000..dd65ea35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/spear.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "spear", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/spit.json b/data/generated/V26_2/data/minecraft/damage_type/spit.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/spit.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/stalagmite.json b/data/generated/V26_2/data/minecraft/damage_type/stalagmite.json new file mode 100644 index 00000000..e9f6146d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/stalagmite.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "stalagmite", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/starve.json b/data/generated/V26_2/data/minecraft/damage_type/starve.json new file mode 100644 index 00000000..41cfca02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/starve.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "starve", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/sting.json b/data/generated/V26_2/data/minecraft/damage_type/sting.json new file mode 100644 index 00000000..3ddf311b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/sting.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "sting", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/sulfur_cube_hot.json b/data/generated/V26_2/data/minecraft/damage_type/sulfur_cube_hot.json new file mode 100644 index 00000000..61cea737 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/sulfur_cube_hot.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "sulfurCubeHot", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/sweet_berry_bush.json b/data/generated/V26_2/data/minecraft/damage_type/sweet_berry_bush.json new file mode 100644 index 00000000..5daa1a6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/sweet_berry_bush.json @@ -0,0 +1,6 @@ +{ + "effects": "poking", + "exhaustion": 0.1, + "message_id": "sweetBerryBush", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/thorns.json b/data/generated/V26_2/data/minecraft/damage_type/thorns.json new file mode 100644 index 00000000..da7ed2f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/thorns.json @@ -0,0 +1,6 @@ +{ + "effects": "thorns", + "exhaustion": 0.1, + "message_id": "thorns", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/thrown.json b/data/generated/V26_2/data/minecraft/damage_type/thrown.json new file mode 100644 index 00000000..2a277af9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/thrown.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "thrown", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/trident.json b/data/generated/V26_2/data/minecraft/damage_type/trident.json new file mode 100644 index 00000000..0002f823 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/trident.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "trident", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/unattributed_fireball.json b/data/generated/V26_2/data/minecraft/damage_type/unattributed_fireball.json new file mode 100644 index 00000000..02751b6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/unattributed_fireball.json @@ -0,0 +1,6 @@ +{ + "effects": "burning", + "exhaustion": 0.1, + "message_id": "onFire", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/wind_charge.json b/data/generated/V26_2/data/minecraft/damage_type/wind_charge.json new file mode 100644 index 00000000..e77a1af0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/wind_charge.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "mob", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/wither.json b/data/generated/V26_2/data/minecraft/damage_type/wither.json new file mode 100644 index 00000000..27776cf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/wither.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.0, + "message_id": "wither", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/damage_type/wither_skull.json b/data/generated/V26_2/data/minecraft/damage_type/wither_skull.json new file mode 100644 index 00000000..b216a66e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/damage_type/wither_skull.json @@ -0,0 +1,5 @@ +{ + "exhaustion": 0.1, + "message_id": "witherSkull", + "scaling": "when_caused_by_living_non_player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/minecart_improvements/pack.mcmeta b/data/generated/V26_2/data/minecraft/datapacks/minecart_improvements/pack.mcmeta new file mode 100644 index 00000000..27fda488 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/minecart_improvements/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:minecart_improvements" + ] + }, + "pack": { + "description": { + "translate": "dataPack.minecart_improvements.description" + }, + "max_format": 107, + "min_format": [ + 107, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/redstone_experiments/pack.mcmeta b/data/generated/V26_2/data/minecraft/datapacks/redstone_experiments/pack.mcmeta new file mode 100644 index 00000000..a6d34264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/redstone_experiments/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:redstone_experiments" + ] + }, + "pack": { + "description": { + "translate": "dataPack.redstone_experiments.description" + }, + "max_format": 107, + "min_format": [ + 107, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json new file mode 100644 index 00000000..af155fe3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/abandoned_mineshaft.json @@ -0,0 +1,331 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 30 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:empty", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rail", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:powered_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:detector_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:activator_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 15 + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": "minecraft:sulfur_caves" + } + } + ], + "name": "minecraft:music_disc_bounce", + "weight": 10 + } + ], + "rolls": 3.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:efficiency" + } + ], + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/abandoned_mineshaft" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json new file mode 100644 index 00000000..2067ce19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/ancient_city.json @@ -0,0 +1,412 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:compass", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_catalyst", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lead", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_horse_armor", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:swift_sneak" + } + ], + "name": "minecraft:book", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_sensor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:candle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:experience_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:echo_shard", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:disc_fragment_5", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_regeneration" + } + ], + "name": "minecraft:potion", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_torch", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 7 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 71 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:mending" + } + ], + "name": "minecraft:book", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:ward_armor_trim_smithing_template", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:silence_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ancient_city" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json new file mode 100644 index 00000000..620a202c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/desert_pyramid.json @@ -0,0 +1,280 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spider_eye", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 25 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:empty", + "weight": 15 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sand", + "weight": 10 + } + ], + "rolls": 4.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dune_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:unbreaking" + } + ], + "name": "minecraft:book", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json new file mode 100644 index 00000000..4915a35d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/jungle_temple.json @@ -0,0 +1,189 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 16 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wild_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:unbreaking" + } + ], + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/jungle_temple" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json new file mode 100644 index 00000000..c2a6bb59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/loot_table/chests/pillager_outpost.json @@ -0,0 +1,237 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tripwire_hook", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:goat_horn" + } + ], + "functions": [ + { + "function": "minecraft:set_instrument", + "options": "#minecraft:regular_goat_horns" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sentry_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:quick_charge" + } + ], + "name": "minecraft:book", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/pillager_outpost" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json new file mode 100644 index 00000000..e088c7fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/desert_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fire_protection", + "minecraft:thorns", + "minecraft:infinity" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json new file mode 100644 index 00000000..7b9d6b0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/jungle_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:feather_falling", + "minecraft:projectile_protection", + "minecraft:power" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json new file mode 100644 index 00000000..92e5d607 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/plains_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:punch", + "minecraft:smite", + "minecraft:bane_of_arthropods" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json new file mode 100644 index 00000000..046971a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/savanna_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:knockback", + "minecraft:binding_curse", + "minecraft:sweeping_edge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json new file mode 100644 index 00000000..c9b6fb3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/snow_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:aqua_affinity", + "minecraft:looting", + "minecraft:frost_walker" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json new file mode 100644 index 00000000..d2cb6a75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/swamp_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:depth_strider", + "minecraft:respiration", + "minecraft:vanishing_curse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json new file mode 100644 index 00000000..a9ab715c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/enchantment/trades/taiga_common.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:blast_protection", + "minecraft:fire_aspect", + "minecraft:flame" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json new file mode 100644 index 00000000..26e19a3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_1.json @@ -0,0 +1,7 @@ +{ + "replace": true, + "values": [ + "minecraft:smith/1/coal_emerald", + "minecraft:armorer/1/iron_ingot_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json new file mode 100644 index 00000000..f381382e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_2.json @@ -0,0 +1,13 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/2/emerald_iron_boots_group_1", + "minecraft:armorer/2/emerald_iron_chestplate_group_1", + "minecraft:armorer/2/emerald_iron_leggings_group_1", + "minecraft:armorer/2/emerald_iron_helmet_group_1", + "minecraft:armorer/2/emerald_chainmail_helmet_group_2", + "minecraft:armorer/2/emerald_chainmail_boots_group_2", + "minecraft:armorer/2/emerald_chainmail_chainmail_group_2", + "minecraft:armorer/2/emerald_chainmail_leggings_group_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json new file mode 100644 index 00000000..142a40e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_3.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/3/lava_bucket_emerald", + "minecraft:armorer/3/emerald_shield", + "minecraft:armorer/3/emerald_bell" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json new file mode 100644 index 00000000..f99ada2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_4.json @@ -0,0 +1,31 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/4/emerald_enchanted_iron_boots_desert", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_desert", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_desert", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_desert", + "minecraft:armorer/4/emerald_enchanted_iron_boots_plains", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_plains", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_plains", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_plains", + "minecraft:armorer/4/emerald_enchanted_iron_boots_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_leggings_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_chestplate_savanna", + "minecraft:armorer/4/emerald_enchanted_iron_boots_snow", + "minecraft:armorer/4/emerald_enchanted_iron_helmet_snow", + "minecraft:armorer/4/emerald_enchanted_chainmail_boots_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_helmet_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_leggings_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_chestplate_jungle", + "minecraft:armorer/4/emerald_enchanted_chainmail_boots_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_helmet_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_leggings_swamp", + "minecraft:armorer/4/emerald_enchanted_chainmail_chestplate_swamp", + "minecraft:armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga", + "minecraft:armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga", + "minecraft:armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga", + "minecraft:armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json new file mode 100644 index 00000000..effa9eb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/armorer/level_5.json @@ -0,0 +1,21 @@ +{ + "replace": true, + "values": [ + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_desert", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_desert", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_plains", + "minecraft:armorer/5/emerald_and_diamond_diamond_boots_plains", + "minecraft:armorer/5/emerald_and_diamond_diamond_helmet_savanna", + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_savanna", + "minecraft:armorer/5/emerald_and_diamond_diamond_boots_snow", + "minecraft:armorer/5/emerald_and_diamond_diamond_helmet_snow", + "minecraft:armorer/5/emerald_chainmail_helmet_jungle", + "minecraft:armorer/5/emerald_chainmail_boots_jungle", + "minecraft:armorer/5/emerald_chainmail_helmet_swamp", + "minecraft:armorer/5/emerald_chainmail_boots_swamp", + "minecraft:armorer/5/emerald_and_diamond_diamond_chestplate_taiga", + "minecraft:armorer/5/emerald_and_diamond_diamond_leggings_taiga", + "minecraft:armorer/5/diamond_block_emerald_taiga", + "minecraft:armorer/5/iron_block_emerald_non_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json new file mode 100644 index 00000000..9a9287cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_1.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/1/paper_emerald", + "minecraft:librarian/1/emerald_bookshelf", + "minecraft:librarian/1/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/1/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/1/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/1/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/1/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/1/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/1/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json new file mode 100644 index 00000000..b384e32d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_2.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/2/book_emerald", + "minecraft:librarian/2/emerald_lantern", + "minecraft:librarian/2/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/2/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/2/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/2/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/2/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/2/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/2/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json new file mode 100644 index 00000000..f5c8c62c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_3.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/3/ink_sac_emerald", + "minecraft:librarian/3/emerald_glass", + "minecraft:librarian/3/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/3/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/3/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/3/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/3/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/3/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/3/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json new file mode 100644 index 00000000..5598463d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_4.json @@ -0,0 +1,8 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/4/writable_book_emerald", + "minecraft:librarian/4/emerald_clock", + "minecraft:librarian/4/emerald_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json new file mode 100644 index 00000000..acdb02ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/tags/villager_trade/librarian/level_5.json @@ -0,0 +1,14 @@ +{ + "replace": true, + "values": [ + "minecraft:librarian/5/emerald_yellow_candle", + "minecraft:librarian/5/emerald_red_candle", + "minecraft:librarian/5/emerald_and_book_desert_enchanted_book", + "minecraft:librarian/5/emerald_and_book_jungle_enchanted_book", + "minecraft:librarian/5/emerald_and_book_plains_enchanted_book", + "minecraft:librarian/5/emerald_and_book_savanna_enchanted_book", + "minecraft:librarian/5/emerald_and_book_snow_enchanted_book", + "minecraft:librarian/5/emerald_and_book_swamp_enchanted_book", + "minecraft:librarian/5/emerald_and_book_taiga_enchanted_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json new file mode 100644 index 00000000..b6c5c02b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/1/iron_ingot_emerald.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:iron_ingot" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json new file mode 100644 index 00000000..91e6d914 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json new file mode 100644 index 00000000..7a8a7db8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_chainmail_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json new file mode 100644 index 00000000..1a0c0518 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_helmet_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json new file mode 100644 index 00000000..6b7e42fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings_group_2.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:jungle", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json new file mode 100644 index 00000000..9dca9713 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_boots_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json new file mode 100644 index 00000000..e9ce534d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_chestplate_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json new file mode 100644 index 00000000..8358d0aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_helmet_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json new file mode 100644 index 00000000..87b40bca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/2/emerald_iron_leggings_group_1.json @@ -0,0 +1,27 @@ +{ + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json new file mode 100644 index 00000000..f18845a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/3/emerald_bell.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bell" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 36.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json new file mode 100644 index 00000000..31aab733 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_boots_diamond_leggings_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_boots" + }, + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json new file mode 100644 index 00000000..2b69b75c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_chestplate_diamond_helmet_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_chestplate" + }, + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json new file mode 100644 index 00000000..8f02682f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_helmet_diamond_boots_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_helmet" + }, + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json new file mode 100644 index 00000000..8a99553e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_and_diamond_leggings_diamond_chestplate_taiga.json @@ -0,0 +1,24 @@ +{ + "additional_wants": { + "id": "minecraft:diamond_leggings" + }, + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json new file mode 100644 index 00000000..d0683c4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json new file mode 100644 index 00000000..3bcfdfe0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_boots_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json new file mode 100644 index 00000000..40a008af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json new file mode 100644 index 00000000..79162580 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_chestplate_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json new file mode 100644 index 00000000..3a66282f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json new file mode 100644 index 00000000..1b1659a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_helmet_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json new file mode 100644 index 00000000..969d6061 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:unbreaking": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json new file mode 100644 index 00000000..9081ab74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_chainmail_leggings_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:mending": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json new file mode 100644 index 00000000..d7110f0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_desert.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json new file mode 100644 index 00000000..e45a4d6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_plains.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json new file mode 100644 index 00000000..56f816bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_savanna.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json new file mode 100644 index 00000000..ffa111cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_boots_snow.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:frost_walker": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json new file mode 100644 index 00000000..52d260cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_desert.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json new file mode 100644 index 00000000..f8faa26f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_plains.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json new file mode 100644 index 00000000..454aa586 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_chestplate_savanna.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json new file mode 100644 index 00000000..1a076588 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_desert.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json new file mode 100644 index 00000000..3570694f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_plains.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json new file mode 100644 index 00000000..8e05e847 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_savanna.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json new file mode 100644 index 00000000..135840f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_helmet_snow.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:aqua_affinity": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json new file mode 100644 index 00000000..899be972 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_desert.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json new file mode 100644 index 00000000..733f81eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_plains.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json new file mode 100644 index 00000000..83eaf031 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/4/emerald_enchanted_iron_leggings_savanna.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json new file mode 100644 index 00000000..be3de9bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/diamond_block_emerald_taiga.json @@ -0,0 +1,21 @@ +{ + "gives": { + "count": 42, + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json new file mode 100644 index 00000000..88251dd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_plains.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json new file mode 100644 index 00000000..d8996c71 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_boots_snow.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:frost_walker": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json new file mode 100644 index 00000000..fbe64539 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_desert.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 4.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json new file mode 100644 index 00000000..92652c9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_savanna.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json new file mode 100644 index 00000000..899b9f5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_chestplate_taiga.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 4.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:blast_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json new file mode 100644 index 00000000..92208701 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_savanna.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 2.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:binding_curse": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json new file mode 100644 index 00000000..3a307977 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_helmet_snow.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:aqua_affinity": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json new file mode 100644 index 00000000..92df1e11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_desert.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:thorns": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json new file mode 100644 index 00000000..5c712ea4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_plains.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json new file mode 100644 index 00000000..10518f32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_and_diamond_diamond_leggings_taiga.json @@ -0,0 +1,49 @@ +{ + "additional_wants": { + "count": 3.0, + "id": "minecraft:diamond" + }, + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:blast_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json new file mode 100644 index 00000000..ae9b06f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:feather_falling": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json new file mode 100644 index 00000000..f69128fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_boots_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:depth_strider": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_boots", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json new file mode 100644 index 00000000..4a4a6e1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_jungle.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:projectile_protection": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json new file mode 100644 index 00000000..79e81fa1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/emerald_chainmail_helmet_swamp.json @@ -0,0 +1,45 @@ +{ + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:respiration": 1.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:chainmail_helmet", + "predicates": { + "minecraft:enchantments": [ + { + "levels": 1 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 3.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json new file mode 100644 index 00000000..8f48d941 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/armorer/5/iron_block_emerald_non_taiga.json @@ -0,0 +1,28 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:jungle", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snow", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:iron_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..dfc9fefa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..fd97292f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..a29fb5fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..c49d04b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..c57e02d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..323878f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..455d7e4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/1/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,46 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json new file mode 100644 index 00000000..9df17f4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:book" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..7b353a78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..bc7ae1af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..a4b5c082 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..33645926 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..86781c49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..563bec93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..3269da5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/2/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..f39c67cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/desert_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..64e98644 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/jungle_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..44acc108 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/plains_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..3c0d692b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/savanna_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..c9a45484 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/snow_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..0939391c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/swamp_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..1d940f65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/3/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:trades/taiga_common" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json new file mode 100644 index 00000000..d9185804 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_desert_enchanted_book.json @@ -0,0 +1,59 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:efficiency": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json new file mode 100644 index 00000000..bc71e29f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_jungle_enchanted_book.json @@ -0,0 +1,59 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:unbreaking": 2.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 2 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:jungle" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 8.0, + { + "type": "minecraft:uniform", + "max": 25.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json new file mode 100644 index 00000000..ace221f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_plains_enchanted_book.json @@ -0,0 +1,59 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:protection": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json new file mode 100644 index 00000000..9cd55793 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_savanna_enchanted_book.json @@ -0,0 +1,59 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:sharpness": 3.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 3 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 11.0, + { + "type": "minecraft:uniform", + "max": 35.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json new file mode 100644 index 00000000..dee433f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_snow_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "minecraft:silk_touch" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:snow" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json new file mode 100644 index 00000000..3403a7dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_swamp_enchanted_book.json @@ -0,0 +1,47 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "minecraft:mending" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json new file mode 100644 index 00000000..7086d02c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/data/minecraft/villager_trade/librarian/5/emerald_and_book_taiga_enchanted_book.json @@ -0,0 +1,59 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "enchantments": { + "minecraft:fortune": 2.0 + }, + "function": "minecraft:set_enchantments" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + { + "levels": 2 + } + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:taiga" + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": { + "type": "minecraft:sum", + "summands": [ + 8.0, + { + "type": "minecraft:uniform", + "max": 25.0, + "min": 0.0 + } + ] + }, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/pack.mcmeta b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/pack.mcmeta new file mode 100644 index 00000000..6bbe79df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/datapacks/trade_rebalance/pack.mcmeta @@ -0,0 +1,17 @@ +{ + "features": { + "enabled": [ + "minecraft:trade_rebalance" + ] + }, + "pack": { + "description": { + "translate": "dataPack.trade_rebalance.description" + }, + "max_format": 107, + "min_format": [ + 107, + 1 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dialog/custom_options.json b/data/generated/V26_2/data/minecraft/dialog/custom_options.json new file mode 100644 index 00000000..21b4f8a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dialog/custom_options.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:dialog_list", + "button_width": 310, + "columns": 1, + "dialogs": "#minecraft:pause_screen_additions", + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.custom_options" + }, + "title": { + "translate": "menu.custom_options.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dialog/quick_actions.json b/data/generated/V26_2/data/minecraft/dialog/quick_actions.json new file mode 100644 index 00000000..9a8345fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dialog/quick_actions.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:dialog_list", + "button_width": 310, + "columns": 1, + "dialogs": "#minecraft:quick_actions", + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.quick_actions" + }, + "title": { + "translate": "menu.quick_actions.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dialog/server_links.json b/data/generated/V26_2/data/minecraft/dialog/server_links.json new file mode 100644 index 00000000..44840928 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dialog/server_links.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:server_links", + "button_width": 310, + "columns": 1, + "exit_action": { + "label": { + "translate": "gui.back" + }, + "width": 200 + }, + "external_title": { + "translate": "menu.server_links" + }, + "title": { + "translate": "menu.server_links.title" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dimension_type/overworld.json b/data/generated/V26_2/data/minecraft/dimension_type/overworld.json new file mode 100644 index 00000000..ff1f4903 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dimension_type/overworld.json @@ -0,0 +1,55 @@ +{ + "ambient_light": 0.0, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "always", + "can_sleep": "when_dark", + "error_message": { + "translate": "block.minecraft.bed.no_sleep" + } + }, + "minecraft:gameplay/nether_portal_spawns_piglin": true, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#0a0a0a", + "minecraft:visual/cloud_color": "#ccffffff", + "minecraft:visual/cloud_height": 192.33, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff" + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:overworld", + "has_ceiling": false, + "has_ender_dragon_fight": false, + "has_skylight": true, + "height": 384, + "infiniburn": "#minecraft:infiniburn_overworld", + "logical_height": 384, + "min_y": -64, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, + "timelines": "#minecraft:in_overworld" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dimension_type/overworld_caves.json b/data/generated/V26_2/data/minecraft/dimension_type/overworld_caves.json new file mode 100644 index 00000000..6e6bb48e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dimension_type/overworld_caves.json @@ -0,0 +1,55 @@ +{ + "ambient_light": 0.0, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "always", + "can_sleep": "when_dark", + "error_message": { + "translate": "block.minecraft.bed.no_sleep" + } + }, + "minecraft:gameplay/nether_portal_spawns_piglin": true, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#0a0a0a", + "minecraft:visual/cloud_color": "#ccffffff", + "minecraft:visual/cloud_height": 192.33, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff" + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:overworld", + "has_ceiling": true, + "has_ender_dragon_fight": false, + "has_skylight": true, + "height": 384, + "infiniburn": "#minecraft:infiniburn_overworld", + "logical_height": 384, + "min_y": -64, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 0 + }, + "timelines": "#minecraft:in_overworld" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dimension_type/the_end.json b/data/generated/V26_2/data/minecraft/dimension_type/the_end.json new file mode 100644 index 00000000..2efed780 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dimension_type/the_end.json @@ -0,0 +1,46 @@ +{ + "ambient_light": 0.25, + "attributes": { + "minecraft:audio/ambient_sounds": { + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.cave", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 6000, + "replace_current_music": true, + "sound": "minecraft:music.end" + } + }, + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "never", + "can_sleep": "never", + "explodes": true + }, + "minecraft:gameplay/respawn_anchor_works": false, + "minecraft:visual/ambient_light_color": "#3f473f", + "minecraft:visual/fog_color": "#181318", + "minecraft:visual/sky_color": "#000000", + "minecraft:visual/sky_light_color": "#ac60cd", + "minecraft:visual/sky_light_factor": 0.0 + }, + "coordinate_scale": 1.0, + "default_clock": "minecraft:the_end", + "has_ceiling": false, + "has_ender_dragon_fight": true, + "has_fixed_time": true, + "has_skylight": true, + "height": 256, + "infiniburn": "#minecraft:infiniburn_end", + "logical_height": 256, + "min_y": 0, + "monster_spawn_block_light_limit": 0, + "monster_spawn_light_level": 15, + "skybox": "end", + "timelines": "#minecraft:in_end" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/dimension_type/the_nether.json b/data/generated/V26_2/data/minecraft/dimension_type/the_nether.json new file mode 100644 index 00000000..eb656121 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/dimension_type/the_nether.json @@ -0,0 +1,39 @@ +{ + "ambient_light": 0.1, + "attributes": { + "minecraft:gameplay/bed_rule": { + "can_set_spawn": "never", + "can_sleep": "never", + "explodes": true + }, + "minecraft:gameplay/can_start_raid": false, + "minecraft:gameplay/fast_lava": true, + "minecraft:gameplay/piglins_zombify": false, + "minecraft:gameplay/respawn_anchor_works": true, + "minecraft:gameplay/sky_light_level": 4.0, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:gameplay/water_evaporates": true, + "minecraft:visual/ambient_light_color": "#302821", + "minecraft:visual/default_dripstone_particle": { + "type": "minecraft:dripping_dripstone_lava" + }, + "minecraft:visual/fog_end_distance": 96.0, + "minecraft:visual/fog_start_distance": 10.0, + "minecraft:visual/sky_light_color": "#7a7aff", + "minecraft:visual/sky_light_factor": 0.0 + }, + "cardinal_light": "nether", + "coordinate_scale": 8.0, + "has_ceiling": true, + "has_ender_dragon_fight": false, + "has_fixed_time": true, + "has_skylight": false, + "height": 256, + "infiniburn": "#minecraft:infiniburn_nether", + "logical_height": 128, + "min_y": 0, + "monster_spawn_block_light_limit": 15, + "monster_spawn_light_level": 7, + "skybox": "none", + "timelines": "#minecraft:in_nether" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/aqua_affinity.json b/data/generated/V26_2/data/minecraft/enchantment/aqua_affinity.json new file mode 100644 index 00000000..ea88d33c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/aqua_affinity.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.aqua_affinity" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + }, + "attribute": "minecraft:submerged_mining_speed", + "id": "minecraft:enchantment.aqua_affinity", + "operation": "add_multiplied_total" + } + ] + }, + "max_cost": { + "base": 41, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 1, + "per_level_above_first": 0 + }, + "slots": [ + "head" + ], + "supported_items": "#minecraft:enchantable/head_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/bane_of_arthropods.json b/data/generated/V26_2/data/minecraft/enchantment/bane_of_arthropods.json new file mode 100644 index 00000000..b1392537 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/bane_of_arthropods.json @@ -0,0 +1,79 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.bane_of_arthropods" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "#minecraft:sensitive_to_bane_of_arthropods" + } + } + } + ], + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:apply_mob_effect", + "max_amplifier": 3.0, + "max_duration": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.5 + }, + "min_amplifier": 3.0, + "min_duration": 1.5, + "to_apply": "minecraft:slowness" + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "#minecraft:sensitive_to_bane_of_arthropods" + } + }, + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "is_direct": true + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/binding_curse.json b/data/generated/V26_2/data/minecraft/enchantment/binding_curse.json new file mode 100644 index 00000000..69f255ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/binding_curse.json @@ -0,0 +1,23 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.binding_curse" + }, + "effects": { + "minecraft:prevent_armor_change": {} + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/equippable", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/blast_protection.json b/data/generated/V26_2/data/minecraft/enchantment/blast_protection.json new file mode 100644 index 00000000..a8a036de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/blast_protection.json @@ -0,0 +1,62 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.blast_protection" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + }, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:enchantment.blast_protection", + "operation": "add_value" + } + ], + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_explosion" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 13, + "per_level_above_first": 8 + }, + "max_level": 4, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/breach.json b/data/generated/V26_2/data/minecraft/enchantment/breach.json new file mode 100644 index 00000000..deab4e68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/breach.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.breach" + }, + "effects": { + "minecraft:armor_effectiveness": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": -0.15, + "per_level_above_first": -0.15 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 4, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/channeling.json b/data/generated/V26_2/data/minecraft/enchantment/channeling.json new file mode 100644 index 00000000..884d6d16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/channeling.json @@ -0,0 +1,112 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.channeling" + }, + "effects": { + "minecraft:hit_block": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:summon_entity", + "entity": "minecraft:lightning_bolt" + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": "minecraft:item.trident.thunder", + "volume": 5.0 + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:weather_check", + "thundering": true + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:trident" + } + }, + { + "condition": "minecraft:location_check", + "predicate": { + "block": { + "blocks": "#minecraft:lightning_rods" + }, + "can_see_sky": true + } + } + ] + } + } + ], + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:summon_entity", + "entity": "minecraft:lightning_bolt" + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": "minecraft:item.trident.thunder", + "volume": 5.0 + } + ] + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:weather_check", + "thundering": true + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:location": { + "can_see_sky": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:entity_type": "minecraft:trident" + } + } + ] + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/density.json b/data/generated/V26_2/data/minecraft/enchantment/density.json new file mode 100644 index 00000000..63f74ce2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/density.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.density" + }, + "effects": { + "minecraft:smash_damage_per_fallen_block": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 0.5, + "per_level_above_first": 0.5 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/depth_strider.json b/data/generated/V26_2/data/minecraft/enchantment/depth_strider.json new file mode 100644 index 00000000..a13601e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/depth_strider.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.depth_strider" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.33333334, + "per_level_above_first": 0.33333334 + }, + "attribute": "minecraft:water_movement_efficiency", + "id": "minecraft:enchantment.depth_strider", + "operation": "add_value" + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/boots", + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/efficiency.json b/data/generated/V26_2/data/minecraft/enchantment/efficiency.json new file mode 100644 index 00000000..749d701f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/efficiency.json @@ -0,0 +1,33 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.efficiency" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:levels_squared", + "added": 1.0 + }, + "attribute": "minecraft:mining_efficiency", + "id": "minecraft:enchantment.efficiency", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 51, + "per_level_above_first": 10 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/feather_falling.json b/data/generated/V26_2/data/minecraft/enchantment/feather_falling.json new file mode 100644 index 00000000..d69f7430 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/feather_falling.json @@ -0,0 +1,49 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.feather_falling" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 3.0, + "per_level_above_first": 3.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_fall" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "max_cost": { + "base": 11, + "per_level_above_first": 6 + }, + "max_level": 4, + "min_cost": { + "base": 5, + "per_level_above_first": 6 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/fire_aspect.json b/data/generated/V26_2/data/minecraft/enchantment/fire_aspect.json new file mode 100644 index 00000000..5764ed52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/fire_aspect.json @@ -0,0 +1,43 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.fire_aspect" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "victim", + "effect": { + "type": "minecraft:ignite", + "duration": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + } + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "is_direct": true + } + } + } + ] + }, + "max_cost": { + "base": 60, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 10, + "per_level_above_first": 20 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fire_aspect", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/fire_protection.json b/data/generated/V26_2/data/minecraft/enchantment/fire_protection.json new file mode 100644 index 00000000..fc6e32e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/fire_protection.json @@ -0,0 +1,67 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.fire_protection" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": -0.15, + "per_level_above_first": -0.15 + }, + "attribute": "minecraft:burning_time", + "id": "minecraft:enchantment.fire_protection", + "operation": "add_multiplied_base" + } + ], + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_fire" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 18, + "per_level_above_first": 8 + }, + "max_level": 4, + "min_cost": { + "base": 10, + "per_level_above_first": 8 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/flame.json b/data/generated/V26_2/data/minecraft/enchantment/flame.json new file mode 100644 index 00000000..7b9af5ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/flame.json @@ -0,0 +1,30 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.flame" + }, + "effects": { + "minecraft:projectile_spawned": [ + { + "effect": { + "type": "minecraft:ignite", + "duration": 100.0 + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/fortune.json b/data/generated/V26_2/data/minecraft/enchantment/fortune.json new file mode 100644 index 00000000..3d292758 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/fortune.json @@ -0,0 +1,21 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.fortune" + }, + "exclusive_set": "#minecraft:exclusive_set/mining", + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining_loot", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/frost_walker.json b/data/generated/V26_2/data/minecraft/enchantment/frost_walker.json new file mode 100644 index 00000000..0158de62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/frost_walker.json @@ -0,0 +1,125 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.frost_walker" + }, + "effects": { + "minecraft:damage_immunity": [ + { + "effect": {}, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:burn_from_stepping" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ], + "minecraft:location_changed": [ + { + "effect": { + "type": "minecraft:replace_disk", + "block_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:frosted_ice", + "Properties": { + "age": "0" + } + } + }, + "height": 1.0, + "offset": [ + 0, + -1, + 0 + ], + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "offset": [ + 0, + 1, + 0 + ], + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + }, + { + "type": "minecraft:unobstructed" + } + ] + }, + "radius": { + "type": "minecraft:clamped", + "max": 16.0, + "min": 0.0, + "value": { + "type": "minecraft:linear", + "base": 3.0, + "per_level_above_first": 1.0 + } + }, + "trigger_game_event": "minecraft:block_place" + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_ground": true + } + } + }, + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": {} + } + } + } + ] + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/boots", + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 2, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/impaling.json b/data/generated/V26_2/data/minecraft/enchantment/impaling.json new file mode 100644 index 00000000..42155d45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/impaling.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.impaling" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "#minecraft:sensitive_to_impaling" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 21, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 8 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/infinity.json b/data/generated/V26_2/data/minecraft/enchantment/infinity.json new file mode 100644 index 00000000..6bb53bed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/infinity.json @@ -0,0 +1,37 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.infinity" + }, + "effects": { + "minecraft:ammo_use": [ + { + "effect": { + "type": "minecraft:set", + "value": 0.0 + }, + "requirements": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:arrow" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/bow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/knockback.json b/data/generated/V26_2/data/minecraft/enchantment/knockback.json new file mode 100644 index 00000000..2daf925c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/knockback.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.knockback" + }, + "effects": { + "minecraft:knockback": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 55, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 5, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/melee_weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/looting.json b/data/generated/V26_2/data/minecraft/enchantment/looting.json new file mode 100644 index 00000000..7f5d7dcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/looting.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.looting" + }, + "effects": { + "minecraft:equipment_drops": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 0.01, + "per_level_above_first": 0.01 + } + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "attacker", + "predicate": { + "minecraft:entity_type": "minecraft:player" + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/melee_weapon", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/loyalty.json b/data/generated/V26_2/data/minecraft/enchantment/loyalty.json new file mode 100644 index 00000000..c0769ed3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/loyalty.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.loyalty" + }, + "effects": { + "minecraft:trident_return_acceleration": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 12, + "per_level_above_first": 7 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/luck_of_the_sea.json b/data/generated/V26_2/data/minecraft/enchantment/luck_of_the_sea.json new file mode 100644 index 00000000..74b8e792 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/luck_of_the_sea.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.luck_of_the_sea" + }, + "effects": { + "minecraft:fishing_luck_bonus": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fishing", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/lunge.json b/data/generated/V26_2/data/minecraft/enchantment/lunge.json new file mode 100644 index 00000000..a7c2b08b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/lunge.json @@ -0,0 +1,143 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.lunge" + }, + "effects": { + "minecraft:post_piercing_attack": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:change_item_damage", + "amount": 1.0 + }, + { + "type": "minecraft:apply_exhaustion", + "amount": { + "type": "minecraft:linear", + "base": 4.0, + "per_level_above_first": 4.0 + } + }, + { + "type": "minecraft:apply_impulse", + "coordinate_scale": [ + 1.0, + 0.0, + 1.0 + ], + "direction": [ + 0.0, + 0.0, + 1.0 + ], + "magnitude": { + "type": "minecraft:linear", + "base": 0.458, + "per_level_above_first": 0.458 + } + }, + { + "type": "minecraft:play_sound", + "pitch": 1.0, + "sound": [ + "minecraft:item.spear.lunge_1", + "minecraft:item.spear.lunge_2", + "minecraft:item.spear.lunge_3" + ], + "volume": 1.0 + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": {} + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_fall_flying": false + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_in_water": false + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": {} + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": { + "gamemode": [ + "creative" + ] + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/player": { + "food": { + "level": { + "min": 7 + } + } + } + } + } + ] + } + ] + } + } + ] + }, + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "hand" + ], + "supported_items": "#minecraft:enchantable/lunge", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/lure.json b/data/generated/V26_2/data/minecraft/enchantment/lure.json new file mode 100644 index 00000000..1df8c10a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/lure.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.lure" + }, + "effects": { + "minecraft:fishing_time_reduction": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 5.0, + "per_level_above_first": 5.0 + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/fishing", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/mending.json b/data/generated/V26_2/data/minecraft/enchantment/mending.json new file mode 100644 index 00000000..f762c8d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/mending.json @@ -0,0 +1,30 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.mending" + }, + "effects": { + "minecraft:repair_with_xp": [ + { + "effect": { + "type": "minecraft:multiply", + "factor": 2.0 + } + } + ] + }, + "max_cost": { + "base": 75, + "per_level_above_first": 25 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 25 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/durability", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/multishot.json b/data/generated/V26_2/data/minecraft/enchantment/multishot.json new file mode 100644 index 00000000..b656f911 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/multishot.json @@ -0,0 +1,47 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.multishot" + }, + "effects": { + "minecraft:projectile_count": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + } + } + ], + "minecraft:projectile_spread": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 10.0, + "per_level_above_first": 10.0 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/crossbow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 20, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/piercing.json b/data/generated/V26_2/data/minecraft/enchantment/piercing.json new file mode 100644 index 00000000..29ebfa65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/piercing.json @@ -0,0 +1,35 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.piercing" + }, + "effects": { + "minecraft:projectile_piercing": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/crossbow", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 4, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/power.json b/data/generated/V26_2/data/minecraft/enchantment/power.json new file mode 100644 index 00000000..35d50828 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/power.json @@ -0,0 +1,41 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.power" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 0.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:entity_type": "#minecraft:arrows" + } + } + } + ] + }, + "max_cost": { + "base": 16, + "per_level_above_first": 10 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 10 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/projectile_protection.json b/data/generated/V26_2/data/minecraft/enchantment/projectile_protection.json new file mode 100644 index 00000000..52431649 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/projectile_protection.json @@ -0,0 +1,50 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.projectile_protection" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + }, + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 9, + "per_level_above_first": 6 + }, + "max_level": 4, + "min_cost": { + "base": 3, + "per_level_above_first": 6 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/protection.json b/data/generated/V26_2/data/minecraft/enchantment/protection.json new file mode 100644 index 00000000..97b24aa8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/protection.json @@ -0,0 +1,46 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.protection" + }, + "effects": { + "minecraft:damage_protection": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "requirements": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": false, + "id": "minecraft:bypasses_invulnerability" + } + ] + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/armor", + "max_cost": { + "base": 12, + "per_level_above_first": 11 + }, + "max_level": 4, + "min_cost": { + "base": 1, + "per_level_above_first": 11 + }, + "slots": [ + "armor" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/punch.json b/data/generated/V26_2/data/minecraft/enchantment/punch.json new file mode 100644 index 00000000..693d66e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/punch.json @@ -0,0 +1,41 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.punch" + }, + "effects": { + "minecraft:knockback": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:entity_type": "#minecraft:arrows" + } + } + } + ] + }, + "max_cost": { + "base": 37, + "per_level_above_first": 20 + }, + "max_level": 2, + "min_cost": { + "base": 12, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/bow", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/quick_charge.json b/data/generated/V26_2/data/minecraft/enchantment/quick_charge.json new file mode 100644 index 00000000..5b320d77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/quick_charge.json @@ -0,0 +1,45 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.quick_charge" + }, + "effects": { + "minecraft:crossbow_charge_time": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": -0.25, + "per_level_above_first": -0.25 + } + }, + "minecraft:crossbow_charging_sounds": [ + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_1" + }, + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_2" + }, + { + "end": "minecraft:item.crossbow.loading_end", + "start": "minecraft:item.crossbow.quick_charge_3" + } + ] + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 12, + "per_level_above_first": 20 + }, + "slots": [ + "mainhand", + "offhand" + ], + "supported_items": "#minecraft:enchantable/crossbow", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/respiration.json b/data/generated/V26_2/data/minecraft/enchantment/respiration.json new file mode 100644 index 00000000..9b7bf1c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/respiration.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.respiration" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + }, + "attribute": "minecraft:oxygen_bonus", + "id": "minecraft:enchantment.respiration", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 40, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "head" + ], + "supported_items": "#minecraft:enchantable/head_armor", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/riptide.json b/data/generated/V26_2/data/minecraft/enchantment/riptide.json new file mode 100644 index 00000000..7049ff72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/riptide.json @@ -0,0 +1,36 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.riptide" + }, + "effects": { + "minecraft:trident_sound": [ + "minecraft:item.trident.riptide_1", + "minecraft:item.trident.riptide_2", + "minecraft:item.trident.riptide_3" + ], + "minecraft:trident_spin_attack_strength": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.75 + } + } + }, + "exclusive_set": "#minecraft:exclusive_set/riptide", + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 3, + "min_cost": { + "base": 17, + "per_level_above_first": 7 + }, + "slots": [ + "hand" + ], + "supported_items": "#minecraft:enchantable/trident", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/sharpness.json b/data/generated/V26_2/data/minecraft/enchantment/sharpness.json new file mode 100644 index 00000000..07e9f9bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/sharpness.json @@ -0,0 +1,36 @@ +{ + "anvil_cost": 1, + "description": { + "translate": "enchantment.minecraft.sharpness" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 0.5 + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 21, + "per_level_above_first": 11 + }, + "max_level": 5, + "min_cost": { + "base": 1, + "per_level_above_first": 11 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/sharp_weapon", + "weight": 10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/silk_touch.json b/data/generated/V26_2/data/minecraft/enchantment/silk_touch.json new file mode 100644 index 00000000..1e00ee8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/silk_touch.json @@ -0,0 +1,31 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.silk_touch" + }, + "effects": { + "minecraft:block_experience": [ + { + "effect": { + "type": "minecraft:set", + "value": 0.0 + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/mining", + "max_cost": { + "base": 65, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 15, + "per_level_above_first": 0 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mining_loot", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/smite.json b/data/generated/V26_2/data/minecraft/enchantment/smite.json new file mode 100644 index 00000000..28d902ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/smite.json @@ -0,0 +1,43 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.smite" + }, + "effects": { + "minecraft:damage": [ + { + "effect": { + "type": "minecraft:add", + "value": { + "type": "minecraft:linear", + "base": 2.5, + "per_level_above_first": 2.5 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "#minecraft:sensitive_to_smite" + } + } + } + ] + }, + "exclusive_set": "#minecraft:exclusive_set/damage", + "max_cost": { + "base": 25, + "per_level_above_first": 8 + }, + "max_level": 5, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "primary_items": "#minecraft:enchantable/melee_weapon", + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/weapon", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/soul_speed.json b/data/generated/V26_2/data/minecraft/enchantment/soul_speed.json new file mode 100644 index 00000000..c22051a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/soul_speed.json @@ -0,0 +1,254 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.soul_speed" + }, + "effects": { + "minecraft:location_changed": [ + { + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:attribute", + "amount": { + "type": "minecraft:linear", + "base": 0.0405, + "per_level_above_first": 0.0105 + }, + "attribute": "minecraft:movement_speed", + "id": "minecraft:enchantment.soul_speed", + "operation": "add_value" + }, + { + "type": "minecraft:attribute", + "amount": 1.0, + "attribute": "minecraft:movement_efficiency", + "id": "minecraft:enchantment.soul_speed", + "operation": "add_value" + } + ] + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": {} + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:all_of", + "terms": [ + { + "active": true, + "condition": "minecraft:enchantment_active_check" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_flying": false + } + } + }, + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_ground": false + } + } + } + ] + } + ] + }, + { + "condition": "minecraft:all_of", + "terms": [ + { + "active": false, + "condition": "minecraft:enchantment_active_check" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_flying": false + }, + "minecraft:movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + } + ] + } + ] + } + ] + } + }, + { + "effect": { + "type": "minecraft:change_item_damage", + "amount": 1.0 + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "chance": { + "type": "minecraft:enchantment_level", + "amount": 0.04 + }, + "condition": "minecraft:random_chance" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_ground": true + }, + "minecraft:movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + } + } + } + ] + } + } + ], + "minecraft:tick": [ + { + "effect": { + "type": "minecraft:spawn_particles", + "horizontal_position": { + "type": "in_bounding_box" + }, + "horizontal_velocity": { + "movement_scale": -0.2 + }, + "particle": { + "type": "minecraft:soul" + }, + "speed": 1.0, + "vertical_position": { + "type": "entity_position", + "offset": 0.1 + }, + "vertical_velocity": { + "base": 0.1 + } + }, + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_flying": false, + "is_on_ground": true + }, + "minecraft:movement": { + "horizontal_speed": { + "min": 9.999999747378752E-6 + } + }, + "minecraft:movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + }, + "minecraft:periodic_tick": 5 + } + } + }, + { + "effect": { + "type": "minecraft:play_sound", + "pitch": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.6 + }, + "sound": "minecraft:particle.soul_escape", + "volume": 0.6 + }, + "requirements": { + "condition": "minecraft:all_of", + "terms": [ + { + "chance": 0.35, + "condition": "minecraft:random_chance" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_flying": false, + "is_on_ground": true + }, + "minecraft:movement": { + "horizontal_speed": { + "min": 9.999999747378752E-6 + } + }, + "minecraft:movement_affected_by": { + "block": { + "blocks": "#minecraft:soul_speed_blocks" + } + }, + "minecraft:periodic_tick": 5 + } + } + ] + } + } + ] + }, + "max_cost": { + "base": 25, + "per_level_above_first": 10 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 10 + }, + "slots": [ + "feet" + ], + "supported_items": "#minecraft:enchantable/foot_armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/sweeping_edge.json b/data/generated/V26_2/data/minecraft/enchantment/sweeping_edge.json new file mode 100644 index 00000000..1a9dbf8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/sweeping_edge.json @@ -0,0 +1,42 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.sweeping_edge" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 1.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + }, + "attribute": "minecraft:sweeping_damage_ratio", + "id": "minecraft:enchantment.sweeping_edge", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 20, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/sweeping", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/swift_sneak.json b/data/generated/V26_2/data/minecraft/enchantment/swift_sneak.json new file mode 100644 index 00000000..7b4a36b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/swift_sneak.json @@ -0,0 +1,34 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.swift_sneak" + }, + "effects": { + "minecraft:attributes": [ + { + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + }, + "attribute": "minecraft:sneaking_speed", + "id": "minecraft:enchantment.swift_sneak", + "operation": "add_value" + } + ] + }, + "max_cost": { + "base": 75, + "per_level_above_first": 25 + }, + "max_level": 3, + "min_cost": { + "base": 25, + "per_level_above_first": 25 + }, + "slots": [ + "legs" + ], + "supported_items": "#minecraft:enchantable/leg_armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/thorns.json b/data/generated/V26_2/data/minecraft/enchantment/thorns.json new file mode 100644 index 00000000..178396c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/thorns.json @@ -0,0 +1,55 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.thorns" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "attacker", + "effect": { + "type": "minecraft:all_of", + "effects": [ + { + "type": "minecraft:damage_entity", + "damage_type": "minecraft:thorns", + "max_damage": 5.0, + "min_damage": 1.0 + }, + { + "type": "minecraft:change_item_damage", + "amount": 2.0 + } + ] + }, + "enchanted": "victim", + "requirements": { + "chance": { + "type": "minecraft:enchantment_level", + "amount": { + "type": "minecraft:linear", + "base": 0.15, + "per_level_above_first": 0.15 + } + }, + "condition": "minecraft:random_chance" + } + } + ] + }, + "max_cost": { + "base": 60, + "per_level_above_first": 20 + }, + "max_level": 3, + "min_cost": { + "base": 10, + "per_level_above_first": 20 + }, + "primary_items": "#minecraft:enchantable/chest_armor", + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/armor", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/unbreaking.json b/data/generated/V26_2/data/minecraft/enchantment/unbreaking.json new file mode 100644 index 00000000..6028e42f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/unbreaking.json @@ -0,0 +1,75 @@ +{ + "anvil_cost": 2, + "description": { + "translate": "enchantment.minecraft.unbreaking" + }, + "effects": { + "minecraft:item_damage": [ + { + "effect": { + "type": "minecraft:remove_binomial", + "chance": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 10.0, + "per_level_above_first": 5.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 2.0 + } + } + }, + "requirements": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:enchantable/armor" + } + } + }, + { + "effect": { + "type": "minecraft:remove_binomial", + "chance": { + "type": "minecraft:fraction", + "denominator": { + "type": "minecraft:linear", + "base": 2.0, + "per_level_above_first": 1.0 + }, + "numerator": { + "type": "minecraft:linear", + "base": 1.0, + "per_level_above_first": 1.0 + } + } + }, + "requirements": { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:enchantable/armor" + } + } + } + } + ] + }, + "max_cost": { + "base": 55, + "per_level_above_first": 8 + }, + "max_level": 3, + "min_cost": { + "base": 5, + "per_level_above_first": 8 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/durability", + "weight": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/vanishing_curse.json b/data/generated/V26_2/data/minecraft/enchantment/vanishing_curse.json new file mode 100644 index 00000000..c82f1191 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/vanishing_curse.json @@ -0,0 +1,23 @@ +{ + "anvil_cost": 8, + "description": { + "translate": "enchantment.minecraft.vanishing_curse" + }, + "effects": { + "minecraft:prevent_equipment_drop": {} + }, + "max_cost": { + "base": 50, + "per_level_above_first": 0 + }, + "max_level": 1, + "min_cost": { + "base": 25, + "per_level_above_first": 0 + }, + "slots": [ + "any" + ], + "supported_items": "#minecraft:enchantable/vanishing", + "weight": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment/wind_burst.json b/data/generated/V26_2/data/minecraft/enchantment/wind_burst.json new file mode 100644 index 00000000..e67718e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment/wind_burst.json @@ -0,0 +1,68 @@ +{ + "anvil_cost": 4, + "description": { + "translate": "enchantment.minecraft.wind_burst" + }, + "effects": { + "minecraft:post_attack": [ + { + "affected": "attacker", + "effect": { + "type": "minecraft:explode", + "block_interaction": "trigger", + "immune_blocks": "#minecraft:blocks_wind_charge_explosions", + "knockback_multiplier": { + "type": "minecraft:lookup", + "fallback": { + "type": "minecraft:linear", + "base": 1.5, + "per_level_above_first": 0.35 + }, + "values": [ + 1.2, + 1.75, + 2.2 + ] + }, + "large_particle": { + "type": "minecraft:gust_emitter_large" + }, + "radius": 3.5, + "small_particle": { + "type": "minecraft:gust_emitter_small" + }, + "sound": "minecraft:entity.wind_charge.wind_burst" + }, + "enchanted": "attacker", + "requirements": { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:flags": { + "is_flying": false + }, + "minecraft:movement": { + "fall_distance": { + "min": 1.5 + } + } + } + } + } + ] + }, + "max_cost": { + "base": 65, + "per_level_above_first": 9 + }, + "max_level": 3, + "min_cost": { + "base": 15, + "per_level_above_first": 9 + }, + "slots": [ + "mainhand" + ], + "supported_items": "#minecraft:enchantable/mace", + "weight": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/enderman_loot_drop.json b/data/generated/V26_2/data/minecraft/enchantment_provider/enderman_loot_drop.json new file mode 100644 index 00000000..3c19ad13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/enderman_loot_drop.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:silk_touch", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/mob_spawn_equipment.json b/data/generated/V26_2/data/minecraft/enchantment_provider/mob_spawn_equipment.json new file mode 100644 index 00000000..7a5e5cd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/mob_spawn_equipment.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:by_cost_with_difficulty", + "enchantments": "#minecraft:on_mob_spawn_equipment", + "max_cost_span": 17, + "min_cost": 5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json b/data/generated/V26_2/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json new file mode 100644 index 00000000..b3633f37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/pillager_spawn_crossbow.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:piercing", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json new file mode 100644 index 00000000..aaa4aeba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_3.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:quick_charge", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json new file mode 100644 index 00000000..b6f00cad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/pillager_post_wave_5.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:quick_charge", + "level": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator.json b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator.json new file mode 100644 index 00000000..1ce996f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:sharpness", + "level": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json new file mode 100644 index 00000000..bce93e79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/enchantment_provider/raid/vindicator_post_wave_5.json @@ -0,0 +1,5 @@ +{ + "type": "minecraft:single", + "enchantment": "minecraft:sharpness", + "level": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/frog_variant/cold.json b/data/generated/V26_2/data/minecraft/frog_variant/cold.json new file mode 100644 index 00000000..860e01f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/frog_variant/cold.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/frog_cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_frogs" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/frog_variant/temperate.json b/data/generated/V26_2/data/minecraft/frog_variant/temperate.json new file mode 100644 index 00000000..25d2f0ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/frog_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/frog/frog_temperate", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/frog_variant/warm.json b/data/generated/V26_2/data/minecraft/frog_variant/warm.json new file mode 100644 index 00000000..598e9299 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/frog_variant/warm.json @@ -0,0 +1,12 @@ +{ + "asset_id": "minecraft:entity/frog/frog_warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_frogs" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/admire_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/admire_goat_horn.json new file mode 100644 index 00000000..62fbefe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/admire_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.admire_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.4", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/call_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/call_goat_horn.json new file mode 100644 index 00000000..11894ccd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/call_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.call_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.5", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/dream_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/dream_goat_horn.json new file mode 100644 index 00000000..b1379d31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/dream_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.dream_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.7", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/feel_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/feel_goat_horn.json new file mode 100644 index 00000000..09911ed6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/feel_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.feel_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.3", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/ponder_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/ponder_goat_horn.json new file mode 100644 index 00000000..ba0c285b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/ponder_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.ponder_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.0", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/seek_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/seek_goat_horn.json new file mode 100644 index 00000000..d9c27978 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/seek_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.seek_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.2", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/sing_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/sing_goat_horn.json new file mode 100644 index 00000000..0de5cf2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/sing_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.sing_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.1", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/instrument/yearn_goat_horn.json b/data/generated/V26_2/data/minecraft/instrument/yearn_goat_horn.json new file mode 100644 index 00000000..b562490d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/instrument/yearn_goat_horn.json @@ -0,0 +1,8 @@ +{ + "description": { + "translate": "instrument.minecraft.yearn_goat_horn" + }, + "range": 256.0, + "sound_event": "minecraft:item.goat_horn.sound.6", + "use_duration": 7.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/11.json b/data/generated/V26_2/data/minecraft/jukebox_song/11.json new file mode 100644 index 00000000..44b6598c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/11.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 11, + "description": { + "translate": "jukebox_song.minecraft.11" + }, + "length_in_seconds": 71.0, + "sound_event": "minecraft:music_disc.11" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/13.json b/data/generated/V26_2/data/minecraft/jukebox_song/13.json new file mode 100644 index 00000000..86dc2f41 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/13.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 1, + "description": { + "translate": "jukebox_song.minecraft.13" + }, + "length_in_seconds": 178.0, + "sound_event": "minecraft:music_disc.13" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/5.json b/data/generated/V26_2/data/minecraft/jukebox_song/5.json new file mode 100644 index 00000000..f441bbe5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/5.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 15, + "description": { + "translate": "jukebox_song.minecraft.5" + }, + "length_in_seconds": 178.0, + "sound_event": "minecraft:music_disc.5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/blocks.json b/data/generated/V26_2/data/minecraft/jukebox_song/blocks.json new file mode 100644 index 00000000..94d000b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/blocks.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 3, + "description": { + "translate": "jukebox_song.minecraft.blocks" + }, + "length_in_seconds": 345.0, + "sound_event": "minecraft:music_disc.blocks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/bounce.json b/data/generated/V26_2/data/minecraft/jukebox_song/bounce.json new file mode 100644 index 00000000..aa115f6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/bounce.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 8, + "description": { + "translate": "jukebox_song.minecraft.bounce" + }, + "length_in_seconds": 234.0, + "sound_event": "minecraft:music_disc.bounce" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/cat.json b/data/generated/V26_2/data/minecraft/jukebox_song/cat.json new file mode 100644 index 00000000..598c1657 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/cat.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 2, + "description": { + "translate": "jukebox_song.minecraft.cat" + }, + "length_in_seconds": 185.0, + "sound_event": "minecraft:music_disc.cat" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/chirp.json b/data/generated/V26_2/data/minecraft/jukebox_song/chirp.json new file mode 100644 index 00000000..d7228806 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/chirp.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 4, + "description": { + "translate": "jukebox_song.minecraft.chirp" + }, + "length_in_seconds": 185.0, + "sound_event": "minecraft:music_disc.chirp" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/creator.json b/data/generated/V26_2/data/minecraft/jukebox_song/creator.json new file mode 100644 index 00000000..3b63f55e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/creator.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 12, + "description": { + "translate": "jukebox_song.minecraft.creator" + }, + "length_in_seconds": 176.0, + "sound_event": "minecraft:music_disc.creator" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/creator_music_box.json b/data/generated/V26_2/data/minecraft/jukebox_song/creator_music_box.json new file mode 100644 index 00000000..6184d36d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/creator_music_box.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 11, + "description": { + "translate": "jukebox_song.minecraft.creator_music_box" + }, + "length_in_seconds": 73.0, + "sound_event": "minecraft:music_disc.creator_music_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/far.json b/data/generated/V26_2/data/minecraft/jukebox_song/far.json new file mode 100644 index 00000000..f57cf8d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/far.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 5, + "description": { + "translate": "jukebox_song.minecraft.far" + }, + "length_in_seconds": 174.0, + "sound_event": "minecraft:music_disc.far" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/lava_chicken.json b/data/generated/V26_2/data/minecraft/jukebox_song/lava_chicken.json new file mode 100644 index 00000000..cc84a7fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/lava_chicken.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 9, + "description": { + "translate": "jukebox_song.minecraft.lava_chicken" + }, + "length_in_seconds": 134.0, + "sound_event": "minecraft:music_disc.lava_chicken" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/mall.json b/data/generated/V26_2/data/minecraft/jukebox_song/mall.json new file mode 100644 index 00000000..a5a8ddb2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/mall.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 6, + "description": { + "translate": "jukebox_song.minecraft.mall" + }, + "length_in_seconds": 197.0, + "sound_event": "minecraft:music_disc.mall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/mellohi.json b/data/generated/V26_2/data/minecraft/jukebox_song/mellohi.json new file mode 100644 index 00000000..cdea238b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/mellohi.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 7, + "description": { + "translate": "jukebox_song.minecraft.mellohi" + }, + "length_in_seconds": 96.0, + "sound_event": "minecraft:music_disc.mellohi" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/otherside.json b/data/generated/V26_2/data/minecraft/jukebox_song/otherside.json new file mode 100644 index 00000000..78562393 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/otherside.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 14, + "description": { + "translate": "jukebox_song.minecraft.otherside" + }, + "length_in_seconds": 195.0, + "sound_event": "minecraft:music_disc.otherside" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/pigstep.json b/data/generated/V26_2/data/minecraft/jukebox_song/pigstep.json new file mode 100644 index 00000000..3d4d74a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/pigstep.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 13, + "description": { + "translate": "jukebox_song.minecraft.pigstep" + }, + "length_in_seconds": 149.0, + "sound_event": "minecraft:music_disc.pigstep" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/precipice.json b/data/generated/V26_2/data/minecraft/jukebox_song/precipice.json new file mode 100644 index 00000000..2cb2124b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/precipice.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 13, + "description": { + "translate": "jukebox_song.minecraft.precipice" + }, + "length_in_seconds": 299.0, + "sound_event": "minecraft:music_disc.precipice" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/relic.json b/data/generated/V26_2/data/minecraft/jukebox_song/relic.json new file mode 100644 index 00000000..077ca97c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/relic.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 14, + "description": { + "translate": "jukebox_song.minecraft.relic" + }, + "length_in_seconds": 218.0, + "sound_event": "minecraft:music_disc.relic" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/stal.json b/data/generated/V26_2/data/minecraft/jukebox_song/stal.json new file mode 100644 index 00000000..c069d614 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/stal.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 8, + "description": { + "translate": "jukebox_song.minecraft.stal" + }, + "length_in_seconds": 150.0, + "sound_event": "minecraft:music_disc.stal" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/strad.json b/data/generated/V26_2/data/minecraft/jukebox_song/strad.json new file mode 100644 index 00000000..918a7dc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/strad.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 9, + "description": { + "translate": "jukebox_song.minecraft.strad" + }, + "length_in_seconds": 188.0, + "sound_event": "minecraft:music_disc.strad" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/tears.json b/data/generated/V26_2/data/minecraft/jukebox_song/tears.json new file mode 100644 index 00000000..37147b82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/tears.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 10, + "description": { + "translate": "jukebox_song.minecraft.tears" + }, + "length_in_seconds": 175.0, + "sound_event": "minecraft:music_disc.tears" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/wait.json b/data/generated/V26_2/data/minecraft/jukebox_song/wait.json new file mode 100644 index 00000000..c0cd84b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/wait.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 12, + "description": { + "translate": "jukebox_song.minecraft.wait" + }, + "length_in_seconds": 238.0, + "sound_event": "minecraft:music_disc.wait" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/jukebox_song/ward.json b/data/generated/V26_2/data/minecraft/jukebox_song/ward.json new file mode 100644 index 00000000..7f08af1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/jukebox_song/ward.json @@ -0,0 +1,8 @@ +{ + "comparator_output": 10, + "description": { + "translate": "jukebox_song.minecraft.ward" + }, + "length_in_seconds": 251.0, + "sound_event": "minecraft:music_disc.ward" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_pyramid.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_pyramid.json new file mode 100644 index 00000000..92c0b9dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_pyramid.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:archer_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:miner_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:prize_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:skull_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "name": "minecraft:tnt" + }, + { + "type": "minecraft:item", + "name": "minecraft:gunpowder" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_well.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_well.json new file mode 100644 index 00000000..0f85000e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/desert_well.json @@ -0,0 +1,92 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:arms_up_pottery_sherd", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brewer_pottery_sherd", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brick" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:stick" + }, + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:jump_boost", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:weakness", + "duration": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 6.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + }, + { + "type": "minecraft:poison", + "duration": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + } + }, + { + "type": "minecraft:saturation", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "name": "minecraft:suspicious_stew" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/desert_well" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json new file mode 100644 index 00000000..646cb46d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_cold.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blade_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:explorer_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:mourner_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:plenty_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/ocean_ruin_cold" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json new file mode 100644 index 00000000..6ebcbafd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/ocean_ruin_warm.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:angler_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:shelter_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:snort_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:sniffer_egg" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:coal", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/ocean_ruin_warm" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_common.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_common.json new file mode 100644 index 00000000..10f88d29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_common.json @@ -0,0 +1,149 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:clay", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brick", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:white_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:orange_dye", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:red_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:green_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:brown_candle", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass_pane" + }, + { + "type": "minecraft:item", + "name": "minecraft:spruce_hanging_sign" + }, + { + "type": "minecraft:item", + "name": "minecraft:oak_hanging_sign" + }, + { + "type": "minecraft:item", + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:coal" + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:dead_bush" + }, + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + }, + { + "type": "minecraft:item", + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "name": "minecraft:lead" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/trail_ruins_common" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_rare.json b/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_rare.json new file mode 100644 index 00000000..ba4d7aad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/archaeology/trail_ruins_rare.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:archaeology", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:burn_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:danger_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:friend_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:heart_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:heartbreak_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:howl_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:sheaf_pottery_sherd" + }, + { + "type": "minecraft:item", + "name": "minecraft:wayfinder_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:raiser_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:shaper_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:host_armor_trim_smithing_template" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_relic" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:archaeology/trail_ruins_rare" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_button.json new file mode 100644 index 00000000..1ce2c6a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_door.json new file mode 100644 index 00000000..044c8edd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:acacia_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:acacia_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence.json new file mode 100644 index 00000000..938be2d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence_gate.json new file mode 100644 index 00000000..ce23c187 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_hanging_sign.json new file mode 100644 index 00000000..9ce57d9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_leaves.json new file mode 100644 index 00000000..7ed25b74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:acacia_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:acacia_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_log.json new file mode 100644 index 00000000..97310914 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_planks.json new file mode 100644 index 00000000..95513268 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_pressure_plate.json new file mode 100644 index 00000000..1f46dcc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sapling.json new file mode 100644 index 00000000..89f577e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_shelf.json new file mode 100644 index 00000000..11b155eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sign.json new file mode 100644 index 00000000..1c258b0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_slab.json new file mode 100644 index 00000000..85111481 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:acacia_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:acacia_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_stairs.json new file mode 100644 index 00000000..2aeead66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_trapdoor.json new file mode 100644 index 00000000..5da8e85b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_wood.json new file mode 100644 index 00000000..f10473f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/acacia_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/acacia_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/activator_rail.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/activator_rail.json new file mode 100644 index 00000000..e4ff53bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/activator_rail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:activator_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/activator_rail" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/allium.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/allium.json new file mode 100644 index 00000000..84ea83b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/allium.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:allium" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/allium" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_block.json new file mode 100644 index 00000000..928b2c33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:amethyst_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/amethyst_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_cluster.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_cluster.json new file mode 100644 index 00000000..356906f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/amethyst_cluster.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:amethyst_cluster" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "#minecraft:cluster_max_harvestables" + } + } + ], + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + } + ], + "name": "minecraft:amethyst_shard" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:amethyst_shard" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/amethyst_cluster" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/ancient_debris.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/ancient_debris.json new file mode 100644 index 00000000..df3e6d2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/ancient_debris.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ancient_debris" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ancient_debris" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite.json new file mode 100644 index 00000000..137eee97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_slab.json new file mode 100644 index 00000000..c405d289 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:andesite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:andesite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_stairs.json new file mode 100644 index 00000000..f89c78b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_wall.json new file mode 100644 index 00000000..60133b98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/andesite_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:andesite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/andesite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/anvil.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/anvil.json new file mode 100644 index 00000000..8714093c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/anvil.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/anvil" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_melon_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_melon_stem.json new file mode 100644 index 00000000..7c021953 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_melon_stem.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/attached_melon_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json new file mode 100644 index 00000000..f61d8861 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/attached_pumpkin_stem.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/attached_pumpkin_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea.json new file mode 100644 index 00000000..3cf8f9d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azalea" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea_leaves.json new file mode 100644 index 00000000..34eaee35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/azalea_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:azalea_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:azalea" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azalea_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/azure_bluet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/azure_bluet.json new file mode 100644 index 00000000..85175869 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/azure_bluet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azure_bluet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/azure_bluet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo.json new file mode 100644 index 00000000..955cb280 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_block.json new file mode 100644 index 00000000..40ace6a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_button.json new file mode 100644 index 00000000..f5762f18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_door.json new file mode 100644 index 00000000..54915bbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:bamboo_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:bamboo_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence.json new file mode 100644 index 00000000..8dcd3ecb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence_gate.json new file mode 100644 index 00000000..7a874a7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json new file mode 100644 index 00000000..45f71e7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic.json new file mode 100644 index 00000000..2256daa1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_mosaic" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json new file mode 100644 index 00000000..1dfc06bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:bamboo_mosaic_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:bamboo_mosaic_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..0bfd68a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_mosaic_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_mosaic_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_mosaic_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_planks.json new file mode 100644 index 00000000..22cec555 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json new file mode 100644 index 00000000..af198c5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sapling.json new file mode 100644 index 00000000..b4d4d4ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_shelf.json new file mode 100644 index 00000000..70b64f34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sign.json new file mode 100644 index 00000000..52887af2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_slab.json new file mode 100644 index 00000000..4c142f68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:bamboo_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:bamboo_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_stairs.json new file mode 100644 index 00000000..bd3ad569 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_trapdoor.json new file mode 100644 index 00000000..e414cef5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bamboo_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bamboo_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/barrel.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/barrel.json new file mode 100644 index 00000000..1f39c2a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/barrel.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:barrel" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/barrel" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/basalt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/basalt.json new file mode 100644 index 00000000..34e02c1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/basalt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/basalt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/beacon.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/beacon.json new file mode 100644 index 00000000..9e4746cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/beacon.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:beacon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beacon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bee_nest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bee_nest.json new file mode 100644 index 00000000..c2593de8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bee_nest.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:bees" + ], + "source": "block_entity" + }, + { + "block": "minecraft:bee_nest", + "function": "minecraft:copy_state", + "properties": [ + "honey_level" + ] + } + ], + "name": "minecraft:bee_nest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bee_nest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/beehive.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/beehive.json new file mode 100644 index 00000000..a65602da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/beehive.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:bees" + ], + "source": "block_entity" + }, + { + "block": "minecraft:beehive", + "function": "minecraft:copy_state", + "properties": [ + "honey_level" + ] + } + ], + "name": "minecraft:beehive" + }, + { + "type": "minecraft:item", + "name": "minecraft:beehive" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beehive" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/beetroots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/beetroots.json new file mode 100644 index 00000000..f87bc102 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/beetroots.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "name": "minecraft:beetroot" + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:beetroots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:beetroot_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/beetroots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bell.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bell.json new file mode 100644 index 00000000..7c78ab0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bell.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bell" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf.json new file mode 100644 index 00000000..126d35a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:big_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/big_dripleaf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf_stem.json new file mode 100644 index 00000000..e7065019 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/big_dripleaf_stem.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:big_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/big_dripleaf_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_button.json new file mode 100644 index 00000000..a511bcd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_door.json new file mode 100644 index 00000000..7c9d9740 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:birch_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:birch_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence.json new file mode 100644 index 00000000..8c434864 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence_gate.json new file mode 100644 index 00000000..a6289357 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_hanging_sign.json new file mode 100644 index 00000000..4aa5682f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_leaves.json new file mode 100644 index 00000000..89898210 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:birch_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:birch_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_log.json new file mode 100644 index 00000000..81477bdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_planks.json new file mode 100644 index 00000000..02fa7ec6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_pressure_plate.json new file mode 100644 index 00000000..d9f16b76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sapling.json new file mode 100644 index 00000000..bcfd91f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_shelf.json new file mode 100644 index 00000000..72a39b3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sign.json new file mode 100644 index 00000000..cd4a7dbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_slab.json new file mode 100644 index 00000000..f263aaee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:birch_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:birch_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_stairs.json new file mode 100644 index 00000000..b9b3e5cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_trapdoor.json new file mode 100644 index 00000000..6f3945c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_wood.json new file mode 100644 index 00000000..aba9e46c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/birch_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/birch_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_banner.json new file mode 100644 index 00000000..76924c39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:black_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_bed.json new file mode 100644 index 00000000..ced57ea6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:black_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:black_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle.json new file mode 100644 index 00000000..d0488ad9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:black_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:black_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle_cake.json new file mode 100644 index 00000000..502c66ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_carpet.json new file mode 100644 index 00000000..7ba1c877 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete.json new file mode 100644 index 00000000..bd55aed3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete_powder.json new file mode 100644 index 00000000..8daa5621 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_glazed_terracotta.json new file mode 100644 index 00000000..97b93cae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_shulker_box.json new file mode 100644 index 00000000..3177d5d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:black_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass.json new file mode 100644 index 00000000..3e89c44a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass_pane.json new file mode 100644 index 00000000..1d60ab6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_terracotta.json new file mode 100644 index 00000000..948b5786 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/black_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_wool.json new file mode 100644 index 00000000..e6b391c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/black_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/black_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone.json new file mode 100644 index 00000000..eceb3e39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_slab.json new file mode 100644 index 00000000..12c6fc4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:blackstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:blackstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_stairs.json new file mode 100644 index 00000000..779f063a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_wall.json new file mode 100644 index 00000000..2441ca06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blackstone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blackstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blackstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blast_furnace.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blast_furnace.json new file mode 100644 index 00000000..faa58c5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blast_furnace.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blast_furnace" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blast_furnace" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_banner.json new file mode 100644 index 00000000..44a3350e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blue_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_bed.json new file mode 100644 index 00000000..aeb2970b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:blue_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:blue_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle.json new file mode 100644 index 00000000..853f3e82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle_cake.json new file mode 100644 index 00000000..5efff816 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_carpet.json new file mode 100644 index 00000000..2ff3e626 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete.json new file mode 100644 index 00000000..2c9e8395 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete_powder.json new file mode 100644 index 00000000..a765ba93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json new file mode 100644 index 00000000..82ad3765 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_ice.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_ice.json new file mode 100644 index 00000000..817f9d06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_ice.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_ice" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_orchid.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_orchid.json new file mode 100644 index 00000000..53804e15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_orchid.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_orchid" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_orchid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_shulker_box.json new file mode 100644 index 00000000..53c7b514 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:blue_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass.json new file mode 100644 index 00000000..ac2a8f61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json new file mode 100644 index 00000000..fb417992 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_terracotta.json new file mode 100644 index 00000000..199314a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_wool.json new file mode 100644 index 00000000..104f2123 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/blue_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/blue_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bone_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bone_block.json new file mode 100644 index 00000000..45c8be98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bone_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bone_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bookshelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bookshelf.json new file mode 100644 index 00000000..934970fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bookshelf.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:bookshelf" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:book" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bookshelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral.json new file mode 100644 index 00000000..f72b325c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brain_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_block.json new file mode 100644 index 00000000..b4a4b388 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:brain_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_brain_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_fan.json new file mode 100644 index 00000000..e340aa5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brain_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brain_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brain_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brewing_stand.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brewing_stand.json new file mode 100644 index 00000000..e1087903 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brewing_stand.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brewing_stand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brewing_stand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_slab.json new file mode 100644 index 00000000..4dfe8284 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_stairs.json new file mode 100644 index 00000000..e7c322e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_wall.json new file mode 100644 index 00000000..58e71012 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bricks.json new file mode 100644 index 00000000..ec0ddd58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_banner.json new file mode 100644 index 00000000..73ee857c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brown_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_bed.json new file mode 100644 index 00000000..d892268b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:brown_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:brown_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle.json new file mode 100644 index 00000000..c3db39e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:brown_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brown_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle_cake.json new file mode 100644 index 00000000..5114a266 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_carpet.json new file mode 100644 index 00000000..282f4059 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete.json new file mode 100644 index 00000000..80fea9d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete_powder.json new file mode 100644 index 00000000..02ff2f78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json new file mode 100644 index 00000000..87961f42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom.json new file mode 100644 index 00000000..c50d8315 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom_block.json new file mode 100644 index 00000000..72fc02df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_mushroom_block.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:brown_mushroom_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": -6.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:limit_count", + "limit": { + "min": 0.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:brown_mushroom" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_mushroom_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_shulker_box.json new file mode 100644 index 00000000..a7dc92c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:brown_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass.json new file mode 100644 index 00000000..794d37a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json new file mode 100644 index 00000000..f0634d8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_terracotta.json new file mode 100644 index 00000000..715a9c2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_wool.json new file mode 100644 index 00000000..9be2321c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/brown_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/brown_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral.json new file mode 100644 index 00000000..5fcfc911 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bubble_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_block.json new file mode 100644 index 00000000..f9d1c238 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:bubble_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_bubble_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_fan.json new file mode 100644 index 00000000..a7c20539 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bubble_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bubble_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bubble_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/budding_amethyst.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/budding_amethyst.json new file mode 100644 index 00000000..5570eb62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/budding_amethyst.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/budding_amethyst" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/bush.json new file mode 100644 index 00000000..862c2bee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/bush.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus.json new file mode 100644 index 00000000..2a710ad7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cactus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus_flower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus_flower.json new file mode 100644 index 00000000..f5a5dd65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cactus_flower.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus_flower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cactus_flower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cake.json new file mode 100644 index 00000000..cf98e008 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cake.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/calcite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/calcite.json new file mode 100644 index 00000000..3ae41966 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/calcite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:calcite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/calcite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json new file mode 100644 index 00000000..aa5271ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/calibrated_sculk_sensor.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:calibrated_sculk_sensor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/calibrated_sculk_sensor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/campfire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/campfire.json new file mode 100644 index 00000000..2d3ede8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/campfire.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:campfire" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:charcoal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/campfire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/candle.json new file mode 100644 index 00000000..b1caf788 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/candle_cake.json new file mode 100644 index 00000000..dfd64c43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/carrots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/carrots.json new file mode 100644 index 00000000..da2965d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/carrots.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carrot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:carrots", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:carrot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/carrots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cartography_table.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cartography_table.json new file mode 100644 index 00000000..909057f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cartography_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cartography_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cartography_table" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/carved_pumpkin.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/carved_pumpkin.json new file mode 100644 index 00000000..82ab9b67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/carved_pumpkin.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/carved_pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cauldron.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cauldron.json new file mode 100644 index 00000000..4b1a7a61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cauldron.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines.json new file mode 100644 index 00000000..0795c51e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "block": "minecraft:cave_vines", + "condition": "minecraft:block_state_property", + "properties": { + "berries": "true" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cave_vines" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines_plant.json new file mode 100644 index 00000000..80cbc2e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cave_vines_plant.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "block": "minecraft:cave_vines_plant", + "condition": "minecraft:block_state_property", + "properties": { + "berries": "true" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cave_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_button.json new file mode 100644 index 00000000..14f705d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_door.json new file mode 100644 index 00000000..30e340f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:cherry_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:cherry_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence.json new file mode 100644 index 00000000..ca1ee9ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence_gate.json new file mode 100644 index 00000000..7bf579d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_hanging_sign.json new file mode 100644 index 00000000..030da843 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_leaves.json new file mode 100644 index 00000000..a8140294 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:cherry_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:cherry_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_log.json new file mode 100644 index 00000000..26abb5c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_planks.json new file mode 100644 index 00000000..d441cf59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_pressure_plate.json new file mode 100644 index 00000000..418cbb78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sapling.json new file mode 100644 index 00000000..58e93363 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_shelf.json new file mode 100644 index 00000000..6fb1b5f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sign.json new file mode 100644 index 00000000..a60a97f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_slab.json new file mode 100644 index 00000000..a351aa6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cherry_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cherry_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_stairs.json new file mode 100644 index 00000000..3c487951 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_trapdoor.json new file mode 100644 index 00000000..104beeaa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_wood.json new file mode 100644 index 00000000..67edc37f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cherry_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cherry_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chest.json new file mode 100644 index 00000000..e5edc228 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chipped_anvil.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chipped_anvil.json new file mode 100644 index 00000000..bd1f9f67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chipped_anvil.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chipped_anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chipped_anvil" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_bookshelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_bookshelf.json new file mode 100644 index 00000000..9f3323a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_bookshelf.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_bookshelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_bookshelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_cinnabar.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_cinnabar.json new file mode 100644 index 00000000..bf36099d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_cinnabar.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_cinnabar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_cinnabar" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_copper.json new file mode 100644 index 00000000..2f850989 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_deepslate.json new file mode 100644 index 00000000..eb66282b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_deepslate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json new file mode 100644 index 00000000..e7713661 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_nether_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json new file mode 100644 index 00000000..58deb2cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_polished_blackstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_polished_blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_polished_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_quartz_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_quartz_block.json new file mode 100644 index 00000000..fbc67e83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_quartz_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_quartz_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_quartz_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json new file mode 100644 index 00000000..51be17e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_red_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json new file mode 100644 index 00000000..2a9aec5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_resin_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_resin_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_resin_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sandstone.json new file mode 100644 index 00000000..79fad9c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json new file mode 100644 index 00000000..cfab5a14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sulfur.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sulfur.json new file mode 100644 index 00000000..a9f41e5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_sulfur.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_sulfur" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_sulfur" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff.json new file mode 100644 index 00000000..1616ef09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_tuff" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json new file mode 100644 index 00000000..a3f8befc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chiseled_tuff_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_tuff_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chiseled_tuff_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_flower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_flower.json new file mode 100644 index 00000000..070ffc18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_flower.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ], + "name": "minecraft:chorus_flower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chorus_flower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_plant.json new file mode 100644 index 00000000..3f711138 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/chorus_plant.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:chorus_fruit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/chorus_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar.json new file mode 100644 index 00000000..2a42f9cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_slab.json new file mode 100644 index 00000000..632ad32c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cinnabar_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cinnabar_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_stairs.json new file mode 100644 index 00000000..f3badcd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_wall.json new file mode 100644 index 00000000..85202230 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_bricks.json new file mode 100644 index 00000000..bc72df91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_slab.json new file mode 100644 index 00000000..cb1228ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cinnabar_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cinnabar_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_stairs.json new file mode 100644 index 00000000..f348df6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_wall.json new file mode 100644 index 00000000..9db9c162 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cinnabar_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cinnabar_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cinnabar_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/clay.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/clay.json new file mode 100644 index 00000000..9d80f108 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/clay.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:clay" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:clay_ball" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/clay" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/closed_eyeblossom.json new file mode 100644 index 00000000..7facbe8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/closed_eyeblossom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:closed_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/closed_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_block.json new file mode 100644 index 00000000..5b36322f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coal_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coal_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_ore.json new file mode 100644 index 00000000..b7629d57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/coal_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:coal_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:coal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coal_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/coarse_dirt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/coarse_dirt.json new file mode 100644 index 00000000..eea9e689 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/coarse_dirt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:coarse_dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/coarse_dirt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate.json new file mode 100644 index 00000000..c6af9a45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json new file mode 100644 index 00000000..af586d3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cobbled_deepslate_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cobbled_deepslate_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..90a4f8d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json new file mode 100644 index 00000000..abe4ff31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobbled_deepslate_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobbled_deepslate_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobbled_deepslate_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone.json new file mode 100644 index 00000000..fec9c2ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_slab.json new file mode 100644 index 00000000..8ff0f53e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cobblestone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cobblestone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_stairs.json new file mode 100644 index 00000000..7dbad8e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_wall.json new file mode 100644 index 00000000..b1ebad04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobblestone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobblestone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cobweb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobweb.json new file mode 100644 index 00000000..3a38f284 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cobweb.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:cobweb" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:string" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cobweb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cocoa.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cocoa.json new file mode 100644 index 00000000..87c6ab57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cocoa.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cocoa", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cocoa_beans" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cocoa" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/comparator.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/comparator.json new file mode 100644 index 00000000..72ae22e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/comparator.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:comparator" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/comparator" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/composter.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/composter.json new file mode 100644 index 00000000..73ee2cc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/composter.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:composter" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:composter", + "condition": "minecraft:block_state_property", + "properties": { + "level": "8" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/composter" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/conduit.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/conduit.json new file mode 100644 index 00000000..422dd5e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/conduit.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:conduit" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/conduit" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bars.json new file mode 100644 index 00000000..f8243055 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_block.json new file mode 100644 index 00000000..3483f1d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bulb.json new file mode 100644 index 00000000..a746577c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chain.json new file mode 100644 index 00000000..9d4a106a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chest.json new file mode 100644 index 00000000..43d61b17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_door.json new file mode 100644 index 00000000..f070af53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_golem_statue.json new file mode 100644 index 00000000..c1b20ddd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_grate.json new file mode 100644 index 00000000..6713b73a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_lantern.json new file mode 100644 index 00000000..dedd8a63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_ore.json new file mode 100644 index 00000000..679af710 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_ore.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:copper_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_copper" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_torch.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_torch.json new file mode 100644 index 00000000..7f289c15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_torch" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_trapdoor.json new file mode 100644 index 00000000..b8f9003c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cornflower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cornflower.json new file mode 100644 index 00000000..1f98d503 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cornflower.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cornflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cornflower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json new file mode 100644 index 00000000..7815008f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_deepslate_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_deepslate_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json new file mode 100644 index 00000000..039a647c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_deepslate_tiles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_deepslate_tiles" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_deepslate_tiles" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_nether_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_nether_bricks.json new file mode 100644 index 00000000..7cfa9412 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_nether_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..952280a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_polished_blackstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_polished_blackstone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_stone_bricks.json new file mode 100644 index 00000000..d1bbc3ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cracked_stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cracked_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crafter.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crafter.json new file mode 100644 index 00000000..08965d39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crafter.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crafter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crafter" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crafting_table.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crafting_table.json new file mode 100644 index 00000000..e1589fe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crafting_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crafting_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crafting_table" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/creaking_heart.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/creaking_heart.json new file mode 100644 index 00000000..dd231e72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/creaking_heart.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:creaking_heart" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 9.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_clump" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/creaking_heart" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/creeper_head.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/creeper_head.json new file mode 100644 index 00000000..1fc74240 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/creeper_head.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:creeper_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/creeper_head" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_button.json new file mode 100644 index 00000000..7fc44636 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_door.json new file mode 100644 index 00000000..70251d1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:crimson_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:crimson_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence.json new file mode 100644 index 00000000..ac9de701 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence_gate.json new file mode 100644 index 00000000..3a37da0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fungus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fungus.json new file mode 100644 index 00000000..c173152b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_fungus.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hanging_sign.json new file mode 100644 index 00000000..e1e98c4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hyphae.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hyphae.json new file mode 100644 index 00000000..b7cfccbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_hyphae.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_nylium.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_nylium.json new file mode 100644 index 00000000..d843d8f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_nylium.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:crimson_nylium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:netherrack" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_nylium" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_planks.json new file mode 100644 index 00000000..2de0ac49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_pressure_plate.json new file mode 100644 index 00000000..9f9c9018 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_roots.json new file mode 100644 index 00000000..3a4f8089 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_roots.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_shelf.json new file mode 100644 index 00000000..66122754 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_sign.json new file mode 100644 index 00000000..a267f00b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_slab.json new file mode 100644 index 00000000..86475534 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:crimson_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:crimson_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stairs.json new file mode 100644 index 00000000..1d2bf95a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stem.json new file mode 100644 index 00000000..e214d198 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_stem.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_trapdoor.json new file mode 100644 index 00000000..af08281e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crimson_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crimson_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/crying_obsidian.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/crying_obsidian.json new file mode 100644 index 00000000..41962981 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/crying_obsidian.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crying_obsidian" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/crying_obsidian" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper.json new file mode 100644 index 00000000..64e609f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_slab.json new file mode 100644 index 00000000..35786164 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_stairs.json new file mode 100644 index 00000000..d7558c87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone.json new file mode 100644 index 00000000..0713d5ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json new file mode 100644 index 00000000..b7827a47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_red_sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cut_red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone.json new file mode 100644 index 00000000..0765c872 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cut_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone_slab.json new file mode 100644 index 00000000..c9b6498a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cut_sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cut_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cut_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cut_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_banner.json new file mode 100644 index 00000000..af92684b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:cyan_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_bed.json new file mode 100644 index 00000000..5b50735f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:cyan_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:cyan_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle.json new file mode 100644 index 00000000..c471155e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:cyan_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:cyan_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle_cake.json new file mode 100644 index 00000000..e809a3dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_carpet.json new file mode 100644 index 00000000..fa2474d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete.json new file mode 100644 index 00000000..a05174aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete_powder.json new file mode 100644 index 00000000..9d54301b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json new file mode 100644 index 00000000..3c7f7147 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_shulker_box.json new file mode 100644 index 00000000..7fb029d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:cyan_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass.json new file mode 100644 index 00000000..bafc60ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json new file mode 100644 index 00000000..fb6bade4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_terracotta.json new file mode 100644 index 00000000..c949b182 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_wool.json new file mode 100644 index 00000000..c5fccefd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/cyan_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/cyan_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/damaged_anvil.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/damaged_anvil.json new file mode 100644 index 00000000..c92ef052 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/damaged_anvil.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:damaged_anvil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/damaged_anvil" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dandelion.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dandelion.json new file mode 100644 index 00000000..97662f19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dandelion.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_button.json new file mode 100644 index 00000000..21747efe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_door.json new file mode 100644 index 00000000..80140e9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:dark_oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:dark_oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence.json new file mode 100644 index 00000000..d6ebc257 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json new file mode 100644 index 00000000..9b9e4884 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json new file mode 100644 index 00000000..ba17fad2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_leaves.json new file mode 100644 index 00000000..f97afcea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_leaves.json @@ -0,0 +1,189 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:dark_oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:dark_oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.005, + 0.0055555557, + 0.00625, + 0.008333334, + 0.025 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_log.json new file mode 100644 index 00000000..a17f21e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_planks.json new file mode 100644 index 00000000..75b737a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json new file mode 100644 index 00000000..ff4787e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sapling.json new file mode 100644 index 00000000..24a16285 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_shelf.json new file mode 100644 index 00000000..70a3f088 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sign.json new file mode 100644 index 00000000..1a95b009 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_slab.json new file mode 100644 index 00000000..da4e443a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:dark_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:dark_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_stairs.json new file mode 100644 index 00000000..514108fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json new file mode 100644 index 00000000..475af3fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_wood.json new file mode 100644 index 00000000..30ef5c91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine.json new file mode 100644 index 00000000..c4e112ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_prismarine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_slab.json new file mode 100644 index 00000000..a4f8e8c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:dark_prismarine_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:dark_prismarine_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json new file mode 100644 index 00000000..42216b06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dark_prismarine_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_prismarine_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dark_prismarine_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/daylight_detector.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/daylight_detector.json new file mode 100644 index 00000000..95b709e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/daylight_detector.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:daylight_detector" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/daylight_detector" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral.json new file mode 100644 index 00000000..d6fd69fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_block.json new file mode 100644 index 00000000..0353584c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json new file mode 100644 index 00000000..57675248 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_brain_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_brain_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_brain_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral.json new file mode 100644 index 00000000..8df64b0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json new file mode 100644 index 00000000..faded572 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json new file mode 100644 index 00000000..1a51d6b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bubble_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bubble_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bubble_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bush.json new file mode 100644 index 00000000..e7a77b80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_bush.json @@ -0,0 +1,45 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:dead_bush" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral.json new file mode 100644 index 00000000..7e7f75f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_block.json new file mode 100644 index 00000000..0e555e3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json new file mode 100644 index 00000000..486744f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_fire_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_fire_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_fire_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral.json new file mode 100644 index 00000000..0e21c2ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_block.json new file mode 100644 index 00000000..8f447ec8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json new file mode 100644 index 00000000..d91e9a5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_horn_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_horn_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_horn_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral.json new file mode 100644 index 00000000..24710f06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_block.json new file mode 100644 index 00000000..0dd54fd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json new file mode 100644 index 00000000..1c40e70c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dead_tube_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_tube_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dead_tube_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/decorated_pot.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/decorated_pot.json new file mode 100644 index 00000000..1cc4a114 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/decorated_pot.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:dynamic", + "conditions": [ + { + "block": "minecraft:decorated_pot", + "condition": "minecraft:block_state_property", + "properties": { + "cracked": "true" + } + } + ], + "name": "minecraft:sherds" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:pot_decorations" + ], + "source": "block_entity" + } + ], + "name": "minecraft:decorated_pot" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/decorated_pot" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate.json new file mode 100644 index 00000000..4ff7407f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:cobbled_deepslate" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_slab.json new file mode 100644 index 00000000..fc397dc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:deepslate_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:deepslate_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json new file mode 100644 index 00000000..ea1ba3e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_wall.json new file mode 100644 index 00000000..bcaf495f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_bricks.json new file mode 100644 index 00000000..355486bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_coal_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_coal_ore.json new file mode 100644 index 00000000..942f2265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_coal_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_coal_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:coal" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_coal_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_copper_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_copper_ore.json new file mode 100644 index 00000000..73ba5bba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_copper_ore.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_copper_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_copper" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_copper_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json new file mode 100644 index 00000000..2e7dc02c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_diamond_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_diamond_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diamond" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_diamond_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json new file mode 100644 index 00000000..0b66af11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_emerald_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_emerald_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:emerald" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_emerald_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_gold_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_gold_ore.json new file mode 100644 index 00000000..7010db79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_gold_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_gold" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_iron_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_iron_ore.json new file mode 100644 index 00000000..9b1c6c67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_iron_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_iron_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_iron" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_iron_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json new file mode 100644 index 00000000..7a0890ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_lapis_ore.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_lapis_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lapis_lazuli" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_lapis_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json new file mode 100644 index 00000000..2e148e29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_redstone_ore.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:deepslate_redstone_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:redstone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_redstone_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_slab.json new file mode 100644 index 00000000..18494c34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:deepslate_tile_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:deepslate_tile_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json new file mode 100644 index 00000000..e5a04403 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tile_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_wall.json new file mode 100644 index 00000000..0880b174 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tile_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tile_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tile_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tiles.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tiles.json new file mode 100644 index 00000000..511b6935 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/deepslate_tiles.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate_tiles" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/deepslate_tiles" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/detector_rail.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/detector_rail.json new file mode 100644 index 00000000..0616fd46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/detector_rail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:detector_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/detector_rail" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_block.json new file mode 100644 index 00000000..a53c18dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diamond_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_ore.json new file mode 100644 index 00000000..385e95d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diamond_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:diamond_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diamond" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diamond_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite.json new file mode 100644 index 00000000..253f403e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_slab.json new file mode 100644 index 00000000..5a83c267 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:diorite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:diorite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_stairs.json new file mode 100644 index 00000000..bf65d088 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_wall.json new file mode 100644 index 00000000..09020cd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/diorite_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:diorite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/diorite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt.json new file mode 100644 index 00000000..19e72a4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dirt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt_path.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt_path.json new file mode 100644 index 00000000..ffbe23fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dirt_path.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dirt_path" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dispenser.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dispenser.json new file mode 100644 index 00000000..0b0e2e3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dispenser.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dispenser" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dispenser" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_egg.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_egg.json new file mode 100644 index 00000000..74dd30d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_egg.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dragon_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dragon_egg" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_head.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_head.json new file mode 100644 index 00000000..947f252e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dragon_head.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dragon_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dragon_head" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_ghast.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_ghast.json new file mode 100644 index 00000000..bd8be617 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_ghast.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dried_ghast" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dried_ghast" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_kelp_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_kelp_block.json new file mode 100644 index 00000000..23c4e2b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dried_kelp_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dried_kelp_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dried_kelp_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dripstone_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dripstone_block.json new file mode 100644 index 00000000..d698bbd6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dripstone_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dripstone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dripstone_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/dropper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/dropper.json new file mode 100644 index 00000000..6cadd541 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/dropper.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:dropper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/dropper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_block.json new file mode 100644 index 00000000..5783e812 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/emerald_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_ore.json new file mode 100644 index 00000000..973c80a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/emerald_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:emerald_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:emerald" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/emerald_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/enchanting_table.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/enchanting_table.json new file mode 100644 index 00000000..c64157ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/enchanting_table.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:enchanting_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/enchanting_table" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_rod.json new file mode 100644 index 00000000..d546d1c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone.json new file mode 100644 index 00000000..d4275871 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_slab.json new file mode 100644 index 00000000..f2d420d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:end_stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:end_stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json new file mode 100644 index 00000000..f1ba354c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_wall.json new file mode 100644 index 00000000..ea8c527d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_bricks.json new file mode 100644 index 00000000..45348921 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/end_stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:end_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/end_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/ender_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/ender_chest.json new file mode 100644 index 00000000..9dfdf5f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/ender_chest.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:ender_chest" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 8.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:obsidian" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ender_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json new file mode 100644 index 00000000..a628e809 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper.json new file mode 100644 index 00000000..66da0964 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bars.json new file mode 100644 index 00000000..4e64fe99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bulb.json new file mode 100644 index 00000000..eb4744ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chain.json new file mode 100644 index 00000000..15024d04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chest.json new file mode 100644 index 00000000..f5f072bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:exposed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_door.json new file mode 100644 index 00000000..ae9b3487 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:exposed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:exposed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json new file mode 100644 index 00000000..06c4644e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:exposed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:exposed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_grate.json new file mode 100644 index 00000000..1e758159 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_lantern.json new file mode 100644 index 00000000..edc04bff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json new file mode 100644 index 00000000..6cc4aa35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper.json new file mode 100644 index 00000000..650c875c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json new file mode 100644 index 00000000..d8a0f332 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:exposed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:exposed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..5d4f251d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_lightning_rod.json new file mode 100644 index 00000000..b9218d62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/exposed_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:exposed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/exposed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/farmland.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/farmland.json new file mode 100644 index 00000000..5534d682 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/farmland.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/farmland" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fern.json new file mode 100644 index 00000000..8008e330 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fern.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 2 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire.json new file mode 100644 index 00000000..7c51a605 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/fire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral.json new file mode 100644 index 00000000..a05979f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fire_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_block.json new file mode 100644 index 00000000..04385d4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:fire_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_fire_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_fan.json new file mode 100644 index 00000000..ba37fad6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fire_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fire_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fire_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/firefly_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/firefly_bush.json new file mode 100644 index 00000000..361ed692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/firefly_bush.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:firefly_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/firefly_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/fletching_table.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/fletching_table.json new file mode 100644 index 00000000..a15ffe26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/fletching_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fletching_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/fletching_table" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/flower_pot.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/flower_pot.json new file mode 100644 index 00000000..83c2103c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/flower_pot.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flower_pot" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea.json new file mode 100644 index 00000000..b671ecb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flowering_azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flowering_azalea" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json new file mode 100644 index 00000000..de76028b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/flowering_azalea_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:flowering_azalea_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:flowering_azalea" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/flowering_azalea_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/frogspawn.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/frogspawn.json new file mode 100644 index 00000000..19a12812 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/frogspawn.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/frogspawn" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/frosted_ice.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/frosted_ice.json new file mode 100644 index 00000000..2a641a5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/frosted_ice.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/frosted_ice" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/furnace.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/furnace.json new file mode 100644 index 00000000..b703fc37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/furnace.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:furnace" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/furnace" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gilded_blackstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gilded_blackstone.json new file mode 100644 index 00000000..8d131b9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gilded_blackstone.json @@ -0,0 +1,77 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.1, + 0.14285715, + 0.25, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:gilded_blackstone" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gilded_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/glass.json new file mode 100644 index 00000000..bf0c4eae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/glass_pane.json new file mode 100644 index 00000000..ed1fbd45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/glow_lichen.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/glow_lichen.json new file mode 100644 index 00000000..45abe7a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/glow_lichen.json @@ -0,0 +1,117 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:glow_lichen", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:glow_lichen" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glow_lichen" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/glowstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/glowstone.json new file mode 100644 index 00000000..02fd6cd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/glowstone.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:glowstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 4.0, + "min": 1.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:glowstone_dust" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/glowstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_block.json new file mode 100644 index 00000000..48facdf3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gold_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_ore.json new file mode 100644 index 00000000..edc6da23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gold_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_gold" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/golden_dandelion.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/golden_dandelion.json new file mode 100644 index 00000000..4d8cf050 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/golden_dandelion.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/golden_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/granite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite.json new file mode 100644 index 00000000..883e676b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_slab.json new file mode 100644 index 00000000..d35af30f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:granite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:granite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_stairs.json new file mode 100644 index 00000000..3ce58cfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_wall.json new file mode 100644 index 00000000..f5325ce2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/granite_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:granite_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/granite_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/grass_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/grass_block.json new file mode 100644 index 00000000..2c7e0691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/grass_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:grass_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/grass_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gravel.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gravel.json new file mode 100644 index 00000000..a458a425 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gravel.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:gravel" + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.1, + 0.14285715, + 0.25, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:flint" + }, + { + "type": "minecraft:item", + "name": "minecraft:gravel" + } + ], + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gravel" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_banner.json new file mode 100644 index 00000000..56ff961e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:gray_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_bed.json new file mode 100644 index 00000000..d6705724 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:gray_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:gray_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle.json new file mode 100644 index 00000000..ae7fe8e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle_cake.json new file mode 100644 index 00000000..decea7ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_carpet.json new file mode 100644 index 00000000..f50ac5d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete.json new file mode 100644 index 00000000..48c814d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete_powder.json new file mode 100644 index 00000000..3dfb0a17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json new file mode 100644 index 00000000..5f5de8e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_shulker_box.json new file mode 100644 index 00000000..7e94fc8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:gray_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass.json new file mode 100644 index 00000000..21b9262a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json new file mode 100644 index 00000000..1cf28e8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_terracotta.json new file mode 100644 index 00000000..aebb2650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_wool.json new file mode 100644 index 00000000..01b46a60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/gray_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/gray_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_banner.json new file mode 100644 index 00000000..e7ec890f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:green_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_bed.json new file mode 100644 index 00000000..aa1edd18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:green_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:green_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle.json new file mode 100644 index 00000000..d6d42b06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:green_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:green_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle_cake.json new file mode 100644 index 00000000..62b753cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_carpet.json new file mode 100644 index 00000000..68c54735 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete.json new file mode 100644 index 00000000..cfa1c7b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete_powder.json new file mode 100644 index 00000000..8128dac7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_glazed_terracotta.json new file mode 100644 index 00000000..2a0d2c0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_shulker_box.json new file mode 100644 index 00000000..f26e536b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:green_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass.json new file mode 100644 index 00000000..c6a5e7bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass_pane.json new file mode 100644 index 00000000..48a20b1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_terracotta.json new file mode 100644 index 00000000..e402264b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/green_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_wool.json new file mode 100644 index 00000000..099145ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/green_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/green_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/grindstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/grindstone.json new file mode 100644 index 00000000..8b67b232 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/grindstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:grindstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/grindstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/hanging_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/hanging_roots.json new file mode 100644 index 00000000..da2be6b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/hanging_roots.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:hanging_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hanging_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/hay_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/hay_block.json new file mode 100644 index 00000000..52380e74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/hay_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:hay_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hay_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_core.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_core.json new file mode 100644 index 00000000..3d40d08a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_core.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heavy_core" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/heavy_core" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..ca80fadf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/heavy_weighted_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heavy_weighted_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/heavy_weighted_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/honey_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/honey_block.json new file mode 100644 index 00000000..abe3250a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/honey_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:honey_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/honey_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/honeycomb_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/honeycomb_block.json new file mode 100644 index 00000000..3ad69451 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/honeycomb_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:honeycomb_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/honeycomb_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/hopper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/hopper.json new file mode 100644 index 00000000..bec6221d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/hopper.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:hopper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/hopper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral.json new file mode 100644 index 00000000..68c9f777 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:horn_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_block.json new file mode 100644 index 00000000..6af8491f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:horn_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_horn_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_fan.json new file mode 100644 index 00000000..573d49c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/horn_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:horn_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/horn_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/ice.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/ice.json new file mode 100644 index 00000000..5438cd5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/ice.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ice" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json new file mode 100644 index 00000000..c724186f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_chiseled_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chiseled_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_chiseled_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cobblestone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cobblestone.json new file mode 100644 index 00000000..11527f61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cobblestone.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json new file mode 100644 index 00000000..ec66a95d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_cracked_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cracked_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_cracked_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_deepslate.json new file mode 100644 index 00000000..12fcbc8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_deepslate.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json new file mode 100644 index 00000000..61c3145d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_mossy_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_mossy_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone.json new file mode 100644 index 00000000..ce91d184 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_stone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone_bricks.json new file mode 100644 index 00000000..f2b06392 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/infested_stone_bricks.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/infested_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_bars.json new file mode 100644 index 00000000..f2eee47e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_block.json new file mode 100644 index 00000000..79067bb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_chain.json new file mode 100644 index 00000000..0103f040 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_door.json new file mode 100644 index 00000000..5625a301 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:iron_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:iron_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_ore.json new file mode 100644 index 00000000..fd9b8328 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:iron_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:raw_iron" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_trapdoor.json new file mode 100644 index 00000000..484fcb9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/iron_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/iron_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jack_o_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jack_o_lantern.json new file mode 100644 index 00000000..9540097f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jack_o_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jack_o_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jack_o_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jukebox.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jukebox.json new file mode 100644 index 00000000..496e2b6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jukebox.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jukebox" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jukebox" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_button.json new file mode 100644 index 00000000..aca8834f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_door.json new file mode 100644 index 00000000..96780a3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:jungle_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:jungle_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence.json new file mode 100644 index 00000000..53af807b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence_gate.json new file mode 100644 index 00000000..1de8e95c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_hanging_sign.json new file mode 100644 index 00000000..445ea072 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_leaves.json new file mode 100644 index 00000000..59bb2656 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_leaves.json @@ -0,0 +1,134 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:jungle_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.025, + 0.027777778, + 0.03125, + 0.041666668, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:jungle_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_log.json new file mode 100644 index 00000000..36ff6b2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_planks.json new file mode 100644 index 00000000..039ecbb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_pressure_plate.json new file mode 100644 index 00000000..d40765b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sapling.json new file mode 100644 index 00000000..da6f2d91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_shelf.json new file mode 100644 index 00000000..64549221 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sign.json new file mode 100644 index 00000000..1cb46fc2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_slab.json new file mode 100644 index 00000000..cb1539f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:jungle_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:jungle_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_stairs.json new file mode 100644 index 00000000..13543373 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_trapdoor.json new file mode 100644 index 00000000..82ac9570 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_wood.json new file mode 100644 index 00000000..829a344e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/jungle_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/jungle_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp.json new file mode 100644 index 00000000..033dcc00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:kelp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/kelp" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp_plant.json new file mode 100644 index 00000000..bd4b9071 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/kelp_plant.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:kelp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/kelp_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/ladder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/ladder.json new file mode 100644 index 00000000..55aada45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/ladder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ladder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ladder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lantern.json new file mode 100644 index 00000000..1f2c8a48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_block.json new file mode 100644 index 00000000..e75b8906 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lapis_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lapis_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_ore.json new file mode 100644 index 00000000..5acf33ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lapis_ore.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:lapis_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lapis_lazuli" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lapis_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/large_amethyst_bud.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/large_amethyst_bud.json new file mode 100644 index 00000000..8a4e79a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/large_amethyst_bud.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:large_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/large_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/large_fern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/large_fern.json new file mode 100644 index 00000000..822b6675 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/large_fern.json @@ -0,0 +1,130 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "block": "minecraft:large_fern", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:large_fern", + "state": { + "half": "upper" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:large_fern", + "condition": "minecraft:block_state_property", + "properties": { + "half": "upper" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:large_fern", + "state": { + "half": "lower" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fern" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/large_fern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lava_cauldron.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lava_cauldron.json new file mode 100644 index 00000000..3714099c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lava_cauldron.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lava_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/leaf_litter.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/leaf_litter.json new file mode 100644 index 00000000..4b8bdbb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/leaf_litter.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:leaf_litter", + "condition": "minecraft:block_state_property", + "properties": { + "segment_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:leaf_litter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/leaf_litter" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lectern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lectern.json new file mode 100644 index 00000000..548a1a96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lectern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lectern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lectern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lever.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lever.json new file mode 100644 index 00000000..7e29f330 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lever.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lever" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lever" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_banner.json new file mode 100644 index 00000000..4234ab7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_blue_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_bed.json new file mode 100644 index 00000000..9b72f297 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:light_blue_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:light_blue_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle.json new file mode 100644 index 00000000..5d31963f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:light_blue_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:light_blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle_cake.json new file mode 100644 index 00000000..9728d6d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_carpet.json new file mode 100644 index 00000000..feb97315 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete.json new file mode 100644 index 00000000..cc952976 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json new file mode 100644 index 00000000..a50a9af5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..9cacfc87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_shulker_box.json new file mode 100644 index 00000000..ebdd20d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_blue_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass.json new file mode 100644 index 00000000..ee083fb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..004602b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_terracotta.json new file mode 100644 index 00000000..02432be2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_wool.json new file mode 100644 index 00000000..38ca7629 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_blue_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_blue_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_banner.json new file mode 100644 index 00000000..bd3ec3f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_gray_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_bed.json new file mode 100644 index 00000000..5d72c763 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:light_gray_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:light_gray_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle.json new file mode 100644 index 00000000..400083fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:light_gray_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:light_gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle_cake.json new file mode 100644 index 00000000..ead55dbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_carpet.json new file mode 100644 index 00000000..deac8099 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete.json new file mode 100644 index 00000000..6bd568df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json new file mode 100644 index 00000000..1587517d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..5673403d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_shulker_box.json new file mode 100644 index 00000000..c13fbc6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:light_gray_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass.json new file mode 100644 index 00000000..f98e0b2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..5f3d49fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_terracotta.json new file mode 100644 index 00000000..c19bf347 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_wool.json new file mode 100644 index 00000000..4ba3f699 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_gray_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_gray_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json new file mode 100644 index 00000000..9ec8d10c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/light_weighted_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_weighted_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/light_weighted_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lightning_rod.json new file mode 100644 index 00000000..f407cf31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lilac.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lilac.json new file mode 100644 index 00000000..1cc416fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lilac.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:lilac", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:lilac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lilac" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_of_the_valley.json new file mode 100644 index 00000000..5addf375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_of_the_valley.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_of_the_valley" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lily_of_the_valley" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_pad.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_pad.json new file mode 100644 index 00000000..741e65fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lily_pad.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_pad" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lily_pad" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_banner.json new file mode 100644 index 00000000..0ebe904b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:lime_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_bed.json new file mode 100644 index 00000000..736e7671 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:lime_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:lime_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle.json new file mode 100644 index 00000000..5ea4e242 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:lime_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:lime_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle_cake.json new file mode 100644 index 00000000..4e866466 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_carpet.json new file mode 100644 index 00000000..3def4fbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete.json new file mode 100644 index 00000000..70a1db21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete_powder.json new file mode 100644 index 00000000..5a0a116d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json new file mode 100644 index 00000000..4c906a37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_shulker_box.json new file mode 100644 index 00000000..62de87ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:lime_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass.json new file mode 100644 index 00000000..d25f4527 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json new file mode 100644 index 00000000..30d74fc5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_terracotta.json new file mode 100644 index 00000000..7152a361 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_wool.json new file mode 100644 index 00000000..3e129787 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lime_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lime_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/lodestone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/lodestone.json new file mode 100644 index 00000000..146d7d76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/lodestone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lodestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/lodestone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/loom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/loom.json new file mode 100644 index 00000000..500628bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/loom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:loom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/loom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_banner.json new file mode 100644 index 00000000..daee5252 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:magenta_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_bed.json new file mode 100644 index 00000000..fcd9dcb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:magenta_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:magenta_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle.json new file mode 100644 index 00000000..3144c520 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:magenta_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:magenta_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle_cake.json new file mode 100644 index 00000000..8c1ea7ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_carpet.json new file mode 100644 index 00000000..0d012c89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete.json new file mode 100644 index 00000000..97e8e77c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete_powder.json new file mode 100644 index 00000000..18378d28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json new file mode 100644 index 00000000..02912dc8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_shulker_box.json new file mode 100644 index 00000000..c88b6505 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:magenta_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass.json new file mode 100644 index 00000000..60c15afc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json new file mode 100644 index 00000000..1734660c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_terracotta.json new file mode 100644 index 00000000..d68596bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_wool.json new file mode 100644 index 00000000..ef62d679 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magenta_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magenta_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/magma_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/magma_block.json new file mode 100644 index 00000000..846995b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/magma_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magma_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/magma_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_button.json new file mode 100644 index 00000000..867276f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_door.json new file mode 100644 index 00000000..2c1ed007 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:mangrove_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:mangrove_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence.json new file mode 100644 index 00000000..27bedc47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence_gate.json new file mode 100644 index 00000000..92e57119 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json new file mode 100644 index 00000000..3374d7ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_leaves.json new file mode 100644 index 00000000..aed2fd60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_leaves.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:mangrove_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_log.json new file mode 100644 index 00000000..2dd03ea8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_planks.json new file mode 100644 index 00000000..2b3d4a6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json new file mode 100644 index 00000000..8035f54a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_propagule.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_propagule.json new file mode 100644 index 00000000..e7631104 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_propagule.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "conditions": [ + { + "block": "minecraft:mangrove_propagule", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_propagule" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_propagule" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_roots.json new file mode 100644 index 00000000..f4936b66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_roots.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_shelf.json new file mode 100644 index 00000000..6e3f3963 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_sign.json new file mode 100644 index 00000000..e896bcaf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_slab.json new file mode 100644 index 00000000..8a5cce2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:mangrove_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mangrove_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_stairs.json new file mode 100644 index 00000000..54c65dd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_trapdoor.json new file mode 100644 index 00000000..fef5c228 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_wood.json new file mode 100644 index 00000000..a4291da9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mangrove_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mangrove_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/medium_amethyst_bud.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/medium_amethyst_bud.json new file mode 100644 index 00000000..9ffbefc0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/medium_amethyst_bud.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:medium_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/medium_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/melon.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/melon.json new file mode 100644 index 00000000..e42c6ea6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/melon.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:melon" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 9.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:melon_slice" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/melon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/melon_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/melon_stem.json new file mode 100644 index 00000000..5d48480a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/melon_stem.json @@ -0,0 +1,158 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.06666667 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.13333334 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.2 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.26666668 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.33333334 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "5" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.4 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "6" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.46666667 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:melon_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/melon_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_block.json new file mode 100644 index 00000000..74382cd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:moss_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/moss_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_carpet.json new file mode 100644 index 00000000..3a9765c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/moss_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:moss_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/moss_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone.json new file mode 100644 index 00000000..bd1a5459 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json new file mode 100644 index 00000000..83763c5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:mossy_cobblestone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mossy_cobblestone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..00df7c19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json new file mode 100644 index 00000000..3706dbf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_cobblestone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_cobblestone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_cobblestone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json new file mode 100644 index 00000000..bc454025 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:mossy_stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mossy_stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..8330424e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json new file mode 100644 index 00000000..81da481a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_bricks.json new file mode 100644 index 00000000..f80954e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mossy_stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mossy_stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mossy_stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mud.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud.json new file mode 100644 index 00000000..fe368405 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_slab.json new file mode 100644 index 00000000..3229fbc5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:mud_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:mud_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_stairs.json new file mode 100644 index 00000000..9af376f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_wall.json new file mode 100644 index 00000000..e3ca3d68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_bricks.json new file mode 100644 index 00000000..d03cd5d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mud_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mud_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mud_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json new file mode 100644 index 00000000..af8579a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/muddy_mangrove_roots.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:muddy_mangrove_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/muddy_mangrove_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mushroom_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mushroom_stem.json new file mode 100644 index 00000000..c2079a19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mushroom_stem.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mushroom_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mushroom_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/mycelium.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/mycelium.json new file mode 100644 index 00000000..e7c0cabe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/mycelium.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:mycelium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/mycelium" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_fence.json new file mode 100644 index 00000000..bedf2b9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_slab.json new file mode 100644 index 00000000..f6fda0b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:nether_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:nether_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_stairs.json new file mode 100644 index 00000000..9e9f4851 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_wall.json new file mode 100644 index 00000000..0f4e78d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_bricks.json new file mode 100644 index 00000000..ac3e5948 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_gold_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_gold_ore.json new file mode 100644 index 00000000..a6d824a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_gold_ore.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:nether_gold_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:gold_nugget" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_gold_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_portal.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_portal.json new file mode 100644 index 00000000..c739666f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_portal.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/nether_portal" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_quartz_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_quartz_ore.json new file mode 100644 index 00000000..6add025f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_quartz_ore.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:nether_quartz_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:ore_drops", + "function": "minecraft:apply_bonus" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:quartz" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_quartz_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_sprouts.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_sprouts.json new file mode 100644 index 00000000..0b1a71b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_sprouts.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_sprouts" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_sprouts" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart.json new file mode 100644 index 00000000..4b93c7e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:nether_wart", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "name": "minecraft:nether_wart" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_wart" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart_block.json new file mode 100644 index 00000000..93c53d4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/nether_wart_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nether_wart_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/nether_wart_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/netherite_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/netherite_block.json new file mode 100644 index 00000000..232043f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/netherite_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/netherite_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/netherrack.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/netherrack.json new file mode 100644 index 00000000..6df0ac33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/netherrack.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherrack" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/netherrack" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/note_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/note_block.json new file mode 100644 index 00000000..80282990 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/note_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:note_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/note_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_button.json new file mode 100644 index 00000000..e67113cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_door.json new file mode 100644 index 00000000..3c21facd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence.json new file mode 100644 index 00000000..da70a98f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence_gate.json new file mode 100644 index 00000000..2057cc80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_hanging_sign.json new file mode 100644 index 00000000..1b3b9f2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_leaves.json new file mode 100644 index 00000000..c4b9ee0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_leaves.json @@ -0,0 +1,189 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.005, + 0.0055555557, + 0.00625, + 0.008333334, + 0.025 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_log.json new file mode 100644 index 00000000..745ec8f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_planks.json new file mode 100644 index 00000000..db161126 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_pressure_plate.json new file mode 100644 index 00000000..8510ae64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sapling.json new file mode 100644 index 00000000..4acaf595 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_shelf.json new file mode 100644 index 00000000..a20b956f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sign.json new file mode 100644 index 00000000..a99ceab8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_slab.json new file mode 100644 index 00000000..c1e29cfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_stairs.json new file mode 100644 index 00000000..1c43fbc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_trapdoor.json new file mode 100644 index 00000000..65ce3cb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_wood.json new file mode 100644 index 00000000..ce0b335a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/observer.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/observer.json new file mode 100644 index 00000000..46ad0a9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/observer.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:observer" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/observer" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/obsidian.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/obsidian.json new file mode 100644 index 00000000..6ccfda08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/obsidian.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:obsidian" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/obsidian" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/ochre_froglight.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/ochre_froglight.json new file mode 100644 index 00000000..e408e36c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/ochre_froglight.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ochre_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/ochre_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/open_eyeblossom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/open_eyeblossom.json new file mode 100644 index 00000000..fa16ffd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/open_eyeblossom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:open_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/open_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_banner.json new file mode 100644 index 00000000..e73f27bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:orange_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_bed.json new file mode 100644 index 00000000..f046fc2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:orange_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:orange_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle.json new file mode 100644 index 00000000..dc6d6d3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:orange_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:orange_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle_cake.json new file mode 100644 index 00000000..dbd96297 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_carpet.json new file mode 100644 index 00000000..ca97d17a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete.json new file mode 100644 index 00000000..08cb6808 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete_powder.json new file mode 100644 index 00000000..308f7ac1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json new file mode 100644 index 00000000..bb691d9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_shulker_box.json new file mode 100644 index 00000000..d9e5bc42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:orange_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass.json new file mode 100644 index 00000000..1642d00a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json new file mode 100644 index 00000000..427cd498 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_terracotta.json new file mode 100644 index 00000000..7f2ecc43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_tulip.json new file mode 100644 index 00000000..16674224 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_tulip.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_wool.json new file mode 100644 index 00000000..a35d7193 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/orange_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/orange_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxeye_daisy.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxeye_daisy.json new file mode 100644 index 00000000..717d06a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxeye_daisy.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxeye_daisy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxeye_daisy" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json new file mode 100644 index 00000000..c7dca79d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper.json new file mode 100644 index 00000000..4fb57565 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bars.json new file mode 100644 index 00000000..ce59a6a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json new file mode 100644 index 00000000..6adb0088 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chain.json new file mode 100644 index 00000000..bfbbe0a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chest.json new file mode 100644 index 00000000..7e483f98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:oxidized_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_door.json new file mode 100644 index 00000000..40d5abce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:oxidized_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:oxidized_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json new file mode 100644 index 00000000..079e08ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:oxidized_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:oxidized_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_grate.json new file mode 100644 index 00000000..d0367891 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json new file mode 100644 index 00000000..2d3bf78c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json new file mode 100644 index 00000000..15e9c593 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper.json new file mode 100644 index 00000000..4acf1cbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..4dbc70af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:oxidized_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:oxidized_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..9ffef57c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json new file mode 100644 index 00000000..40193ff4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/oxidized_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxidized_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/oxidized_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_ice.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_ice.json new file mode 100644 index 00000000..9223ca8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_ice.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:packed_ice" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/packed_ice" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_mud.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_mud.json new file mode 100644 index 00000000..b1349ca3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/packed_mud.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:packed_mud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/packed_mud" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_hanging_moss.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_hanging_moss.json new file mode 100644 index 00000000..5312edf7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_hanging_moss.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_hanging_moss" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_hanging_moss" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_block.json new file mode 100644 index 00000000..13b405ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_moss_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_moss_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_carpet.json new file mode 100644 index 00000000..57f76342 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_moss_carpet.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pale_moss_carpet", + "condition": "minecraft:block_state_property", + "properties": { + "bottom": "true" + } + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pale_moss_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_moss_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_button.json new file mode 100644 index 00000000..9e32f2db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_door.json new file mode 100644 index 00000000..0f279750 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pale_oak_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:pale_oak_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence.json new file mode 100644 index 00000000..45652427 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json new file mode 100644 index 00000000..f51df4a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json new file mode 100644 index 00000000..3db5fbf9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_leaves.json new file mode 100644 index 00000000..238e4efe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:pale_oak_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:pale_oak_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_log.json new file mode 100644 index 00000000..d2d7ba4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_planks.json new file mode 100644 index 00000000..cc4219ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json new file mode 100644 index 00000000..41d95343 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sapling.json new file mode 100644 index 00000000..7c98f06b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_shelf.json new file mode 100644 index 00000000..328e6a82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sign.json new file mode 100644 index 00000000..ca198406 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_slab.json new file mode 100644 index 00000000..d7de06d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:pale_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pale_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_stairs.json new file mode 100644 index 00000000..582d406c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json new file mode 100644 index 00000000..ce0ff2cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_wood.json new file mode 100644 index 00000000..7527f544 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pale_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pale_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pearlescent_froglight.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pearlescent_froglight.json new file mode 100644 index 00000000..fc3564f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pearlescent_froglight.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pearlescent_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pearlescent_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/peony.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/peony.json new file mode 100644 index 00000000..ff20a762 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/peony.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:peony", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:peony" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/peony" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/petrified_oak_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/petrified_oak_slab.json new file mode 100644 index 00000000..be466cb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/petrified_oak_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:petrified_oak_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:petrified_oak_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/petrified_oak_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/piglin_head.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/piglin_head.json new file mode 100644 index 00000000..7237d3af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/piglin_head.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:piglin_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/piglin_head" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_banner.json new file mode 100644 index 00000000..8b2d4db5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:pink_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_bed.json new file mode 100644 index 00000000..16eab180 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pink_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:pink_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle.json new file mode 100644 index 00000000..a4915e5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pink_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pink_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle_cake.json new file mode 100644 index 00000000..50a95e52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_carpet.json new file mode 100644 index 00000000..7d7dff5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete.json new file mode 100644 index 00000000..87207c43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete_powder.json new file mode 100644 index 00000000..8087d759 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json new file mode 100644 index 00000000..ee724b55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_petals.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_petals.json new file mode 100644 index 00000000..cf3cfdec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_petals.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pink_petals", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:pink_petals" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_petals" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_shulker_box.json new file mode 100644 index 00000000..7ed73dbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:pink_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass.json new file mode 100644 index 00000000..f6528814 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json new file mode 100644 index 00000000..65ce7f8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_terracotta.json new file mode 100644 index 00000000..5054d03b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_tulip.json new file mode 100644 index 00000000..a72e7761 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_tulip.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_wool.json new file mode 100644 index 00000000..73009f31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pink_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pink_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/piston.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/piston.json new file mode 100644 index 00000000..f76c8b5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/piston.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:piston" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/piston" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_crop.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_crop.json new file mode 100644 index 00000000..9d5f438a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_crop.json @@ -0,0 +1,151 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_pod" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + }, + { + "block": "minecraft:pitcher_crop", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pitcher_plant" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pitcher_crop" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_plant.json new file mode 100644 index 00000000..b522993d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pitcher_plant.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:pitcher_plant", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:pitcher_plant" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pitcher_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/player_head.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/player_head.json new file mode 100644 index 00000000..b8a22fe0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/player_head.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:profile", + "minecraft:note_block_sound", + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:player_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/player_head" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/podzol.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/podzol.json new file mode 100644 index 00000000..7016234b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/podzol.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:podzol" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dirt" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/podzol" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pointed_dripstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pointed_dripstone.json new file mode 100644 index 00000000..2cf7451c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pointed_dripstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pointed_dripstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pointed_dripstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite.json new file mode 100644 index 00000000..a95026de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_andesite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_slab.json new file mode 100644 index 00000000..0f58c791 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_andesite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_andesite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_stairs.json new file mode 100644 index 00000000..2b4f9e56 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_andesite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_andesite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_andesite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_basalt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_basalt.json new file mode 100644 index 00000000..73dec121 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_basalt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_basalt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone.json new file mode 100644 index 00000000..923bc4fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..b76a5baf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_blackstone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_blackstone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..75788e21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..090bb556 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json new file mode 100644 index 00000000..d2a95c75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_button.json new file mode 100644 index 00000000..0db6b38f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..058ec2dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_slab.json new file mode 100644 index 00000000..552eca2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_blackstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_blackstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json new file mode 100644 index 00000000..653dc4ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_wall.json new file mode 100644 index 00000000..a74e5727 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_blackstone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_blackstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_blackstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar.json new file mode 100644 index 00000000..3ab30aad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_cinnabar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_cinnabar" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_slab.json new file mode 100644 index 00000000..2472bd92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_cinnabar_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_cinnabar_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_cinnabar_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_stairs.json new file mode 100644 index 00000000..acfee664 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_cinnabar_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_cinnabar_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_wall.json new file mode 100644 index 00000000..3d97dfa8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_cinnabar_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_cinnabar_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_cinnabar_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate.json new file mode 100644 index 00000000..6ef57bac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_slab.json new file mode 100644 index 00000000..89cf06ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_deepslate_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_deepslate_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json new file mode 100644 index 00000000..a89fc65f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_wall.json new file mode 100644 index 00000000..124a0c59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_deepslate_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_deepslate_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_deepslate_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite.json new file mode 100644 index 00000000..0d6e0ee9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_diorite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_slab.json new file mode 100644 index 00000000..63fe0f40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_diorite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_diorite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_stairs.json new file mode 100644 index 00000000..b6e842ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_diorite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_diorite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_diorite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite.json new file mode 100644 index 00000000..8e732cf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_granite" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_slab.json new file mode 100644 index 00000000..02e4a54c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_granite_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_granite_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_stairs.json new file mode 100644 index 00000000..2e45b837 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_granite_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_granite_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_granite_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur.json new file mode 100644 index 00000000..397da2ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_sulfur" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_sulfur" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_slab.json new file mode 100644 index 00000000..62b1f9ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_sulfur_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_sulfur_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_sulfur_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_stairs.json new file mode 100644 index 00000000..b815fdee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_sulfur_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_sulfur_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_wall.json new file mode 100644 index 00000000..d684208a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_sulfur_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_sulfur_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_sulfur_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff.json new file mode 100644 index 00000000..c39e9dde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_slab.json new file mode 100644 index 00000000..266bd7ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:polished_tuff_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:polished_tuff_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_stairs.json new file mode 100644 index 00000000..c86dced3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_wall.json new file mode 100644 index 00000000..07af4271 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/polished_tuff_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:polished_tuff_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/polished_tuff_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/poppy.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/poppy.json new file mode 100644 index 00000000..b6e9a5e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/poppy.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/poppy" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potatoes.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potatoes.json new file mode 100644 index 00000000..4b185558 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potatoes.json @@ -0,0 +1,73 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:potatoes", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:potatoes", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.02, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:poisonous_potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potatoes" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potent_sulfur.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potent_sulfur.json new file mode 100644 index 00000000..51cbac41 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potent_sulfur.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:potent_sulfur" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potent_sulfur" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_acacia_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_acacia_sapling.json new file mode 100644 index 00000000..bcaacbb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_acacia_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:acacia_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_acacia_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_allium.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_allium.json new file mode 100644 index 00000000..00a1c846 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_allium.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:allium" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_allium" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azalea_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azalea_bush.json new file mode 100644 index 00000000..acdec936 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azalea_bush.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_azalea_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azure_bluet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azure_bluet.json new file mode 100644 index 00000000..68e0bc24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_azure_bluet.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:azure_bluet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_azure_bluet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_bamboo.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_bamboo.json new file mode 100644 index 00000000..1a8350d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_bamboo.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_bamboo" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_birch_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_birch_sapling.json new file mode 100644 index 00000000..7ad10b3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_birch_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:birch_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_birch_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_blue_orchid.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_blue_orchid.json new file mode 100644 index 00000000..de38b17f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_blue_orchid.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_orchid" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_blue_orchid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_brown_mushroom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_brown_mushroom.json new file mode 100644 index 00000000..f999e91a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_brown_mushroom.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_brown_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cactus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cactus.json new file mode 100644 index 00000000..518f3edf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cactus.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cactus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cactus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cherry_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cherry_sapling.json new file mode 100644 index 00000000..aa00c1c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cherry_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cherry_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cherry_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json new file mode 100644 index 00000000..ad3ca190 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_closed_eyeblossom.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:closed_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_closed_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cornflower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cornflower.json new file mode 100644 index 00000000..d86178a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_cornflower.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cornflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_cornflower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_fungus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_fungus.json new file mode 100644 index 00000000..63034087 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_fungus.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_crimson_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_roots.json new file mode 100644 index 00000000..42bb1860 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_crimson_roots.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crimson_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_crimson_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dandelion.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dandelion.json new file mode 100644 index 00000000..f7b954ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dandelion.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json new file mode 100644 index 00000000..40b60a49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dark_oak_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dark_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dark_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dead_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dead_bush.json new file mode 100644 index 00000000..d4be53e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_dead_bush.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:dead_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_dead_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_fern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_fern.json new file mode 100644 index 00000000..1eafcf2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_fern.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:fern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_fern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json new file mode 100644 index 00000000..10c62d58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_flowering_azalea_bush.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flowering_azalea" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_flowering_azalea_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_golden_dandelion.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_golden_dandelion.json new file mode 100644 index 00000000..5b0f9c98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_golden_dandelion.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_dandelion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_golden_dandelion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_jungle_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_jungle_sapling.json new file mode 100644 index 00000000..1063e947 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_jungle_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:jungle_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_jungle_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json new file mode 100644 index 00000000..427b88a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_lily_of_the_valley.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_of_the_valley" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_lily_of_the_valley" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json new file mode 100644 index 00000000..d522fcad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_mangrove_propagule.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:mangrove_propagule" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_mangrove_propagule" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oak_sapling.json new file mode 100644 index 00000000..dfa4a875 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oak_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json new file mode 100644 index 00000000..dd1b46b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_open_eyeblossom.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:open_eyeblossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_open_eyeblossom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_orange_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_orange_tulip.json new file mode 100644 index 00000000..231442dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_orange_tulip.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_orange_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json new file mode 100644 index 00000000..253b9283 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_oxeye_daisy.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:oxeye_daisy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_oxeye_daisy" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json new file mode 100644 index 00000000..330f57c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pale_oak_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pale_oak_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_pale_oak_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pink_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pink_tulip.json new file mode 100644 index 00000000..7f0f8f84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_pink_tulip.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_pink_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_poppy.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_poppy.json new file mode 100644 index 00000000..ca39e24d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_poppy.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_poppy" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_mushroom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_mushroom.json new file mode 100644 index 00000000..65b31e5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_mushroom.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_red_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_tulip.json new file mode 100644 index 00000000..998b86f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_red_tulip.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_red_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_spruce_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_spruce_sapling.json new file mode 100644 index 00000000..7887f184 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_spruce_sapling.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_spruce_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_torchflower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_torchflower.json new file mode 100644 index 00000000..75cb954d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_torchflower.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_torchflower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_fungus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_fungus.json new file mode 100644 index 00000000..3cdade3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_fungus.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_warped_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_roots.json new file mode 100644 index 00000000..f5d6f6f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_warped_roots.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_warped_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_white_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_white_tulip.json new file mode 100644 index 00000000..3922e4eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_white_tulip.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_white_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_wither_rose.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_wither_rose.json new file mode 100644 index 00000000..5f5ed5e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/potted_wither_rose.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_rose" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/potted_wither_rose" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow.json new file mode 100644 index 00000000..91aa4aea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/powder_snow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow_cauldron.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow_cauldron.json new file mode 100644 index 00000000..c5489874 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/powder_snow_cauldron.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/powder_snow_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/powered_rail.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/powered_rail.json new file mode 100644 index 00000000..642fdfba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/powered_rail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:powered_rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/powered_rail" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine.json new file mode 100644 index 00000000..259cbba1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_slab.json new file mode 100644 index 00000000..d35cdb5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:prismarine_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json new file mode 100644 index 00000000..73faad64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_bricks.json new file mode 100644 index 00000000..59d8e727 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_slab.json new file mode 100644 index 00000000..45666b67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:prismarine_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_stairs.json new file mode 100644 index 00000000..38d366f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_wall.json new file mode 100644 index 00000000..d646afed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/prismarine_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:prismarine_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/prismarine_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin.json new file mode 100644 index 00000000..18d21951 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin_stem.json new file mode 100644 index 00000000..7297ff80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/pumpkin_stem.json @@ -0,0 +1,158 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "0" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.06666667 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "1" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.13333334 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.2 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.26666668 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "4" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.33333334 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "5" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.4 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "6" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.46666667 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:pumpkin_stem", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "count": { + "type": "minecraft:binomial", + "n": 3.0, + "p": 0.53333336 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/pumpkin_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_banner.json new file mode 100644 index 00000000..8442626a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:purple_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_bed.json new file mode 100644 index 00000000..ca9b760b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:purple_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:purple_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle.json new file mode 100644 index 00000000..b900897e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:purple_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:purple_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle_cake.json new file mode 100644 index 00000000..2139b52c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_carpet.json new file mode 100644 index 00000000..684f9bb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete.json new file mode 100644 index 00000000..c155b1a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete_powder.json new file mode 100644 index 00000000..f61306a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json new file mode 100644 index 00000000..2a9a4810 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_shulker_box.json new file mode 100644 index 00000000..afbdee17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:purple_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass.json new file mode 100644 index 00000000..a1eefc66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json new file mode 100644 index 00000000..3656e733 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_terracotta.json new file mode 100644 index 00000000..4618caf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_wool.json new file mode 100644 index 00000000..64e891d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purple_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purple_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_block.json new file mode 100644 index 00000000..a6fef159 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_pillar.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_pillar.json new file mode 100644 index 00000000..a966a427 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_pillar.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_pillar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_pillar" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_slab.json new file mode 100644 index 00000000..4399e9f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:purpur_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:purpur_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_stairs.json new file mode 100644 index 00000000..0a739faf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/purpur_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purpur_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/purpur_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_block.json new file mode 100644 index 00000000..6a736393 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_bricks.json new file mode 100644 index 00000000..e916cd28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_pillar.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_pillar.json new file mode 100644 index 00000000..3ab7959d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_pillar.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_pillar" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_pillar" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_slab.json new file mode 100644 index 00000000..316bfba6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:quartz_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:quartz_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_stairs.json new file mode 100644 index 00000000..5cce92e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/quartz_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:quartz_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/quartz_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/rail.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/rail.json new file mode 100644 index 00000000..be4e5d7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/rail.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rail" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rail" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_copper_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_copper_block.json new file mode 100644 index 00000000..4148465c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_copper_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_gold_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_gold_block.json new file mode 100644 index 00000000..02750c01 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_gold_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_gold_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_gold_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_iron_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_iron_block.json new file mode 100644 index 00000000..62595363 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/raw_iron_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:raw_iron_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/raw_iron_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_banner.json new file mode 100644 index 00000000..cfb96ade --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:red_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_bed.json new file mode 100644 index 00000000..11903cad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:red_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:red_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle.json new file mode 100644 index 00000000..fedb9fe5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:red_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle_cake.json new file mode 100644 index 00000000..5d3293b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_carpet.json new file mode 100644 index 00000000..c65d9383 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete.json new file mode 100644 index 00000000..21e2b114 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete_powder.json new file mode 100644 index 00000000..f403bf6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_glazed_terracotta.json new file mode 100644 index 00000000..b7f740e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom.json new file mode 100644 index 00000000..969b702b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_mushroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom_block.json new file mode 100644 index 00000000..c293fd94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_mushroom_block.json @@ -0,0 +1,60 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:red_mushroom_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": -6.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:limit_count", + "limit": { + "min": 0.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_mushroom" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_mushroom_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_slab.json new file mode 100644 index 00000000..c96d431d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:red_nether_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_nether_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json new file mode 100644 index 00000000..4042d7e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_wall.json new file mode 100644 index 00000000..b4eeeb25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_bricks.json new file mode 100644 index 00000000..e75aa6d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_nether_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_nether_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_nether_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sand.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sand.json new file mode 100644 index 00000000..0764f6a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sand.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone.json new file mode 100644 index 00000000..24f34461 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_slab.json new file mode 100644 index 00000000..6b33a820 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_stairs.json new file mode 100644 index 00000000..304fd319 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_wall.json new file mode 100644 index 00000000..266f610a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_sandstone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_sandstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_sandstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_shulker_box.json new file mode 100644 index 00000000..d1672aa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:red_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass.json new file mode 100644 index 00000000..c4a17402 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass_pane.json new file mode 100644 index 00000000..33e40403 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_terracotta.json new file mode 100644 index 00000000..66c0c5d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_tulip.json new file mode 100644 index 00000000..b46dcadc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_tulip.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/red_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_wool.json new file mode 100644 index 00000000..01ebaf11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/red_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/red_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_block.json new file mode 100644 index 00000000..3bac68e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_lamp.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_lamp.json new file mode 100644 index 00000000..1067b7b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_lamp.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_lamp" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_lamp" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_ore.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_ore.json new file mode 100644 index 00000000..a717e9a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_ore.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:redstone_ore" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:redstone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_ore" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_torch.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_torch.json new file mode 100644 index 00000000..5ad0b20c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_torch" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_wire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_wire.json new file mode 100644 index 00000000..af1b030f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/redstone_wire.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/redstone_wire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/reinforced_deepslate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/reinforced_deepslate.json new file mode 100644 index 00000000..8b7ca25d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/reinforced_deepslate.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/reinforced_deepslate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/repeater.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/repeater.json new file mode 100644 index 00000000..6c6e74d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/repeater.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:repeater" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/repeater" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_block.json new file mode 100644 index 00000000..7ae697e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_slab.json new file mode 100644 index 00000000..074e241c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:resin_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_stairs.json new file mode 100644 index 00000000..ba116869 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_wall.json new file mode 100644 index 00000000..ad411c83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_bricks.json new file mode 100644 index 00000000..600e3618 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:resin_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_clump.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_clump.json new file mode 100644 index 00000000..ac9d2d6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/resin_clump.json @@ -0,0 +1,109 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:resin_clump", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:resin_clump" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/resin_clump" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/respawn_anchor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/respawn_anchor.json new file mode 100644 index 00000000..41eb019d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/respawn_anchor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:respawn_anchor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/respawn_anchor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/rooted_dirt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/rooted_dirt.json new file mode 100644 index 00000000..3cbb3bdc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/rooted_dirt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rooted_dirt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rooted_dirt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/rose_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/rose_bush.json new file mode 100644 index 00000000..a864f563 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/rose_bush.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:rose_bush", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:rose_bush" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/rose_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sand.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sand.json new file mode 100644 index 00000000..c2057ddd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sand.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone.json new file mode 100644 index 00000000..8403aaee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_slab.json new file mode 100644 index 00000000..29680afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_stairs.json new file mode 100644 index 00000000..74890f1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_wall.json new file mode 100644 index 00000000..38488381 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sandstone_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sandstone_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sandstone_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/scaffolding.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/scaffolding.json new file mode 100644 index 00000000..55e3e61a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/scaffolding.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:scaffolding" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/scaffolding" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk.json new file mode 100644 index 00000000..4141643d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_catalyst.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_catalyst.json new file mode 100644 index 00000000..d1290637 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_catalyst.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_catalyst" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_catalyst" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_sensor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_sensor.json new file mode 100644 index 00000000..ece20ba9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_sensor.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_sensor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_sensor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_shrieker.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_shrieker.json new file mode 100644 index 00000000..da43d73d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_shrieker.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_shrieker" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_shrieker" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_vein.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_vein.json new file mode 100644 index 00000000..78c9d8be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sculk_vein.json @@ -0,0 +1,126 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "functions": [ + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "down": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "up": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "north": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "south": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "west": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "conditions": [ + { + "block": "minecraft:sculk_vein", + "condition": "minecraft:block_state_property", + "properties": { + "east": "true" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "add": true, + "count": -1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sculk_vein" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sculk_vein" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_lantern.json new file mode 100644 index 00000000..ebdba87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_lantern.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:sea_lantern" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + }, + { + "function": "minecraft:limit_count", + "limit": { + "max": 5.0, + "min": 1.0 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:prismarine_crystals" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sea_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_pickle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_pickle.json new file mode 100644 index 00000000..43d66ad7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sea_pickle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:sea_pickle", + "condition": "minecraft:block_state_property", + "properties": { + "pickles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sea_pickle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sea_pickle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/seagrass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/seagrass.json new file mode 100644 index 00000000..80b25a2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/seagrass.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:seagrass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/seagrass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/short_dry_grass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/short_dry_grass.json new file mode 100644 index 00000000..d19135bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/short_dry_grass.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:short_dry_grass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/short_dry_grass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/short_grass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/short_grass.json new file mode 100644 index 00000000..6ebedf5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/short_grass.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 2 + } + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/short_grass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/shroomlight.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/shroomlight.json new file mode 100644 index 00000000..55acde08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/shroomlight.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shroomlight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/shroomlight" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/shulker_box.json new file mode 100644 index 00000000..88eaa5d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/skeleton_skull.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/skeleton_skull.json new file mode 100644 index 00000000..7fd30973 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/skeleton_skull.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/skeleton_skull" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/slime_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/slime_block.json new file mode 100644 index 00000000..f664f363 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/slime_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:slime_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/slime_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/small_amethyst_bud.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/small_amethyst_bud.json new file mode 100644 index 00000000..44756178 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/small_amethyst_bud.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:small_amethyst_bud" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/small_amethyst_bud" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/small_dripleaf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/small_dripleaf.json new file mode 100644 index 00000000..50323a1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/small_dripleaf.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:small_dripleaf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/small_dripleaf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smithing_table.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smithing_table.json new file mode 100644 index 00000000..7b3548a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smithing_table.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smithing_table" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smithing_table" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smoker.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smoker.json new file mode 100644 index 00000000..07813a11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smoker.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:smoker" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smoker" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_basalt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_basalt.json new file mode 100644 index 00000000..4cac19e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_basalt.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_basalt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_basalt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz.json new file mode 100644 index 00000000..26414ee0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_quartz" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_slab.json new file mode 100644 index 00000000..fde83d73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:smooth_quartz_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_quartz_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json new file mode 100644 index 00000000..ee0b12a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_quartz_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_quartz_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_quartz_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone.json new file mode 100644 index 00000000..6e805c7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_red_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..cab836d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:smooth_red_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_red_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..23139a74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_red_sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_red_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_red_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone.json new file mode 100644 index 00000000..db8618b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_sandstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json new file mode 100644 index 00000000..dc2329c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:smooth_sandstone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_sandstone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json new file mode 100644 index 00000000..eab676da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_sandstone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_sandstone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone.json new file mode 100644 index 00000000..f826e892 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:smooth_stone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_stone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone_slab.json new file mode 100644 index 00000000..74121e0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/smooth_stone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:smooth_stone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:smooth_stone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/smooth_stone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sniffer_egg.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sniffer_egg.json new file mode 100644 index 00000000..673b5135 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sniffer_egg.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sniffer_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sniffer_egg" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/snow.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/snow.json new file mode 100644 index 00000000..2d99d4af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/snow.json @@ -0,0 +1,342 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": {} + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "1" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "2" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "3" + } + } + ], + "functions": [ + { + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "4" + } + } + ], + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "5" + } + } + ], + "functions": [ + { + "count": 5.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "6" + } + } + ], + "functions": [ + { + "count": 6.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "7" + } + } + ], + "functions": [ + { + "count": 7.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "8" + } + } + ], + "functions": [ + { + "count": 8.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + } + ], + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + } + ] + }, + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "1" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "2" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "3" + } + } + ], + "functions": [ + { + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "4" + } + } + ], + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "5" + } + } + ], + "functions": [ + { + "count": 5.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "6" + } + } + ], + "functions": [ + { + "count": 6.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:snow", + "condition": "minecraft:block_state_property", + "properties": { + "layers": "7" + } + } + ], + "functions": [ + { + "count": 7.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snow" + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block" + } + ] + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/snow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/snow_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/snow_block.json new file mode 100644 index 00000000..04436e20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/snow_block.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:snow_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:snowball" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/snow_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_campfire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_campfire.json new file mode 100644 index 00000000..bacec04c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_campfire.json @@ -0,0 +1,52 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:soul_campfire" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_soil" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_campfire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_fire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_fire.json new file mode 100644 index 00000000..c903d01a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_fire.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/soul_fire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_lantern.json new file mode 100644 index 00000000..7cb9b589 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_sand.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_sand.json new file mode 100644 index 00000000..9a96ab72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_sand.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_sand" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_sand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_soil.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_soil.json new file mode 100644 index 00000000..901e4492 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_soil.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_soil" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_soil" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_torch.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_torch.json new file mode 100644 index 00000000..ad717056 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/soul_torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:soul_torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/soul_torch" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spawner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spawner.json new file mode 100644 index 00000000..ef3cbef2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spawner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/spawner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sponge.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sponge.json new file mode 100644 index 00000000..57b0265c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sponge.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sponge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sponge" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spore_blossom.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spore_blossom.json new file mode 100644 index 00000000..6bb950f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spore_blossom.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spore_blossom" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spore_blossom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_button.json new file mode 100644 index 00000000..7665e730 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_door.json new file mode 100644 index 00000000..49470857 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:spruce_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:spruce_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence.json new file mode 100644 index 00000000..82a5ae38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence_gate.json new file mode 100644 index 00000000..08b2ccb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_hanging_sign.json new file mode 100644 index 00000000..46513542 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_leaves.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_leaves.json new file mode 100644 index 00000000..6151ba32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_leaves.json @@ -0,0 +1,133 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:spruce_leaves" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chances": [ + 0.05, + 0.0625, + 0.083333336, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:spruce_sapling" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.02, + 0.022222223, + 0.025, + 0.033333335, + 0.1 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stick" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_leaves" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_log.json new file mode 100644 index 00000000..2793b6fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_planks.json new file mode 100644 index 00000000..8670f383 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_pressure_plate.json new file mode 100644 index 00000000..5096e6b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sapling.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sapling.json new file mode 100644 index 00000000..8953fed3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sapling.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sapling" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_sapling" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_shelf.json new file mode 100644 index 00000000..8b0f3a66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sign.json new file mode 100644 index 00000000..d9739dcd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_slab.json new file mode 100644 index 00000000..6ea9ff27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:spruce_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:spruce_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_stairs.json new file mode 100644 index 00000000..38fa4a87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_trapdoor.json new file mode 100644 index 00000000..16dc197e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_wood.json new file mode 100644 index 00000000..a3f351b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/spruce_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:spruce_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/spruce_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sticky_piston.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sticky_piston.json new file mode 100644 index 00000000..e5c7e19b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sticky_piston.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sticky_piston" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sticky_piston" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone.json new file mode 100644 index 00000000..fe2a8a58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:stone" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:cobblestone" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_slab.json new file mode 100644 index 00000000..e837a326 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:stone_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stone_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_stairs.json new file mode 100644 index 00000000..638a6821 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_wall.json new file mode 100644 index 00000000..e06937e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_bricks.json new file mode 100644 index 00000000..fc4d03a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_button.json new file mode 100644 index 00000000..48277da9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_pressure_plate.json new file mode 100644 index 00000000..bf5bd0a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_slab.json new file mode 100644 index 00000000..3627f3fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:stone_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:stone_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_stairs.json new file mode 100644 index 00000000..b911a349 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stone_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stonecutter.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stonecutter.json new file mode 100644 index 00000000..70ba5e0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stonecutter.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stonecutter" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stonecutter" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_log.json new file mode 100644 index 00000000..36c0019b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_acacia_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_acacia_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_wood.json new file mode 100644 index 00000000..244ae3f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_acacia_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_acacia_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_acacia_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_bamboo_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_bamboo_block.json new file mode 100644 index 00000000..db93f868 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_bamboo_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_bamboo_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_bamboo_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_log.json new file mode 100644 index 00000000..29a39118 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_birch_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_birch_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_wood.json new file mode 100644 index 00000000..6fe52b3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_birch_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_birch_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_birch_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_log.json new file mode 100644 index 00000000..d849dc46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_cherry_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_cherry_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_wood.json new file mode 100644 index 00000000..b590a1b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_cherry_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_cherry_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_cherry_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json new file mode 100644 index 00000000..a4321426 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_hyphae.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_crimson_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_crimson_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_stem.json new file mode 100644 index 00000000..a20a3fac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_crimson_stem.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_crimson_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_crimson_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json new file mode 100644 index 00000000..b3456aed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_dark_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_dark_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json new file mode 100644 index 00000000..072103c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_dark_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_dark_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_dark_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_log.json new file mode 100644 index 00000000..0ee4dc72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_jungle_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_jungle_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_wood.json new file mode 100644 index 00000000..137e1d65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_jungle_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_jungle_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_jungle_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_log.json new file mode 100644 index 00000000..e3626982 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_mangrove_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_mangrove_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json new file mode 100644 index 00000000..b2db70c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_mangrove_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_mangrove_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_mangrove_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_log.json new file mode 100644 index 00000000..36fcf7a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_wood.json new file mode 100644 index 00000000..1d886c5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json new file mode 100644 index 00000000..1e47e4ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_pale_oak_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_pale_oak_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json new file mode 100644 index 00000000..7246bd1e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_pale_oak_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_pale_oak_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_pale_oak_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_log.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_log.json new file mode 100644 index 00000000..8820a1bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_log.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_spruce_log" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_spruce_log" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_wood.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_wood.json new file mode 100644 index 00000000..f859390c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_spruce_wood.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_spruce_wood" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_spruce_wood" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json new file mode 100644 index 00000000..74f028f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_hyphae.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_warped_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_warped_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_stem.json new file mode 100644 index 00000000..a1ead921 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/stripped_warped_stem.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stripped_warped_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/stripped_warped_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sugar_cane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sugar_cane.json new file mode 100644 index 00000000..547e796d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sugar_cane.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sugar_cane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sugar_cane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur.json new file mode 100644 index 00000000..1ea01766 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_slab.json new file mode 100644 index 00000000..31867fd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:sulfur_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sulfur_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_stairs.json new file mode 100644 index 00000000..b98c3c31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_wall.json new file mode 100644 index 00000000..d88a8da1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_bricks.json new file mode 100644 index 00000000..b3dc1881 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_slab.json new file mode 100644 index 00000000..f3dcd6a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:sulfur_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:sulfur_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_spike.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_spike.json new file mode 100644 index 00000000..0567cbc2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_spike.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_spike" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_spike" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_stairs.json new file mode 100644 index 00000000..21324b48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_wall.json new file mode 100644 index 00000000..9742d2df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sulfur_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sulfur_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sulfur_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sunflower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sunflower.json new file mode 100644 index 00000000..89b5d7c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sunflower.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:sunflower", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:sunflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sunflower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_gravel.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_gravel.json new file mode 100644 index 00000000..75e77656 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_gravel.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/suspicious_gravel" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_sand.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_sand.json new file mode 100644 index 00000000..a3981f93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/suspicious_sand.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/suspicious_sand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/sweet_berry_bush.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/sweet_berry_bush.json new file mode 100644 index 00000000..e17889c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/sweet_berry_bush.json @@ -0,0 +1,83 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sweet_berries" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "2" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sweet_berries" + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:uniform_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "bonusMultiplier": 1 + } + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/sweet_berry_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_dry_grass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_dry_grass.json new file mode 100644 index 00000000..e47328b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_dry_grass.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tall_dry_grass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_dry_grass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_grass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_grass.json new file mode 100644 index 00000000..0a2a0b22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_grass.json @@ -0,0 +1,130 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "block": "minecraft:tall_grass", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": 1, + "predicate": { + "block": { + "blocks": "minecraft:tall_grass", + "state": { + "half": "upper" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:tall_grass", + "condition": "minecraft:block_state_property", + "properties": { + "half": "upper" + } + }, + { + "condition": "minecraft:location_check", + "offsetY": -1, + "predicate": { + "block": { + "blocks": "minecraft:tall_grass", + "state": { + "half": "lower" + } + } + } + } + ], + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:short_grass" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + }, + { + "chance": 0.125, + "condition": "minecraft:random_chance" + } + ], + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_grass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_seagrass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_seagrass.json new file mode 100644 index 00000000..f6267238 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tall_seagrass.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:seagrass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tall_seagrass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/target.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/target.json new file mode 100644 index 00000000..89aa5334 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/target.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:target" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/target" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/terracotta.json new file mode 100644 index 00000000..1c62c34e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tinted_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tinted_glass.json new file mode 100644 index 00000000..028ab5e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tinted_glass.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tinted_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tinted_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tnt.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tnt.json new file mode 100644 index 00000000..ddb2cd15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tnt.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:tnt", + "condition": "minecraft:block_state_property", + "properties": { + "unstable": "false" + } + } + ], + "name": "minecraft:tnt" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tnt" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/torch.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/torch.json new file mode 100644 index 00000000..b7046299 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torch" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torch" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower.json new file mode 100644 index 00000000..588f2db6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torchflower" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower_crop.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower_crop.json new file mode 100644 index 00000000..f79c7898 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/torchflower_crop.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/torchflower_crop" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/trapped_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/trapped_chest.json new file mode 100644 index 00000000..80de541c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/trapped_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:trapped_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/trapped_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/trial_spawner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/trial_spawner.json new file mode 100644 index 00000000..d0c24937 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/trial_spawner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/trial_spawner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire.json new file mode 100644 index 00000000..be0931c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tripwire" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire_hook.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire_hook.json new file mode 100644 index 00000000..ccb1de87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tripwire_hook.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tripwire_hook" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tripwire_hook" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral.json new file mode 100644 index 00000000..7cbb612b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tube_coral" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_block.json new file mode 100644 index 00000000..07fbfc9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_block.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:tube_coral_block" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:dead_tube_coral_block" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_fan.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_fan.json new file mode 100644 index 00000000..f1e46402 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tube_coral_fan.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tube_coral_fan" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tube_coral_fan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff.json new file mode 100644 index 00000000..1e9521d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_slab.json new file mode 100644 index 00000000..4454cf2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:tuff_brick_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:tuff_brick_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_stairs.json new file mode 100644 index 00000000..34189ec2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_brick_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_wall.json new file mode 100644 index 00000000..2deea3bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_brick_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_brick_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_brick_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_bricks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_bricks.json new file mode 100644 index 00000000..bfac8675 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_bricks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_bricks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_bricks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_slab.json new file mode 100644 index 00000000..bdca44ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:tuff_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:tuff_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_stairs.json new file mode 100644 index 00000000..b634fec1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_wall.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_wall.json new file mode 100644 index 00000000..b433eaae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/tuff_wall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:tuff_wall" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/tuff_wall" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/turtle_egg.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/turtle_egg.json new file mode 100644 index 00000000..bb09d104 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/turtle_egg.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:turtle_egg" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/turtle_egg" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines.json new file mode 100644 index 00000000..ba24c37b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:twisting_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:twisting_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/twisting_vines" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines_plant.json new file mode 100644 index 00000000..cda0f3db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/twisting_vines_plant.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:twisting_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:twisting_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/twisting_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/vault.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/vault.json new file mode 100644 index 00000000..d36c29f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/vault.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:block", + "random_sequence": "minecraft:blocks/vault" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/verdant_froglight.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/verdant_froglight.json new file mode 100644 index 00000000..954e8eea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/verdant_froglight.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:verdant_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/verdant_froglight" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/vine.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/vine.json new file mode 100644 index 00000000..42ddcdda --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/vine.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:vine" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/vine" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_button.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_button.json new file mode 100644 index 00000000..7b003fca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_button.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_button" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_button" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_door.json new file mode 100644 index 00000000..7a65de4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:warped_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:warped_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence.json new file mode 100644 index 00000000..9b0cf9cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fence" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fence" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence_gate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence_gate.json new file mode 100644 index 00000000..88f862c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fence_gate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fence_gate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fence_gate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fungus.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fungus.json new file mode 100644 index 00000000..07610830 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_fungus.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_fungus" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_fungus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hanging_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hanging_sign.json new file mode 100644 index 00000000..29569627 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hanging_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_hanging_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_hanging_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hyphae.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hyphae.json new file mode 100644 index 00000000..e589e3c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_hyphae.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_hyphae" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_hyphae" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_nylium.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_nylium.json new file mode 100644 index 00000000..a242e9e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_nylium.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "name": "minecraft:warped_nylium" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "name": "minecraft:netherrack" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_nylium" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_planks.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_planks.json new file mode 100644 index 00000000..3ce89cef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_planks.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_planks" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_planks" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_pressure_plate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_pressure_plate.json new file mode 100644 index 00000000..e993b0eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_pressure_plate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_pressure_plate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_pressure_plate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_roots.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_roots.json new file mode 100644 index 00000000..4a46123b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_roots.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_roots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_roots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_shelf.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_shelf.json new file mode 100644 index 00000000..5a64377f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_shelf.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_shelf" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_shelf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_sign.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_sign.json new file mode 100644 index 00000000..3ff6656e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_sign.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_sign" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_sign" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_slab.json new file mode 100644 index 00000000..bc1565d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:warped_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:warped_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stairs.json new file mode 100644 index 00000000..0c2c8950 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stem.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stem.json new file mode 100644 index 00000000..c81c6204 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_stem.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_stem" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_stem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_trapdoor.json new file mode 100644 index 00000000..76bdd39d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_wart_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_wart_block.json new file mode 100644 index 00000000..31a1170b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/warped_wart_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:warped_wart_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/warped_wart_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/water_cauldron.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/water_cauldron.json new file mode 100644 index 00000000..4ed41f46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/water_cauldron.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cauldron" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/water_cauldron" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json new file mode 100644 index 00000000..56ba86ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bars.json new file mode 100644 index 00000000..1d58f4a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_block.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_block.json new file mode 100644 index 00000000..55164434 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_block.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_block" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bulb.json new file mode 100644 index 00000000..8690e5f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chain.json new file mode 100644 index 00000000..7eeb7d02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chest.json new file mode 100644 index 00000000..130284dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_door.json new file mode 100644 index 00000000..8d1d6e86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json new file mode 100644 index 00000000..2ad6de3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_grate.json new file mode 100644 index 00000000..855dca2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_lantern.json new file mode 100644 index 00000000..813e5c58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json new file mode 100644 index 00000000..c50101df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper.json new file mode 100644 index 00000000..667a97ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json new file mode 100644 index 00000000..5d59aadd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:waxed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..d07efe2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..93496dc0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper.json new file mode 100644 index 00000000..288eb55a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json new file mode 100644 index 00000000..b9a8f893 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..8124cce6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json new file mode 100644 index 00000000..c8fb8614 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json new file mode 100644 index 00000000..664b978c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_exposed_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json new file mode 100644 index 00000000..a584b832 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_exposed_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_exposed_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json new file mode 100644 index 00000000..8edca882 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_exposed_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_exposed_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..f2184a52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json new file mode 100644 index 00000000..8775ef39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json new file mode 100644 index 00000000..cee6e3f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..ea542c31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..ff21ae35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:waxed_exposed_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_exposed_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..6bc4dec9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json new file mode 100644 index 00000000..e3a82903 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_exposed_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_exposed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_exposed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_lightning_rod.json new file mode 100644 index 00000000..ac19cf26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..96be298a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json new file mode 100644 index 00000000..32639d5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json new file mode 100644 index 00000000..3bf2e23f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..e98453ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json new file mode 100644 index 00000000..4ea4a287 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json new file mode 100644 index 00000000..d78841e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_oxidized_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json new file mode 100644 index 00000000..d53f5cf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_oxidized_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_oxidized_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json new file mode 100644 index 00000000..7ffbb1ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_oxidized_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_oxidized_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..c4d0358d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json new file mode 100644 index 00000000..1ba344c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 00000000..b299deff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..154eb540 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..1933f8e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:waxed_oxidized_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_oxidized_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..4a7d337c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json new file mode 100644 index 00000000..388f478d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_oxidized_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_oxidized_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_oxidized_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..439a98af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper.json new file mode 100644 index 00000000..19a8b09d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json new file mode 100644 index 00000000..102271de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..b763ea7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json new file mode 100644 index 00000000..e2dd932a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json new file mode 100644 index 00000000..fe7ade28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:waxed_weathered_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json new file mode 100644 index 00000000..0c79dca1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:waxed_weathered_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:waxed_weathered_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json new file mode 100644 index 00000000..efaae258 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:waxed_weathered_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:waxed_weathered_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..eb992544 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json new file mode 100644 index 00000000..2b4a06c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json new file mode 100644 index 00000000..a24ca388 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..925ae336 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..754d4e94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:waxed_weathered_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:waxed_weathered_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..21a3219f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json new file mode 100644 index 00000000..7dac1fcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/waxed_weathered_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:waxed_weathered_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/waxed_weathered_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json new file mode 100644 index 00000000..e39b056a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_chiseled_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_chiseled_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_chiseled_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper.json new file mode 100644 index 00000000..a64759e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bars.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bars.json new file mode 100644 index 00000000..6fb6f6c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bars.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_bars" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_bars" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bulb.json new file mode 100644 index 00000000..ca149aff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_bulb.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_bulb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_bulb" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chain.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chain.json new file mode 100644 index 00000000..4aaf4fba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chain.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_chain" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_chain" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chest.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chest.json new file mode 100644 index 00000000..070ecc85 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_chest.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:weathered_copper_chest" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_door.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_door.json new file mode 100644 index 00000000..774586ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_door.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:weathered_copper_door", + "condition": "minecraft:block_state_property", + "properties": { + "half": "lower" + } + } + ], + "name": "minecraft:weathered_copper_door" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_door" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json new file mode 100644 index 00000000..acd18e0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_golem_statue.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + }, + { + "block": "minecraft:weathered_copper_golem_statue", + "function": "minecraft:copy_state", + "properties": [ + "copper_golem_pose" + ] + } + ], + "name": "minecraft:weathered_copper_golem_statue" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_golem_statue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_grate.json new file mode 100644 index 00000000..150c4edf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_grate.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_grate" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_grate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_lantern.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_lantern.json new file mode 100644 index 00000000..e14a743b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_lantern.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_lantern" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_lantern" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json new file mode 100644 index 00000000..24938359 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_copper_trapdoor.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_copper_trapdoor" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_copper_trapdoor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper.json new file mode 100644 index 00000000..eaf4966a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_cut_copper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json new file mode 100644 index 00000000..3c334878 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_slab.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:weathered_cut_copper_slab", + "condition": "minecraft:block_state_property", + "properties": { + "type": "double" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:weathered_cut_copper_slab" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper_slab" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..d0c81e8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_cut_copper_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_cut_copper_stairs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_cut_copper_stairs" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_lightning_rod.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_lightning_rod.json new file mode 100644 index 00000000..e1a88e33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weathered_lightning_rod.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:weathered_lightning_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weathered_lightning_rod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines.json new file mode 100644 index 00000000..8ec13b98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:weeping_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:weeping_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weeping_vines" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines_plant.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines_plant.json new file mode 100644 index 00000000..c60545cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/weeping_vines_plant.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "items": "minecraft:shears" + } + }, + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ] + } + ], + "name": "minecraft:weeping_vines" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "chances": [ + 0.33, + 0.55, + 0.77, + 1.0 + ], + "condition": "minecraft:table_bonus", + "enchantment": "minecraft:fortune" + } + ], + "name": "minecraft:weeping_vines" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/weeping_vines_plant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/wet_sponge.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/wet_sponge.json new file mode 100644 index 00000000..5a98bbf6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/wet_sponge.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wet_sponge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wet_sponge" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/wheat.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/wheat.json new file mode 100644 index 00000000..095de166 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/wheat.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:block", + "functions": [ + { + "function": "minecraft:explosion_decay" + } + ], + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "name": "minecraft:wheat" + }, + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + } + ] + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "block": "minecraft:wheat", + "condition": "minecraft:block_state_property", + "properties": { + "age": "7" + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "enchantment": "minecraft:fortune", + "formula": "minecraft:binomial_with_bonus_count", + "function": "minecraft:apply_bonus", + "parameters": { + "extra": 3, + "probability": 0.5714286 + } + } + ], + "name": "minecraft:wheat_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wheat" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_banner.json new file mode 100644 index 00000000..f1152ec7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:white_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_bed.json new file mode 100644 index 00000000..bafd8cf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:white_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:white_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle.json new file mode 100644 index 00000000..8d7cde3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:white_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:white_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle_cake.json new file mode 100644 index 00000000..3821ba93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_carpet.json new file mode 100644 index 00000000..14354b90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete.json new file mode 100644 index 00000000..f505ddf7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete_powder.json new file mode 100644 index 00000000..139d53e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_glazed_terracotta.json new file mode 100644 index 00000000..30a18b5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_shulker_box.json new file mode 100644 index 00000000..2617b13e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:white_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass.json new file mode 100644 index 00000000..9a50fbff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass_pane.json new file mode 100644 index 00000000..51ff9eeb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_terracotta.json new file mode 100644 index 00000000..358f3099 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_tulip.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_tulip.json new file mode 100644 index 00000000..d838a3dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_tulip.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_tulip" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_tulip" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/white_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_wool.json new file mode 100644 index 00000000..b8dfbf29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/white_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/white_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/wildflowers.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/wildflowers.json new file mode 100644 index 00000000..8aaff0fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/wildflowers.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "1" + } + } + ], + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:wildflowers", + "condition": "minecraft:block_state_property", + "properties": { + "flower_amount": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:wildflowers" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wildflowers" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_rose.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_rose.json new file mode 100644 index 00000000..40b7bcf3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_rose.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_rose" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wither_rose" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_skeleton_skull.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_skeleton_skull.json new file mode 100644 index 00000000..e2aad249 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/wither_skeleton_skull.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/wither_skeleton_skull" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_banner.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_banner.json new file mode 100644 index 00000000..24f9c0e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_banner.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:item_name", + "minecraft:tooltip_display", + "minecraft:banner_patterns", + "minecraft:rarity" + ], + "source": "block_entity" + } + ], + "name": "minecraft:yellow_banner" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_banner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_bed.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_bed.json new file mode 100644 index 00000000..a20597e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_bed.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:yellow_bed", + "condition": "minecraft:block_state_property", + "properties": { + "part": "head" + } + } + ], + "name": "minecraft:yellow_bed" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_bed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle.json new file mode 100644 index 00000000..7f8db35e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle.json @@ -0,0 +1,59 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "2" + } + } + ], + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "3" + } + } + ], + "count": 3.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "block": "minecraft:yellow_candle", + "condition": "minecraft:block_state_property", + "properties": { + "candles": "4" + } + } + ], + "count": 4.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:explosion_decay" + } + ], + "name": "minecraft:yellow_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_candle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle_cake.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle_cake.json new file mode 100644 index 00000000..43d4304e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_candle_cake.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_candle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_candle_cake" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_carpet.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_carpet.json new file mode 100644 index 00000000..cf68ff52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_carpet.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_carpet" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_carpet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete.json new file mode 100644 index 00000000..05a38fdf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_concrete" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_concrete" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete_powder.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete_powder.json new file mode 100644 index 00000000..ac1b2299 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_concrete_powder" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_concrete_powder" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json new file mode 100644 index 00000000..7d155432 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_glazed_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_glazed_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_shulker_box.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_shulker_box.json new file mode 100644 index 00000000..d5ca25f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_shulker_box.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name", + "minecraft:container", + "minecraft:lock", + "minecraft:container_loot" + ], + "source": "block_entity" + } + ], + "name": "minecraft:yellow_shulker_box" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_shulker_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass.json new file mode 100644 index 00000000..fb5130af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_stained_glass" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json new file mode 100644 index 00000000..379f14f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_stained_glass_pane.json @@ -0,0 +1,32 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:match_tool", + "predicate": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "minecraft:silk_touch", + "levels": { + "min": 1 + } + } + ] + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_stained_glass_pane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_stained_glass_pane" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_terracotta.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_terracotta.json new file mode 100644 index 00000000..1691d6b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_terracotta.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_terracotta" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_terracotta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_wool.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_wool.json new file mode 100644 index 00000000..4d063c9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/yellow_wool.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:survives_explosion" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/yellow_wool" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/blocks/zombie_head.json b/data/generated/V26_2/data/minecraft/loot_table/blocks/zombie_head.json new file mode 100644 index 00000000..8d781921 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/blocks/zombie_head.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:block", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:copy_components", + "include": [ + "minecraft:custom_name" + ], + "source": "block_entity" + } + ], + "name": "minecraft:zombie_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:blocks/zombie_head" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/brush/armadillo.json b/data/generated/V26_2/data/minecraft/loot_table/brush/armadillo.json new file mode 100644 index 00000000..52565b15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/brush/armadillo.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity_interact", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:armadillo_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:brush/armadillo" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/carve/pumpkin.json b/data/generated/V26_2/data/minecraft/loot_table/carve/pumpkin.json new file mode 100644 index 00000000..42dac5ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/carve/pumpkin.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 4.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:carve/pumpkin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/creeper.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/creeper.json new file mode 100644 index 00000000..077711b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/creeper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:creeper_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/creeper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/piglin.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/piglin.json new file mode 100644 index 00000000..ff22699c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/piglin.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:piglin_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/piglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/root.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/root.json new file mode 100644 index 00000000..57009d20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/root.json @@ -0,0 +1,81 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:piglin" + } + } + ], + "value": "minecraft:charged_creeper/piglin" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:creeper" + } + } + ], + "value": "minecraft:charged_creeper/creeper" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:skeleton" + } + } + ], + "value": "minecraft:charged_creeper/skeleton" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:wither_skeleton" + } + } + ], + "value": "minecraft:charged_creeper/wither_skeleton" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:entity_type": "minecraft:zombie" + } + } + ], + "value": "minecraft:charged_creeper/zombie" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/root" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/skeleton.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/skeleton.json new file mode 100644 index 00000000..0213438d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/skeleton.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/wither_skeleton.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/wither_skeleton.json new file mode 100644 index 00000000..be449184 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/wither_skeleton.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/wither_skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/zombie.json b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/zombie.json new file mode 100644 index 00000000..26237705 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/charged_creeper/zombie.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:zombie_head" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:charged_creeper/zombie" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/abandoned_mineshaft.json b/data/generated/V26_2/data/minecraft/loot_table/chests/abandoned_mineshaft.json new file mode 100644 index 00000000..21be22d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/abandoned_mineshaft.json @@ -0,0 +1,312 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 30 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:empty", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rail", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:powered_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:detector_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:activator_rail", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 15 + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": "minecraft:sulfur_caves" + } + } + ], + "name": "minecraft:music_disc_bounce", + "weight": 10 + } + ], + "rolls": 3.0 + } + ], + "random_sequence": "minecraft:chests/abandoned_mineshaft" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city.json b/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city.json new file mode 100644 index 00000000..46d005ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city.json @@ -0,0 +1,405 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:compass", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_catalyst", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_hoe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lead", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_horse_armor", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 50.0, + "min": 30.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:swift_sneak" + } + ], + "name": "minecraft:book", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sculk_sensor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:candle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:experience_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:echo_shard", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:disc_fragment_5", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_regeneration" + } + ], + "name": "minecraft:potion", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_torch", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 7 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 75 + }, + { + "type": "minecraft:item", + "name": "minecraft:ward_armor_trim_smithing_template", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:silence_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ancient_city" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city_ice_box.json b/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city_ice_box.json new file mode 100644 index 00000000..0204f915 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/ancient_city_ice_box.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + } + ], + "function": "minecraft:set_stew_effect" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:suspicious_stew" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:packed_ice", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 4 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + } + } + ], + "random_sequence": "minecraft:chests/ancient_city_ice_box" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_bridge.json b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_bridge.json new file mode 100644 index 00000000..cc5002f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_bridge.json @@ -0,0 +1,313 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lodestone" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 28.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_leggings" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_bridge" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_hoglin_stable.json b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_hoglin_stable.json new file mode 100644 index 00000000..4ada3919 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_hoglin_stable.json @@ -0,0 +1,369 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.95, + "min": 0.15 + }, + "function": "minecraft:set_damage" + }, + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block", + "weight": 16 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_apple", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glowstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_sand" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_nylium" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:porkchop" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_porkchop" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_fungus" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crimson_roots" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_hoglin_stable" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_other.json b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_other.json new file mode 100644 index 00000000..98796692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_other.json @@ -0,0 +1,509 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 22.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:piglin_banner_pattern", + "weight": 9 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:music_disc_pigstep", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 12 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_apple", + "weight": 9 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.1 + }, + "function": "minecraft:set_damage" + }, + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_sword", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crossbow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_leggings" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_boots" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian", + "weight": 2 + } + ], + "rolls": 2.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_chain" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:magma_cream", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 17.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_porkchop" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_other" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_treasure.json b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_treasure.json new file mode 100644 index 00000000..50a20d7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/bastion_treasure.json @@ -0,0 +1,382 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:netherite_scrap", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ancient_debris", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_sword", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_spear", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_helmet", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.8 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_boots", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_spear", + "weight": 6 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + } + ], + "rolls": 3.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 25.0, + "min": 12.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 23.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:quartz" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gilded_blackstone" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:magma_cream" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 11 + }, + { + "type": "minecraft:item", + "name": "minecraft:snout_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:netherite_upgrade_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/bastion_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/buried_treasure.json b/data/generated/V26_2/data/minecraft/loot_table/chests/buried_treasure.json new file mode 100644 index 00000000..bf501048 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/buried_treasure.json @@ -0,0 +1,249 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:heart_of_the_sea" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tnt", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 5.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_spear" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_cod" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_salmon" + } + ], + "rolls": 2.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:potion" + } + ], + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water_breathing" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/buried_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/desert_pyramid.json b/data/generated/V26_2/data/minecraft/loot_table/chests/desert_pyramid.json new file mode 100644 index 00000000..7d08b4be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/desert_pyramid.json @@ -0,0 +1,279 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spider_eye", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 25 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:empty", + "weight": 15 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sand", + "weight": 10 + } + ], + "rolls": 4.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dune_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/desert_pyramid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/end_city_treasure.json b/data/generated/V26_2/data/minecraft/loot_table/chests/end_city_treasure.json new file mode 100644 index 00000000..8b9a9fc8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/end_city_treasure.json @@ -0,0 +1,364 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_sword", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_spear", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_boots", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_shovel", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_sword", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_boots", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_pickaxe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 39.0, + "min": 20.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_shovel", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 14 + }, + { + "type": "minecraft:item", + "name": "minecraft:spire_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/end_city_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/igloo_chest.json b/data/generated/V26_2/data/minecraft/loot_table/chests/igloo_chest.json new file mode 100644 index 00000000..4a0306fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/igloo_chest.json @@ -0,0 +1,98 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/igloo_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple.json b/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple.json new file mode 100644 index 00000000..5da3818b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple.json @@ -0,0 +1,181 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 16 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wild_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/jungle_temple" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple_dispenser.json b/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple_dispenser.json new file mode 100644 index 00000000..73e2f10e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/jungle_temple_dispenser.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 30 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/jungle_temple_dispenser" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/nether_bridge.json b/data/generated/V26_2/data/minecraft/loot_table/chests/nether_bridge.json new file mode 100644 index 00000000..f7e0e655 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/nether_bridge.json @@ -0,0 +1,143 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:flint_and_steel", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:nether_wart", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 8 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 14 + }, + { + "type": "minecraft:item", + "name": "minecraft:rib_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/nether_bridge" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/pillager_outpost.json b/data/generated/V26_2/data/minecraft/loot_table/chests/pillager_outpost.json new file mode 100644 index 00000000..bff3b4b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/pillager_outpost.json @@ -0,0 +1,218 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:crossbow" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tripwire_hook", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:goat_horn" + } + ], + "functions": [ + { + "function": "minecraft:set_instrument", + "options": "#minecraft:regular_goat_horns" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sentry_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/pillager_outpost" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/ruined_portal.json b/data/generated/V26_2/data/minecraft/loot_table/chests/ruined_portal.json new file mode 100644 index 00000000..e21e0b87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/ruined_portal.json @@ -0,0 +1,294 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:flint", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 18.0, + "min": 9.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:flint_and_steel", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:fire_charge", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 24.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_sword", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_axe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_hoe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_shovel", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_pickaxe", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_boots", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_chestplate", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_helmet", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:golden_leggings", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glistering_melon_slice", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:light_weighted_pressure_plate", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:clock", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bell" + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_block" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lodestone", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/ruined_portal" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_map.json b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_map.json new file mode 100644 index 00000000..1e0ad5e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_map.json @@ -0,0 +1,164 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:clock" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:feather", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 5 + } + ], + "rolls": 3.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_map" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_supply.json b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_supply.json new file mode 100644 index 00000000..26b7503c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_supply.json @@ -0,0 +1,370 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:moss_block", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:poisonous_potato", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:carrot", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 21.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:jump_boost", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + }, + { + "type": "minecraft:weakness", + "duration": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 6.0 + } + }, + { + "type": "minecraft:blindness", + "duration": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 5.0 + } + }, + { + "type": "minecraft:poison", + "duration": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + } + }, + { + "type": "minecraft:saturation", + "duration": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 7.0 + } + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "name": "minecraft:suspicious_stew", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 24.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tnt" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_helmet", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_leggings", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:leather_boots", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_supply" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_treasure.json b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_treasure.json new file mode 100644 index 00000000..3784aefd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/shipwreck_treasure.json @@ -0,0 +1,196 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 90 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:experience_bottle", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 50 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli", + "weight": 20 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coast_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/shipwreck_treasure" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/simple_dungeon.json b/data/generated/V26_2/data/minecraft/loot_table/chests/simple_dungeon.json new file mode 100644 index 00000000..d8754636 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/simple_dungeon.json @@ -0,0 +1,295 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:name_tag", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bread", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + } + ], + "rolls": 3.0 + } + ], + "random_sequence": "minecraft:chests/simple_dungeon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/spawn_bonus_chest.json b/data/generated/V26_2/data/minecraft/loot_table/chests/spawn_bonus_chest.json new file mode 100644 index 00000000..43dd60c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/spawn_bonus_chest.json @@ -0,0 +1,224 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_axe", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pickaxe" + }, + { + "type": "minecraft:item", + "name": "minecraft:wooden_pickaxe", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:salmon", + "weight": 3 + } + ], + "rolls": 3.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_planks", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:birch_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:jungle_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dark_oak_log", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:mangrove_log", + "weight": 3 + } + ], + "rolls": 4.0 + } + ], + "random_sequence": "minecraft:chests/spawn_bonus_chest" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_corridor.json b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_corridor.json new file mode 100644 index 00000000..e91f5586 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_corridor.json @@ -0,0 +1,202 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ender_pearl", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_otherside" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 9 + }, + { + "type": "minecraft:item", + "name": "minecraft:eye_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/stronghold_corridor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_crossing.json b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_crossing.json new file mode 100644 index 00000000..859ead36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_crossing.json @@ -0,0 +1,120 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/stronghold_crossing" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_library.json b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_library.json new file mode 100644 index 00000000..24b0913f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/stronghold_library.json @@ -0,0 +1,74 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:book", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:eye_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/stronghold_library" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/corridor.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/corridor.json new file mode 100644 index 00000000..25a49d74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/corridor.json @@ -0,0 +1,179 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.4 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_pickaxe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ender_pearl", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_hanging_sign", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_planks", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:scaffolding", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tuff", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/entrance.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/entrance.json new file mode 100644 index 00000000..6a5a02f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/entrance.json @@ -0,0 +1,81 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:trial_key" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wooden_axe", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/entrance" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection.json new file mode 100644 index 00000000..8a6be4f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection.json @@ -0,0 +1,138 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_axe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.5, + "min": 0.1 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cake", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:amethyst_shard", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_block", + "weight": 20 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/intersection" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json new file mode 100644 index 00000000..62f282be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/intersection_barrel.json @@ -0,0 +1,169 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.4 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:diamond_pickaxe" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:compass" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bucket" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:golden_axe", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:golden_pickaxe", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo_planks", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/intersection_barrel" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward.json new file mode 100644 index 00000000..3aa188c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_rare", + "weight": 8 + }, + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_common", + "weight": 2 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_common" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "conditions": [ + { + "chance": 0.25, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_unique" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_common.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_common.json new file mode 100644 index 00000000..73958416 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_common.json @@ -0,0 +1,152 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honey_bottle", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_common" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json new file mode 100644 index 00000000..5963ce6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_rare", + "weight": 8 + }, + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_common", + "weight": 2 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_common" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "conditions": [ + { + "chance": 0.75, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:chests/trial_chambers/reward_ominous_unique" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json new file mode 100644 index 00000000..9425d564 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_common.json @@ -0,0 +1,93 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_slowness" + } + ], + "name": "minecraft:tipped_arrow", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_common" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json new file mode 100644 index 00000000..c3b7f365 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_rare.json @@ -0,0 +1,122 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_block", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 10.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:knockback", + "minecraft:punch", + "minecraft:smite", + "minecraft:looting", + "minecraft:multishot" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:breach", + "minecraft:density" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantments": { + "minecraft:wind_burst": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_rare" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json new file mode 100644 index 00000000..e24c0829 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_ominous_unique.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:flow_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:flow_banner_pattern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_creator" + }, + { + "type": "minecraft:item", + "name": "minecraft:heavy_core" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_ominous_unique" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json new file mode 100644 index 00000000..e1d7af67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_rare.json @@ -0,0 +1,185 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.5 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:shield", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:bow", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 20.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:crossbow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 0.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 0.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:iron_chestplate", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:sharpness", + "minecraft:bane_of_arthropods", + "minecraft:efficiency", + "minecraft:fortune", + "minecraft:silk_touch", + "minecraft:feather_falling" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": [ + "minecraft:riptide", + "minecraft:loyalty", + "minecraft:channeling", + "minecraft:impaling", + "minecraft:mending" + ] + } + ], + "name": "minecraft:book", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_chestplate" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 5.0 + }, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:diamond_axe" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_rare" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json new file mode 100644 index 00000000..f81a2093 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/reward_unique.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:bolt_armor_trim_smithing_template", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:guster_banner_pattern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_precipice", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:trident" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/trial_chambers/reward_unique" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/supply.json b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/supply.json new file mode 100644 index 00000000..456d743b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/trial_chambers/supply.json @@ -0,0 +1,223 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 14.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:glow_berries", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_planks" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:moss_block" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone_meal" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 10.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tuff" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 2.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "damage": { + "type": "minecraft:uniform", + "max": 0.8, + "min": 0.15 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:stone_pickaxe", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:milk_bucket" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/trial_chambers/supply" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_big.json b/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_big.json new file mode 100644 index 00000000..754b0057 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_big.json @@ -0,0 +1,181 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_spear", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:golden_apple" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map", + "weight": 10 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/underwater_ruin_big" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_small.json b/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_small.json new file mode 100644 index 00000000..4ae0cc27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/underwater_ruin_small.json @@ -0,0 +1,161 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_spear", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_helmet" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "decoration": "minecraft:red_x", + "function": "minecraft:exploration_map", + "skip_existing_chunks": false, + "zoom": 1 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.buried_treasure" + }, + "target": "item_name" + } + ], + "name": "minecraft:map", + "weight": 5 + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 148 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:copper_nautilus_armor", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nautilus_armor", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_nautilus_armor", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_nautilus_armor", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/underwater_ruin_small" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_armorer.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_armorer.json new file mode 100644 index 00000000..11969331 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_armorer.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_armorer" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_butcher.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_butcher.json new file mode 100644 index 00000000..1f4d20cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_butcher.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:porkchop", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beef", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:mutton", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 3 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_butcher" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_cartographer.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_cartographer.json new file mode 100644 index 00000000..c2a427e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_cartographer.json @@ -0,0 +1,99 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:map", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:paper", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:compass", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_cartographer" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_desert_house.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_desert_house.json new file mode 100644 index 00000000..21caa6a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_desert_house.json @@ -0,0 +1,120 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay_ball" + }, + { + "type": "minecraft:item", + "name": "minecraft:green_dye" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cactus", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dead_bush", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_desert_house" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fisher.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fisher.json new file mode 100644 index 00000000..e33d594a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fisher.json @@ -0,0 +1,106 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cod", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:salmon" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:barrel" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat_seeds", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_fisher" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fletcher.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fletcher.json new file mode 100644 index 00000000..d531a253 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_fletcher.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:feather", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:egg", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:flint", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 6 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_fletcher" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_mason.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_mason.json new file mode 100644 index 00000000..e39cdf7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_mason.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:clay_ball" + }, + { + "type": "minecraft:item", + "name": "minecraft:flower_pot" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_bricks", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_dye" + }, + { + "type": "minecraft:item", + "name": "minecraft:smooth_stone" + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_mason" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_plains_house.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_plains_house.json new file mode 100644 index 00000000..f562ed6d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_plains_house.json @@ -0,0 +1,140 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:dandelion", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:poppy" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "name": "minecraft:feather" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_sapling", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_plains_house" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_savanna_house.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_savanna_house.json new file mode 100644 index 00000000..0d07242a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_savanna_house.json @@ -0,0 +1,140 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:short_grass", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:tall_grass", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:acacia_sapling", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:torch" + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_savanna_house" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_shepherd.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_shepherd.json new file mode 100644 index 00000000..658111c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_shepherd.json @@ -0,0 +1,113 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:white_wool", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:black_wool", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gray_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:brown_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:light_gray_wool", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "name": "minecraft:shears" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 6.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 6 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_shepherd" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_snowy_house.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_snowy_house.json new file mode 100644 index 00000000..8cf492df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_snowy_house.json @@ -0,0 +1,140 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_ice" + }, + { + "type": "minecraft:item", + "name": "minecraft:snow_block", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:beetroot_soup" + }, + { + "type": "minecraft:item", + "name": "minecraft:furnace" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_snowy_house" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_taiga_house.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_taiga_house.json new file mode 100644 index 00000000..5e7fb8b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_taiga_house.json @@ -0,0 +1,171 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget" + }, + { + "type": "minecraft:item", + "name": "minecraft:fern", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:large_fern", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:potato", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:pumpkin_pie" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_sapling", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:spruce_sign" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spruce_log", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_taiga_house" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_tannery.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_tannery.json new file mode 100644 index 00000000..9fb42ccd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_tannery.json @@ -0,0 +1,101 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather" + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_chestplate", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_boots", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_helmet", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather_leggings", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_tannery" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_temple.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_temple.json new file mode 100644 index 00000000..9c91ce05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_temple.json @@ -0,0 +1,102 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 7 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lapis_lazuli" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_temple" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_toolsmith.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_toolsmith.json new file mode 100644 index 00000000..f9e8c03a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_toolsmith.json @@ -0,0 +1,112 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:stick", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_shovel", + "weight": 5 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + } + ], + "random_sequence": "minecraft:chests/village/village_toolsmith" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_weaponsmith.json b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_weaponsmith.json new file mode 100644 index 00000000..3584ffc4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/village/village_weaponsmith.json @@ -0,0 +1,200 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_pickaxe", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_spear", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_spear", + "weight": 7 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_helmet", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_leggings", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_boots", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:obsidian", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 7.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:oak_sapling", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle", + "weight": 3 + }, + { + "type": "minecraft:item", + "name": "minecraft:copper_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_horse_armor" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_horse_armor" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 3.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bundle" + }, + { + "type": "minecraft:empty", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/village/village_weaponsmith" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/chests/woodland_mansion.json b/data/generated/V26_2/data/minecraft/loot_table/chests/woodland_mansion.json new file mode 100644 index 00000000..131a2524 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/chests/woodland_mansion.json @@ -0,0 +1,297 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lead", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_apple", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:enchanted_golden_apple", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_13", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_cat", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_hoe", + "weight": 15 + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_chestplate", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book", + "weight": 10 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gold_ingot", + "weight": 5 + }, + { + "type": "minecraft:item", + "name": "minecraft:bread", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wheat", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:bucket", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:redstone", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:coal", + "weight": 15 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:melon_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pumpkin_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:beetroot_seeds", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:resin_clump", + "weight": 50 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gunpowder", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 10 + } + ], + "rolls": 3.0 + }, + { + "entries": [ + { + "type": "minecraft:empty" + }, + { + "type": "minecraft:item", + "name": "minecraft:vex_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:chests/woodland_mansion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json new file mode 100644 index 00000000..a5baf80f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/chamber.json @@ -0,0 +1,208 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:egg", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fire_charge", + "weight": 6 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:splash_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:healing" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:lingering_potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/chamber" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json new file mode 100644 index 00000000..644bce25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/corridor.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/water.json b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/water.json new file mode 100644 index 00000000..87d8d1ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/dispensers/trial_chambers/water.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:water_bucket" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:dispensers/trial_chambers/water" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/allay.json b/data/generated/V26_2/data/minecraft/loot_table/entities/allay.json new file mode 100644 index 00000000..47019bce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/allay.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/allay" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/armadillo.json b/data/generated/V26_2/data/minecraft/loot_table/entities/armadillo.json new file mode 100644 index 00000000..588982f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/armadillo.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/armadillo" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/armor_stand.json b/data/generated/V26_2/data/minecraft/loot_table/entities/armor_stand.json new file mode 100644 index 00000000..ef330f37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/armor_stand.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/armor_stand" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/axolotl.json b/data/generated/V26_2/data/minecraft/loot_table/entities/axolotl.json new file mode 100644 index 00000000..cd69d7df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/axolotl.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/axolotl" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/bat.json b/data/generated/V26_2/data/minecraft/loot_table/entities/bat.json new file mode 100644 index 00000000..9b01c0fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/bat.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/bat" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/bee.json b/data/generated/V26_2/data/minecraft/loot_table/entities/bee.json new file mode 100644 index 00000000..db24d0ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/bee.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/bee" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/blaze.json b/data/generated/V26_2/data/minecraft/loot_table/entities/blaze.json new file mode 100644 index 00000000..546cee5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/blaze.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:blaze_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/blaze" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/bogged.json b/data/generated/V26_2/data/minecraft/loot_table/entities/bogged.json new file mode 100644 index 00000000..c24cac87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/bogged.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/bogged" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/breeze.json b/data/generated/V26_2/data/minecraft/loot_table/entities/breeze.json new file mode 100644 index 00000000..18e5efe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/breeze.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:breeze_rod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/breeze" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/camel.json b/data/generated/V26_2/data/minecraft/loot_table/entities/camel.json new file mode 100644 index 00000000..15031d4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/camel.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/camel" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/camel_husk.json b/data/generated/V26_2/data/minecraft/loot_table/entities/camel_husk.json new file mode 100644 index 00000000..fdc9fbfe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/camel_husk.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/camel_husk" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/cat.json b/data/generated/V26_2/data/minecraft/loot_table/entities/cat.json new file mode 100644 index 00000000..554da4fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/cat.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cat" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/cave_spider.json b/data/generated/V26_2/data/minecraft/loot_table/entities/cave_spider.json new file mode 100644 index 00000000..5c4e40ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/cave_spider.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cave_spider" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/chicken.json b/data/generated/V26_2/data/minecraft/loot_table/entities/chicken.json new file mode 100644 index 00000000..22b0a910 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/chicken.json @@ -0,0 +1,90 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:feather" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:chicken" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/chicken" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/cod.json b/data/generated/V26_2/data/minecraft/loot_table/entities/cod.json new file mode 100644 index 00000000..92dc995d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/cod.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cod" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/copper_golem.json b/data/generated/V26_2/data/minecraft/loot_table/entities/copper_golem.json new file mode 100644 index 00000000..9c81df3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/copper_golem.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:copper_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/copper_golem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/cow.json b/data/generated/V26_2/data/minecraft/loot_table/entities/cow.json new file mode 100644 index 00000000..ad23df45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/cow.json @@ -0,0 +1,98 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:beef" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/cow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/creaking.json b/data/generated/V26_2/data/minecraft/loot_table/entities/creaking.json new file mode 100644 index 00000000..0e3c196f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/creaking.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/creaking" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/creeper.json b/data/generated/V26_2/data/minecraft/loot_table/entities/creeper.json new file mode 100644 index 00000000..9ff824ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/creeper.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "attacker", + "predicate": { + "minecraft:entity_type": "#minecraft:skeletons" + } + } + ], + "entries": [ + { + "type": "minecraft:tag", + "expand": true, + "name": "minecraft:creeper_drop_music_discs" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/creeper" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/dolphin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/dolphin.json new file mode 100644 index 00000000..e76bc9a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/dolphin.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/dolphin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/donkey.json b/data/generated/V26_2/data/minecraft/loot_table/entities/donkey.json new file mode 100644 index 00000000..8a4112c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/donkey.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/donkey" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/drowned.json b/data/generated/V26_2/data/minecraft/loot_table/entities/drowned.json new file mode 100644 index 00000000..03475325 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/drowned.json @@ -0,0 +1,58 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.13, + "per_level_above_first": 0.02 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.11 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:copper_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/drowned" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/elder_guardian.json b/data/generated/V26_2/data/minecraft/loot_table/entities/elder_guardian.json new file mode 100644 index 00000000..2e3915a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/elder_guardian.json @@ -0,0 +1,199 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_shard" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 2 + }, + { + "type": "minecraft:empty" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wet_sponge" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "value": "minecraft:gameplay/fishing/fish" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:empty", + "weight": 4 + }, + { + "type": "minecraft:item", + "name": "minecraft:tide_armor_trim_smithing_template" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/elder_guardian" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/ender_dragon.json b/data/generated/V26_2/data/minecraft/loot_table/entities/ender_dragon.json new file mode 100644 index 00000000..9067e7f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/ender_dragon.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/ender_dragon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/enderman.json b/data/generated/V26_2/data/minecraft/loot_table/entities/enderman.json new file mode 100644 index 00000000..cba4adde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/enderman.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ender_pearl" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/enderman" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/endermite.json b/data/generated/V26_2/data/minecraft/loot_table/entities/endermite.json new file mode 100644 index 00000000..81f0dc58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/endermite.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/endermite" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/evoker.json b/data/generated/V26_2/data/minecraft/loot_table/entities/evoker.json new file mode 100644 index 00000000..546e3954 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/evoker.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:totem_of_undying" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/evoker" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/fox.json b/data/generated/V26_2/data/minecraft/loot_table/entities/fox.json new file mode 100644 index 00000000..befa68b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/fox.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/fox" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/frog.json b/data/generated/V26_2/data/minecraft/loot_table/entities/frog.json new file mode 100644 index 00000000..0faaf14b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/frog.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/frog" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/ghast.json b/data/generated/V26_2/data/minecraft/loot_table/entities/ghast.json new file mode 100644 index 00000000..c2e9e9fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/ghast.json @@ -0,0 +1,96 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ghast_tear" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "direct_entity": { + "minecraft:entity_type": "minecraft:fireball" + }, + "tags": [ + { + "expected": true, + "id": "minecraft:is_projectile" + } + ] + } + }, + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:music_disc_tears" + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/ghast" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/giant.json b/data/generated/V26_2/data/minecraft/loot_table/entities/giant.json new file mode 100644 index 00000000..67b0af8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/giant.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/giant" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/glow_squid.json b/data/generated/V26_2/data/minecraft/loot_table/entities/glow_squid.json new file mode 100644 index 00000000..70667622 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/glow_squid.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glow_ink_sac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/glow_squid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/goat.json b/data/generated/V26_2/data/minecraft/loot_table/entities/goat.json new file mode 100644 index 00000000..c312db7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/goat.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/goat" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/guardian.json b/data/generated/V26_2/data/minecraft/loot_table/entities/guardian.json new file mode 100644 index 00000000..46ce6dfd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/guardian.json @@ -0,0 +1,172 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_shard" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:cod", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:prismarine_crystals", + "weight": 2 + }, + { + "type": "minecraft:empty" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:loot_table", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "value": "minecraft:gameplay/fishing/fish" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/guardian" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/happy_ghast.json b/data/generated/V26_2/data/minecraft/loot_table/entities/happy_ghast.json new file mode 100644 index 00000000..97d8ab86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/happy_ghast.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/happy_ghast" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/hoglin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/hoglin.json new file mode 100644 index 00000000..84de5052 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/hoglin.json @@ -0,0 +1,98 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:porkchop" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/hoglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/horse.json b/data/generated/V26_2/data/minecraft/loot_table/entities/horse.json new file mode 100644 index 00000000..7ca676e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/horse.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/horse" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/husk.json b/data/generated/V26_2/data/minecraft/loot_table/entities/husk.json new file mode 100644 index 00000000..6ad4f1bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/husk.json @@ -0,0 +1,143 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": { + "minecraft:entity_type": "minecraft:camel_husk" + } + } + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit_foot" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/husk" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/illusioner.json b/data/generated/V26_2/data/minecraft/loot_table/entities/illusioner.json new file mode 100644 index 00000000..5efa2e3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/illusioner.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/illusioner" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/iron_golem.json b/data/generated/V26_2/data/minecraft/loot_table/entities/iron_golem.json new file mode 100644 index 00000000..b3882206 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/iron_golem.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/iron_golem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/llama.json b/data/generated/V26_2/data/minecraft/loot_table/entities/llama.json new file mode 100644 index 00000000..f41a048b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/llama.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/llama" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/magma_cube.json b/data/generated/V26_2/data/minecraft/loot_table/entities/magma_cube.json new file mode 100644 index 00000000..1b94c9b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/magma_cube.json @@ -0,0 +1,127 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:entity_type": "minecraft:frog" + } + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/cube_mob": { + "size": { + "min": 2 + } + } + } + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:magma_cream" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:warm" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pearlescent_froglight" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:cold" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:verdant_froglight" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:components": { + "minecraft:frog/variant": "minecraft:temperate" + }, + "minecraft:entity_type": "minecraft:frog" + } + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ochre_froglight" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/magma_cube" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/mannequin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/mannequin.json new file mode 100644 index 00000000..fb4a4ea6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/mannequin.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/mannequin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/mooshroom.json b/data/generated/V26_2/data/minecraft/loot_table/entities/mooshroom.json new file mode 100644 index 00000000..eb780cd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/mooshroom.json @@ -0,0 +1,98 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:beef" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/mooshroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/mule.json b/data/generated/V26_2/data/minecraft/loot_table/entities/mule.json new file mode 100644 index 00000000..87a33edf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/mule.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/mule" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/nautilus.json b/data/generated/V26_2/data/minecraft/loot_table/entities/nautilus.json new file mode 100644 index 00000000..39585574 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/nautilus.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.060000002, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.05 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:nautilus_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/nautilus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/ocelot.json b/data/generated/V26_2/data/minecraft/loot_table/entities/ocelot.json new file mode 100644 index 00000000..ab51d391 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/ocelot.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/ocelot" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/panda.json b/data/generated/V26_2/data/minecraft/loot_table/entities/panda.json new file mode 100644 index 00000000..4832b96c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/panda.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bamboo" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/panda" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/parched.json b/data/generated/V26_2/data/minecraft/loot_table/entities/parched.json new file mode 100644 index 00000000..8edffc30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/parched.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/parched" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/parrot.json b/data/generated/V26_2/data/minecraft/loot_table/entities/parrot.json new file mode 100644 index 00000000..591008a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/parrot.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:feather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/parrot" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/phantom.json b/data/generated/V26_2/data/minecraft/loot_table/entities/phantom.json new file mode 100644 index 00000000..d3afcef8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/phantom.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:phantom_membrane" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/phantom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/pig.json b/data/generated/V26_2/data/minecraft/loot_table/entities/pig.json new file mode 100644 index 00000000..554c4023 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/pig.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:porkchop" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pig" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/piglin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/piglin.json new file mode 100644 index 00000000..5752d041 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/piglin.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/piglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/piglin_brute.json b/data/generated/V26_2/data/minecraft/loot_table/entities/piglin_brute.json new file mode 100644 index 00000000..af2fd348 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/piglin_brute.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/piglin_brute" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/pillager.json b/data/generated/V26_2/data/minecraft/loot_table/entities/pillager.json new file mode 100644 index 00000000..94a1f185 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/pillager.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/raider": { + "is_captain": true + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "amplifier": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 0.0 + }, + "function": "minecraft:set_ominous_bottle_amplifier" + } + ], + "name": "minecraft:ominous_bottle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pillager" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/player.json b/data/generated/V26_2/data/minecraft/loot_table/entities/player.json new file mode 100644 index 00000000..f2a59603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/player.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/player" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/polar_bear.json b/data/generated/V26_2/data/minecraft/loot_table/entities/polar_bear.json new file mode 100644 index 00000000..48707af9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/polar_bear.json @@ -0,0 +1,130 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:cod", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/polar_bear" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/pufferfish.json b/data/generated/V26_2/data/minecraft/loot_table/entities/pufferfish.json new file mode 100644 index 00000000..01aa83a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/pufferfish.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:pufferfish" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/pufferfish" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/rabbit.json b/data/generated/V26_2/data/minecraft/loot_table/entities/rabbit.json new file mode 100644 index 00000000..5cb6bd9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/rabbit.json @@ -0,0 +1,118 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit_hide" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rabbit" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.13, + "per_level_above_first": 0.03 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.1 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/rabbit" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/ravager.json b/data/generated/V26_2/data/minecraft/loot_table/entities/ravager.json new file mode 100644 index 00000000..484969bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/ravager.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:saddle" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/ravager" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/salmon.json b/data/generated/V26_2/data/minecraft/loot_table/entities/salmon.json new file mode 100644 index 00000000..cd34c280 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/salmon.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/salmon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep.json new file mode 100644 index 00000000..25255784 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep.json @@ -0,0 +1,368 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:mutton" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "white" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/white" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "orange" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/orange" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "magenta" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/magenta" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "light_blue" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/light_blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "yellow" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/yellow" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "lime" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/lime" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "pink" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/pink" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "gray" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "light_gray" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/light_gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "cyan" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/cyan" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "purple" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/purple" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "blue" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "brown" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/brown" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "green" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/green" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "red" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "black" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:entities/sheep/black" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/black.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/black.json new file mode 100644 index 00000000..24d73a0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/black.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/black" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/blue.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/blue.json new file mode 100644 index 00000000..00c95827 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/blue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/brown.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/brown.json new file mode 100644 index 00000000..9c9f2eea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/brown" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/cyan.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/cyan.json new file mode 100644 index 00000000..0da86102 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/cyan.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/cyan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/gray.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/gray.json new file mode 100644 index 00000000..c8f9f54c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/gray" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/green.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/green.json new file mode 100644 index 00000000..0764626e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/green.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/green" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_blue.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_blue.json new file mode 100644 index 00000000..c09bb9ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_blue.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/light_blue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_gray.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_gray.json new file mode 100644 index 00000000..87f57ebe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/light_gray.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/light_gray" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/lime.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/lime.json new file mode 100644 index 00000000..735624a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/lime.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/lime" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/magenta.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/magenta.json new file mode 100644 index 00000000..e5eef130 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/magenta.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/magenta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/orange.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/orange.json new file mode 100644 index 00000000..a52c7c19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/orange.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/orange" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/pink.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/pink.json new file mode 100644 index 00000000..81a15153 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/pink.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/pink" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/purple.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/purple.json new file mode 100644 index 00000000..2266bfff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/purple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/purple" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/red.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/red.json new file mode 100644 index 00000000..e021dae3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/red" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/white.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/white.json new file mode 100644 index 00000000..5ee076e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/white.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/white" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/yellow.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/yellow.json new file mode 100644 index 00000000..3e2e8013 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sheep/yellow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/sheep/yellow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/shulker.json b/data/generated/V26_2/data/minecraft/loot_table/entities/shulker.json new file mode 100644 index 00000000..3b678f93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/shulker.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.5625, + "per_level_above_first": 0.0625 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.5 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:shulker_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/shulker" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/silverfish.json b/data/generated/V26_2/data/minecraft/loot_table/entities/silverfish.json new file mode 100644 index 00000000..8499c3aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/silverfish.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/silverfish" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton.json b/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton.json new file mode 100644 index 00000000..269d07ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton_horse.json b/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton_horse.json new file mode 100644 index 00000000..8f75cb90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/skeleton_horse.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/skeleton_horse" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/slime.json b/data/generated/V26_2/data/minecraft/loot_table/entities/slime.json new file mode 100644 index 00000000..4c15a306 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/slime.json @@ -0,0 +1,78 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/cube_mob": { + "size": 1 + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:inverted", + "term": { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:entity_type": "minecraft:frog" + } + } + } + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:slime_ball" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "source_entity": { + "minecraft:entity_type": "minecraft:frog" + } + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:slime_ball" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/slime" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sniffer.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sniffer.json new file mode 100644 index 00000000..bc023ba7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sniffer.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/sniffer" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/snow_golem.json b/data/generated/V26_2/data/minecraft/loot_table/entities/snow_golem.json new file mode 100644 index 00000000..5bbf3b6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/snow_golem.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 15.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:snowball" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/snow_golem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/spider.json b/data/generated/V26_2/data/minecraft/loot_table/entities/spider.json new file mode 100644 index 00000000..4c22bd75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/spider.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/spider" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/squid.json b/data/generated/V26_2/data/minecraft/loot_table/entities/squid.json new file mode 100644 index 00000000..212a05d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/squid.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:ink_sac" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/squid" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/stray.json b/data/generated/V26_2/data/minecraft/loot_table/entities/stray.json new file mode 100644 index 00000000..96dec33a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/stray.json @@ -0,0 +1,100 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:arrow" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase", + "limit": 1 + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/stray" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/strider.json b/data/generated/V26_2/data/minecraft/loot_table/entities/strider.json new file mode 100644 index 00000000..f02d87d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/strider.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 5.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:string" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/strider" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/sulfur_cube.json b/data/generated/V26_2/data/minecraft/loot_table/entities/sulfur_cube.json new file mode 100644 index 00000000..26f970d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/sulfur_cube.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/sulfur_cube" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/tadpole.json b/data/generated/V26_2/data/minecraft/loot_table/entities/tadpole.json new file mode 100644 index 00000000..e5849400 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/tadpole.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/tadpole" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/trader_llama.json b/data/generated/V26_2/data/minecraft/loot_table/entities/trader_llama.json new file mode 100644 index 00000000..82d610c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/trader_llama.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/trader_llama" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/tropical_fish.json b/data/generated/V26_2/data/minecraft/loot_table/entities/tropical_fish.json new file mode 100644 index 00000000..b36bf1a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/tropical_fish.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:tropical_fish" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.05, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bone_meal" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/tropical_fish" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/turtle.json b/data/generated/V26_2/data/minecraft/loot_table/entities/turtle.json new file mode 100644 index 00000000..4f80feac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/turtle.json @@ -0,0 +1,57 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:seagrass", + "weight": 3 + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:damage_source_properties", + "predicate": { + "tags": [ + { + "expected": true, + "id": "minecraft:is_lightning" + } + ] + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bowl" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/turtle" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/vex.json b/data/generated/V26_2/data/minecraft/loot_table/entities/vex.json new file mode 100644 index 00000000..b43c526f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/vex.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/vex" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/villager.json b/data/generated/V26_2/data/minecraft/loot_table/entities/villager.json new file mode 100644 index 00000000..76000a05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/villager.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/villager" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/vindicator.json b/data/generated/V26_2/data/minecraft/loot_table/entities/vindicator.json new file mode 100644 index 00000000..c3934619 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/vindicator.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:emerald" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/vindicator" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/wandering_trader.json b/data/generated/V26_2/data/minecraft/loot_table/entities/wandering_trader.json new file mode 100644 index 00000000..e329a2b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/wandering_trader.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wandering_trader" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/warden.json b/data/generated/V26_2/data/minecraft/loot_table/entities/warden.json new file mode 100644 index 00000000..cea29dd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/warden.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:sculk_catalyst" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/warden" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/witch.json b/data/generated/V26_2/data/minecraft/loot_table/entities/witch.json new file mode 100644 index 00000000..c303b848 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/witch.json @@ -0,0 +1,182 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glowstone_dust" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:sugar" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:spider_eye" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:glass_bottle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gunpowder" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:stick", + "weight": 2 + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 4.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:redstone" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/witch" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/wither.json b/data/generated/V26_2/data/minecraft/loot_table/entities/wither.json new file mode 100644 index 00000000..91301c93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/wither.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wither" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/wither_skeleton.json b/data/generated/V26_2/data/minecraft/loot_table/entities/wither_skeleton.json new file mode 100644 index 00000000..a0761f04 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/wither_skeleton.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": -1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:coal" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:bone" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wither_skeleton_skull" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/wither_skeleton" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/wolf.json b/data/generated/V26_2/data/minecraft/loot_table/entities/wolf.json new file mode 100644 index 00000000..baf3ea80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/wolf.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:entity", + "random_sequence": "minecraft:entities/wolf" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zoglin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zoglin.json new file mode 100644 index 00000000..4a73eb7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zoglin.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zoglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zombie.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie.json new file mode 100644 index 00000000..ea7b1d82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie.json @@ -0,0 +1,169 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:vehicle": { + "minecraft:entity_type": "minecraft:zombie_horse" + } + } + } + ], + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:red_mushroom" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_baby": true + }, + "minecraft:vehicle": { + "minecraft:entity_type": "minecraft:chicken" + } + } + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:music_disc_lava_chicken" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_horse.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_horse.json new file mode 100644 index 00000000..aefb0692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_horse.json @@ -0,0 +1,34 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_horse" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_nautilus.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_nautilus.json new file mode 100644 index 00000000..10021e63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_nautilus.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_nautilus" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_villager.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_villager.json new file mode 100644 index 00000000..b873001f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zombie_villager.json @@ -0,0 +1,104 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_ingot" + }, + { + "type": "minecraft:item", + "name": "minecraft:carrot" + }, + { + "type": "minecraft:item", + "functions": [ + { + "conditions": [ + { + "condition": "minecraft:any_of", + "terms": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:flags": { + "is_on_fire": true + } + } + }, + { + "condition": "minecraft:entity_properties", + "entity": "direct_attacker", + "predicate": { + "minecraft:equipment": { + "mainhand": { + "predicates": { + "minecraft:enchantments": [ + { + "enchantments": "#minecraft:smelts_loot" + } + ] + } + } + } + } + } + ] + } + ], + "function": "minecraft:furnace_smelt" + } + ], + "name": "minecraft:potato" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombie_villager" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/entities/zombified_piglin.json b/data/generated/V26_2/data/minecraft/loot_table/entities/zombified_piglin.json new file mode 100644 index 00000000..67b911a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/entities/zombified_piglin.json @@ -0,0 +1,86 @@ +{ + "type": "minecraft:entity", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:rotten_flesh" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "enchantment": "minecraft:looting", + "function": "minecraft:enchanted_count_increase" + } + ], + "name": "minecraft:gold_nugget" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "condition": "minecraft:killed_by_player" + }, + { + "condition": "minecraft:random_chance_with_enchanted_bonus", + "enchanted_chance": { + "type": "minecraft:linear", + "base": 0.035, + "per_level_above_first": 0.01 + }, + "enchantment": "minecraft:looting", + "unenchanted_chance": 0.025 + } + ], + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gold_ingot" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:entities/zombified_piglin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber.json b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber.json new file mode 100644 index 00000000..2a74098b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber.json @@ -0,0 +1,238 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:bolt" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:chainmail_helmet" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:bolt" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:chainmail_chestplate" + } + ], + "rolls": 1.0 + } + ] + }, + "weight": 4 + }, + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_helmet" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_chestplate" + } + ], + "rolls": 1.0 + } + ] + }, + "weight": 2 + }, + { + "type": "minecraft:loot_table", + "value": { + "pools": [ + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:diamond_helmet" + } + ], + "rolls": 1.0 + }, + { + "conditions": [ + { + "chance": 0.5, + "condition": "minecraft:random_chance" + } + ], + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "components": { + "minecraft:trim": { + "material": "minecraft:copper", + "pattern": "minecraft:flow" + } + }, + "function": "minecraft:set_components" + }, + { + "enchantments": { + "minecraft:fire_protection": 4.0, + "minecraft:projectile_protection": 4.0, + "minecraft:protection": 4.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:diamond_chestplate" + } + ], + "rolls": 1.0 + } + ] + } + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_melee.json b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_melee.json new file mode 100644 index 00000000..83baa22e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_melee.json @@ -0,0 +1,53 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:equipment/trial_chamber" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:iron_sword", + "weight": 4 + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantments": { + "minecraft:sharpness": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantments": { + "minecraft:knockback": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:iron_sword" + }, + { + "type": "minecraft:item", + "name": "minecraft:diamond_sword" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber_melee" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_ranged.json b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_ranged.json new file mode 100644 index 00000000..62e8f3a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/equipment/trial_chamber_ranged.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:equipment", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "value": "minecraft:equipment/trial_chamber" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bow", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantments": { + "minecraft:power": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:bow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "enchantments": { + "minecraft:punch": 1.0 + }, + "function": "minecraft:set_enchantments" + } + ], + "name": "minecraft:bow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:equipment/trial_chamber_ranged" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/armadillo_shed.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/armadillo_shed.json new file mode 100644 index 00000000..6eda116b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/armadillo_shed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:armadillo_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/armadillo_shed" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/cat_morning_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/cat_morning_gift.json new file mode 100644 index 00000000..99c24d3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/cat_morning_gift.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:rabbit_hide", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rabbit_foot", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:chicken", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:feather", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:string", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:phantom_membrane", + "weight": 2 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/cat_morning_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/chicken_lay.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/chicken_lay.json new file mode 100644 index 00000000..82f9f1e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/chicken_lay.json @@ -0,0 +1,61 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:chicken/variant": "minecraft:temperate" + } + } + } + ], + "name": "minecraft:egg" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:chicken/variant": "minecraft:warm" + } + } + } + ], + "name": "minecraft:brown_egg" + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:chicken/variant": "minecraft:cold" + } + } + } + ], + "name": "minecraft:blue_egg" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/chicken_lay" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing.json new file mode 100644 index 00000000..3f08ebc8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing.json @@ -0,0 +1,40 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:loot_table", + "quality": -2, + "value": "minecraft:gameplay/fishing/junk", + "weight": 10 + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:type_specific/fishing_hook": { + "in_open_water": true + } + } + } + ], + "quality": 2, + "value": "minecraft:gameplay/fishing/treasure", + "weight": 5 + }, + { + "type": "minecraft:loot_table", + "quality": -1, + "value": "minecraft:gameplay/fishing/fish", + "weight": 85 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/fish.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/fish.json new file mode 100644 index 00000000..dbfa7fb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/fish.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cod", + "weight": 60 + }, + { + "type": "minecraft:item", + "name": "minecraft:salmon", + "weight": 25 + }, + { + "type": "minecraft:item", + "name": "minecraft:tropical_fish", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:pufferfish", + "weight": 13 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/fish" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/junk.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/junk.json new file mode 100644 index 00000000..ef1b4d61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/junk.json @@ -0,0 +1,119 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lily_pad", + "weight": 17 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.0 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:leather_boots", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:leather", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:bone", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water" + } + ], + "name": "minecraft:potion", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:string", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.9, + "min": 0.0 + }, + "function": "minecraft:set_damage" + } + ], + "name": "minecraft:fishing_rod", + "weight": 2 + }, + { + "type": "minecraft:item", + "name": "minecraft:bowl", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:stick", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 10.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ink_sac" + }, + { + "type": "minecraft:item", + "name": "minecraft:tripwire_hook", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:rotten_flesh", + "weight": 10 + }, + { + "type": "minecraft:item", + "conditions": [ + { + "condition": "minecraft:location_check", + "predicate": { + "biomes": [ + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle" + ] + } + } + ], + "name": "minecraft:bamboo", + "weight": 10 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/junk" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/treasure.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/treasure.json new file mode 100644 index 00000000..f0046685 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/fishing/treasure.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:fishing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:name_tag" + }, + { + "type": "minecraft:item", + "name": "minecraft:saddle" + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.25, + "min": 0.0 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:bow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "damage": { + "type": "minecraft:uniform", + "max": 0.25, + "min": 0.0 + }, + "function": "minecraft:set_damage" + }, + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:fishing_rod" + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_with_levels", + "levels": 30.0, + "options": "#minecraft:on_random_loot" + } + ], + "name": "minecraft:book" + }, + { + "type": "minecraft:item", + "name": "minecraft:nautilus_shell" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/fishing/treasure" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json new file mode 100644 index 00000000..35075144 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/armorer_gift.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:chainmail_helmet" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_chestplate" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_leggings" + }, + { + "type": "minecraft:item", + "name": "minecraft:chainmail_boots" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/armorer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json new file mode 100644 index 00000000..68269e50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/baby_gift.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:poppy" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/baby_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json new file mode 100644 index 00000000..07dbc935 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/butcher_gift.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cooked_rabbit" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_chicken" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_porkchop" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_beef" + }, + { + "type": "minecraft:item", + "name": "minecraft:cooked_mutton" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/butcher_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json new file mode 100644 index 00000000..6793d6ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cartographer_gift.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:map" + }, + { + "type": "minecraft:item", + "name": "minecraft:paper" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/cartographer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json new file mode 100644 index 00000000..000a86d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/cleric_gift.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:redstone" + }, + { + "type": "minecraft:item", + "name": "minecraft:lapis_lazuli" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/cleric_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json new file mode 100644 index 00000000..8341d439 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/farmer_gift.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:bread" + }, + { + "type": "minecraft:item", + "name": "minecraft:pumpkin_pie" + }, + { + "type": "minecraft:item", + "name": "minecraft:cookie" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/farmer_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json new file mode 100644 index 00000000..1186853e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fisherman_gift.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cod" + }, + { + "type": "minecraft:item", + "name": "minecraft:salmon" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/fisherman_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json new file mode 100644 index 00000000..0aec3be2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/fletcher_gift.json @@ -0,0 +1,250 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:arrow", + "weight": 26 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slowness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:healing" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:harming" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:leaping" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:water_breathing" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:invisibility" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:night_vision" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weakness" + } + ], + "name": "minecraft:tipped_arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 1.0, + "min": 0.0 + }, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:tipped_arrow" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/fletcher_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json new file mode 100644 index 00000000..0f42b423 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/leatherworker_gift.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:leather" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/leatherworker_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json new file mode 100644 index 00000000..28e01b5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/librarian_gift.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:book" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/librarian_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json new file mode 100644 index 00000000..7814b2ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/mason_gift.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:clay" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/mason_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json new file mode 100644 index 00000000..dd42c3a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/shepherd_gift.json @@ -0,0 +1,75 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + }, + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/shepherd_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json new file mode 100644 index 00000000..423c4487 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/toolsmith_gift.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_pickaxe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_hoe" + }, + { + "type": "minecraft:item", + "name": "minecraft:stone_shovel" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/toolsmith_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json new file mode 100644 index 00000000..837d7c2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/unemployed_gift.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:wheat_seeds" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/unemployed_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json new file mode 100644 index 00000000..83c9058f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/hero_of_the_village/weaponsmith_gift.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:stone_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:golden_axe" + }, + { + "type": "minecraft:item", + "name": "minecraft:iron_axe" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/hero_of_the_village/weaponsmith_gift" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/panda_sneeze.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/panda_sneeze.json new file mode 100644 index 00000000..113101c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/panda_sneeze.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:slime_ball" + }, + { + "type": "minecraft:empty", + "weight": 699 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/panda_sneeze" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/piglin_bartering.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/piglin_bartering.json new file mode 100644 index 00000000..2c34dd33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/piglin_bartering.json @@ -0,0 +1,252 @@ +{ + "type": "minecraft:barter", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:book", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:enchant_randomly", + "options": "minecraft:soul_speed" + } + ], + "name": "minecraft:iron_boots", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:potion", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:fire_resistance" + } + ], + "name": "minecraft:splash_potion", + "weight": 8 + }, + { + "type": "minecraft:item", + "functions": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:water" + } + ], + "name": "minecraft:potion", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 36.0, + "min": 10.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_nugget", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:ender_pearl", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:dried_ghast", + "weight": 10 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 9.0, + "min": 3.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:string", + "weight": 20 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 5.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:quartz", + "weight": 20 + }, + { + "type": "minecraft:item", + "name": "minecraft:obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:crying_obsidian", + "weight": 40 + }, + { + "type": "minecraft:item", + "name": "minecraft:fire_charge", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:leather", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:soul_sand", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:nether_brick", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 12.0, + "min": 6.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:spectral_arrow", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:gravel", + "weight": 40 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 16.0, + "min": 8.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:blackstone", + "weight": 40 + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/piglin_bartering" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/sniffer_digging.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/sniffer_digging.json new file mode 100644 index 00000000..a4d20c89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/sniffer_digging.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:torchflower_seeds" + }, + { + "type": "minecraft:item", + "name": "minecraft:pitcher_pod" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/sniffer_digging" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/gameplay/turtle_grow.json b/data/generated/V26_2/data/minecraft/loot_table/gameplay/turtle_grow.json new file mode 100644 index 00000000..f4ea241a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/gameplay/turtle_grow.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:gift", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:turtle_scute" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:gameplay/turtle_grow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/harvest/beehive.json b/data/generated/V26_2/data/minecraft/loot_table/harvest/beehive.json new file mode 100644 index 00000000..b80c1232 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/harvest/beehive.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 3.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:honeycomb" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/beehive" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/harvest/cave_vine.json b/data/generated/V26_2/data/minecraft/loot_table/harvest/cave_vine.json new file mode 100644 index 00000000..0c8ce341 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/harvest/cave_vine.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:glow_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/cave_vine" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/harvest/sweet_berry_bush.json b/data/generated/V26_2/data/minecraft/loot_table/harvest/sweet_berry_bush.json new file mode 100644 index 00000000..9890f634 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/harvest/sweet_berry_bush.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:block_interact", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "conditions": [ + { + "block": "minecraft:sweet_berry_bush", + "condition": "minecraft:block_state_property", + "properties": { + "age": "3" + } + } + ], + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:sweet_berries" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:harvest/sweet_berry_bush" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/pots/trial_chambers/corridor.json b/data/generated/V26_2/data/minecraft/loot_table/pots/trial_chambers/corridor.json new file mode 100644 index 00000000..acfa5dd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/pots/trial_chambers/corridor.json @@ -0,0 +1,108 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald", + "weight": 125 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 8.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow", + "weight": 100 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:iron_ingot", + "weight": 100 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:trial_key", + "weight": 10 + }, + { + "type": "minecraft:item", + "name": "minecraft:music_disc_creator_music_box", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:emerald_block", + "weight": 5 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:diamond_block" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:pots/trial_chambers/corridor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/bogged.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/bogged.json new file mode 100644 index 00000000..6c617454 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/bogged.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:brown_mushroom" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:red_mushroom" + } + ], + "rolls": 2.0 + } + ], + "random_sequence": "minecraft:shearing/bogged" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom.json new file mode 100644 index 00000000..561c88ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:mooshroom/variant": "red" + } + } + } + ], + "value": "minecraft:shearing/mooshroom/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:mooshroom/variant": "brown" + } + } + } + ], + "value": "minecraft:shearing/mooshroom/brown" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/brown.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/brown.json new file mode 100644 index 00000000..f98eccca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/brown.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_mushroom" + } + ], + "rolls": 5.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom/brown" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/red.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/red.json new file mode 100644 index 00000000..e34b1990 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/mooshroom/red.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_mushroom" + } + ], + "rolls": 5.0 + } + ], + "random_sequence": "minecraft:shearing/mooshroom/red" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep.json new file mode 100644 index 00000000..e78ccf10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep.json @@ -0,0 +1,304 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:alternatives", + "children": [ + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "white" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/white" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "orange" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/orange" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "magenta" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/magenta" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "light_blue" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/light_blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "yellow" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/yellow" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "lime" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/lime" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "pink" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/pink" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "gray" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "light_gray" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/light_gray" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "cyan" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/cyan" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "purple" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/purple" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "blue" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/blue" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "brown" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/brown" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "green" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/green" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "red" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/red" + }, + { + "type": "minecraft:loot_table", + "conditions": [ + { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:components": { + "minecraft:sheep/color": "black" + }, + "minecraft:type_specific/sheep": { + "sheared": false + } + } + } + ], + "value": "minecraft:shearing/sheep/black" + } + ] + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/sheep" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/black.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/black.json new file mode 100644 index 00000000..06c5a89c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/black.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:black_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/black" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/blue.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/blue.json new file mode 100644 index 00000000..ec0dc9c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/blue.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:blue_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/blue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/brown.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/brown.json new file mode 100644 index 00000000..0217c346 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/brown.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:brown_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/brown" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/cyan.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/cyan.json new file mode 100644 index 00000000..fed03598 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/cyan.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:cyan_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/cyan" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/gray.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/gray.json new file mode 100644 index 00000000..ee1c8907 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/gray.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:gray_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/gray" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/green.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/green.json new file mode 100644 index 00000000..b8d1b0d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/green.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:green_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/green" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_blue.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_blue.json new file mode 100644 index 00000000..97ed16a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_blue.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_blue_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/light_blue" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_gray.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_gray.json new file mode 100644 index 00000000..27b62504 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/light_gray.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:light_gray_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/light_gray" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/lime.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/lime.json new file mode 100644 index 00000000..d31d343c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/lime.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:lime_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/lime" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/magenta.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/magenta.json new file mode 100644 index 00000000..b5eba252 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/magenta.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:magenta_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/magenta" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/orange.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/orange.json new file mode 100644 index 00000000..c652c998 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/orange.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:orange_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/orange" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/pink.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/pink.json new file mode 100644 index 00000000..1581219f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/pink.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:pink_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/pink" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/purple.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/purple.json new file mode 100644 index 00000000..45516c09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/purple.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:purple_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/purple" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/red.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/red.json new file mode 100644 index 00000000..bc65e964 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/red.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:red_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/red" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/white.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/white.json new file mode 100644 index 00000000..4024a039 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/white.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:white_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/white" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/yellow.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/yellow.json new file mode 100644 index 00000000..1a6e58e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/sheep/yellow.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:yellow_wool" + } + ], + "rolls": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + } + } + ], + "random_sequence": "minecraft:shearing/sheep/yellow" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/shearing/snow_golem.json b/data/generated/V26_2/data/minecraft/loot_table/shearing/snow_golem.json new file mode 100644 index 00000000..2c5c0bf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/shearing/snow_golem.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:shearing", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:carved_pumpkin" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:shearing/snow_golem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json b/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json new file mode 100644 index 00000000..51d56e6d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/consumables.json @@ -0,0 +1,84 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_beef", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 4.0, + "min": 2.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 2.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:golden_carrot", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/ominous/trial_chamber/consumables" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json b/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json new file mode 100644 index 00000000..eeee49ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/spawners/ominous/trial_chamber/key.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:ominous_trial_key" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/ominous/trial_chamber/key" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/consumables.json b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/consumables.json new file mode 100644 index 00000000..9c2c5999 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/consumables.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:cooked_chicken", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:bread", + "weight": 3 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:baked_potato", + "weight": 2 + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:regeneration" + } + ], + "name": "minecraft:potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:potion" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/consumables" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json new file mode 100644 index 00000000..b3baffa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/items_to_drop_when_ominous.json @@ -0,0 +1,180 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:wind_charged" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:oozing" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:weaving" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:infested" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strength" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:swiftness" + } + ], + "name": "minecraft:lingering_potion" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:slow_falling" + } + ], + "name": "minecraft:lingering_potion" + } + ], + "rolls": 1.0 + }, + { + "entries": [ + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:poison" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": 1.0, + "function": "minecraft:set_count" + }, + { + "function": "minecraft:set_potion", + "id": "minecraft:strong_slowness" + } + ], + "name": "minecraft:arrow" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:fire_charge" + }, + { + "type": "minecraft:item", + "functions": [ + { + "count": { + "type": "minecraft:uniform", + "max": 3.0, + "min": 1.0 + }, + "function": "minecraft:set_count" + } + ], + "name": "minecraft:wind_charge" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/items_to_drop_when_ominous" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/key.json b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/key.json new file mode 100644 index 00000000..322bb66e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/loot_table/spawners/trial_chamber/key.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:chest", + "pools": [ + { + "entries": [ + { + "type": "minecraft:item", + "name": "minecraft:trial_key" + } + ], + "rolls": 1.0 + } + ], + "random_sequence": "minecraft:spawners/trial_chamber/key" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/alban.json b/data/generated/V26_2/data/minecraft/painting_variant/alban.json new file mode 100644 index 00000000..39719caf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/alban.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:alban", + "author": { + "color": "gray", + "translate": "painting.minecraft.alban.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.alban.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/aztec.json b/data/generated/V26_2/data/minecraft/painting_variant/aztec.json new file mode 100644 index 00000000..40c37293 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/aztec.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:aztec", + "author": { + "color": "gray", + "translate": "painting.minecraft.aztec.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.aztec.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/aztec2.json b/data/generated/V26_2/data/minecraft/painting_variant/aztec2.json new file mode 100644 index 00000000..28a521fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/aztec2.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:aztec2", + "author": { + "color": "gray", + "translate": "painting.minecraft.aztec2.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.aztec2.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/backyard.json b/data/generated/V26_2/data/minecraft/painting_variant/backyard.json new file mode 100644 index 00000000..cdd3fc32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/backyard.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:backyard", + "author": { + "color": "gray", + "translate": "painting.minecraft.backyard.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.backyard.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/baroque.json b/data/generated/V26_2/data/minecraft/painting_variant/baroque.json new file mode 100644 index 00000000..3c593a1a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/baroque.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:baroque", + "author": { + "color": "gray", + "translate": "painting.minecraft.baroque.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.baroque.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/bomb.json b/data/generated/V26_2/data/minecraft/painting_variant/bomb.json new file mode 100644 index 00000000..ec784d2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/bomb.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bomb", + "author": { + "color": "gray", + "translate": "painting.minecraft.bomb.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bomb.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/bouquet.json b/data/generated/V26_2/data/minecraft/painting_variant/bouquet.json new file mode 100644 index 00000000..1d8a4197 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/bouquet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bouquet", + "author": { + "color": "gray", + "translate": "painting.minecraft.bouquet.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bouquet.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/burning_skull.json b/data/generated/V26_2/data/minecraft/painting_variant/burning_skull.json new file mode 100644 index 00000000..5d28fe28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/burning_skull.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:burning_skull", + "author": { + "color": "gray", + "translate": "painting.minecraft.burning_skull.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.burning_skull.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/bust.json b/data/generated/V26_2/data/minecraft/painting_variant/bust.json new file mode 100644 index 00000000..4df7b603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/bust.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:bust", + "author": { + "color": "gray", + "translate": "painting.minecraft.bust.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.bust.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/cavebird.json b/data/generated/V26_2/data/minecraft/painting_variant/cavebird.json new file mode 100644 index 00000000..1ab7483e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/cavebird.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:cavebird", + "author": { + "color": "gray", + "translate": "painting.minecraft.cavebird.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.cavebird.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/changing.json b/data/generated/V26_2/data/minecraft/painting_variant/changing.json new file mode 100644 index 00000000..4afe2442 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/changing.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:changing", + "author": { + "color": "gray", + "translate": "painting.minecraft.changing.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.changing.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/cotan.json b/data/generated/V26_2/data/minecraft/painting_variant/cotan.json new file mode 100644 index 00000000..067feffe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/cotan.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:cotan", + "author": { + "color": "gray", + "translate": "painting.minecraft.cotan.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.cotan.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/courbet.json b/data/generated/V26_2/data/minecraft/painting_variant/courbet.json new file mode 100644 index 00000000..6cd1b831 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/courbet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:courbet", + "author": { + "color": "gray", + "translate": "painting.minecraft.courbet.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.courbet.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/creebet.json b/data/generated/V26_2/data/minecraft/painting_variant/creebet.json new file mode 100644 index 00000000..69710652 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/creebet.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:creebet", + "author": { + "color": "gray", + "translate": "painting.minecraft.creebet.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.creebet.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/dennis.json b/data/generated/V26_2/data/minecraft/painting_variant/dennis.json new file mode 100644 index 00000000..468684c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/dennis.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:dennis", + "author": { + "color": "gray", + "translate": "painting.minecraft.dennis.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.dennis.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/donkey_kong.json b/data/generated/V26_2/data/minecraft/painting_variant/donkey_kong.json new file mode 100644 index 00000000..79ecbd00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/donkey_kong.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:donkey_kong", + "author": { + "color": "gray", + "translate": "painting.minecraft.donkey_kong.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.donkey_kong.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/earth.json b/data/generated/V26_2/data/minecraft/painting_variant/earth.json new file mode 100644 index 00000000..d52b2366 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/earth.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:earth", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.earth.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/endboss.json b/data/generated/V26_2/data/minecraft/painting_variant/endboss.json new file mode 100644 index 00000000..5d869183 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/endboss.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:endboss", + "author": { + "color": "gray", + "translate": "painting.minecraft.endboss.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.endboss.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/fern.json b/data/generated/V26_2/data/minecraft/painting_variant/fern.json new file mode 100644 index 00000000..49db47d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/fern.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:fern", + "author": { + "color": "gray", + "translate": "painting.minecraft.fern.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fern.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/fighters.json b/data/generated/V26_2/data/minecraft/painting_variant/fighters.json new file mode 100644 index 00000000..091530d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/fighters.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:fighters", + "author": { + "color": "gray", + "translate": "painting.minecraft.fighters.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fighters.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/finding.json b/data/generated/V26_2/data/minecraft/painting_variant/finding.json new file mode 100644 index 00000000..235cb6b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/finding.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:finding", + "author": { + "color": "gray", + "translate": "painting.minecraft.finding.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.finding.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/fire.json b/data/generated/V26_2/data/minecraft/painting_variant/fire.json new file mode 100644 index 00000000..ff45c9ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/fire.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:fire", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.fire.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/graham.json b/data/generated/V26_2/data/minecraft/painting_variant/graham.json new file mode 100644 index 00000000..c34738ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/graham.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:graham", + "author": { + "color": "gray", + "translate": "painting.minecraft.graham.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.graham.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/humble.json b/data/generated/V26_2/data/minecraft/painting_variant/humble.json new file mode 100644 index 00000000..36343392 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/humble.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:humble", + "author": { + "color": "gray", + "translate": "painting.minecraft.humble.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.humble.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/kebab.json b/data/generated/V26_2/data/minecraft/painting_variant/kebab.json new file mode 100644 index 00000000..bff9be3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/kebab.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:kebab", + "author": { + "color": "gray", + "translate": "painting.minecraft.kebab.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.kebab.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/lowmist.json b/data/generated/V26_2/data/minecraft/painting_variant/lowmist.json new file mode 100644 index 00000000..d052c782 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/lowmist.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:lowmist", + "author": { + "color": "gray", + "translate": "painting.minecraft.lowmist.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.lowmist.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/match.json b/data/generated/V26_2/data/minecraft/painting_variant/match.json new file mode 100644 index 00000000..477fd009 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/match.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:match", + "author": { + "color": "gray", + "translate": "painting.minecraft.match.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.match.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/meditative.json b/data/generated/V26_2/data/minecraft/painting_variant/meditative.json new file mode 100644 index 00000000..95b0559d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/meditative.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:meditative", + "author": { + "color": "gray", + "translate": "painting.minecraft.meditative.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.meditative.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/orb.json b/data/generated/V26_2/data/minecraft/painting_variant/orb.json new file mode 100644 index 00000000..0095844d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/orb.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:orb", + "author": { + "color": "gray", + "translate": "painting.minecraft.orb.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.orb.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/owlemons.json b/data/generated/V26_2/data/minecraft/painting_variant/owlemons.json new file mode 100644 index 00000000..2909f999 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/owlemons.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:owlemons", + "author": { + "color": "gray", + "translate": "painting.minecraft.owlemons.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.owlemons.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/passage.json b/data/generated/V26_2/data/minecraft/painting_variant/passage.json new file mode 100644 index 00000000..dc50ade6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/passage.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:passage", + "author": { + "color": "gray", + "translate": "painting.minecraft.passage.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.passage.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/pigscene.json b/data/generated/V26_2/data/minecraft/painting_variant/pigscene.json new file mode 100644 index 00000000..b9701d6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/pigscene.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pigscene", + "author": { + "color": "gray", + "translate": "painting.minecraft.pigscene.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pigscene.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/plant.json b/data/generated/V26_2/data/minecraft/painting_variant/plant.json new file mode 100644 index 00000000..35532b66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/plant.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:plant", + "author": { + "color": "gray", + "translate": "painting.minecraft.plant.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.plant.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/pointer.json b/data/generated/V26_2/data/minecraft/painting_variant/pointer.json new file mode 100644 index 00000000..747ca76d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/pointer.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pointer", + "author": { + "color": "gray", + "translate": "painting.minecraft.pointer.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pointer.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/pond.json b/data/generated/V26_2/data/minecraft/painting_variant/pond.json new file mode 100644 index 00000000..2aeccf97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/pond.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pond", + "author": { + "color": "gray", + "translate": "painting.minecraft.pond.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pond.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/pool.json b/data/generated/V26_2/data/minecraft/painting_variant/pool.json new file mode 100644 index 00000000..9fd50436 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/pool.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:pool", + "author": { + "color": "gray", + "translate": "painting.minecraft.pool.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.pool.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/prairie_ride.json b/data/generated/V26_2/data/minecraft/painting_variant/prairie_ride.json new file mode 100644 index 00000000..e7b73be3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/prairie_ride.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:prairie_ride", + "author": { + "color": "gray", + "translate": "painting.minecraft.prairie_ride.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.prairie_ride.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/sea.json b/data/generated/V26_2/data/minecraft/painting_variant/sea.json new file mode 100644 index 00000000..43bd6880 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/sea.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sea", + "author": { + "color": "gray", + "translate": "painting.minecraft.sea.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sea.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/skeleton.json b/data/generated/V26_2/data/minecraft/painting_variant/skeleton.json new file mode 100644 index 00000000..cbf93d8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/skeleton.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:skeleton", + "author": { + "color": "gray", + "translate": "painting.minecraft.skeleton.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.skeleton.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/skull_and_roses.json b/data/generated/V26_2/data/minecraft/painting_variant/skull_and_roses.json new file mode 100644 index 00000000..88cfc580 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/skull_and_roses.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:skull_and_roses", + "author": { + "color": "gray", + "translate": "painting.minecraft.skull_and_roses.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.skull_and_roses.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/stage.json b/data/generated/V26_2/data/minecraft/painting_variant/stage.json new file mode 100644 index 00000000..001e7a86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/stage.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:stage", + "author": { + "color": "gray", + "translate": "painting.minecraft.stage.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.stage.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/sunflowers.json b/data/generated/V26_2/data/minecraft/painting_variant/sunflowers.json new file mode 100644 index 00000000..837dd239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/sunflowers.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sunflowers", + "author": { + "color": "gray", + "translate": "painting.minecraft.sunflowers.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sunflowers.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/sunset.json b/data/generated/V26_2/data/minecraft/painting_variant/sunset.json new file mode 100644 index 00000000..a2b4470d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/sunset.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:sunset", + "author": { + "color": "gray", + "translate": "painting.minecraft.sunset.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.sunset.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/tides.json b/data/generated/V26_2/data/minecraft/painting_variant/tides.json new file mode 100644 index 00000000..c40d3b1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/tides.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:tides", + "author": { + "color": "gray", + "translate": "painting.minecraft.tides.author" + }, + "height": 3, + "title": { + "color": "yellow", + "translate": "painting.minecraft.tides.title" + }, + "width": 3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/unpacked.json b/data/generated/V26_2/data/minecraft/painting_variant/unpacked.json new file mode 100644 index 00000000..5a21cc02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/unpacked.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:unpacked", + "author": { + "color": "gray", + "translate": "painting.minecraft.unpacked.author" + }, + "height": 4, + "title": { + "color": "yellow", + "translate": "painting.minecraft.unpacked.title" + }, + "width": 4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/void.json b/data/generated/V26_2/data/minecraft/painting_variant/void.json new file mode 100644 index 00000000..0ce54d48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/void.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:void", + "author": { + "color": "gray", + "translate": "painting.minecraft.void.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.void.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/wanderer.json b/data/generated/V26_2/data/minecraft/painting_variant/wanderer.json new file mode 100644 index 00000000..c62b6b64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/wanderer.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:wanderer", + "author": { + "color": "gray", + "translate": "painting.minecraft.wanderer.author" + }, + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wanderer.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/wasteland.json b/data/generated/V26_2/data/minecraft/painting_variant/wasteland.json new file mode 100644 index 00000000..a126eb24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/wasteland.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:wasteland", + "author": { + "color": "gray", + "translate": "painting.minecraft.wasteland.author" + }, + "height": 1, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wasteland.title" + }, + "width": 1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/water.json b/data/generated/V26_2/data/minecraft/painting_variant/water.json new file mode 100644 index 00000000..f358ae77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/water.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:water", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.water.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/wind.json b/data/generated/V26_2/data/minecraft/painting_variant/wind.json new file mode 100644 index 00000000..6b836028 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/wind.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:wind", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wind.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/painting_variant/wither.json b/data/generated/V26_2/data/minecraft/painting_variant/wither.json new file mode 100644 index 00000000..8ece65fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/painting_variant/wither.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:wither", + "height": 2, + "title": { + "color": "yellow", + "translate": "painting.minecraft.wither.title" + }, + "width": 2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_sound_variant/big.json b/data/generated/V26_2/data/minecraft/pig_sound_variant/big.json new file mode 100644 index 00000000..14f930f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_sound_variant/big.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig_big.ambient", + "death_sound": "minecraft:entity.pig_big.death", + "eat_sound": "minecraft:entity.pig_big.eat", + "hurt_sound": "minecraft:entity.pig_big.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_sound_variant/classic.json b/data/generated/V26_2/data/minecraft/pig_sound_variant/classic.json new file mode 100644 index 00000000..c11dda99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_sound_variant/classic.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig.ambient", + "death_sound": "minecraft:entity.pig.death", + "eat_sound": "minecraft:entity.pig.eat", + "hurt_sound": "minecraft:entity.pig.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_sound_variant/mini.json b/data/generated/V26_2/data/minecraft/pig_sound_variant/mini.json new file mode 100644 index 00000000..e9c414af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_sound_variant/mini.json @@ -0,0 +1,16 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.pig_mini.ambient", + "death_sound": "minecraft:entity.pig_mini.death", + "eat_sound": "minecraft:entity.pig_mini.eat", + "hurt_sound": "minecraft:entity.pig_mini.hurt", + "step_sound": "minecraft:entity.pig.step" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_pig.ambient", + "death_sound": "minecraft:entity.baby_pig.death", + "eat_sound": "minecraft:entity.baby_pig.eat", + "hurt_sound": "minecraft:entity.baby_pig.hurt", + "step_sound": "minecraft:entity.baby_pig.step" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_variant/cold.json b/data/generated/V26_2/data/minecraft/pig_variant/cold.json new file mode 100644 index 00000000..3d62fdd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_variant/cold.json @@ -0,0 +1,14 @@ +{ + "asset_id": "minecraft:entity/pig/pig_cold", + "baby_asset_id": "minecraft:entity/pig/pig_cold_baby", + "model": "cold", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_cold_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_variant/temperate.json b/data/generated/V26_2/data/minecraft/pig_variant/temperate.json new file mode 100644 index 00000000..0fd985d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_variant/temperate.json @@ -0,0 +1,9 @@ +{ + "asset_id": "minecraft:entity/pig/pig_temperate", + "baby_asset_id": "minecraft:entity/pig/pig_temperate_baby", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/pig_variant/warm.json b/data/generated/V26_2/data/minecraft/pig_variant/warm.json new file mode 100644 index 00000000..491ec461 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/pig_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/pig/pig_warm", + "baby_asset_id": "minecraft:entity/pig/pig_warm_baby", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_warm_variant_farm_animals" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_boat.json b/data/generated/V26_2/data/minecraft/recipe/acacia_boat.json new file mode 100644 index 00000000..018f59e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:acacia_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_button.json b/data/generated/V26_2/data/minecraft/recipe/acacia_button.json new file mode 100644 index 00000000..08cf20c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:acacia_planks" + ], + "result": { + "id": "minecraft:acacia_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/acacia_chest_boat.json new file mode 100644 index 00000000..5944351c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:acacia_boat" + ], + "result": { + "id": "minecraft:acacia_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_door.json b/data/generated/V26_2/data/minecraft/recipe/acacia_door.json new file mode 100644 index 00000000..77ad9700 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_fence.json b/data/generated/V26_2/data/minecraft/recipe/acacia_fence.json new file mode 100644 index 00000000..3f12e89a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:acacia_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/acacia_fence_gate.json new file mode 100644 index 00000000..361e32c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:acacia_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:acacia_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/acacia_hanging_sign.json new file mode 100644 index 00000000..0ecab660 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_acacia_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_planks.json b/data/generated/V26_2/data/minecraft/recipe/acacia_planks.json new file mode 100644 index 00000000..11e6cdf1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:acacia_logs" + ], + "result": { + "count": 4, + "id": "minecraft:acacia_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/acacia_pressure_plate.json new file mode 100644 index 00000000..14b1df97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:acacia_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_shelf.json b/data/generated/V26_2/data/minecraft/recipe/acacia_shelf.json new file mode 100644 index 00000000..fb15a616 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_acacia_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_sign.json b/data/generated/V26_2/data/minecraft/recipe/acacia_sign.json new file mode 100644 index 00000000..93e58acb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:acacia_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:acacia_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_slab.json b/data/generated/V26_2/data/minecraft/recipe/acacia_slab.json new file mode 100644 index 00000000..aab58b72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:acacia_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_stairs.json b/data/generated/V26_2/data/minecraft/recipe/acacia_stairs.json new file mode 100644 index 00000000..dab8cea4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:acacia_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/acacia_trapdoor.json new file mode 100644 index 00000000..afd5eab3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:acacia_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:acacia_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/acacia_wood.json b/data/generated/V26_2/data/minecraft/recipe/acacia_wood.json new file mode 100644 index 00000000..91eba8b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/acacia_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:acacia_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:acacia_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/activator_rail.json b/data/generated/V26_2/data/minecraft/recipe/activator_rail.json new file mode 100644 index 00000000..68a1bd0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/activator_rail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:redstone_torch", + "S": "minecraft:stick", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XSX", + "X#X", + "XSX" + ], + "result": { + "count": 6, + "id": "minecraft:activator_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/amethyst_block.json b/data/generated/V26_2/data/minecraft/recipe/amethyst_block.json new file mode 100644 index 00000000..f15ca439 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/amethyst_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:amethyst_shard" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:amethyst_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite.json b/data/generated/V26_2/data/minecraft/recipe/andesite.json new file mode 100644 index 00000000..175f9782 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "minecraft:cobblestone" + ], + "result": { + "count": 2, + "id": "minecraft:andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_slab.json b/data/generated/V26_2/data/minecraft/recipe/andesite_slab.json new file mode 100644 index 00000000..8bfed611 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..532712b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "count": 2, + "id": "minecraft:andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/andesite_stairs.json new file mode 100644 index 00000000..2d01ba99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..f7d2b742 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_wall.json b/data/generated/V26_2/data/minecraft/recipe/andesite_wall.json new file mode 100644 index 00000000..4e65e7d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:andesite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:andesite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json new file mode 100644 index 00000000..5f40dd37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/andesite_wall_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:andesite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/anvil.json b/data/generated/V26_2/data/minecraft/recipe/anvil.json new file mode 100644 index 00000000..63a0f662 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/anvil.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "I": "minecraft:iron_block", + "i": "minecraft:iron_ingot" + }, + "pattern": [ + "III", + " i ", + "iii" + ], + "result": { + "id": "minecraft:anvil" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/armor_stand.json b/data/generated/V26_2/data/minecraft/recipe/armor_stand.json new file mode 100644 index 00000000..e49a8050 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/armor_stand.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "/": "minecraft:stick", + "_": "minecraft:smooth_stone_slab" + }, + "pattern": [ + "///", + " / ", + "/_/" + ], + "result": { + "id": "minecraft:armor_stand" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/arrow.json b/data/generated/V26_2/data/minecraft/recipe/arrow.json new file mode 100644 index 00000000..9a34cf3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/arrow.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:flint", + "Y": "minecraft:feather" + }, + "pattern": [ + "X", + "#", + "Y" + ], + "result": { + "count": 4, + "id": "minecraft:arrow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/baked_potato.json b/data/generated/V26_2/data/minecraft/recipe/baked_potato.json new file mode 100644 index 00000000..ce9f885d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/baked_potato.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_campfire_cooking.json new file mode 100644 index 00000000..0264ae3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_smoking.json new file mode 100644 index 00000000..e4dea6ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/baked_potato_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:potato", + "result": { + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_block.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_block.json new file mode 100644 index 00000000..6894a3dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo", + "minecraft:bamboo" + ], + "result": { + "id": "minecraft:bamboo_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_button.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_button.json new file mode 100644 index 00000000..f52ed5b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:bamboo_planks" + ], + "result": { + "id": "minecraft:bamboo_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_chest_raft.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_chest_raft.json new file mode 100644 index 00000000..12f0c186 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_chest_raft.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:bamboo_raft" + ], + "result": { + "id": "minecraft:bamboo_chest_raft" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_door.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_door.json new file mode 100644 index 00000000..b64b813d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_fence.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_fence.json new file mode 100644 index 00000000..4cac9285 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:bamboo_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_fence_gate.json new file mode 100644 index 00000000..bdcd2f4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:bamboo_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:bamboo_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_hanging_sign.json new file mode 100644 index 00000000..0b15ecc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_bamboo_block", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic.json new file mode 100644 index 00000000..f90679ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:bamboo_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:bamboo_mosaic" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_slab.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_slab.json new file mode 100644 index 00000000..2c38121b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bamboo_mosaic" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_mosaic_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_stairs.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..bb31c264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_mosaic_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bamboo_mosaic" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:bamboo_mosaic_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_planks.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_planks.json new file mode 100644 index 00000000..60bed79a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:bamboo_blocks" + ], + "result": { + "count": 2, + "id": "minecraft:bamboo_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_pressure_plate.json new file mode 100644 index 00000000..34446a54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:bamboo_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_raft.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_raft.json new file mode 100644 index 00000000..03012b0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_raft.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:bamboo_raft" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_shelf.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_shelf.json new file mode 100644 index 00000000..995a5ae6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_bamboo_block" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_sign.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_sign.json new file mode 100644 index 00000000..982078fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:bamboo_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:bamboo_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_slab.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_slab.json new file mode 100644 index 00000000..47fed4ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:bamboo_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_stairs.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_stairs.json new file mode 100644 index 00000000..afd3757a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:bamboo_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bamboo_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/bamboo_trapdoor.json new file mode 100644 index 00000000..2e5286cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bamboo_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:bamboo_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:bamboo_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/barrel.json b/data/generated/V26_2/data/minecraft/recipe/barrel.json new file mode 100644 index 00000000..5b663f49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/barrel.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "P": "#minecraft:planks", + "S": "#minecraft:wooden_slabs" + }, + "pattern": [ + "PSP", + "P P", + "PSP" + ], + "result": { + "id": "minecraft:barrel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/beacon.json b/data/generated/V26_2/data/minecraft/recipe/beacon.json new file mode 100644 index 00000000..1dab8ee7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/beacon.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "G": "minecraft:glass", + "O": "minecraft:obsidian", + "S": "minecraft:nether_star" + }, + "pattern": [ + "GGG", + "GSG", + "OOO" + ], + "result": { + "id": "minecraft:beacon" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/beehive.json b/data/generated/V26_2/data/minecraft/recipe/beehive.json new file mode 100644 index 00000000..76617cc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/beehive.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "H": "minecraft:honeycomb", + "P": "#minecraft:planks" + }, + "pattern": [ + "PPP", + "HHH", + "PPP" + ], + "result": { + "id": "minecraft:beehive" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/beetroot_soup.json b/data/generated/V26_2/data/minecraft/recipe/beetroot_soup.json new file mode 100644 index 00000000..5c1c23b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/beetroot_soup.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:bowl", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot", + "minecraft:beetroot" + ], + "result": { + "id": "minecraft:beetroot_soup" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_boat.json b/data/generated/V26_2/data/minecraft/recipe/birch_boat.json new file mode 100644 index 00000000..a86edab3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:birch_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_button.json b/data/generated/V26_2/data/minecraft/recipe/birch_button.json new file mode 100644 index 00000000..ac77554d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:birch_planks" + ], + "result": { + "id": "minecraft:birch_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/birch_chest_boat.json new file mode 100644 index 00000000..ca34bd96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:birch_boat" + ], + "result": { + "id": "minecraft:birch_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_door.json b/data/generated/V26_2/data/minecraft/recipe/birch_door.json new file mode 100644 index 00000000..0f0a8f5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:birch_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_fence.json b/data/generated/V26_2/data/minecraft/recipe/birch_fence.json new file mode 100644 index 00000000..df6c9b42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:birch_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:birch_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/birch_fence_gate.json new file mode 100644 index 00000000..40851602 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:birch_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:birch_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/birch_hanging_sign.json new file mode 100644 index 00000000..7d6aa1c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_birch_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_planks.json b/data/generated/V26_2/data/minecraft/recipe/birch_planks.json new file mode 100644 index 00000000..0921e692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:birch_logs" + ], + "result": { + "count": 4, + "id": "minecraft:birch_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/birch_pressure_plate.json new file mode 100644 index 00000000..11249bd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:birch_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_shelf.json b/data/generated/V26_2/data/minecraft/recipe/birch_shelf.json new file mode 100644 index 00000000..3f8a65d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_birch_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_sign.json b/data/generated/V26_2/data/minecraft/recipe/birch_sign.json new file mode 100644 index 00000000..8b8cf932 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:birch_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:birch_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_slab.json b/data/generated/V26_2/data/minecraft/recipe/birch_slab.json new file mode 100644 index 00000000..87061e5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:birch_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_stairs.json b/data/generated/V26_2/data/minecraft/recipe/birch_stairs.json new file mode 100644 index 00000000..c2048596 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:birch_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/birch_trapdoor.json new file mode 100644 index 00000000..128944b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:birch_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:birch_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/birch_wood.json b/data/generated/V26_2/data/minecraft/recipe/birch_wood.json new file mode 100644 index 00000000..4fddaabb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/birch_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:birch_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:birch_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_banner.json b/data/generated/V26_2/data/minecraft/recipe/black_banner.json new file mode 100644 index 00000000..bcfe3801 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:black_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:black_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/black_banner_duplicate.json new file mode 100644 index 00000000..61b159b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:black_banner", + "result": { + "id": "minecraft:black_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_bed.json b/data/generated/V26_2/data/minecraft/recipe/black_bed.json new file mode 100644 index 00000000..f3930c48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:black_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:black_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_bundle.json b/data/generated/V26_2/data/minecraft/recipe/black_bundle.json new file mode 100644 index 00000000..fa0cafcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:black_dye", + "result": { + "id": "minecraft:black_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_candle.json b/data/generated/V26_2/data/minecraft/recipe/black_candle.json new file mode 100644 index 00000000..df4a1c65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:black_dye" + ], + "result": { + "id": "minecraft:black_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_carpet.json b/data/generated/V26_2/data/minecraft/recipe/black_carpet.json new file mode 100644 index 00000000..af070bc4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:black_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:black_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/black_concrete_powder.json new file mode 100644 index 00000000..cbde1f95 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:black_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:black_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_dye.json b/data/generated/V26_2/data/minecraft/recipe/black_dye.json new file mode 100644 index 00000000..5dac3f51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "black_dye", + "ingredients": [ + "minecraft:ink_sac" + ], + "result": { + "id": "minecraft:black_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_dye_from_wither_rose.json b/data/generated/V26_2/data/minecraft/recipe/black_dye_from_wither_rose.json new file mode 100644 index 00000000..0dc89c06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_dye_from_wither_rose.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "black_dye", + "ingredients": [ + "minecraft:wither_rose" + ], + "result": { + "id": "minecraft:black_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/black_glazed_terracotta.json new file mode 100644 index 00000000..571adf3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:black_terracotta", + "result": { + "id": "minecraft:black_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_harness.json b/data/generated/V26_2/data/minecraft/recipe/black_harness.json new file mode 100644 index 00000000..c8827a7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:black_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:black_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/black_shulker_box.json new file mode 100644 index 00000000..fc6b1fd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:black_dye", + "result": { + "id": "minecraft:black_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass.json new file mode 100644 index 00000000..f60d0e81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane.json new file mode 100644 index 00000000..3f5ea66a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:black_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:black_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8fbaa5ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/black_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/black_terracotta.json new file mode 100644 index 00000000..ad7b8f0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/black_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:black_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:black_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_slab.json new file mode 100644 index 00000000..b6addf2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..b2b835cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs.json new file mode 100644 index 00000000..49ea27df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..570474fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_wall.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_wall.json new file mode 100644 index 00000000..967961bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:blackstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..8c9b989f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blast_furnace.json b/data/generated/V26_2/data/minecraft/recipe/blast_furnace.json new file mode 100644 index 00000000..69646f08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blast_furnace.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:smooth_stone", + "I": "minecraft:iron_ingot", + "X": "minecraft:furnace" + }, + "pattern": [ + "III", + "IXI", + "###" + ], + "result": { + "id": "minecraft:blast_furnace" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blaze_powder.json b/data/generated/V26_2/data/minecraft/recipe/blaze_powder.json new file mode 100644 index 00000000..aef101ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blaze_powder.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:blaze_rod" + ], + "result": { + "count": 2, + "id": "minecraft:blaze_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_banner.json b/data/generated/V26_2/data/minecraft/recipe/blue_banner.json new file mode 100644 index 00000000..79b9a3d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:blue_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/blue_banner_duplicate.json new file mode 100644 index 00000000..ef8f2432 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:blue_banner", + "result": { + "id": "minecraft:blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_bed.json b/data/generated/V26_2/data/minecraft/recipe/blue_bed.json new file mode 100644 index 00000000..b9070d55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:blue_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_bundle.json b/data/generated/V26_2/data/minecraft/recipe/blue_bundle.json new file mode 100644 index 00000000..5f3f5e34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:blue_dye", + "result": { + "id": "minecraft:blue_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_candle.json b/data/generated/V26_2/data/minecraft/recipe/blue_candle.json new file mode 100644 index 00000000..91dc0d45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:blue_dye" + ], + "result": { + "id": "minecraft:blue_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_carpet.json b/data/generated/V26_2/data/minecraft/recipe/blue_carpet.json new file mode 100644 index 00000000..d8dc7fa5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:blue_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/blue_concrete_powder.json new file mode 100644 index 00000000..14f989ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:blue_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_dye.json b/data/generated/V26_2/data/minecraft/recipe/blue_dye.json new file mode 100644 index 00000000..1a0464b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "blue_dye", + "ingredients": [ + "minecraft:lapis_lazuli" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_dye_from_cornflower.json b/data/generated/V26_2/data/minecraft/recipe/blue_dye_from_cornflower.json new file mode 100644 index 00000000..63f3975d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_dye_from_cornflower.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "blue_dye", + "ingredients": [ + "minecraft:cornflower" + ], + "result": { + "id": "minecraft:blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/blue_glazed_terracotta.json new file mode 100644 index 00000000..19beba18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:blue_terracotta", + "result": { + "id": "minecraft:blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_harness.json b/data/generated/V26_2/data/minecraft/recipe/blue_harness.json new file mode 100644 index 00000000..e52922d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:blue_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_ice.json b/data/generated/V26_2/data/minecraft/recipe/blue_ice.json new file mode 100644 index 00000000..cbd61e2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_ice.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice", + "minecraft:packed_ice" + ], + "result": { + "id": "minecraft:blue_ice" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/blue_shulker_box.json new file mode 100644 index 00000000..d02e948d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:blue_dye", + "result": { + "id": "minecraft:blue_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass.json new file mode 100644 index 00000000..ec0fce29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane.json new file mode 100644 index 00000000..5fa39904 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:blue_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..9953bfb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/blue_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/blue_terracotta.json new file mode 100644 index 00000000..4acaf66e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:blue_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..044762a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": [ + "minecraft:copper_block", + "minecraft:waxed_copper_block" + ], + "S": "minecraft:bolt_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:bolt_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..357d46bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bolt_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:bolt", + "template": "minecraft:bolt_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bone_block.json b/data/generated/V26_2/data/minecraft/recipe/bone_block.json new file mode 100644 index 00000000..1cbe689f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bone_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bone_meal" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:bone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bone_meal.json b/data/generated/V26_2/data/minecraft/recipe/bone_meal.json new file mode 100644 index 00000000..ac885aff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bone_meal.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bonemeal", + "ingredients": [ + "minecraft:bone" + ], + "result": { + "count": 3, + "id": "minecraft:bone_meal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bone_meal_from_bone_block.json b/data/generated/V26_2/data/minecraft/recipe/bone_meal_from_bone_block.json new file mode 100644 index 00000000..685d7f70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bone_meal_from_bone_block.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bonemeal", + "ingredients": [ + "minecraft:bone_block" + ], + "result": { + "count": 9, + "id": "minecraft:bone_meal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/book.json b/data/generated/V26_2/data/minecraft/recipe/book.json new file mode 100644 index 00000000..a6d1e3cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/book.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:paper", + "minecraft:paper", + "minecraft:leather" + ], + "result": { + "id": "minecraft:book" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/book_cloning.json b/data/generated/V26_2/data/minecraft/recipe/book_cloning.json new file mode 100644 index 00000000..93feb217 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/book_cloning.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_bookcloning", + "material": "#minecraft:book_cloning_target", + "result": { + "id": "minecraft:written_book" + }, + "source": "minecraft:written_book" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bookshelf.json b/data/generated/V26_2/data/minecraft/recipe/bookshelf.json new file mode 100644 index 00000000..5bbb1da0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bookshelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:book" + }, + "pattern": [ + "###", + "XXX", + "###" + ], + "result": { + "id": "minecraft:bookshelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bordure_indented_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..e19bc62b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bordure_indented_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:vine" + ], + "result": { + "id": "minecraft:bordure_indented_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bow.json b/data/generated/V26_2/data/minecraft/recipe/bow.json new file mode 100644 index 00000000..c2e37449 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bow.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:string" + }, + "pattern": [ + " #X", + "# X", + " #X" + ], + "result": { + "id": "minecraft:bow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bowl.json b/data/generated/V26_2/data/minecraft/recipe/bowl.json new file mode 100644 index 00000000..b644afb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bowl.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "count": 4, + "id": "minecraft:bowl" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bread.json b/data/generated/V26_2/data/minecraft/recipe/bread.json new file mode 100644 index 00000000..07b3e349 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bread.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:wheat" + }, + "pattern": [ + "###" + ], + "result": { + "id": "minecraft:bread" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brewing_stand.json b/data/generated/V26_2/data/minecraft/recipe/brewing_stand.json new file mode 100644 index 00000000..afc6fabf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brewing_stand.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:stone_crafting_materials", + "B": "minecraft:blaze_rod" + }, + "pattern": [ + " B ", + "###" + ], + "result": { + "id": "minecraft:brewing_stand" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick.json b/data/generated/V26_2/data/minecraft/recipe/brick.json new file mode 100644 index 00000000..d737e39d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.3, + "ingredient": "minecraft:clay_ball", + "result": { + "id": "minecraft:brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/brick_slab.json new file mode 100644 index 00000000..d7d3d61e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json new file mode 100644 index 00000000..fa15f6e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_slab_from_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "count": 2, + "id": "minecraft:brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/brick_stairs.json new file mode 100644 index 00000000..22edf6f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json new file mode 100644 index 00000000..7d9af121 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_stairs_from_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "id": "minecraft:brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/brick_wall.json new file mode 100644 index 00000000..59d46b74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json new file mode 100644 index 00000000..469d9d7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brick_wall_from_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:bricks", + "result": { + "id": "minecraft:brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bricks.json b/data/generated/V26_2/data/minecraft/recipe/bricks.json new file mode 100644 index 00000000..014e3b5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_banner.json b/data/generated/V26_2/data/minecraft/recipe/brown_banner.json new file mode 100644 index 00000000..10ea135c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:brown_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:brown_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/brown_banner_duplicate.json new file mode 100644 index 00000000..e61ec8d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:brown_banner", + "result": { + "id": "minecraft:brown_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_bed.json b/data/generated/V26_2/data/minecraft/recipe/brown_bed.json new file mode 100644 index 00000000..0e9c6558 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:brown_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:brown_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_bundle.json b/data/generated/V26_2/data/minecraft/recipe/brown_bundle.json new file mode 100644 index 00000000..2a8358aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:brown_dye", + "result": { + "id": "minecraft:brown_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_candle.json b/data/generated/V26_2/data/minecraft/recipe/brown_candle.json new file mode 100644 index 00000000..9db9bf7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:brown_dye" + ], + "result": { + "id": "minecraft:brown_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_carpet.json b/data/generated/V26_2/data/minecraft/recipe/brown_carpet.json new file mode 100644 index 00000000..6b1aa632 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:brown_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:brown_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/brown_concrete_powder.json new file mode 100644 index 00000000..d370a314 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:brown_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:brown_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_dye.json b/data/generated/V26_2/data/minecraft/recipe/brown_dye.json new file mode 100644 index 00000000..3bb8bbb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "brown_dye", + "ingredients": [ + "minecraft:cocoa_beans" + ], + "result": { + "id": "minecraft:brown_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/brown_glazed_terracotta.json new file mode 100644 index 00000000..3a2eed91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:brown_terracotta", + "result": { + "id": "minecraft:brown_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_harness.json b/data/generated/V26_2/data/minecraft/recipe/brown_harness.json new file mode 100644 index 00000000..313893aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:brown_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:brown_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/brown_shulker_box.json new file mode 100644 index 00000000..8167a814 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:brown_dye", + "result": { + "id": "minecraft:brown_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass.json new file mode 100644 index 00000000..4902e4a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane.json new file mode 100644 index 00000000..9ab9a277 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:brown_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:brown_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..e085223d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brown_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/brown_terracotta.json new file mode 100644 index 00000000..f9a89784 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brown_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:brown_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:brown_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/brush.json b/data/generated/V26_2/data/minecraft/recipe/brush.json new file mode 100644 index 00000000..b4e742ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/brush.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:copper_ingot", + "I": "minecraft:stick", + "X": "minecraft:feather" + }, + "pattern": [ + "X", + "#", + "I" + ], + "result": { + "id": "minecraft:brush" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bucket.json b/data/generated/V26_2/data/minecraft/recipe/bucket.json new file mode 100644 index 00000000..51f42684 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bucket.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "id": "minecraft:bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/bundle.json b/data/generated/V26_2/data/minecraft/recipe/bundle.json new file mode 100644 index 00000000..bf92e93d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/bundle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:leather", + "-": "minecraft:string" + }, + "pattern": [ + "-", + "#" + ], + "result": { + "id": "minecraft:bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cake.json b/data/generated/V26_2/data/minecraft/recipe/cake.json new file mode 100644 index 00000000..1a6d1d22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cake.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "A": "minecraft:milk_bucket", + "B": "minecraft:sugar", + "C": "minecraft:wheat", + "E": "#minecraft:eggs" + }, + "pattern": [ + "AAA", + "BEB", + "CCC" + ], + "result": { + "id": "minecraft:cake" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/calibrated_sculk_sensor.json b/data/generated/V26_2/data/minecraft/recipe/calibrated_sculk_sensor.json new file mode 100644 index 00000000..f25fd5c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/calibrated_sculk_sensor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:amethyst_shard", + "X": "minecraft:sculk_sensor" + }, + "pattern": [ + " # ", + "#X#" + ], + "result": { + "id": "minecraft:calibrated_sculk_sensor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/campfire.json b/data/generated/V26_2/data/minecraft/recipe/campfire.json new file mode 100644 index 00000000..9e27ce08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/campfire.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "C": "#minecraft:coals", + "L": "#minecraft:logs", + "S": "minecraft:stick" + }, + "pattern": [ + " S ", + "SCS", + "LLL" + ], + "result": { + "id": "minecraft:campfire" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/candle.json b/data/generated/V26_2/data/minecraft/recipe/candle.json new file mode 100644 index 00000000..3b696c32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/candle.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "H": "minecraft:honeycomb", + "S": "minecraft:string" + }, + "pattern": [ + "S", + "H" + ], + "result": { + "id": "minecraft:candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/carrot_on_a_stick.json b/data/generated/V26_2/data/minecraft/recipe/carrot_on_a_stick.json new file mode 100644 index 00000000..03061134 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/carrot_on_a_stick.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:fishing_rod", + "X": "minecraft:carrot" + }, + "pattern": [ + "# ", + " X" + ], + "result": { + "id": "minecraft:carrot_on_a_stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cartography_table.json b/data/generated/V26_2/data/minecraft/recipe/cartography_table.json new file mode 100644 index 00000000..1b950692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cartography_table.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:paper" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:cartography_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cauldron.json b/data/generated/V26_2/data/minecraft/recipe/cauldron.json new file mode 100644 index 00000000..6f2a5f9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cauldron.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "id": "minecraft:cauldron" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/charcoal.json b/data/generated/V26_2/data/minecraft/recipe/charcoal.json new file mode 100644 index 00000000..3857d9e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/charcoal.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.15, + "ingredient": "#minecraft:logs_that_burn", + "result": { + "id": "minecraft:charcoal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_boat.json b/data/generated/V26_2/data/minecraft/recipe/cherry_boat.json new file mode 100644 index 00000000..f8a06f52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:cherry_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_button.json b/data/generated/V26_2/data/minecraft/recipe/cherry_button.json new file mode 100644 index 00000000..c52632c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:cherry_planks" + ], + "result": { + "id": "minecraft:cherry_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/cherry_chest_boat.json new file mode 100644 index 00000000..6dfeac34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:cherry_boat" + ], + "result": { + "id": "minecraft:cherry_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_door.json b/data/generated/V26_2/data/minecraft/recipe/cherry_door.json new file mode 100644 index 00000000..422fac0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_fence.json b/data/generated/V26_2/data/minecraft/recipe/cherry_fence.json new file mode 100644 index 00000000..e91f0481 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:cherry_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/cherry_fence_gate.json new file mode 100644 index 00000000..70828eb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:cherry_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:cherry_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/cherry_hanging_sign.json new file mode 100644 index 00000000..a3c18650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_cherry_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_planks.json b/data/generated/V26_2/data/minecraft/recipe/cherry_planks.json new file mode 100644 index 00000000..c1b8483d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:cherry_logs" + ], + "result": { + "count": 4, + "id": "minecraft:cherry_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/cherry_pressure_plate.json new file mode 100644 index 00000000..d148713d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:cherry_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_shelf.json b/data/generated/V26_2/data/minecraft/recipe/cherry_shelf.json new file mode 100644 index 00000000..bd8bc0c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_cherry_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_sign.json b/data/generated/V26_2/data/minecraft/recipe/cherry_sign.json new file mode 100644 index 00000000..06c17976 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:cherry_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:cherry_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_slab.json b/data/generated/V26_2/data/minecraft/recipe/cherry_slab.json new file mode 100644 index 00000000..60d8b1a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cherry_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cherry_stairs.json new file mode 100644 index 00000000..de5e48ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cherry_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/cherry_trapdoor.json new file mode 100644 index 00000000..e21ba1d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:cherry_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:cherry_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cherry_wood.json b/data/generated/V26_2/data/minecraft/recipe/cherry_wood.json new file mode 100644 index 00000000..307daa81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cherry_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:cherry_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cherry_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chest.json b/data/generated/V26_2/data/minecraft/recipe/chest.json new file mode 100644 index 00000000..6b1ec797 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chest.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "id": "minecraft:chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chest_minecart.json b/data/generated/V26_2/data/minecraft/recipe/chest_minecart.json new file mode 100644 index 00000000..18914146 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chest_minecart.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:chest", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:chest_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_bookshelf.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_bookshelf.json new file mode 100644 index 00000000..5e0eaedb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_bookshelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "#minecraft:planks", + "X": "#minecraft:wooden_slabs" + }, + "pattern": [ + "###", + "XXX", + "###" + ], + "result": { + "id": "minecraft:chiseled_bookshelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar.json new file mode 100644 index 00000000..5616721a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cinnabar_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_cinnabar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..6e73d6a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_cinnabar_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:chiseled_cinnabar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper.json new file mode 100644 index 00000000..d20dc692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..d73d3fe8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..d7e94795 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_copper_from_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "id": "minecraft:chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate.json new file mode 100644 index 00000000..356553f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..622db599 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..4a886ae5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:chiseled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks.json new file mode 100644 index 00000000..538a03c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..1471575a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_nether_bricks_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:chiseled_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone.json new file mode 100644 index 00000000..8f887051 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..a75abde7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..9bddce00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_polished_blackstone_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:chiseled_polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block.json new file mode 100644 index 00000000..45b4d793 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..9539b8c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_quartz_block_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:chiseled_quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone.json new file mode 100644 index 00000000..39b7915c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sandstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..056843d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:chiseled_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks.json new file mode 100644 index 00000000..f3a796dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..5fa857f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_resin_bricks_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:chiseled_resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone.json new file mode 100644 index 00000000..eaff2176 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sandstone_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..f99ab41b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:chiseled_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks.json new file mode 100644 index 00000000..86c89c5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..49d33e2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..289a4c6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:chiseled_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur.json new file mode 100644 index 00000000..f008e38a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur_from_sulfur_stonecutting.json new file mode 100644 index 00000000..7459e3e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_sulfur_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:chiseled_sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff.json new file mode 100644 index 00000000..3f157d76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks.json new file mode 100644 index 00000000..8bceb5db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_brick_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0ea81dee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..949ad7c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..d05458de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:chiseled_tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..7bf39e4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/chiseled_tuff_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:chiseled_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab.json new file mode 100644 index 00000000..abd6cd53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cinnabar_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cinnabar_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..6ce980b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar_bricks", + "result": { + "count": 2, + "id": "minecraft:cinnabar_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..62c34768 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "count": 2, + "id": "minecraft:cinnabar_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..766cf9fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_slab_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "count": 2, + "id": "minecraft:cinnabar_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs.json new file mode 100644 index 00000000..48f77b84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cinnabar_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cinnabar_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..e90fda96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar_bricks", + "result": { + "id": "minecraft:cinnabar_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..75e7be2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:cinnabar_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..5168c1db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_stairs_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "id": "minecraft:cinnabar_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall.json new file mode 100644 index 00000000..ce86cd0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:cinnabar_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cinnabar_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json new file mode 100644 index 00000000..3dd5d3b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar_bricks", + "result": { + "id": "minecraft:cinnabar_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..64e79900 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:cinnabar_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..ffcd4ff7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_brick_wall_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "id": "minecraft:cinnabar_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks.json new file mode 100644 index 00000000..7b66aa2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_cinnabar" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cinnabar_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..54e1d859 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:cinnabar_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..df19988a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_bricks_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "id": "minecraft:cinnabar_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab.json new file mode 100644 index 00000000..01be9cda --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cinnabar" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cinnabar_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..ad245c18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "count": 2, + "id": "minecraft:cinnabar_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs.json new file mode 100644 index 00000000..b7b3f833 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cinnabar" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cinnabar_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..d3ab54e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:cinnabar_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall.json new file mode 100644 index 00000000..481a628a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:cinnabar" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cinnabar_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..56f5168c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cinnabar_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:cinnabar_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/clay.json b/data/generated/V26_2/data/minecraft/recipe/clay.json new file mode 100644 index 00000000..1435ff7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/clay.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:clay_ball" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:clay" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/clock.json b/data/generated/V26_2/data/minecraft/recipe/clock.json new file mode 100644 index 00000000..4692446e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/clock.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:gold_ingot", + "X": "minecraft:redstone" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:clock" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal.json b/data/generated/V26_2/data/minecraft/recipe/coal.json new file mode 100644 index 00000000..d55cf9fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:coal_block" + ], + "result": { + "count": 9, + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal_block.json b/data/generated/V26_2/data/minecraft/recipe/coal_block.json new file mode 100644 index 00000000..c37017af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:coal" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:coal_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_coal_ore.json b/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_coal_ore.json new file mode 100644 index 00000000..0363ed05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_coal_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json b/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json new file mode 100644 index 00000000..c878cb53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal_from_blasting_deepslate_coal_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:deepslate_coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_coal_ore.json b/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_coal_ore.json new file mode 100644 index 00000000..a2f65b02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_coal_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json b/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json new file mode 100644 index 00000000..5e19be6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coal_from_smelting_deepslate_coal_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "group": "coal", + "ingredient": "minecraft:deepslate_coal_ore", + "result": { + "id": "minecraft:coal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coarse_dirt.json b/data/generated/V26_2/data/minecraft/recipe/coarse_dirt.json new file mode 100644 index 00000000..8e405797 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coarse_dirt.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "D": "minecraft:dirt", + "G": "minecraft:gravel" + }, + "pattern": [ + "DG", + "GD" + ], + "result": { + "count": 4, + "id": "minecraft:coarse_dirt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..2b696638 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:coast_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:coast_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..8097b2e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/coast_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:coast", + "template": "minecraft:coast_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..9b3f7d64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab.json new file mode 100644 index 00000000..7a875cf2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..997321b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..bd9abc76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:cobbled_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..0bd3c041 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..830f5adf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..f24ab9c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall.json new file mode 100644 index 00000000..eee17fab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..df16d19a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..625901cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobbled_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:cobbled_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json new file mode 100644 index 00000000..7cfdd1a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab.json new file mode 100644 index 00000000..94545475 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..b64c99ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_cobblestone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "count": 2, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..048c5002 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs.json new file mode 100644 index 00000000..e2455d0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..d633184c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..8bda15cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall.json new file mode 100644 index 00000000..34f997f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:cobblestone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json new file mode 100644 index 00000000..6aeab7e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..09495ddd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cobblestone_wall_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/comparator.json b/data/generated/V26_2/data/minecraft/recipe/comparator.json new file mode 100644 index 00000000..d600d721 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/comparator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone_torch", + "I": "minecraft:stone", + "X": "minecraft:quartz" + }, + "pattern": [ + " # ", + "#X#", + "III" + ], + "result": { + "id": "minecraft:comparator" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/compass.json b/data/generated/V26_2/data/minecraft/recipe/compass.json new file mode 100644 index 00000000..b8edb85d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/compass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot", + "X": "minecraft:redstone" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:compass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/composter.json b/data/generated/V26_2/data/minecraft/recipe/composter.json new file mode 100644 index 00000000..32d42866 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/composter.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:wooden_slabs" + }, + "pattern": [ + "# #", + "# #", + "###" + ], + "result": { + "id": "minecraft:composter" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/conduit.json b/data/generated/V26_2/data/minecraft/recipe/conduit.json new file mode 100644 index 00000000..cf6649ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/conduit.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:nautilus_shell", + "X": "minecraft:heart_of_the_sea" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:conduit" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_beef.json b/data/generated/V26_2/data/minecraft/recipe/cooked_beef.json new file mode 100644 index 00000000..80e36085 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_beef.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json new file mode 100644 index 00000000..96a25f7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_smoking.json new file mode 100644 index 00000000..2bf9990c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_beef_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:beef", + "result": { + "id": "minecraft:cooked_beef" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_chicken.json b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken.json new file mode 100644 index 00000000..ee8c86c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json new file mode 100644 index 00000000..90481c78 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_smoking.json new file mode 100644 index 00000000..7909feb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_chicken_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:chicken", + "result": { + "id": "minecraft:cooked_chicken" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_cod.json b/data/generated/V26_2/data/minecraft/recipe/cooked_cod.json new file mode 100644 index 00000000..ceaae371 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_cod.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json new file mode 100644 index 00000000..174914e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_smoking.json new file mode 100644 index 00000000..943091c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_cod_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:cod", + "result": { + "id": "minecraft:cooked_cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_mutton.json b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton.json new file mode 100644 index 00000000..f7b9cad7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json new file mode 100644 index 00000000..28cfb4b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_smoking.json new file mode 100644 index 00000000..705c9d87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_mutton_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:mutton", + "result": { + "id": "minecraft:cooked_mutton" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop.json b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop.json new file mode 100644 index 00000000..7da7eb98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json new file mode 100644 index 00000000..ef7c6833 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_smoking.json new file mode 100644 index 00000000..8536e421 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_porkchop_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:porkchop", + "result": { + "id": "minecraft:cooked_porkchop" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit.json b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit.json new file mode 100644 index 00000000..9d0a69d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json new file mode 100644 index 00000000..38f0ace8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_smoking.json new file mode 100644 index 00000000..b897462b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_rabbit_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:rabbit", + "result": { + "id": "minecraft:cooked_rabbit" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_salmon.json b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon.json new file mode 100644 index 00000000..ee88b591 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json new file mode 100644 index 00000000..8bff9565 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_smoking.json new file mode 100644 index 00000000..aa845d40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cooked_salmon_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.35, + "ingredient": "minecraft:salmon", + "result": { + "id": "minecraft:cooked_salmon" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cookie.json b/data/generated/V26_2/data/minecraft/recipe/cookie.json new file mode 100644 index 00000000..bc1cfe0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cookie.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:wheat", + "X": "minecraft:cocoa_beans" + }, + "pattern": [ + "#X#" + ], + "result": { + "count": 8, + "id": "minecraft:cookie" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_axe.json b/data/generated/V26_2/data/minecraft/recipe/copper_axe.json new file mode 100644 index 00000000..cc384928 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:copper_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_bars.json b/data/generated/V26_2/data/minecraft/recipe/copper_bars.json new file mode 100644 index 00000000..353c90a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_bars.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_block.json b/data/generated/V26_2/data/minecraft/recipe/copper_block.json new file mode 100644 index 00000000..83f687f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_boots.json b/data/generated/V26_2/data/minecraft/recipe/copper_boots.json new file mode 100644 index 00000000..f4847384 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:copper_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/copper_bulb.json new file mode 100644 index 00000000..a7bb0d3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:copper_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_chain.json b/data/generated/V26_2/data/minecraft/recipe/copper_chain.json new file mode 100644 index 00000000..61961786 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_chain.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "I": "minecraft:copper_ingot", + "N": "minecraft:copper_nugget" + }, + "pattern": [ + "N", + "I", + "N" + ], + "result": { + "id": "minecraft:copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_chest.json b/data/generated/V26_2/data/minecraft/recipe/copper_chest.json new file mode 100644 index 00000000..1896b702 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_chest.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:copper_ingot", + "X": "minecraft:chest" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_chestplate.json b/data/generated/V26_2/data/minecraft/recipe/copper_chestplate.json new file mode 100644 index 00000000..5ac736d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:copper_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_door.json b/data/generated/V26_2/data/minecraft/recipe/copper_door.json new file mode 100644 index 00000000..4d9770e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_door.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/copper_grate.json new file mode 100644 index 00000000..f3438592 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "copper_grate", + "key": { + "M": "minecraft:copper_block" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json new file mode 100644 index 00000000..fbe3826f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_grate_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_helmet.json b/data/generated/V26_2/data/minecraft/recipe/copper_helmet.json new file mode 100644 index 00000000..9a5b9f3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:copper_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_hoe.json b/data/generated/V26_2/data/minecraft/recipe/copper_hoe.json new file mode 100644 index 00000000..2cdedced --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:copper_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot.json new file mode 100644 index 00000000..bbd275e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "copper_ingot", + "ingredients": [ + "minecraft:copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json new file mode 100644 index 00000000..a252fb7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_copper_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json new file mode 100644 index 00000000..bd35eeb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_deepslate_copper_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:deepslate_copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json new file mode 100644 index 00000000..ddd16523 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_blasting_raw_copper.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:raw_copper", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_nuggets.json new file mode 100644 index 00000000..4284f6cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_nuggets.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "copper_ingot", + "key": { + "#": "minecraft:copper_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json new file mode 100644 index 00000000..03d516cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_copper_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json new file mode 100644 index 00000000..910ecac9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_deepslate_copper_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:deepslate_copper_ore", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json new file mode 100644 index 00000000..013d27dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_smelting_raw_copper.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "copper_ingot", + "ingredient": "minecraft:raw_copper", + "result": { + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json new file mode 100644 index 00000000..959d4348 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_ingot_from_waxed_copper_block.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "copper_ingot", + "ingredients": [ + "minecraft:waxed_copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:copper_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_lantern.json b/data/generated/V26_2/data/minecraft/recipe/copper_lantern.json new file mode 100644 index 00000000..9657bd51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:copper_torch", + "X": "minecraft:copper_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_leggings.json b/data/generated/V26_2/data/minecraft/recipe/copper_leggings.json new file mode 100644 index 00000000..ed8216ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:copper_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:copper_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_nugget.json b/data/generated/V26_2/data/minecraft/recipe/copper_nugget.json new file mode 100644 index 00000000..884f48b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_nugget.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:copper_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_blasting.json new file mode 100644 index 00000000..f50f2865 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_blasting.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:blasting", + "experience": 0.1, + "ingredient": [ + "minecraft:copper_pickaxe", + "minecraft:copper_shovel", + "minecraft:copper_axe", + "minecraft:copper_hoe", + "minecraft:copper_sword", + "minecraft:copper_spear", + "minecraft:copper_helmet", + "minecraft:copper_chestplate", + "minecraft:copper_leggings", + "minecraft:copper_boots", + "minecraft:copper_horse_armor", + "minecraft:copper_nautilus_armor" + ], + "result": { + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_smelting.json new file mode 100644 index 00000000..a3519701 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_nugget_from_smelting.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": [ + "minecraft:copper_pickaxe", + "minecraft:copper_shovel", + "minecraft:copper_axe", + "minecraft:copper_hoe", + "minecraft:copper_sword", + "minecraft:copper_spear", + "minecraft:copper_helmet", + "minecraft:copper_chestplate", + "minecraft:copper_leggings", + "minecraft:copper_boots", + "minecraft:copper_horse_armor", + "minecraft:copper_nautilus_armor" + ], + "result": { + "id": "minecraft:copper_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/copper_pickaxe.json new file mode 100644 index 00000000..b391998c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:copper_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_shovel.json b/data/generated/V26_2/data/minecraft/recipe/copper_shovel.json new file mode 100644 index 00000000..f3b55188 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:copper_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_spear.json b/data/generated/V26_2/data/minecraft/recipe/copper_spear.json new file mode 100644 index 00000000..b89efc00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:copper_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_sword.json b/data/generated/V26_2/data/minecraft/recipe/copper_sword.json new file mode 100644 index 00000000..7dfe229a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:copper_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:copper_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_torch.json b/data/generated/V26_2/data/minecraft/recipe/copper_torch.json new file mode 100644 index 00000000..3987fd6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "C": "minecraft:copper_nugget", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "C", + "X", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:copper_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/copper_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/copper_trapdoor.json new file mode 100644 index 00000000..d59589fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/copper_trapdoor.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_bricks.json b/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_bricks.json new file mode 100644 index 00000000..b5990c3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_bricks.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:cracked_deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_tiles.json b/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_tiles.json new file mode 100644 index 00000000..f782df3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cracked_deepslate_tiles.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:cracked_deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cracked_nether_bricks.json b/data/generated/V26_2/data/minecraft/recipe/cracked_nether_bricks.json new file mode 100644 index 00000000..e854b666 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cracked_nether_bricks.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:cracked_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cracked_polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..dcaadae2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cracked_polished_blackstone_bricks.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:cracked_polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cracked_stone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/cracked_stone_bricks.json new file mode 100644 index 00000000..bf296572 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cracked_stone_bricks.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:cracked_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crafter.json b/data/generated/V26_2/data/minecraft/recipe/crafter.json new file mode 100644 index 00000000..a92c3b08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crafter.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot", + "C": "minecraft:crafting_table", + "D": "minecraft:dropper", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "#C#", + "RDR" + ], + "result": { + "id": "minecraft:crafter" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crafting_table.json b/data/generated/V26_2/data/minecraft/recipe/crafting_table.json new file mode 100644 index 00000000..fb50612f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crafting_table.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:crafting_table" + }, + "show_notification": false +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/creaking_heart.json b/data/generated/V26_2/data/minecraft/recipe/creaking_heart.json new file mode 100644 index 00000000..36216778 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/creaking_heart.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "L": "minecraft:pale_oak_log", + "R": "minecraft:resin_block" + }, + "pattern": [ + " L ", + " R ", + " L " + ], + "result": { + "id": "minecraft:creaking_heart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/creeper_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/creeper_banner_pattern.json new file mode 100644 index 00000000..1b9cf296 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/creeper_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:creeper_head" + ], + "result": { + "id": "minecraft:creeper_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_button.json b/data/generated/V26_2/data/minecraft/recipe/crimson_button.json new file mode 100644 index 00000000..efddb8f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:crimson_planks" + ], + "result": { + "id": "minecraft:crimson_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_door.json b/data/generated/V26_2/data/minecraft/recipe/crimson_door.json new file mode 100644 index 00000000..475b6926 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_fence.json b/data/generated/V26_2/data/minecraft/recipe/crimson_fence.json new file mode 100644 index 00000000..29e40e21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:crimson_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/crimson_fence_gate.json new file mode 100644 index 00000000..8b1c9b37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:crimson_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:crimson_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/crimson_hanging_sign.json new file mode 100644 index 00000000..6bb17ce2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_crimson_stem", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_hyphae.json b/data/generated/V26_2/data/minecraft/recipe/crimson_hyphae.json new file mode 100644 index 00000000..9091b85f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:crimson_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:crimson_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_planks.json b/data/generated/V26_2/data/minecraft/recipe/crimson_planks.json new file mode 100644 index 00000000..d2a238e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:crimson_stems" + ], + "result": { + "count": 4, + "id": "minecraft:crimson_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/crimson_pressure_plate.json new file mode 100644 index 00000000..d930304a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:crimson_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_shelf.json b/data/generated/V26_2/data/minecraft/recipe/crimson_shelf.json new file mode 100644 index 00000000..2300cdd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_crimson_stem" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_sign.json b/data/generated/V26_2/data/minecraft/recipe/crimson_sign.json new file mode 100644 index 00000000..44a53c74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:crimson_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:crimson_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_slab.json b/data/generated/V26_2/data/minecraft/recipe/crimson_slab.json new file mode 100644 index 00000000..6bc18ee5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:crimson_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_stairs.json b/data/generated/V26_2/data/minecraft/recipe/crimson_stairs.json new file mode 100644 index 00000000..8ab8c9c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:crimson_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crimson_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/crimson_trapdoor.json new file mode 100644 index 00000000..ab1f1aca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crimson_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:crimson_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:crimson_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/crossbow.json b/data/generated/V26_2/data/minecraft/recipe/crossbow.json new file mode 100644 index 00000000..83b0a1b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/crossbow.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "$": "minecraft:tripwire_hook", + "&": "minecraft:iron_ingot", + "~": "minecraft:string" + }, + "pattern": [ + "#&#", + "~$~", + " # " + ], + "result": { + "id": "minecraft:crossbow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper.json new file mode 100644 index 00000000..5f1f093f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:copper_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json new file mode 100644 index 00000000..1c1e2d5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab.json new file mode 100644 index 00000000..788fef16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b965be60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 8, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..bc8988a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_slab_from_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "count": 2, + "id": "minecraft:cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs.json new file mode 100644 index 00000000..74f87bdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json new file mode 100644 index 00000000..b6f93791 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:copper_block", + "result": { + "count": 4, + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json new file mode 100644 index 00000000..23e6d480 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_copper_stairs_from_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_copper", + "result": { + "id": "minecraft:cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone.json new file mode 100644 index 00000000..793d99a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sandstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..138126bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:cut_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab.json new file mode 100644 index 00000000..e6e90d5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_red_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json new file mode 100644 index 00000000..c6d5b76f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_cut_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_red_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..ae87c3b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone.json new file mode 100644 index 00000000..3a25c26f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sandstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:cut_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json new file mode 100644 index 00000000..95df4348 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:cut_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab.json new file mode 100644 index 00000000..692c74a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:cut_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json new file mode 100644 index 00000000..5b8fc198 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_cut_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cut_sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..b634422d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cut_sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "count": 2, + "id": "minecraft:cut_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_banner.json b/data/generated/V26_2/data/minecraft/recipe/cyan_banner.json new file mode 100644 index 00000000..c98989b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:cyan_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:cyan_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/cyan_banner_duplicate.json new file mode 100644 index 00000000..5d964b24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:cyan_banner", + "result": { + "id": "minecraft:cyan_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_bed.json b/data/generated/V26_2/data/minecraft/recipe/cyan_bed.json new file mode 100644 index 00000000..ea064cb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:cyan_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:cyan_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_bundle.json b/data/generated/V26_2/data/minecraft/recipe/cyan_bundle.json new file mode 100644 index 00000000..ed87c31d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:cyan_dye", + "result": { + "id": "minecraft:cyan_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_candle.json b/data/generated/V26_2/data/minecraft/recipe/cyan_candle.json new file mode 100644 index 00000000..2fe2ee4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:cyan_dye" + ], + "result": { + "id": "minecraft:cyan_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_carpet.json b/data/generated/V26_2/data/minecraft/recipe/cyan_carpet.json new file mode 100644 index 00000000..2797b223 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:cyan_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:cyan_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/cyan_concrete_powder.json new file mode 100644 index 00000000..609f185e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:cyan_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_dye.json b/data/generated/V26_2/data/minecraft/recipe/cyan_dye.json new file mode 100644 index 00000000..1647dd3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "cyan_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:green_dye" + ], + "result": { + "count": 2, + "id": "minecraft:cyan_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json b/data/generated/V26_2/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json new file mode 100644 index 00000000..3ff1acab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_dye_from_pitcher_plant.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "cyan_dye", + "ingredients": [ + "minecraft:pitcher_plant" + ], + "result": { + "count": 2, + "id": "minecraft:cyan_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/cyan_glazed_terracotta.json new file mode 100644 index 00000000..1890ac0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:cyan_terracotta", + "result": { + "id": "minecraft:cyan_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_harness.json b/data/generated/V26_2/data/minecraft/recipe/cyan_harness.json new file mode 100644 index 00000000..763d4561 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:cyan_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:cyan_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/cyan_shulker_box.json new file mode 100644 index 00000000..6a143eb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:cyan_dye", + "result": { + "id": "minecraft:cyan_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass.json new file mode 100644 index 00000000..6274bbfe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane.json new file mode 100644 index 00000000..8cddb045 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:cyan_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:cyan_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..211f34f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/cyan_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/cyan_terracotta.json new file mode 100644 index 00000000..0bb0ce11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/cyan_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:cyan_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:cyan_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_boat.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_boat.json new file mode 100644 index 00000000..fe2ccf87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:dark_oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_button.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_button.json new file mode 100644 index 00000000..339e92f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:dark_oak_planks" + ], + "result": { + "id": "minecraft:dark_oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_chest_boat.json new file mode 100644 index 00000000..63dfb2f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:dark_oak_boat" + ], + "result": { + "id": "minecraft:dark_oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_door.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_door.json new file mode 100644 index 00000000..13090a8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence.json new file mode 100644 index 00000000..872a4e72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:dark_oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence_gate.json new file mode 100644 index 00000000..d7384e93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:dark_oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:dark_oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_hanging_sign.json new file mode 100644 index 00000000..79de52b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_dark_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_planks.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_planks.json new file mode 100644 index 00000000..da387f3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:dark_oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:dark_oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_pressure_plate.json new file mode 100644 index 00000000..464383ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:dark_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_shelf.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_shelf.json new file mode 100644 index 00000000..98a877db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_dark_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_sign.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_sign.json new file mode 100644 index 00000000..7a15bdb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:dark_oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_slab.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_slab.json new file mode 100644 index 00000000..388fde03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_stairs.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_stairs.json new file mode 100644 index 00000000..94049bb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:dark_oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_trapdoor.json new file mode 100644 index 00000000..47358c38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:dark_oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:dark_oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/dark_oak_wood.json new file mode 100644 index 00000000..ba9c3b81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:dark_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:dark_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_prismarine.json b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine.json new file mode 100644 index 00000000..fb976373 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "I": "minecraft:black_dye", + "S": "minecraft:prismarine_shard" + }, + "pattern": [ + "SSS", + "SIS", + "SSS" + ], + "result": { + "id": "minecraft:dark_prismarine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab.json b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab.json new file mode 100644 index 00000000..bccd936c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dark_prismarine" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:dark_prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..254edd3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_slab_from_dark_prismarine_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:dark_prismarine", + "result": { + "count": 2, + "id": "minecraft:dark_prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs.json b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs.json new file mode 100644 index 00000000..31657810 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dark_prismarine" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:dark_prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json new file mode 100644 index 00000000..d5f58e69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dark_prismarine_stairs_from_dark_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:dark_prismarine", + "result": { + "id": "minecraft:dark_prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/daylight_detector.json b/data/generated/V26_2/data/minecraft/recipe/daylight_detector.json new file mode 100644 index 00000000..a6443a9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/daylight_detector.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "G": "minecraft:glass", + "Q": "minecraft:quartz", + "W": "#minecraft:wooden_slabs" + }, + "pattern": [ + "GGG", + "QQQ", + "WWW" + ], + "result": { + "id": "minecraft:daylight_detector" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/decorated_pot.json b/data/generated/V26_2/data/minecraft/recipe/decorated_pot.json new file mode 100644 index 00000000..f9d298ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/decorated_pot.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_decorated_pot", + "back": "#minecraft:decorated_pot_ingredients", + "front": "#minecraft:decorated_pot_ingredients", + "left": "#minecraft:decorated_pot_ingredients", + "result": { + "id": "minecraft:decorated_pot" + }, + "right": "#minecraft:decorated_pot_ingredients" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/decorated_pot_simple.json b/data/generated/V26_2/data/minecraft/recipe/decorated_pot_simple.json new file mode 100644 index 00000000..d19a79f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/decorated_pot_simple.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + " # ", + "# #", + " # " + ], + "result": { + "id": "minecraft:decorated_pot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate.json b/data/generated/V26_2/data/minecraft/recipe/deepslate.json new file mode 100644 index 00000000..29d2877e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab.json new file mode 100644 index 00000000..ee60ee70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..dd4cc679 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..d7a925c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ce9751ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..96c33381 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs.json new file mode 100644 index 00000000..65ee52e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..82dca2c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..ef082c84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ff1d54e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..23d83e9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall.json new file mode 100644 index 00000000..0d5ad3f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..c0f3d864 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..69eb341c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..3f4c2f8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..4def96e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_brick_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks.json new file mode 100644 index 00000000..ad7295f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..3b824031 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json new file mode 100644 index 00000000..9bff7da3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..c65fea37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_bricks_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab.json new file mode 100644 index 00000000..a2871d1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..0974f9cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..793e3644 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..5250dc87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..6b8a69c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ba8a074e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:deepslate_tile_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs.json new file mode 100644 index 00000000..7a463c80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..57c9b6b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..2872719b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..8838fd19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..26139266 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..9e121608 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tile_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall.json new file mode 100644 index 00000000..f9b2eacd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:deepslate_tiles" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..846231e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..74b3263c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..79a1c664 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json new file mode 100644 index 00000000..7f9379ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_deepslate_tiles_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_tiles", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..35ccddb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tile_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tile_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles.json new file mode 100644 index 00000000..fff402ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:deepslate_bricks" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..34369f49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json new file mode 100644 index 00000000..3f580e1e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate_bricks", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json new file mode 100644 index 00000000..b6e3cf31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..824a336c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/deepslate_tiles_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:deepslate_tiles" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/detector_rail.json b/data/generated/V26_2/data/minecraft/recipe/detector_rail.json new file mode 100644 index 00000000..d11ec88a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/detector_rail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stone_pressure_plate", + "R": "minecraft:redstone", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X#X", + "XRX" + ], + "result": { + "count": 6, + "id": "minecraft:detector_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond.json b/data/generated/V26_2/data/minecraft/recipe/diamond.json new file mode 100644 index 00000000..e1e5e42e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:diamond_block" + ], + "result": { + "count": 9, + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_axe.json b/data/generated/V26_2/data/minecraft/recipe/diamond_axe.json new file mode 100644 index 00000000..231d785e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:diamond_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_block.json b/data/generated/V26_2/data/minecraft/recipe/diamond_block.json new file mode 100644 index 00000000..4f30a601 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diamond" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:diamond_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_boots.json b/data/generated/V26_2/data/minecraft/recipe/diamond_boots.json new file mode 100644 index 00000000..c6a8da40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:diamond_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_chestplate.json b/data/generated/V26_2/data/minecraft/recipe/diamond_chestplate.json new file mode 100644 index 00000000..bb3f673b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:diamond_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json b/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json new file mode 100644 index 00000000..108e1f22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_deepslate_diamond_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:deepslate_diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json b/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json new file mode 100644 index 00000000..120677b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_from_blasting_diamond_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json b/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json new file mode 100644 index 00000000..11958adf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_deepslate_diamond_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:deepslate_diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json b/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json new file mode 100644 index 00000000..96799552 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_from_smelting_diamond_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "diamond", + "ingredient": "minecraft:diamond_ore", + "result": { + "id": "minecraft:diamond" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_helmet.json b/data/generated/V26_2/data/minecraft/recipe/diamond_helmet.json new file mode 100644 index 00000000..3d2ed3c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:diamond_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_hoe.json b/data/generated/V26_2/data/minecraft/recipe/diamond_hoe.json new file mode 100644 index 00000000..5af4c677 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:diamond_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_leggings.json b/data/generated/V26_2/data/minecraft/recipe/diamond_leggings.json new file mode 100644 index 00000000..6bccaf97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:diamond" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:diamond_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/diamond_pickaxe.json new file mode 100644 index 00000000..821bb8a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:diamond_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_shovel.json b/data/generated/V26_2/data/minecraft/recipe/diamond_shovel.json new file mode 100644 index 00000000..f9fb4bc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:diamond_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_spear.json b/data/generated/V26_2/data/minecraft/recipe/diamond_spear.json new file mode 100644 index 00000000..7cf21dd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:diamond_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diamond_sword.json b/data/generated/V26_2/data/minecraft/recipe/diamond_sword.json new file mode 100644 index 00000000..046395a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diamond_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:diamond_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:diamond_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite.json b/data/generated/V26_2/data/minecraft/recipe/diorite.json new file mode 100644 index 00000000..104eb5b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "C": "minecraft:cobblestone", + "Q": "minecraft:quartz" + }, + "pattern": [ + "CQ", + "QC" + ], + "result": { + "count": 2, + "id": "minecraft:diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_slab.json b/data/generated/V26_2/data/minecraft/recipe/diorite_slab.json new file mode 100644 index 00000000..b54061da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..f1c9e846 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "count": 2, + "id": "minecraft:diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/diorite_stairs.json new file mode 100644 index 00000000..6c64c2bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..c7c8022a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_wall.json b/data/generated/V26_2/data/minecraft/recipe/diorite_wall.json new file mode 100644 index 00000000..04b685b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diorite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:diorite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json new file mode 100644 index 00000000..c94affbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/diorite_wall_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:diorite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dispenser.json b/data/generated/V26_2/data/minecraft/recipe/dispenser.json new file mode 100644 index 00000000..8d00020e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dispenser.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone", + "X": "minecraft:bow" + }, + "pattern": [ + "###", + "#X#", + "#R#" + ], + "result": { + "id": "minecraft:dispenser" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_ghast.json b/data/generated/V26_2/data/minecraft/recipe/dried_ghast.json new file mode 100644 index 00000000..28ea9c02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_ghast.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "dry_ghast", + "key": { + "#": "minecraft:ghast_tear", + "X": "minecraft:soul_sand" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:dried_ghast" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_kelp.json b/data/generated/V26_2/data/minecraft/recipe/dried_kelp.json new file mode 100644 index 00000000..94432e32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_kelp.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:dried_kelp_block" + ], + "result": { + "count": 9, + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_kelp_block.json b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_block.json new file mode 100644 index 00000000..fc8d3236 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:dried_kelp" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:dried_kelp_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json new file mode 100644 index 00000000..59eb4cb2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_campfire_cooking.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:campfire_cooking", + "category": "food", + "cookingtime": 600, + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smelting.json b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smelting.json new file mode 100644 index 00000000..3d43b76a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smelting.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "food", + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smoking.json b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smoking.json new file mode 100644 index 00000000..7d5e6098 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dried_kelp_from_smoking.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smoking", + "category": "food", + "experience": 0.1, + "ingredient": "minecraft:kelp", + "result": { + "id": "minecraft:dried_kelp" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dripstone_block.json b/data/generated/V26_2/data/minecraft/recipe/dripstone_block.json new file mode 100644 index 00000000..a7a53feb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dripstone_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:pointed_dripstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:dripstone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dropper.json b/data/generated/V26_2/data/minecraft/recipe/dropper.json new file mode 100644 index 00000000..c92b6cd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dropper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "# #", + "#R#" + ], + "result": { + "id": "minecraft:dropper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..37ec94bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:sandstone", + "S": "minecraft:dune_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:dune_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..4abdad1e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dune_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:dune", + "template": "minecraft:dune_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_black_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_black_bed.json new file mode 100644 index 00000000..ea2387d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_black_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed" + ] + ], + "result": { + "id": "minecraft:black_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_black_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_black_carpet.json new file mode 100644 index 00000000..9cb9c37f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_black_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet" + ] + ], + "result": { + "id": "minecraft:black_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_black_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_black_harness.json new file mode 100644 index 00000000..7cc3e063 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_black_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness" + ] + ], + "result": { + "id": "minecraft:black_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_black_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_black_wool.json new file mode 100644 index 00000000..6c5ff9df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_black_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:black_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool" + ] + ], + "result": { + "id": "minecraft:black_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_blue_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_blue_bed.json new file mode 100644 index 00000000..35ea8c2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_blue_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_blue_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_blue_carpet.json new file mode 100644 index 00000000..b902b79c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_blue_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_blue_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_blue_harness.json new file mode 100644 index 00000000..a78da386 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_blue_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_blue_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_blue_wool.json new file mode 100644 index 00000000..318b2ec0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_blue_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:blue_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:blue_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_brown_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_brown_bed.json new file mode 100644 index 00000000..2d426cc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_brown_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:brown_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_brown_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_brown_carpet.json new file mode 100644 index 00000000..a386e039 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_brown_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:brown_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_brown_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_brown_harness.json new file mode 100644 index 00000000..81a34125 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_brown_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:brown_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_brown_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_brown_wool.json new file mode 100644 index 00000000..2ff32177 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_brown_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:brown_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:brown_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_cyan_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_bed.json new file mode 100644 index 00000000..91937f5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:cyan_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_cyan_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_carpet.json new file mode 100644 index 00000000..f2bc5929 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:cyan_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_cyan_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_harness.json new file mode 100644 index 00000000..0c22a99c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:cyan_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_cyan_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_wool.json new file mode 100644 index 00000000..95d3ebf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_cyan_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:cyan_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:cyan_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_gray_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_gray_bed.json new file mode 100644 index 00000000..9e7c7b9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_gray_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_gray_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_gray_carpet.json new file mode 100644 index 00000000..a553182c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_gray_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_gray_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_gray_harness.json new file mode 100644 index 00000000..daa61195 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_gray_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_gray_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_gray_wool.json new file mode 100644 index 00000000..9dd3a4e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_gray_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:gray_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:gray_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_green_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_green_bed.json new file mode 100644 index 00000000..bc0af795 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_green_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:green_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_green_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_green_carpet.json new file mode 100644 index 00000000..7ab79cce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_green_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:green_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_green_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_green_harness.json new file mode 100644 index 00000000..b85ea854 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_green_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:green_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_green_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_green_wool.json new file mode 100644 index 00000000..91314fbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_green_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:green_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:green_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_bed.json new file mode 100644 index 00000000..55c6abf6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:light_blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_carpet.json new file mode 100644 index 00000000..2dc17e6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:light_blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_harness.json new file mode 100644 index 00000000..155dad9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:light_blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_wool.json new file mode 100644 index 00000000..e75403cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_blue_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:light_blue_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:light_blue_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_bed.json new file mode 100644 index 00000000..9ac4ce23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:light_gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_carpet.json new file mode 100644 index 00000000..1ab63518 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:light_gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_harness.json new file mode 100644 index 00000000..39fb9e16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:light_gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_wool.json new file mode 100644 index 00000000..332e9294 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_light_gray_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:light_gray_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:light_gray_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_lime_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_lime_bed.json new file mode 100644 index 00000000..29b104c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_lime_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:lime_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_lime_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_lime_carpet.json new file mode 100644 index 00000000..b5ae8417 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_lime_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:lime_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_lime_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_lime_harness.json new file mode 100644 index 00000000..46d3f0d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_lime_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:lime_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_lime_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_lime_wool.json new file mode 100644 index 00000000..8b0882ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_lime_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:lime_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:lime_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_magenta_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_bed.json new file mode 100644 index 00000000..12b341c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:magenta_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_magenta_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_carpet.json new file mode 100644 index 00000000..488e63fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:magenta_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_magenta_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_harness.json new file mode 100644 index 00000000..d4df06c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:magenta_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_magenta_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_wool.json new file mode 100644 index 00000000..a1543956 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_magenta_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:magenta_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:magenta_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_orange_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_orange_bed.json new file mode 100644 index 00000000..c40e917a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_orange_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:white_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:orange_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_orange_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_orange_carpet.json new file mode 100644 index 00000000..872a8b93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_orange_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:white_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:orange_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_orange_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_orange_harness.json new file mode 100644 index 00000000..8b51ba89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_orange_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:white_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:orange_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_orange_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_orange_wool.json new file mode 100644 index 00000000..a7a9249a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_orange_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:orange_dye", + [ + "minecraft:white_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:orange_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_pink_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_pink_bed.json new file mode 100644 index 00000000..3670f064 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_pink_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:pink_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_pink_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_pink_carpet.json new file mode 100644 index 00000000..b91f9492 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_pink_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:pink_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_pink_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_pink_harness.json new file mode 100644 index 00000000..8ccc933e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_pink_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:pink_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_pink_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_pink_wool.json new file mode 100644 index 00000000..5d7d6f47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_pink_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:pink_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:pink_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_purple_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_purple_bed.json new file mode 100644 index 00000000..2843cb00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_purple_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:purple_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_purple_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_purple_carpet.json new file mode 100644 index 00000000..4ca23e61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_purple_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:purple_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_purple_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_purple_harness.json new file mode 100644 index 00000000..5db19d48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_purple_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:purple_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_purple_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_purple_wool.json new file mode 100644 index 00000000..86f81c46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_purple_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:purple_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:purple_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_red_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_red_bed.json new file mode 100644 index 00000000..d4288f54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_red_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:red_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_red_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_red_carpet.json new file mode 100644 index 00000000..1841deb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_red_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:red_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_red_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_red_harness.json new file mode 100644 index 00000000..76f6dba2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_red_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:red_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_red_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_red_wool.json new file mode 100644 index 00000000..e96943d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_red_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:red_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:red_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_white_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_white_bed.json new file mode 100644 index 00000000..36f35ade --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_white_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:white_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_white_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_white_carpet.json new file mode 100644 index 00000000..9651506b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_white_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:white_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_white_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_white_harness.json new file mode 100644 index 00000000..aa80e38d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_white_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:white_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_white_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_white_wool.json new file mode 100644 index 00000000..ab66d96a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_white_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:white_dye", + [ + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:white_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_yellow_bed.json b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_bed.json new file mode 100644 index 00000000..bd27eebd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_bed.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "bed_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] + ], + "result": { + "id": "minecraft:yellow_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_yellow_carpet.json b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_carpet.json new file mode 100644 index 00000000..234cc25b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_carpet.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "carpet_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] + ], + "result": { + "id": "minecraft:yellow_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_yellow_harness.json b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_harness.json new file mode 100644 index 00000000..490bd542 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_harness.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "group": "harness_dye", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] + ], + "result": { + "id": "minecraft:yellow_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/dye_yellow_wool.json b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_wool.json new file mode 100644 index 00000000..32b090ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/dye_yellow_wool.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "wool", + "ingredients": [ + "minecraft:yellow_dye", + [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] + ], + "result": { + "id": "minecraft:yellow_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald.json b/data/generated/V26_2/data/minecraft/recipe/emerald.json new file mode 100644 index 00000000..7dd070ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:emerald_block" + ], + "result": { + "count": 9, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald_block.json b/data/generated/V26_2/data/minecraft/recipe/emerald_block.json new file mode 100644 index 00000000..29607646 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:emerald" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:emerald_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json b/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json new file mode 100644 index 00000000..08bd6ef8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_deepslate_emerald_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:deepslate_emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json b/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json new file mode 100644 index 00000000..e29ab4de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald_from_blasting_emerald_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json b/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json new file mode 100644 index 00000000..a593c524 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_deepslate_emerald_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:deepslate_emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json b/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json new file mode 100644 index 00000000..ae2c720f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/emerald_from_smelting_emerald_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "emerald", + "ingredient": "minecraft:emerald_ore", + "result": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/enchanting_table.json b/data/generated/V26_2/data/minecraft/recipe/enchanting_table.json new file mode 100644 index 00000000..86844824 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/enchanting_table.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:obsidian", + "B": "minecraft:book", + "D": "minecraft:diamond" + }, + "pattern": [ + " B ", + "D#D", + "###" + ], + "result": { + "id": "minecraft:enchanting_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_crystal.json b/data/generated/V26_2/data/minecraft/recipe/end_crystal.json new file mode 100644 index 00000000..43e84542 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_crystal.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "E": "minecraft:ender_eye", + "G": "minecraft:glass", + "T": "minecraft:ghast_tear" + }, + "pattern": [ + "GGG", + "GEG", + "GTG" + ], + "result": { + "id": "minecraft:end_crystal" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_rod.json b/data/generated/V26_2/data/minecraft/recipe/end_rod.json new file mode 100644 index 00000000..11a06b7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_rod.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:popped_chorus_fruit", + "/": "minecraft:blaze_rod" + }, + "pattern": [ + "/", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:end_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab.json new file mode 100644 index 00000000..e34cc9a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..c2b8d7eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json new file mode 100644 index 00000000..ac14a317 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_slab_from_end_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "count": 2, + "id": "minecraft:end_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs.json new file mode 100644 index 00000000..ca477374 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..df609144 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json new file mode 100644 index 00000000..83cb309f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_stairs_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall.json new file mode 100644 index 00000000..a1fa715d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:end_stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json new file mode 100644 index 00000000..4516669a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone_bricks", + "result": { + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json new file mode 100644 index 00000000..96fc2438 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_brick_wall_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks.json new file mode 100644 index 00000000..91c83005 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:end_stone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:end_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json new file mode 100644 index 00000000..8cf6557e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/end_stone_bricks_from_end_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:end_stone", + "result": { + "id": "minecraft:end_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/ender_chest.json b/data/generated/V26_2/data/minecraft/recipe/ender_chest.json new file mode 100644 index 00000000..f1296526 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/ender_chest.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:obsidian", + "E": "minecraft:ender_eye" + }, + "pattern": [ + "###", + "#E#", + "###" + ], + "result": { + "id": "minecraft:ender_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/ender_eye.json b/data/generated/V26_2/data/minecraft/recipe/ender_eye.json new file mode 100644 index 00000000..bb35d7db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/ender_eye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:ender_pearl", + "minecraft:blaze_powder" + ], + "result": { + "id": "minecraft:ender_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper.json new file mode 100644 index 00000000..6cede3d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..6c5e9236 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e4cb96a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_chiseled_copper_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "id": "minecraft:exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_bulb.json new file mode 100644 index 00000000..ecd9033c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "exposed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:exposed_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate.json new file mode 100644 index 00000000..089d7a2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "exposed_copper_grate", + "key": { + "M": "minecraft:exposed_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..bb6b55e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_copper_grate_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper.json new file mode 100644 index 00000000..df84550f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..8f5084fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab.json new file mode 100644 index 00000000..34e6c7fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..640c73f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 8, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..c1980128 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_slab_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..7e775ef5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:exposed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json new file mode 100644 index 00000000..8ca343e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_copper", + "result": { + "count": 4, + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..4696ac0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/exposed_cut_copper_stairs_from_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:exposed_cut_copper", + "result": { + "id": "minecraft:exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..ed36ee18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:end_stone", + "S": "minecraft:eye_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:eye_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..2a770833 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/eye_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:eye", + "template": "minecraft:eye_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/fermented_spider_eye.json b/data/generated/V26_2/data/minecraft/recipe/fermented_spider_eye.json new file mode 100644 index 00000000..9ea5986d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/fermented_spider_eye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:spider_eye", + "minecraft:brown_mushroom", + "minecraft:sugar" + ], + "result": { + "id": "minecraft:fermented_spider_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/field_masoned_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/field_masoned_banner_pattern.json new file mode 100644 index 00000000..65960aad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/field_masoned_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:bricks" + ], + "result": { + "id": "minecraft:field_masoned_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/fire_charge.json b/data/generated/V26_2/data/minecraft/recipe/fire_charge.json new file mode 100644 index 00000000..9ad5df42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/fire_charge.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:gunpowder", + "minecraft:blaze_powder", + [ + "minecraft:coal", + "minecraft:charcoal" + ] + ], + "result": { + "count": 3, + "id": "minecraft:fire_charge" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/firework_rocket.json b/data/generated/V26_2/data/minecraft/recipe/firework_rocket.json new file mode 100644 index 00000000..c080742d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/firework_rocket.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_special_firework_rocket", + "fuel": "minecraft:gunpowder", + "result": { + "count": 3, + "id": "minecraft:firework_rocket" + }, + "shell": "minecraft:paper", + "star": "minecraft:firework_star" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/firework_rocket_simple.json b/data/generated/V26_2/data/minecraft/recipe/firework_rocket_simple.json new file mode 100644 index 00000000..b5b85814 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/firework_rocket_simple.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:gunpowder", + "minecraft:paper" + ], + "result": { + "count": 3, + "id": "minecraft:firework_rocket" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/firework_star.json b/data/generated/V26_2/data/minecraft/recipe/firework_star.json new file mode 100644 index 00000000..12950540 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/firework_star.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_special_firework_star", + "dye": "#minecraft:dyes", + "fuel": "minecraft:gunpowder", + "result": { + "id": "minecraft:firework_star" + }, + "shapes": { + "burst": "minecraft:feather", + "creeper": "#minecraft:skulls", + "large_ball": "minecraft:fire_charge", + "star": "minecraft:gold_nugget" + }, + "trail": "minecraft:diamond", + "twinkle": "minecraft:glowstone_dust" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/firework_star_fade.json b/data/generated/V26_2/data/minecraft/recipe/firework_star_fade.json new file mode 100644 index 00000000..ed2be2a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/firework_star_fade.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_firework_star_fade", + "dye": "#minecraft:dyes", + "result": { + "id": "minecraft:firework_star" + }, + "target": "minecraft:firework_star" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/fishing_rod.json b/data/generated/V26_2/data/minecraft/recipe/fishing_rod.json new file mode 100644 index 00000000..58d5d3b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/fishing_rod.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "minecraft:string" + }, + "pattern": [ + " #", + " #X", + "# X" + ], + "result": { + "id": "minecraft:fishing_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/fletching_table.json b/data/generated/V26_2/data/minecraft/recipe/fletching_table.json new file mode 100644 index 00000000..5abbc687 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/fletching_table.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:flint" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:fletching_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/flint_and_steel.json b/data/generated/V26_2/data/minecraft/recipe/flint_and_steel.json new file mode 100644 index 00000000..d16f2e7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/flint_and_steel.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "equipment", + "ingredients": [ + "minecraft:iron_ingot", + "minecraft:flint" + ], + "result": { + "id": "minecraft:flint_and_steel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..dc4eeb3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:breeze_rod", + "S": "minecraft:flow_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:flow_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9dffe801 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/flow_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:flow", + "template": "minecraft:flow_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/flower_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/flower_banner_pattern.json new file mode 100644 index 00000000..58159c46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/flower_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:oxeye_daisy" + ], + "result": { + "id": "minecraft:flower_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/flower_pot.json b/data/generated/V26_2/data/minecraft/recipe/flower_pot.json new file mode 100644 index 00000000..a4e736ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/flower_pot.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:brick" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "id": "minecraft:flower_pot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/furnace.json b/data/generated/V26_2/data/minecraft/recipe/furnace.json new file mode 100644 index 00000000..eec92a6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/furnace.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:stone_crafting_materials" + }, + "pattern": [ + "###", + "# #", + "###" + ], + "result": { + "id": "minecraft:furnace" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/furnace_minecart.json b/data/generated/V26_2/data/minecraft/recipe/furnace_minecart.json new file mode 100644 index 00000000..f7d79846 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/furnace_minecart.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:furnace", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:furnace_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glass.json b/data/generated/V26_2/data/minecraft/recipe/glass.json new file mode 100644 index 00000000..82082fa2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glass.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "#minecraft:smelts_to_glass", + "result": { + "id": "minecraft:glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glass_bottle.json b/data/generated/V26_2/data/minecraft/recipe/glass_bottle.json new file mode 100644 index 00000000..8af27bab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glass_bottle.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:glass" + }, + "pattern": [ + "# #", + " # " + ], + "result": { + "count": 3, + "id": "minecraft:glass_bottle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/glass_pane.json new file mode 100644 index 00000000..f7cece19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glass_pane.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glistering_melon_slice.json b/data/generated/V26_2/data/minecraft/recipe/glistering_melon_slice.json new file mode 100644 index 00000000..1f3ff70d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glistering_melon_slice.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:gold_nugget", + "X": "minecraft:melon_slice" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:glistering_melon_slice" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glow_item_frame.json b/data/generated/V26_2/data/minecraft/recipe/glow_item_frame.json new file mode 100644 index 00000000..e02f8f13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glow_item_frame.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:item_frame", + "minecraft:glow_ink_sac" + ], + "result": { + "id": "minecraft:glow_item_frame" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/glowstone.json b/data/generated/V26_2/data/minecraft/recipe/glowstone.json new file mode 100644 index 00000000..b3060250 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/glowstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:glowstone_dust" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:glowstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_block.json b/data/generated/V26_2/data/minecraft/recipe/gold_block.json new file mode 100644 index 00000000..11557403 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:gold_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:gold_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json new file mode 100644 index 00000000..9bace98e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_deepslate_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:deepslate_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json new file mode 100644 index 00000000..4a5ac19f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json new file mode 100644 index 00000000..8f9e7f4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_nether_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:nether_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json new file mode 100644 index 00000000..0812b801 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_blasting_raw_gold.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:raw_gold", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_gold_block.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_gold_block.json new file mode 100644 index 00000000..6f6c7a74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_gold_block.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "gold_ingot", + "ingredients": [ + "minecraft:gold_block" + ], + "result": { + "count": 9, + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_nuggets.json new file mode 100644 index 00000000..b49a434a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_nuggets.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "gold_ingot", + "key": { + "#": "minecraft:gold_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json new file mode 100644 index 00000000..4661c223 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_deepslate_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:deepslate_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json new file mode 100644 index 00000000..eed93f9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json new file mode 100644 index 00000000..ebc98e95 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_nether_gold_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:nether_gold_ore", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json new file mode 100644 index 00000000..49d0c298 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_ingot_from_smelting_raw_gold.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "group": "gold_ingot", + "ingredient": "minecraft:raw_gold", + "result": { + "id": "minecraft:gold_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_nugget.json b/data/generated/V26_2/data/minecraft/recipe/gold_nugget.json new file mode 100644 index 00000000..2b82f16b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_nugget.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:gold_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_blasting.json new file mode 100644 index 00000000..30a3a95c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_blasting.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:blasting", + "experience": 0.1, + "ingredient": [ + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor" + ], + "result": { + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_smelting.json new file mode 100644 index 00000000..0767f8b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gold_nugget_from_smelting.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": [ + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor" + ], + "result": { + "id": "minecraft:gold_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_apple.json b/data/generated/V26_2/data/minecraft/recipe/golden_apple.json new file mode 100644 index 00000000..a4c71cc0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_apple.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:gold_ingot", + "X": "minecraft:apple" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:golden_apple" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_axe.json b/data/generated/V26_2/data/minecraft/recipe/golden_axe.json new file mode 100644 index 00000000..f4818221 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:golden_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_boots.json b/data/generated/V26_2/data/minecraft/recipe/golden_boots.json new file mode 100644 index 00000000..6cf74d58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:golden_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_carrot.json b/data/generated/V26_2/data/minecraft/recipe/golden_carrot.json new file mode 100644 index 00000000..9cf61970 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_carrot.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:gold_nugget", + "X": "minecraft:carrot" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:golden_carrot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_chestplate.json b/data/generated/V26_2/data/minecraft/recipe/golden_chestplate.json new file mode 100644 index 00000000..1291fe3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:golden_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_dandelion.json b/data/generated/V26_2/data/minecraft/recipe/golden_dandelion.json new file mode 100644 index 00000000..36e8e9ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_dandelion.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:gold_nugget", + "I": "minecraft:dandelion" + }, + "pattern": [ + "###", + "#I#", + "###" + ], + "result": { + "id": "minecraft:golden_dandelion" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_helmet.json b/data/generated/V26_2/data/minecraft/recipe/golden_helmet.json new file mode 100644 index 00000000..0f4a12d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:golden_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_hoe.json b/data/generated/V26_2/data/minecraft/recipe/golden_hoe.json new file mode 100644 index 00000000..df5b5a3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:golden_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_leggings.json b/data/generated/V26_2/data/minecraft/recipe/golden_leggings.json new file mode 100644 index 00000000..3ebe8656 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:golden_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/golden_pickaxe.json new file mode 100644 index 00000000..057695d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:golden_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_shovel.json b/data/generated/V26_2/data/minecraft/recipe/golden_shovel.json new file mode 100644 index 00000000..5c609805 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:golden_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_spear.json b/data/generated/V26_2/data/minecraft/recipe/golden_spear.json new file mode 100644 index 00000000..d8d56ffb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:golden_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/golden_sword.json b/data/generated/V26_2/data/minecraft/recipe/golden_sword.json new file mode 100644 index 00000000..9792d452 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/golden_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:gold_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:golden_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite.json b/data/generated/V26_2/data/minecraft/recipe/granite.json new file mode 100644 index 00000000..fae38363 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:diorite", + "minecraft:quartz" + ], + "result": { + "id": "minecraft:granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_slab.json b/data/generated/V26_2/data/minecraft/recipe/granite_slab.json new file mode 100644 index 00000000..b37f8d5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..5d67cee5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_slab_from_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "count": 2, + "id": "minecraft:granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/granite_stairs.json new file mode 100644 index 00000000..3d29b6f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..3ee2400d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_wall.json b/data/generated/V26_2/data/minecraft/recipe/granite_wall.json new file mode 100644 index 00000000..4068cd75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:granite" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:granite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json new file mode 100644 index 00000000..bf3cb20c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/granite_wall_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:granite_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_banner.json b/data/generated/V26_2/data/minecraft/recipe/gray_banner.json new file mode 100644 index 00000000..6285962d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:gray_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/gray_banner_duplicate.json new file mode 100644 index 00000000..6efe4bae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:gray_banner", + "result": { + "id": "minecraft:gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_bed.json b/data/generated/V26_2/data/minecraft/recipe/gray_bed.json new file mode 100644 index 00000000..7a3a4e3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:gray_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_bundle.json b/data/generated/V26_2/data/minecraft/recipe/gray_bundle.json new file mode 100644 index 00000000..f988d547 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:gray_dye", + "result": { + "id": "minecraft:gray_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_candle.json b/data/generated/V26_2/data/minecraft/recipe/gray_candle.json new file mode 100644 index 00000000..9c2670fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:gray_dye" + ], + "result": { + "id": "minecraft:gray_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_carpet.json b/data/generated/V26_2/data/minecraft/recipe/gray_carpet.json new file mode 100644 index 00000000..968b4df4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:gray_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/gray_concrete_powder.json new file mode 100644 index 00000000..ae886e7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:gray_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:gray_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_dye.json b/data/generated/V26_2/data/minecraft/recipe/gray_dye.json new file mode 100644 index 00000000..3f090dd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "gray_dye", + "ingredients": [ + "minecraft:black_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json new file mode 100644 index 00000000..58d3b836 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_dye_from_closed_eyeblossom.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "gray_dye", + "ingredients": [ + "minecraft:closed_eyeblossom" + ], + "result": { + "id": "minecraft:gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/gray_glazed_terracotta.json new file mode 100644 index 00000000..df4b8c3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:gray_terracotta", + "result": { + "id": "minecraft:gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_harness.json b/data/generated/V26_2/data/minecraft/recipe/gray_harness.json new file mode 100644 index 00000000..de848faa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:gray_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/gray_shulker_box.json new file mode 100644 index 00000000..64c82fe2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:gray_dye", + "result": { + "id": "minecraft:gray_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass.json new file mode 100644 index 00000000..7246f264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane.json new file mode 100644 index 00000000..ef4f3136 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:gray_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..89283933 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/gray_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/gray_terracotta.json new file mode 100644 index 00000000..2662e238 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:gray_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_banner.json b/data/generated/V26_2/data/minecraft/recipe/green_banner.json new file mode 100644 index 00000000..d0ea729b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:green_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:green_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/green_banner_duplicate.json new file mode 100644 index 00000000..7e48a949 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:green_banner", + "result": { + "id": "minecraft:green_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_bed.json b/data/generated/V26_2/data/minecraft/recipe/green_bed.json new file mode 100644 index 00000000..c1da6c80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:green_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:green_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_bundle.json b/data/generated/V26_2/data/minecraft/recipe/green_bundle.json new file mode 100644 index 00000000..0872554a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:green_dye", + "result": { + "id": "minecraft:green_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_candle.json b/data/generated/V26_2/data/minecraft/recipe/green_candle.json new file mode 100644 index 00000000..5188a872 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:green_dye" + ], + "result": { + "id": "minecraft:green_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_carpet.json b/data/generated/V26_2/data/minecraft/recipe/green_carpet.json new file mode 100644 index 00000000..3e870497 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:green_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:green_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/green_concrete_powder.json new file mode 100644 index 00000000..ee3d8f2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:green_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:green_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_dye.json b/data/generated/V26_2/data/minecraft/recipe/green_dye.json new file mode 100644 index 00000000..13ea4706 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_dye.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 1.0, + "ingredient": "minecraft:cactus", + "result": { + "id": "minecraft:green_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/green_glazed_terracotta.json new file mode 100644 index 00000000..db0bcbd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:green_terracotta", + "result": { + "id": "minecraft:green_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_harness.json b/data/generated/V26_2/data/minecraft/recipe/green_harness.json new file mode 100644 index 00000000..26480033 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:green_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:green_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/green_shulker_box.json new file mode 100644 index 00000000..2519fb9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:green_dye", + "result": { + "id": "minecraft:green_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass.json new file mode 100644 index 00000000..ef6b87ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane.json new file mode 100644 index 00000000..200e23f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:green_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:green_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..2169a871 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/green_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/green_terracotta.json new file mode 100644 index 00000000..8864bbed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/green_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:green_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:green_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/grindstone.json b/data/generated/V26_2/data/minecraft/recipe/grindstone.json new file mode 100644 index 00000000..2d460e61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/grindstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "-": "minecraft:stone_slab", + "I": "minecraft:stick" + }, + "pattern": [ + "I-I", + "# #" + ], + "result": { + "id": "minecraft:grindstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/hay_block.json b/data/generated/V26_2/data/minecraft/recipe/hay_block.json new file mode 100644 index 00000000..553fbf8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/hay_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat", + "minecraft:wheat" + ], + "result": { + "id": "minecraft:hay_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/heavy_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..0d1ba9de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/heavy_weighted_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:heavy_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/honey_block.json b/data/generated/V26_2/data/minecraft/recipe/honey_block.json new file mode 100644 index 00000000..7f148521 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/honey_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:honey_bottle" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:honey_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/honey_bottle.json b/data/generated/V26_2/data/minecraft/recipe/honey_bottle.json new file mode 100644 index 00000000..1de5487e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/honey_bottle.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:honey_block", + "minecraft:glass_bottle", + "minecraft:glass_bottle", + "minecraft:glass_bottle", + "minecraft:glass_bottle" + ], + "result": { + "count": 4, + "id": "minecraft:honey_bottle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/honeycomb_block.json b/data/generated/V26_2/data/minecraft/recipe/honeycomb_block.json new file mode 100644 index 00000000..570261d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/honeycomb_block.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:honeycomb" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:honeycomb_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/hopper.json b/data/generated/V26_2/data/minecraft/recipe/hopper.json new file mode 100644 index 00000000..83bea364 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/hopper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "C": "minecraft:chest", + "I": "minecraft:iron_ingot" + }, + "pattern": [ + "I I", + "ICI", + " I " + ], + "result": { + "id": "minecraft:hopper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/hopper_minecart.json b/data/generated/V26_2/data/minecraft/recipe/hopper_minecart.json new file mode 100644 index 00000000..c38e58d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/hopper_minecart.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:hopper", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:hopper_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..ba6b09dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:host_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:host_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..b1933cfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/host_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:host", + "template": "minecraft:host_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_axe.json b/data/generated/V26_2/data/minecraft/recipe/iron_axe.json new file mode 100644 index 00000000..34270c7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:iron_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_bars.json b/data/generated/V26_2/data/minecraft/recipe/iron_bars.json new file mode 100644 index 00000000..7db00a2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_bars.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:iron_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_block.json b/data/generated/V26_2/data/minecraft/recipe/iron_block.json new file mode 100644 index 00000000..dce7baad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:iron_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_boots.json b/data/generated/V26_2/data/minecraft/recipe/iron_boots.json new file mode 100644 index 00000000..f54c5bd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:iron_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_chain.json b/data/generated/V26_2/data/minecraft/recipe/iron_chain.json new file mode 100644 index 00000000..11b9401a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_chain.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "I": "minecraft:iron_ingot", + "N": "minecraft:iron_nugget" + }, + "pattern": [ + "N", + "I", + "N" + ], + "result": { + "id": "minecraft:iron_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_chestplate.json b/data/generated/V26_2/data/minecraft/recipe/iron_chestplate.json new file mode 100644 index 00000000..eba5a1b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:iron_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_door.json b/data/generated/V26_2/data/minecraft/recipe/iron_door.json new file mode 100644 index 00000000..e7abab48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_door.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:iron_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_helmet.json b/data/generated/V26_2/data/minecraft/recipe/iron_helmet.json new file mode 100644 index 00000000..1a557a24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:iron_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_hoe.json b/data/generated/V26_2/data/minecraft/recipe/iron_hoe.json new file mode 100644 index 00000000..3240ebe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:iron_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json new file mode 100644 index 00000000..eaed83af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_deepslate_iron_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:deepslate_iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json new file mode 100644 index 00000000..fb93ace1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_iron_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json new file mode 100644 index 00000000..1c33d272 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_blasting_raw_iron.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:raw_iron", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_iron_block.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_iron_block.json new file mode 100644 index 00000000..0fe7d285 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_iron_block.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "iron_ingot", + "ingredients": [ + "minecraft:iron_block" + ], + "result": { + "count": 9, + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_nuggets.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_nuggets.json new file mode 100644 index 00000000..904f7f90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_nuggets.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "iron_ingot", + "key": { + "#": "minecraft:iron_nugget" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json new file mode 100644 index 00000000..5b4a9115 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_deepslate_iron_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:deepslate_iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json new file mode 100644 index 00000000..185c9971 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_iron_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:iron_ore", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json new file mode 100644 index 00000000..653c9fb8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_ingot_from_smelting_raw_iron.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.7, + "group": "iron_ingot", + "ingredient": "minecraft:raw_iron", + "result": { + "id": "minecraft:iron_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_leggings.json b/data/generated/V26_2/data/minecraft/recipe/iron_leggings.json new file mode 100644 index 00000000..5c701065 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:iron_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_nugget.json b/data/generated/V26_2/data/minecraft/recipe/iron_nugget.json new file mode 100644 index 00000000..9f263b2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_nugget.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:iron_ingot" + ], + "result": { + "count": 9, + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_blasting.json b/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_blasting.json new file mode 100644 index 00000000..94687b8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_blasting.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:blasting", + "experience": 0.1, + "ingredient": [ + "minecraft:iron_pickaxe", + "minecraft:iron_shovel", + "minecraft:iron_axe", + "minecraft:iron_hoe", + "minecraft:iron_sword", + "minecraft:iron_spear", + "minecraft:iron_helmet", + "minecraft:iron_chestplate", + "minecraft:iron_leggings", + "minecraft:iron_boots", + "minecraft:iron_horse_armor", + "minecraft:iron_nautilus_armor", + "minecraft:chainmail_helmet", + "minecraft:chainmail_chestplate", + "minecraft:chainmail_leggings", + "minecraft:chainmail_boots" + ], + "result": { + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_smelting.json b/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_smelting.json new file mode 100644 index 00000000..2a703f45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_nugget_from_smelting.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": [ + "minecraft:iron_pickaxe", + "minecraft:iron_shovel", + "minecraft:iron_axe", + "minecraft:iron_hoe", + "minecraft:iron_sword", + "minecraft:iron_spear", + "minecraft:iron_helmet", + "minecraft:iron_chestplate", + "minecraft:iron_leggings", + "minecraft:iron_boots", + "minecraft:iron_horse_armor", + "minecraft:chainmail_helmet", + "minecraft:chainmail_chestplate", + "minecraft:chainmail_leggings", + "minecraft:chainmail_boots", + "minecraft:iron_nautilus_armor" + ], + "result": { + "id": "minecraft:iron_nugget" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/iron_pickaxe.json new file mode 100644 index 00000000..206d8944 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:iron_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_shovel.json b/data/generated/V26_2/data/minecraft/recipe/iron_shovel.json new file mode 100644 index 00000000..1a7b708b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:iron_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_spear.json b/data/generated/V26_2/data/minecraft/recipe/iron_spear.json new file mode 100644 index 00000000..75ab4154 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:iron_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_sword.json b/data/generated/V26_2/data/minecraft/recipe/iron_sword.json new file mode 100644 index 00000000..09970dfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:iron_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:iron_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/iron_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/iron_trapdoor.json new file mode 100644 index 00000000..657df689 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/iron_trapdoor.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:iron_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/item_frame.json b/data/generated/V26_2/data/minecraft/recipe/item_frame.json new file mode 100644 index 00000000..0bbde38f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/item_frame.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "X": "minecraft:leather" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:item_frame" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jack_o_lantern.json b/data/generated/V26_2/data/minecraft/recipe/jack_o_lantern.json new file mode 100644 index 00000000..c3e165aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jack_o_lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "A": "minecraft:carved_pumpkin", + "B": "minecraft:torch" + }, + "pattern": [ + "A", + "B" + ], + "result": { + "id": "minecraft:jack_o_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jukebox.json b/data/generated/V26_2/data/minecraft/recipe/jukebox.json new file mode 100644 index 00000000..01d4cb12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jukebox.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:diamond" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:jukebox" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_boat.json b/data/generated/V26_2/data/minecraft/recipe/jungle_boat.json new file mode 100644 index 00000000..d9fa4761 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:jungle_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_button.json b/data/generated/V26_2/data/minecraft/recipe/jungle_button.json new file mode 100644 index 00000000..c7f247dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:jungle_planks" + ], + "result": { + "id": "minecraft:jungle_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/jungle_chest_boat.json new file mode 100644 index 00000000..5c3d8ea3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:jungle_boat" + ], + "result": { + "id": "minecraft:jungle_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_door.json b/data/generated/V26_2/data/minecraft/recipe/jungle_door.json new file mode 100644 index 00000000..0a989a29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_fence.json b/data/generated/V26_2/data/minecraft/recipe/jungle_fence.json new file mode 100644 index 00000000..24282153 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:jungle_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/jungle_fence_gate.json new file mode 100644 index 00000000..b02bed76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:jungle_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:jungle_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/jungle_hanging_sign.json new file mode 100644 index 00000000..66c8f14f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_jungle_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_planks.json b/data/generated/V26_2/data/minecraft/recipe/jungle_planks.json new file mode 100644 index 00000000..a5ced331 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:jungle_logs" + ], + "result": { + "count": 4, + "id": "minecraft:jungle_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/jungle_pressure_plate.json new file mode 100644 index 00000000..3d1c29a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:jungle_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_shelf.json b/data/generated/V26_2/data/minecraft/recipe/jungle_shelf.json new file mode 100644 index 00000000..b0b8c692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_jungle_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_sign.json b/data/generated/V26_2/data/minecraft/recipe/jungle_sign.json new file mode 100644 index 00000000..e925b81a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:jungle_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:jungle_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_slab.json b/data/generated/V26_2/data/minecraft/recipe/jungle_slab.json new file mode 100644 index 00000000..cd6ace80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:jungle_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_stairs.json b/data/generated/V26_2/data/minecraft/recipe/jungle_stairs.json new file mode 100644 index 00000000..194f3e98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:jungle_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/jungle_trapdoor.json new file mode 100644 index 00000000..f63d5277 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:jungle_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:jungle_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/jungle_wood.json b/data/generated/V26_2/data/minecraft/recipe/jungle_wood.json new file mode 100644 index 00000000..699c943f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/jungle_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:jungle_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:jungle_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/ladder.json b/data/generated/V26_2/data/minecraft/recipe/ladder.json new file mode 100644 index 00000000..5a9b31d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/ladder.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick" + }, + "pattern": [ + "# #", + "###", + "# #" + ], + "result": { + "count": 3, + "id": "minecraft:ladder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lantern.json b/data/generated/V26_2/data/minecraft/recipe/lantern.json new file mode 100644 index 00000000..66646825 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:torch", + "X": "minecraft:iron_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_block.json b/data/generated/V26_2/data/minecraft/recipe/lapis_block.json new file mode 100644 index 00000000..78d1359f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:lapis_lazuli" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:lapis_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli.json b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli.json new file mode 100644 index 00000000..3d6425fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:lapis_block" + ], + "result": { + "count": 9, + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json new file mode 100644 index 00000000..b45fd582 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_deepslate_lapis_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:deepslate_lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json new file mode 100644 index 00000000..b93a901d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_blasting_lapis_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:blasting", + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json new file mode 100644 index 00000000..904cd906 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_deepslate_lapis_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:deepslate_lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json new file mode 100644 index 00000000..5a17dcc2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lapis_lazuli_from_smelting_lapis_ore.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "experience": 0.2, + "group": "lapis_lazuli", + "ingredient": "minecraft:lapis_ore", + "result": { + "id": "minecraft:lapis_lazuli" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lead.json b/data/generated/V26_2/data/minecraft/recipe/lead.json new file mode 100644 index 00000000..be3bcf9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lead.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "~": "minecraft:string" + }, + "pattern": [ + "~~ ", + "~~ ", + " ~" + ], + "result": { + "count": 2, + "id": "minecraft:lead" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leaf_litter.json b/data/generated/V26_2/data/minecraft/recipe/leaf_litter.json new file mode 100644 index 00000000..6f5a77de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leaf_litter.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "#minecraft:leaves", + "result": { + "id": "minecraft:leaf_litter" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather.json b/data/generated/V26_2/data/minecraft/recipe/leather.json new file mode 100644 index 00000000..c48dbf12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:rabbit_hide" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:leather" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_boots.json b/data/generated/V26_2/data/minecraft/recipe/leather_boots.json new file mode 100644 index 00000000..8ac379c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_boots.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "X X" + ], + "result": { + "id": "minecraft:leather_boots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_boots_dyed.json b/data/generated/V26_2/data/minecraft/recipe/leather_boots_dyed.json new file mode 100644 index 00000000..eee03775 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_boots_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_boots" + }, + "target": "minecraft:leather_boots" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_chestplate.json b/data/generated/V26_2/data/minecraft/recipe/leather_chestplate.json new file mode 100644 index 00000000..4ccbabbc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_chestplate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "XXX", + "XXX" + ], + "result": { + "id": "minecraft:leather_chestplate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_chestplate_dyed.json b/data/generated/V26_2/data/minecraft/recipe/leather_chestplate_dyed.json new file mode 100644 index 00000000..7b6876c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_chestplate_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_chestplate" + }, + "target": "minecraft:leather_chestplate" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_helmet.json b/data/generated/V26_2/data/minecraft/recipe/leather_helmet.json new file mode 100644 index 00000000..7a239f13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:leather_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_helmet_dyed.json b/data/generated/V26_2/data/minecraft/recipe/leather_helmet_dyed.json new file mode 100644 index 00000000..d57408b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_helmet_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_helmet" + }, + "target": "minecraft:leather_helmet" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor.json b/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor.json new file mode 100644 index 00000000..67720ad4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "X X", + "XXX", + "X X" + ], + "result": { + "id": "minecraft:leather_horse_armor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor_dyed.json b/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor_dyed.json new file mode 100644 index 00000000..3a38c640 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_horse_armor_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_horse_armor" + }, + "target": "minecraft:leather_horse_armor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_leggings.json b/data/generated/V26_2/data/minecraft/recipe/leather_leggings.json new file mode 100644 index 00000000..cdccaa4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_leggings.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:leather" + }, + "pattern": [ + "XXX", + "X X", + "X X" + ], + "result": { + "id": "minecraft:leather_leggings" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/leather_leggings_dyed.json b/data/generated/V26_2/data/minecraft/recipe/leather_leggings_dyed.json new file mode 100644 index 00000000..b7f3c36d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/leather_leggings_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:leather_leggings" + }, + "target": "minecraft:leather_leggings" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lectern.json b/data/generated/V26_2/data/minecraft/recipe/lectern.json new file mode 100644 index 00000000..d1630977 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lectern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "B": "minecraft:bookshelf", + "S": "#minecraft:wooden_slabs" + }, + "pattern": [ + "SSS", + " B ", + " S " + ], + "result": { + "id": "minecraft:lectern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lever.json b/data/generated/V26_2/data/minecraft/recipe/lever.json new file mode 100644 index 00000000..e633b640 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lever.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "X": "minecraft:stick" + }, + "pattern": [ + "X", + "#" + ], + "result": { + "id": "minecraft:lever" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_banner.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_banner.json new file mode 100644 index 00000000..e98d198b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:light_blue_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:light_blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_banner_duplicate.json new file mode 100644 index 00000000..61154210 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:light_blue_banner", + "result": { + "id": "minecraft:light_blue_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_bed.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_bed.json new file mode 100644 index 00000000..c0aa7fb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:light_blue_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:light_blue_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_bundle.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_bundle.json new file mode 100644 index 00000000..67e762c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:light_blue_dye", + "result": { + "id": "minecraft:light_blue_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_candle.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_candle.json new file mode 100644 index 00000000..35609d02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:light_blue_dye" + ], + "result": { + "id": "minecraft:light_blue_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_carpet.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_carpet.json new file mode 100644 index 00000000..a6d75190 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:light_blue_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:light_blue_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_concrete_powder.json new file mode 100644 index 00000000..f3b8aa64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:light_blue_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json new file mode 100644 index 00000000..d3a2613a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_orchid.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_blue_dye", + "ingredients": [ + "minecraft:blue_orchid" + ], + "result": { + "id": "minecraft:light_blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json new file mode 100644 index 00000000..ef171e44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_dye_from_blue_white_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_blue_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:light_blue_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..7f1f23b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:light_blue_terracotta", + "result": { + "id": "minecraft:light_blue_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_harness.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_harness.json new file mode 100644 index 00000000..f33ae01f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:light_blue_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:light_blue_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_shulker_box.json new file mode 100644 index 00000000..b3f13871 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:light_blue_dye", + "result": { + "id": "minecraft:light_blue_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass.json new file mode 100644 index 00000000..a657c4e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..f354984f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:light_blue_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:light_blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..4802d5df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_blue_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/light_blue_terracotta.json new file mode 100644 index 00000000..2254c062 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:light_blue_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_blue_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_banner.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_banner.json new file mode 100644 index 00000000..f3137745 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:light_gray_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:light_gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_banner_duplicate.json new file mode 100644 index 00000000..be35de37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:light_gray_banner", + "result": { + "id": "minecraft:light_gray_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_bed.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_bed.json new file mode 100644 index 00000000..1d18a7cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:light_gray_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:light_gray_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_bundle.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_bundle.json new file mode 100644 index 00000000..7f4f6585 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:light_gray_dye", + "result": { + "id": "minecraft:light_gray_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_candle.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_candle.json new file mode 100644 index 00000000..ca69f063 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:light_gray_dye" + ], + "result": { + "id": "minecraft:light_gray_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_carpet.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_carpet.json new file mode 100644 index 00000000..6368301a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:light_gray_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:light_gray_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_concrete_powder.json new file mode 100644 index 00000000..3af569d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:light_gray_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json new file mode 100644 index 00000000..2afa29ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_azure_bluet.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:azure_bluet" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json new file mode 100644 index 00000000..682af38e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_black_white_dye.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:black_dye", + "minecraft:white_dye", + "minecraft:white_dye" + ], + "result": { + "count": 3, + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json new file mode 100644 index 00000000..35e823f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_gray_white_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:gray_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json new file mode 100644 index 00000000..dd3e1fdf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_oxeye_daisy.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:oxeye_daisy" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_white_tulip.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_white_tulip.json new file mode 100644 index 00000000..cf134bc0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_dye_from_white_tulip.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "light_gray_dye", + "ingredients": [ + "minecraft:white_tulip" + ], + "result": { + "id": "minecraft:light_gray_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..7c42350f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:light_gray_terracotta", + "result": { + "id": "minecraft:light_gray_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_harness.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_harness.json new file mode 100644 index 00000000..2550a380 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:light_gray_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:light_gray_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_shulker_box.json new file mode 100644 index 00000000..4bfc3878 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:light_gray_dye", + "result": { + "id": "minecraft:light_gray_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass.json new file mode 100644 index 00000000..cd8d1a8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..eb053517 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:light_gray_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:light_gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..c81a0b90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_gray_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/light_gray_terracotta.json new file mode 100644 index 00000000..b24d944e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:light_gray_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:light_gray_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/light_weighted_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/light_weighted_pressure_plate.json new file mode 100644 index 00000000..305f3ac7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/light_weighted_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:gold_ingot" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:light_weighted_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lightning_rod.json b/data/generated/V26_2/data/minecraft/recipe/lightning_rod.json new file mode 100644 index 00000000..106d7f34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lightning_rod.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:copper_ingot" + }, + "pattern": [ + "#", + "#", + "#" + ], + "result": { + "id": "minecraft:lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_banner.json b/data/generated/V26_2/data/minecraft/recipe/lime_banner.json new file mode 100644 index 00000000..aa25d7c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:lime_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:lime_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/lime_banner_duplicate.json new file mode 100644 index 00000000..e6c50455 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:lime_banner", + "result": { + "id": "minecraft:lime_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_bed.json b/data/generated/V26_2/data/minecraft/recipe/lime_bed.json new file mode 100644 index 00000000..dec0d545 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:lime_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:lime_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_bundle.json b/data/generated/V26_2/data/minecraft/recipe/lime_bundle.json new file mode 100644 index 00000000..8252846b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:lime_dye", + "result": { + "id": "minecraft:lime_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_candle.json b/data/generated/V26_2/data/minecraft/recipe/lime_candle.json new file mode 100644 index 00000000..c78e5686 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:lime_dye" + ], + "result": { + "id": "minecraft:lime_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_carpet.json b/data/generated/V26_2/data/minecraft/recipe/lime_carpet.json new file mode 100644 index 00000000..e100a60f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:lime_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:lime_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/lime_concrete_powder.json new file mode 100644 index 00000000..ac507482 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:lime_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:lime_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_dye.json b/data/generated/V26_2/data/minecraft/recipe/lime_dye.json new file mode 100644 index 00000000..0d49c5f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:green_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:lime_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_dye_from_smelting.json b/data/generated/V26_2/data/minecraft/recipe/lime_dye_from_smelting.json new file mode 100644 index 00000000..06b98f7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_dye_from_smelting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": "minecraft:sea_pickle", + "result": { + "id": "minecraft:lime_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/lime_glazed_terracotta.json new file mode 100644 index 00000000..1ec0a113 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:lime_terracotta", + "result": { + "id": "minecraft:lime_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_harness.json b/data/generated/V26_2/data/minecraft/recipe/lime_harness.json new file mode 100644 index 00000000..5f84469f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:lime_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:lime_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/lime_shulker_box.json new file mode 100644 index 00000000..3957f99f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:lime_dye", + "result": { + "id": "minecraft:lime_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass.json new file mode 100644 index 00000000..4f5cee1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane.json new file mode 100644 index 00000000..49cd12d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:lime_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:lime_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..4f41f450 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lime_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/lime_terracotta.json new file mode 100644 index 00000000..996cff11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lime_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:lime_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:lime_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/lodestone.json b/data/generated/V26_2/data/minecraft/recipe/lodestone.json new file mode 100644 index 00000000..61d81f2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/lodestone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:iron_ingot", + "S": "minecraft:chiseled_stone_bricks" + }, + "pattern": [ + "SSS", + "S#S", + "SSS" + ], + "result": { + "id": "minecraft:lodestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/loom.json b/data/generated/V26_2/data/minecraft/recipe/loom.json new file mode 100644 index 00000000..3ad16d60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/loom.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:string" + }, + "pattern": [ + "@@", + "##" + ], + "result": { + "id": "minecraft:loom" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mace.json b/data/generated/V26_2/data/minecraft/recipe/mace.json new file mode 100644 index 00000000..0f09d30b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mace.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:heavy_core", + "I": "minecraft:breeze_rod" + }, + "pattern": [ + " # ", + " I " + ], + "result": { + "id": "minecraft:mace" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_banner.json b/data/generated/V26_2/data/minecraft/recipe/magenta_banner.json new file mode 100644 index 00000000..4e85dd49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:magenta_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:magenta_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/magenta_banner_duplicate.json new file mode 100644 index 00000000..8c0be383 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:magenta_banner", + "result": { + "id": "minecraft:magenta_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_bed.json b/data/generated/V26_2/data/minecraft/recipe/magenta_bed.json new file mode 100644 index 00000000..71d0cb5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:magenta_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:magenta_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_bundle.json b/data/generated/V26_2/data/minecraft/recipe/magenta_bundle.json new file mode 100644 index 00000000..f63d30a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:magenta_dye", + "result": { + "id": "minecraft:magenta_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_candle.json b/data/generated/V26_2/data/minecraft/recipe/magenta_candle.json new file mode 100644 index 00000000..7e0d4664 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:magenta_dye" + ], + "result": { + "id": "minecraft:magenta_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_carpet.json b/data/generated/V26_2/data/minecraft/recipe/magenta_carpet.json new file mode 100644 index 00000000..ab735028 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:magenta_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:magenta_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/magenta_concrete_powder.json new file mode 100644 index 00000000..275bc0b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:magenta_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_allium.json b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_allium.json new file mode 100644 index 00000000..5e019e0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_allium.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "magenta_dye", + "ingredients": [ + "minecraft:allium" + ], + "result": { + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json new file mode 100644 index 00000000..77767143 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_pink.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "magenta_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye", + "minecraft:pink_dye" + ], + "result": { + "count": 3, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json new file mode 100644 index 00000000..704679ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_blue_red_white_dye.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "magenta_dye", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye", + "minecraft:red_dye", + "minecraft:white_dye" + ], + "result": { + "count": 4, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_lilac.json b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_lilac.json new file mode 100644 index 00000000..120798fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_lilac.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "magenta_dye", + "ingredients": [ + "minecraft:lilac" + ], + "result": { + "count": 2, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json new file mode 100644 index 00000000..d6b84d55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_dye_from_purple_and_pink.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "magenta_dye", + "ingredients": [ + "minecraft:purple_dye", + "minecraft:pink_dye" + ], + "result": { + "count": 2, + "id": "minecraft:magenta_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/magenta_glazed_terracotta.json new file mode 100644 index 00000000..181ad330 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:magenta_terracotta", + "result": { + "id": "minecraft:magenta_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_harness.json b/data/generated/V26_2/data/minecraft/recipe/magenta_harness.json new file mode 100644 index 00000000..12a943df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:magenta_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:magenta_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/magenta_shulker_box.json new file mode 100644 index 00000000..d5227d33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:magenta_dye", + "result": { + "id": "minecraft:magenta_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass.json new file mode 100644 index 00000000..6b70363e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane.json new file mode 100644 index 00000000..47100c23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:magenta_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:magenta_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..f7981d9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magenta_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/magenta_terracotta.json new file mode 100644 index 00000000..64a94c61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magenta_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:magenta_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:magenta_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magma_block.json b/data/generated/V26_2/data/minecraft/recipe/magma_block.json new file mode 100644 index 00000000..b75f6f7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magma_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:magma_cream" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:magma_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/magma_cream.json b/data/generated/V26_2/data/minecraft/recipe/magma_cream.json new file mode 100644 index 00000000..febb164e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/magma_cream.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:blaze_powder", + "minecraft:slime_ball" + ], + "result": { + "id": "minecraft:magma_cream" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_boat.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_boat.json new file mode 100644 index 00000000..017029aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:mangrove_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_button.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_button.json new file mode 100644 index 00000000..87b3e06e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:mangrove_planks" + ], + "result": { + "id": "minecraft:mangrove_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_chest_boat.json new file mode 100644 index 00000000..58402170 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:mangrove_boat" + ], + "result": { + "id": "minecraft:mangrove_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_door.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_door.json new file mode 100644 index 00000000..cbcbe305 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_fence.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_fence.json new file mode 100644 index 00000000..7dbe31d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:mangrove_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_fence_gate.json new file mode 100644 index 00000000..5629c7de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:mangrove_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:mangrove_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_hanging_sign.json new file mode 100644 index 00000000..f18ea088 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_mangrove_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_planks.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_planks.json new file mode 100644 index 00000000..70ed9700 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:mangrove_logs" + ], + "result": { + "count": 4, + "id": "minecraft:mangrove_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_pressure_plate.json new file mode 100644 index 00000000..1d2829fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:mangrove_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_shelf.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_shelf.json new file mode 100644 index 00000000..e811cc26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_mangrove_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_sign.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_sign.json new file mode 100644 index 00000000..4c51bef5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:mangrove_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_slab.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_slab.json new file mode 100644 index 00000000..4dd22f2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mangrove_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_stairs.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_stairs.json new file mode 100644 index 00000000..14e80386 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mangrove_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_trapdoor.json new file mode 100644 index 00000000..d7dacadf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:mangrove_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:mangrove_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mangrove_wood.json b/data/generated/V26_2/data/minecraft/recipe/mangrove_wood.json new file mode 100644 index 00000000..15628e8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:mangrove_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:mangrove_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/map.json b/data/generated/V26_2/data/minecraft/recipe/map.json new file mode 100644 index 00000000..0e703e8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/map.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:paper", + "X": "minecraft:compass" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:map" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/map_cloning.json b/data/generated/V26_2/data/minecraft/recipe/map_cloning.json new file mode 100644 index 00000000..4afd71c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/map_cloning.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_transmute", + "add_material_count_to_result": true, + "group": "map_cloning", + "input": "minecraft:filled_map", + "material": "minecraft:map", + "material_count": { + "max": 8, + "min": 1 + }, + "result": { + "id": "minecraft:filled_map" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/map_extending.json b/data/generated/V26_2/data/minecraft/recipe/map_extending.json new file mode 100644 index 00000000..179121cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/map_extending.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_mapextending", + "map": "minecraft:filled_map", + "material": "minecraft:paper", + "result": { + "id": "minecraft:filled_map" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/melon.json b/data/generated/V26_2/data/minecraft/recipe/melon.json new file mode 100644 index 00000000..04d3fdc0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/melon.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice", + "minecraft:melon_slice" + ], + "result": { + "id": "minecraft:melon" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/melon_seeds.json b/data/generated/V26_2/data/minecraft/recipe/melon_seeds.json new file mode 100644 index 00000000..d39134f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/melon_seeds.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:melon_slice" + ], + "result": { + "id": "minecraft:melon_seeds" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/minecart.json b/data/generated/V26_2/data/minecraft/recipe/minecart.json new file mode 100644 index 00000000..a53756b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/minecart.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mojang_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/mojang_banner_pattern.json new file mode 100644 index 00000000..943345e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mojang_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:enchanted_golden_apple" + ], + "result": { + "id": "minecraft:mojang_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/moss_carpet.json b/data/generated/V26_2/data/minecraft/recipe/moss_carpet.json new file mode 100644 index 00000000..8a23344e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/moss_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:moss_block" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:moss_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json new file mode 100644 index 00000000..70a3f63c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_moss_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_cobblestone", + "ingredients": [ + "minecraft:cobblestone", + "minecraft:moss_block" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_vine.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_vine.json new file mode 100644 index 00000000..e01acfe1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_from_vine.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_cobblestone", + "ingredients": [ + "minecraft:cobblestone", + "minecraft:vine" + ], + "result": { + "id": "minecraft:mossy_cobblestone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab.json new file mode 100644 index 00000000..f7a925dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..6f95da18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_slab_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "count": 2, + "id": "minecraft:mossy_cobblestone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..a895c592 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mossy_cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..c3345d11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_stairs_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "id": "minecraft:mossy_cobblestone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall.json new file mode 100644 index 00000000..928979e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:mossy_cobblestone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json new file mode 100644 index 00000000..4febc998 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_cobblestone_wall_from_mossy_cobblestone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_cobblestone", + "result": { + "id": "minecraft:mossy_cobblestone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab.json new file mode 100644 index 00000000..5d404242 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..ac79fae5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_slab_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "count": 2, + "id": "minecraft:mossy_stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..c4c90779 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mossy_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..58042e70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_stairs_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "id": "minecraft:mossy_stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall.json new file mode 100644 index 00000000..3edae98e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:mossy_stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mossy_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json new file mode 100644 index 00000000..8e7be1ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_brick_wall_from_mossy_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mossy_stone_bricks", + "result": { + "id": "minecraft:mossy_stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json new file mode 100644 index 00000000..d7eb8f74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_moss_block.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_stone_bricks", + "ingredients": [ + "minecraft:stone_bricks", + "minecraft:moss_block" + ], + "result": { + "id": "minecraft:mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_vine.json b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_vine.json new file mode 100644 index 00000000..8e4f9291 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mossy_stone_bricks_from_vine.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "mossy_stone_bricks", + "ingredients": [ + "minecraft:stone_bricks", + "minecraft:vine" + ], + "result": { + "id": "minecraft:mossy_stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab.json new file mode 100644 index 00000000..d05d34ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mud_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..91844f76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_slab_from_mud_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "count": 2, + "id": "minecraft:mud_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs.json new file mode 100644 index 00000000..bf88a09d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:mud_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..6f6ffa20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_stairs_from_mud_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "id": "minecraft:mud_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall.json new file mode 100644 index 00000000..757fb329 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:mud_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:mud_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json new file mode 100644 index 00000000..a144e09e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_brick_wall_from_mud_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:mud_bricks", + "result": { + "id": "minecraft:mud_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mud_bricks.json b/data/generated/V26_2/data/minecraft/recipe/mud_bricks.json new file mode 100644 index 00000000..2432d904 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mud_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:packed_mud" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:mud_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/muddy_mangrove_roots.json b/data/generated/V26_2/data/minecraft/recipe/muddy_mangrove_roots.json new file mode 100644 index 00000000..a5697151 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/muddy_mangrove_roots.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:mud", + "minecraft:mangrove_roots" + ], + "result": { + "id": "minecraft:muddy_mangrove_roots" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/mushroom_stew.json b/data/generated/V26_2/data/minecraft/recipe/mushroom_stew.json new file mode 100644 index 00000000..5a7a091c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/mushroom_stew.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:bowl" + ], + "result": { + "id": "minecraft:mushroom_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/music_disc_5.json b/data/generated/V26_2/data/minecraft/recipe/music_disc_5.json new file mode 100644 index 00000000..b38bd3aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/music_disc_5.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5", + "minecraft:disc_fragment_5" + ], + "result": { + "id": "minecraft:music_disc_5" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/name_tag.json b/data/generated/V26_2/data/minecraft/recipe/name_tag.json new file mode 100644 index 00000000..2db2aa27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/name_tag.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:paper", + "X": "#minecraft:metal_nuggets" + }, + "pattern": [ + " X", + "# " + ], + "result": { + "id": "minecraft:name_tag" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick.json new file mode 100644 index 00000000..1b408354 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": "minecraft:netherrack", + "result": { + "id": "minecraft:nether_brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_fence.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_fence.json new file mode 100644 index 00000000..eaa576b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_fence.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:nether_brick", + "W": "minecraft:nether_bricks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab.json new file mode 100644 index 00000000..bb01455f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..3a20a6b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_slab_from_nether_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "count": 2, + "id": "minecraft:nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs.json new file mode 100644 index 00000000..92ddfef2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..1f936fbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_stairs_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall.json new file mode 100644 index 00000000..c6ecc91c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:nether_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json new file mode 100644 index 00000000..c2d89c0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_brick_wall_from_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:nether_bricks", + "result": { + "id": "minecraft:nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_bricks.json b/data/generated/V26_2/data/minecraft/recipe/nether_bricks.json new file mode 100644 index 00000000..bbc4ce29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:nether_brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/nether_wart_block.json b/data/generated/V26_2/data/minecraft/recipe/nether_wart_block.json new file mode 100644 index 00000000..3e04dcc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/nether_wart_block.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart", + "minecraft:nether_wart" + ], + "result": { + "id": "minecraft:nether_wart_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_axe_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_axe_smithing.json new file mode 100644 index 00000000..99903fa9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_axe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_axe", + "result": { + "id": "minecraft:netherite_axe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_block.json b/data/generated/V26_2/data/minecraft/recipe/netherite_block.json new file mode 100644 index 00000000..d8ccafc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:netherite_ingot" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:netherite_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_boots_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_boots_smithing.json new file mode 100644 index 00000000..9c13806b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_boots_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_boots", + "result": { + "id": "minecraft:netherite_boots" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_chestplate_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_chestplate_smithing.json new file mode 100644 index 00000000..5de05c02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_chestplate_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_chestplate", + "result": { + "id": "minecraft:netherite_chestplate" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_helmet_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_helmet_smithing.json new file mode 100644 index 00000000..50e7927c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_helmet_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_helmet", + "result": { + "id": "minecraft:netherite_helmet" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_hoe_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_hoe_smithing.json new file mode 100644 index 00000000..2fdc9a18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_hoe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_hoe", + "result": { + "id": "minecraft:netherite_hoe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_horse_armor_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_horse_armor_smithing.json new file mode 100644 index 00000000..72eb4f9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_horse_armor_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_horse_armor", + "result": { + "id": "minecraft:netherite_horse_armor" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_ingot.json b/data/generated/V26_2/data/minecraft/recipe/netherite_ingot.json new file mode 100644 index 00000000..22213ea5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_ingot.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "netherite_ingot", + "ingredients": [ + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:netherite_scrap", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + "minecraft:gold_ingot", + "minecraft:gold_ingot" + ], + "result": { + "id": "minecraft:netherite_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_ingot_from_netherite_block.json b/data/generated/V26_2/data/minecraft/recipe/netherite_ingot_from_netherite_block.json new file mode 100644 index 00000000..3dccb724 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_ingot_from_netherite_block.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "netherite_ingot", + "ingredients": [ + "minecraft:netherite_block" + ], + "result": { + "count": 9, + "id": "minecraft:netherite_ingot" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_leggings_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_leggings_smithing.json new file mode 100644 index 00000000..e315e1a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_leggings_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_leggings", + "result": { + "id": "minecraft:netherite_leggings" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_nautilus_armor_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_nautilus_armor_smithing.json new file mode 100644 index 00000000..6adb9015 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_nautilus_armor_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_nautilus_armor", + "result": { + "id": "minecraft:netherite_nautilus_armor" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_pickaxe_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_pickaxe_smithing.json new file mode 100644 index 00000000..3193a208 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_pickaxe_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_pickaxe", + "result": { + "id": "minecraft:netherite_pickaxe" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_scrap.json b/data/generated/V26_2/data/minecraft/recipe/netherite_scrap.json new file mode 100644 index 00000000..7bbc085c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_scrap.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 2.0, + "ingredient": "minecraft:ancient_debris", + "result": { + "id": "minecraft:netherite_scrap" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_scrap_from_blasting.json b/data/generated/V26_2/data/minecraft/recipe/netherite_scrap_from_blasting.json new file mode 100644 index 00000000..a8e2c74a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_scrap_from_blasting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:blasting", + "experience": 2.0, + "ingredient": "minecraft:ancient_debris", + "result": { + "id": "minecraft:netherite_scrap" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_shovel_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_shovel_smithing.json new file mode 100644 index 00000000..59ad7518 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_shovel_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_shovel", + "result": { + "id": "minecraft:netherite_shovel" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_spear_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_spear_smithing.json new file mode 100644 index 00000000..a0ea1782 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_spear_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_spear", + "result": { + "id": "minecraft:netherite_spear" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_sword_smithing.json b/data/generated/V26_2/data/minecraft/recipe/netherite_sword_smithing.json new file mode 100644 index 00000000..45ce0fb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_sword_smithing.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smithing_transform", + "addition": "#minecraft:netherite_tool_materials", + "base": "minecraft:diamond_sword", + "result": { + "id": "minecraft:netherite_sword" + }, + "template": "minecraft:netherite_upgrade_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/netherite_upgrade_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..8c8a082d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/netherite_upgrade_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:netherrack", + "S": "minecraft:netherite_upgrade_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:netherite_upgrade_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/note_block.json b/data/generated/V26_2/data/minecraft/recipe/note_block.json new file mode 100644 index 00000000..a5c710b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/note_block.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "#minecraft:planks", + "X": "minecraft:redstone" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:note_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_boat.json b/data/generated/V26_2/data/minecraft/recipe/oak_boat.json new file mode 100644 index 00000000..9294de5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_button.json b/data/generated/V26_2/data/minecraft/recipe/oak_button.json new file mode 100644 index 00000000..f54c2134 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:oak_planks" + ], + "result": { + "id": "minecraft:oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/oak_chest_boat.json new file mode 100644 index 00000000..1f8aeb71 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:oak_boat" + ], + "result": { + "id": "minecraft:oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_door.json b/data/generated/V26_2/data/minecraft/recipe/oak_door.json new file mode 100644 index 00000000..d93c7d98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_fence.json b/data/generated/V26_2/data/minecraft/recipe/oak_fence.json new file mode 100644 index 00000000..e4466c76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/oak_fence_gate.json new file mode 100644 index 00000000..37e5786d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/oak_hanging_sign.json new file mode 100644 index 00000000..4e2a321d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_planks.json b/data/generated/V26_2/data/minecraft/recipe/oak_planks.json new file mode 100644 index 00000000..113883bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/oak_pressure_plate.json new file mode 100644 index 00000000..f72d6b4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_shelf.json b/data/generated/V26_2/data/minecraft/recipe/oak_shelf.json new file mode 100644 index 00000000..94bd2223 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_sign.json b/data/generated/V26_2/data/minecraft/recipe/oak_sign.json new file mode 100644 index 00000000..a630c566 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_slab.json b/data/generated/V26_2/data/minecraft/recipe/oak_slab.json new file mode 100644 index 00000000..5cb7f02d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_stairs.json b/data/generated/V26_2/data/minecraft/recipe/oak_stairs.json new file mode 100644 index 00000000..b24521c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/oak_trapdoor.json new file mode 100644 index 00000000..be5450d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/oak_wood.json new file mode 100644 index 00000000..d902ffcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/observer.json b/data/generated/V26_2/data/minecraft/recipe/observer.json new file mode 100644 index 00000000..f3a72fbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/observer.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "Q": "minecraft:quartz", + "R": "minecraft:redstone" + }, + "pattern": [ + "###", + "RRQ", + "###" + ], + "result": { + "id": "minecraft:observer" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_banner.json b/data/generated/V26_2/data/minecraft/recipe/orange_banner.json new file mode 100644 index 00000000..94f46bc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:orange_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:orange_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/orange_banner_duplicate.json new file mode 100644 index 00000000..9a2fdbfd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:orange_banner", + "result": { + "id": "minecraft:orange_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_bed.json b/data/generated/V26_2/data/minecraft/recipe/orange_bed.json new file mode 100644 index 00000000..443bf201 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:orange_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:orange_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_bundle.json b/data/generated/V26_2/data/minecraft/recipe/orange_bundle.json new file mode 100644 index 00000000..4c70b6c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:orange_dye", + "result": { + "id": "minecraft:orange_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_candle.json b/data/generated/V26_2/data/minecraft/recipe/orange_candle.json new file mode 100644 index 00000000..51009757 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:orange_dye" + ], + "result": { + "id": "minecraft:orange_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_carpet.json b/data/generated/V26_2/data/minecraft/recipe/orange_carpet.json new file mode 100644 index 00000000..0c28ba19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:orange_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:orange_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/orange_concrete_powder.json new file mode 100644 index 00000000..4ca5831d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:orange_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:orange_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json new file mode 100644 index 00000000..9383cd06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_open_eyeblossom.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "orange_dye", + "ingredients": [ + "minecraft:open_eyeblossom" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_orange_tulip.json b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_orange_tulip.json new file mode 100644 index 00000000..79d14320 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_orange_tulip.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "orange_dye", + "ingredients": [ + "minecraft:orange_tulip" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_red_yellow.json b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_red_yellow.json new file mode 100644 index 00000000..7073e632 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_red_yellow.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "orange_dye", + "ingredients": [ + "minecraft:red_dye", + "minecraft:yellow_dye" + ], + "result": { + "count": 2, + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_torchflower.json b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_torchflower.json new file mode 100644 index 00000000..f484cd5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_dye_from_torchflower.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "orange_dye", + "ingredients": [ + "minecraft:torchflower" + ], + "result": { + "id": "minecraft:orange_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/orange_glazed_terracotta.json new file mode 100644 index 00000000..171f0537 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:orange_terracotta", + "result": { + "id": "minecraft:orange_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_harness.json b/data/generated/V26_2/data/minecraft/recipe/orange_harness.json new file mode 100644 index 00000000..67e596d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:orange_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:orange_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/orange_shulker_box.json new file mode 100644 index 00000000..50294012 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:orange_dye", + "result": { + "id": "minecraft:orange_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass.json new file mode 100644 index 00000000..f096ea55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane.json new file mode 100644 index 00000000..32cb35d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:orange_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:orange_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..6763161a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/orange_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/orange_terracotta.json new file mode 100644 index 00000000..ed1a411d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/orange_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:orange_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:orange_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper.json new file mode 100644 index 00000000..190263b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..a31541c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..0df67902 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_chiseled_copper_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "id": "minecraft:oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_bulb.json new file mode 100644 index 00000000..5df360ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "oxidized_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:oxidized_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate.json new file mode 100644 index 00000000..4ca56fb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "oxidized_copper_grate", + "key": { + "M": "minecraft:oxidized_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..4503dff8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_copper_grate_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper.json new file mode 100644 index 00000000..256da0d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..2dc6f40e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..cbe8cf54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..4a7bce20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 8, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..29a84bb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_slab_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "count": 2, + "id": "minecraft:oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..e7728465 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:oxidized_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..6b6596b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..981c27e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/oxidized_cut_copper_stairs_from_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:oxidized_cut_copper", + "result": { + "id": "minecraft:oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/packed_ice.json b/data/generated/V26_2/data/minecraft/recipe/packed_ice.json new file mode 100644 index 00000000..e120257f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/packed_ice.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice", + "minecraft:ice" + ], + "result": { + "id": "minecraft:packed_ice" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/packed_mud.json b/data/generated/V26_2/data/minecraft/recipe/packed_mud.json new file mode 100644 index 00000000..0a33bf4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/packed_mud.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:mud", + "minecraft:wheat" + ], + "result": { + "id": "minecraft:packed_mud" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/painting.json b/data/generated/V26_2/data/minecraft/recipe/painting.json new file mode 100644 index 00000000..8030444b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/painting.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wool" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "id": "minecraft:painting" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_moss_carpet.json b/data/generated/V26_2/data/minecraft/recipe/pale_moss_carpet.json new file mode 100644 index 00000000..412b70a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_moss_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:pale_moss_block" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_moss_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_boat.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_boat.json new file mode 100644 index 00000000..a80b577e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:pale_oak_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_button.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_button.json new file mode 100644 index 00000000..be08e189 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:pale_oak_planks" + ], + "result": { + "id": "minecraft:pale_oak_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_chest_boat.json new file mode 100644 index 00000000..19c1f465 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:pale_oak_boat" + ], + "result": { + "id": "minecraft:pale_oak_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_door.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_door.json new file mode 100644 index 00000000..667a0fbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence.json new file mode 100644 index 00000000..f967fc1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:pale_oak_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence_gate.json new file mode 100644 index 00000000..00d67271 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:pale_oak_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:pale_oak_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_hanging_sign.json new file mode 100644 index 00000000..094ec2c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_pale_oak_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_planks.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_planks.json new file mode 100644 index 00000000..f7829e5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:pale_oak_logs" + ], + "result": { + "count": 4, + "id": "minecraft:pale_oak_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_pressure_plate.json new file mode 100644 index 00000000..25bd3bc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:pale_oak_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_shelf.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_shelf.json new file mode 100644 index 00000000..92733273 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_pale_oak_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_sign.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_sign.json new file mode 100644 index 00000000..9e428f45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:pale_oak_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_slab.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_slab.json new file mode 100644 index 00000000..db6de77f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:pale_oak_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_stairs.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_stairs.json new file mode 100644 index 00000000..7c5baf2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:pale_oak_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_trapdoor.json new file mode 100644 index 00000000..5f17d759 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:pale_oak_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:pale_oak_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pale_oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/pale_oak_wood.json new file mode 100644 index 00000000..e2acd099 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:pale_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pale_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/paper.json b/data/generated/V26_2/data/minecraft/recipe/paper.json new file mode 100644 index 00000000..6576791d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/paper.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:sugar_cane" + }, + "pattern": [ + "###" + ], + "result": { + "count": 3, + "id": "minecraft:paper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_banner.json b/data/generated/V26_2/data/minecraft/recipe/pink_banner.json new file mode 100644 index 00000000..0a3ce316 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:pink_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:pink_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/pink_banner_duplicate.json new file mode 100644 index 00000000..4c3f9c7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:pink_banner", + "result": { + "id": "minecraft:pink_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_bed.json b/data/generated/V26_2/data/minecraft/recipe/pink_bed.json new file mode 100644 index 00000000..fcd778c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:pink_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:pink_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_bundle.json b/data/generated/V26_2/data/minecraft/recipe/pink_bundle.json new file mode 100644 index 00000000..4a815ba7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:pink_dye", + "result": { + "id": "minecraft:pink_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_candle.json b/data/generated/V26_2/data/minecraft/recipe/pink_candle.json new file mode 100644 index 00000000..897f7f98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:pink_dye" + ], + "result": { + "id": "minecraft:pink_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_carpet.json b/data/generated/V26_2/data/minecraft/recipe/pink_carpet.json new file mode 100644 index 00000000..55e8ec63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:pink_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:pink_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/pink_concrete_powder.json new file mode 100644 index 00000000..744debd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:pink_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:pink_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_cactus_flower.json b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_cactus_flower.json new file mode 100644 index 00000000..6c048548 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_cactus_flower.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "pink_dye", + "ingredients": [ + "minecraft:cactus_flower" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_peony.json b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_peony.json new file mode 100644 index 00000000..0709f923 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_peony.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "pink_dye", + "ingredients": [ + "minecraft:peony" + ], + "result": { + "count": 2, + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_petals.json b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_petals.json new file mode 100644 index 00000000..0af6bd7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_petals.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "pink_dye", + "ingredients": [ + "minecraft:pink_petals" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_tulip.json b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_tulip.json new file mode 100644 index 00000000..2ac7944f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_pink_tulip.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "pink_dye", + "ingredients": [ + "minecraft:pink_tulip" + ], + "result": { + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_red_white_dye.json b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_red_white_dye.json new file mode 100644 index 00000000..d0d3f22c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_dye_from_red_white_dye.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "pink_dye", + "ingredients": [ + "minecraft:red_dye", + "minecraft:white_dye" + ], + "result": { + "count": 2, + "id": "minecraft:pink_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/pink_glazed_terracotta.json new file mode 100644 index 00000000..f71962a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:pink_terracotta", + "result": { + "id": "minecraft:pink_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_harness.json b/data/generated/V26_2/data/minecraft/recipe/pink_harness.json new file mode 100644 index 00000000..d1fd9d19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:pink_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:pink_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/pink_shulker_box.json new file mode 100644 index 00000000..4fde97e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:pink_dye", + "result": { + "id": "minecraft:pink_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass.json new file mode 100644 index 00000000..f5c03d00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane.json new file mode 100644 index 00000000..2a4b9e39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:pink_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:pink_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8c350e4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pink_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/pink_terracotta.json new file mode 100644 index 00000000..c72f6240 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pink_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:pink_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:pink_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/piston.json b/data/generated/V26_2/data/minecraft/recipe/piston.json new file mode 100644 index 00000000..4ff87925 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/piston.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:cobblestone", + "R": "minecraft:redstone", + "T": "#minecraft:planks", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "TTT", + "#X#", + "#R#" + ], + "result": { + "id": "minecraft:piston" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite.json new file mode 100644 index 00000000..38a6b28d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:andesite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json new file mode 100644 index 00000000..4beb18fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:polished_andesite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab.json new file mode 100644 index 00000000..fbd7ebe6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_andesite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json new file mode 100644 index 00000000..a843726d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..9331172e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_slab_from_polished_andesite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_andesite", + "result": { + "count": 2, + "id": "minecraft:polished_andesite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs.json new file mode 100644 index 00000000..101def14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_andesite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json new file mode 100644 index 00000000..56a57fc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:andesite", + "result": { + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json new file mode 100644 index 00000000..93124228 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_andesite_stairs_from_polished_andesite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_andesite", + "result": { + "id": "minecraft:polished_andesite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_basalt.json b/data/generated/V26_2/data/minecraft/recipe/polished_basalt.json new file mode 100644 index 00000000..97db5f25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_basalt.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:basalt" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json new file mode 100644 index 00000000..571f0023 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_basalt_from_basalt_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:basalt", + "result": { + "id": "minecraft:polished_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone.json new file mode 100644 index 00000000..a55e7f08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:blackstone" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..e4007231 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..a92231f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..96ef7798 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0dc33f1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..8d523c58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..4b2fa19b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..a79f1036 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..55c985ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..c4a00400 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_blackstone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3c9e1285 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json new file mode 100644 index 00000000..3f28ac02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone_bricks", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..f7030a37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_brick_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks.json new file mode 100644 index 00000000..34a0bf49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json new file mode 100644 index 00000000..23ef2ab8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0bcf82c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_bricks_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_button.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_button.json new file mode 100644 index 00000000..621f6424 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_button.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:polished_blackstone" + ], + "result": { + "id": "minecraft:polished_blackstone_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json new file mode 100644 index 00000000..c0d00323 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..33d90054 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:polished_blackstone_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab.json new file mode 100644 index 00000000..b491d691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json new file mode 100644 index 00000000..8668e2d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..0ba84ac1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_slab_from_polished_blackstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "count": 2, + "id": "minecraft:polished_blackstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs.json new file mode 100644 index 00000000..ecb24692 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3d24124f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..4f031e74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_stairs_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall.json new file mode 100644 index 00000000..9112cedd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_blackstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json new file mode 100644 index 00000000..3bf82c13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:blackstone", + "result": { + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json new file mode 100644 index 00000000..cb9dbb08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_blackstone_wall_from_polished_blackstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_blackstone", + "result": { + "id": "minecraft:polished_blackstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar.json new file mode 100644 index 00000000..494a3c03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:cinnabar" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_cinnabar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..e35a3b3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:polished_cinnabar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab.json new file mode 100644 index 00000000..f622789f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_cinnabar" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_cinnabar_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..a1660646 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_cinnabar_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "count": 2, + "id": "minecraft:polished_cinnabar_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..decb3297 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_slab_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "count": 2, + "id": "minecraft:polished_cinnabar_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs.json new file mode 100644 index 00000000..44fdcfdf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_cinnabar" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_cinnabar_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..c22c8453 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:polished_cinnabar_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..87e754ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_stairs_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "id": "minecraft:polished_cinnabar_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall.json new file mode 100644 index 00000000..3937e192 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_cinnabar" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_cinnabar_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_cinnabar_stonecutting.json new file mode 100644 index 00000000..aa44541a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cinnabar", + "result": { + "id": "minecraft:polished_cinnabar_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json new file mode 100644 index 00000000..23711a22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_cinnabar_wall_from_polished_cinnabar_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_cinnabar", + "result": { + "id": "minecraft:polished_cinnabar_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate.json new file mode 100644 index 00000000..bc6a2367 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:cobbled_deepslate" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..4ebff2ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ac2a22c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab.json new file mode 100644 index 00000000..cea0c023 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..10344a9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json new file mode 100644 index 00000000..1f44c9b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..61a5826b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_slab_from_polished_deepslate_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "count": 2, + "id": "minecraft:polished_deepslate_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs.json new file mode 100644 index 00000000..c2d15f0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..4fa2a6d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json new file mode 100644 index 00000000..8a7f649a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..688db545 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_stairs_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:polished_deepslate_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall.json new file mode 100644 index 00000000..16c444e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_deepslate" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json new file mode 100644 index 00000000..8a61d772 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_cobbled_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:cobbled_deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json new file mode 100644 index 00000000..ab5038b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json new file mode 100644 index 00000000..ee6f5603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_deepslate_wall_from_polished_deepslate_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_deepslate", + "result": { + "id": "minecraft:polished_deepslate_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite.json new file mode 100644 index 00000000..c9322e9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:diorite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json new file mode 100644 index 00000000..8bf62c52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:polished_diorite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab.json new file mode 100644 index 00000000..bdf849d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_diorite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json new file mode 100644 index 00000000..c8fe760c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..b9564eb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_slab_from_polished_diorite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_diorite", + "result": { + "count": 2, + "id": "minecraft:polished_diorite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs.json new file mode 100644 index 00000000..1a5a0748 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_diorite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json new file mode 100644 index 00000000..eca80b4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:diorite", + "result": { + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json new file mode 100644 index 00000000..dfd26b47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_diorite_stairs_from_polished_diorite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_diorite", + "result": { + "id": "minecraft:polished_diorite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite.json new file mode 100644 index 00000000..01148e11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:granite" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json new file mode 100644 index 00000000..6320fcbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:polished_granite" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab.json new file mode 100644 index 00000000..5ca500f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_granite" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json new file mode 100644 index 00000000..05aab260 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..81a606d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_slab_from_polished_granite_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_granite", + "result": { + "count": 2, + "id": "minecraft:polished_granite_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs.json new file mode 100644 index 00000000..0fe57435 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_granite" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json new file mode 100644 index 00000000..063d2b59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:granite", + "result": { + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json new file mode 100644 index 00000000..59dde9b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_granite_stairs_from_polished_granite_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_granite", + "result": { + "id": "minecraft:polished_granite_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur.json new file mode 100644 index 00000000..56e366a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:sulfur" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_from_sulfur_stonecutting.json new file mode 100644 index 00000000..5d17a530 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:polished_sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab.json new file mode 100644 index 00000000..39ca20ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_sulfur" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_sulfur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..76450c39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_polished_sulfur_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "count": 2, + "id": "minecraft:polished_sulfur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..fb45a372 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_slab_from_sulfur_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "count": 2, + "id": "minecraft:polished_sulfur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs.json new file mode 100644 index 00000000..eee18cb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_sulfur" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_sulfur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..6e627376 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_polished_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "id": "minecraft:polished_sulfur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..469e2e73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:polished_sulfur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall.json new file mode 100644 index 00000000..88948584 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_sulfur" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_sulfur_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..3e4c0cae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_polished_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "id": "minecraft:polished_sulfur_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..8885433c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_sulfur_wall_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:polished_sulfur_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff.json new file mode 100644 index 00000000..1c54af6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "S": "minecraft:tuff" + }, + "pattern": [ + "SS", + "SS" + ], + "result": { + "count": 4, + "id": "minecraft:polished_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json new file mode 100644 index 00000000..e52d9374 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab.json new file mode 100644 index 00000000..ba95b194 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..b8ae0df2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "count": 2, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..b9c0f38c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:polished_tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs.json new file mode 100644 index 00000000..214b0fb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..51b0987a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..497fe5d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall.json new file mode 100644 index 00000000..17303000 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..b50549bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..69631b4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/polished_tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:polished_tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/popped_chorus_fruit.json b/data/generated/V26_2/data/minecraft/recipe/popped_chorus_fruit.json new file mode 100644 index 00000000..ef23a9ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/popped_chorus_fruit.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": "minecraft:chorus_fruit", + "result": { + "id": "minecraft:popped_chorus_fruit" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/potent_sulfur.json b/data/generated/V26_2/data/minecraft/recipe/potent_sulfur.json new file mode 100644 index 00000000..2ada7fbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/potent_sulfur.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur", + "minecraft:sulfur" + ], + "result": { + "id": "minecraft:potent_sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/powered_rail.json b/data/generated/V26_2/data/minecraft/recipe/powered_rail.json new file mode 100644 index 00000000..12e48f5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/powered_rail.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "R": "minecraft:redstone", + "X": "minecraft:gold_ingot" + }, + "pattern": [ + "X X", + "X#X", + "XRX" + ], + "result": { + "count": 6, + "id": "minecraft:powered_rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine.json b/data/generated/V26_2/data/minecraft/recipe/prismarine.json new file mode 100644 index 00000000..24f06637 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_shard" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:prismarine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab.json new file mode 100644 index 00000000..2073653b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..01912408 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_slab_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine_bricks", + "result": { + "count": 2, + "id": "minecraft:prismarine_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs.json new file mode 100644 index 00000000..4ad3edb8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:prismarine_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json new file mode 100644 index 00000000..7b3b03fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_brick_stairs_from_prismarine_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine_bricks", + "result": { + "id": "minecraft:prismarine_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_bricks.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_bricks.json new file mode 100644 index 00000000..b0fc9f4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_bricks.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "ingredients": [ + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard", + "minecraft:prismarine_shard" + ], + "result": { + "id": "minecraft:prismarine_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_slab.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_slab.json new file mode 100644 index 00000000..67584b85 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json new file mode 100644 index 00000000..0087e234 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_slab_from_prismarine_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "count": 2, + "id": "minecraft:prismarine_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs.json new file mode 100644 index 00000000..653edc4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json new file mode 100644 index 00000000..30f1e0af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_stairs_from_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "id": "minecraft:prismarine_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_wall.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_wall.json new file mode 100644 index 00000000..5ae3c646 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:prismarine" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:prismarine_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json new file mode 100644 index 00000000..c36b51cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/prismarine_wall_from_prismarine_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:prismarine", + "result": { + "id": "minecraft:prismarine_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pumpkin_pie.json b/data/generated/V26_2/data/minecraft/recipe/pumpkin_pie.json new file mode 100644 index 00000000..aac8c5b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pumpkin_pie.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:pumpkin", + "minecraft:sugar", + "#minecraft:eggs" + ], + "result": { + "id": "minecraft:pumpkin_pie" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/pumpkin_seeds.json b/data/generated/V26_2/data/minecraft/recipe/pumpkin_seeds.json new file mode 100644 index 00000000..5698ead9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/pumpkin_seeds.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:pumpkin" + ], + "result": { + "count": 4, + "id": "minecraft:pumpkin_seeds" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_banner.json b/data/generated/V26_2/data/minecraft/recipe/purple_banner.json new file mode 100644 index 00000000..0e318c9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:purple_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:purple_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/purple_banner_duplicate.json new file mode 100644 index 00000000..ebdc5075 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:purple_banner", + "result": { + "id": "minecraft:purple_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_bed.json b/data/generated/V26_2/data/minecraft/recipe/purple_bed.json new file mode 100644 index 00000000..9fcce88c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:purple_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:purple_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_bundle.json b/data/generated/V26_2/data/minecraft/recipe/purple_bundle.json new file mode 100644 index 00000000..15358b5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:purple_dye", + "result": { + "id": "minecraft:purple_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_candle.json b/data/generated/V26_2/data/minecraft/recipe/purple_candle.json new file mode 100644 index 00000000..dc15e487 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:purple_dye" + ], + "result": { + "id": "minecraft:purple_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_carpet.json b/data/generated/V26_2/data/minecraft/recipe/purple_carpet.json new file mode 100644 index 00000000..e66673eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:purple_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:purple_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/purple_concrete_powder.json new file mode 100644 index 00000000..29bfc094 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:purple_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:purple_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_dye.json b/data/generated/V26_2/data/minecraft/recipe/purple_dye.json new file mode 100644 index 00000000..40a24a3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_dye.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:blue_dye", + "minecraft:red_dye" + ], + "result": { + "count": 2, + "id": "minecraft:purple_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/purple_glazed_terracotta.json new file mode 100644 index 00000000..1565e3e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:purple_terracotta", + "result": { + "id": "minecraft:purple_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_harness.json b/data/generated/V26_2/data/minecraft/recipe/purple_harness.json new file mode 100644 index 00000000..329b6fcd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:purple_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:purple_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/purple_shulker_box.json new file mode 100644 index 00000000..cda86ae9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:purple_dye", + "result": { + "id": "minecraft:purple_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass.json new file mode 100644 index 00000000..d50dde72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane.json new file mode 100644 index 00000000..2ca31fe8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:purple_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:purple_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..5dccfa0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purple_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/purple_terracotta.json new file mode 100644 index 00000000..1690e20e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purple_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:purple_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:purple_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_block.json b/data/generated/V26_2/data/minecraft/recipe/purpur_block.json new file mode 100644 index 00000000..830aca69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "F": "minecraft:popped_chorus_fruit" + }, + "pattern": [ + "FF", + "FF" + ], + "result": { + "count": 4, + "id": "minecraft:purpur_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_pillar.json b/data/generated/V26_2/data/minecraft/recipe/purpur_pillar.json new file mode 100644 index 00000000..208bdc8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_pillar.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:purpur_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:purpur_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..68dd97b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_pillar_from_purpur_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "id": "minecraft:purpur_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_slab.json b/data/generated/V26_2/data/minecraft/recipe/purpur_slab.json new file mode 100644 index 00000000..f7e1952e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:purpur_block", + "minecraft:purpur_pillar" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:purpur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..0512b5ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_slab_from_purpur_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "count": 2, + "id": "minecraft:purpur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_stairs.json b/data/generated/V26_2/data/minecraft/recipe/purpur_stairs.json new file mode 100644 index 00000000..8a3452d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_stairs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:purpur_block", + "minecraft:purpur_pillar" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:purpur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json new file mode 100644 index 00000000..d03cfc59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/purpur_stairs_from_purpur_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:purpur_block", + "result": { + "id": "minecraft:purpur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz.json b/data/generated/V26_2/data/minecraft/recipe/quartz.json new file mode 100644 index 00000000..c13e5d7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.2, + "ingredient": "minecraft:nether_quartz_ore", + "result": { + "id": "minecraft:quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_block.json b/data/generated/V26_2/data/minecraft/recipe/quartz_block.json new file mode 100644 index 00000000..fe5430c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:quartz_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_bricks.json b/data/generated/V26_2/data/minecraft/recipe/quartz_bricks.json new file mode 100644 index 00000000..cabc969d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:quartz_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..bde222a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_bricks_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_from_blasting.json b/data/generated/V26_2/data/minecraft/recipe/quartz_from_blasting.json new file mode 100644 index 00000000..381abf6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_from_blasting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:blasting", + "experience": 0.2, + "ingredient": "minecraft:nether_quartz_ore", + "result": { + "id": "minecraft:quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_pillar.json b/data/generated/V26_2/data/minecraft/recipe/quartz_pillar.json new file mode 100644 index 00000000..fec403cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_pillar.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:quartz_block" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 2, + "id": "minecraft:quartz_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..16820cc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_pillar_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_pillar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_slab.json b/data/generated/V26_2/data/minecraft/recipe/quartz_slab.json new file mode 100644 index 00000000..ddea46a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_slab.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:chiseled_quartz_block", + "minecraft:quartz_block", + "minecraft:quartz_pillar" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..e1646a9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_slab_from_quartz_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "count": 2, + "id": "minecraft:quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_stairs.json b/data/generated/V26_2/data/minecraft/recipe/quartz_stairs.json new file mode 100644 index 00000000..2b3fdbbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:chiseled_quartz_block", + "minecraft:quartz_block", + "minecraft:quartz_pillar" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json new file mode 100644 index 00000000..893e7472 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/quartz_stairs_from_quartz_block_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json b/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json new file mode 100644 index 00000000..5173184f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_brown_mushroom.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "rabbit_stew", + "ingredients": [ + "minecraft:baked_potato", + "minecraft:cooked_rabbit", + "minecraft:bowl", + "minecraft:carrot", + "minecraft:brown_mushroom" + ], + "result": { + "id": "minecraft:rabbit_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json b/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json new file mode 100644 index 00000000..00b65379 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/rabbit_stew_from_red_mushroom.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "rabbit_stew", + "ingredients": [ + "minecraft:baked_potato", + "minecraft:cooked_rabbit", + "minecraft:bowl", + "minecraft:carrot", + "minecraft:red_mushroom" + ], + "result": { + "id": "minecraft:rabbit_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/rail.json b/data/generated/V26_2/data/minecraft/recipe/rail.json new file mode 100644 index 00000000..ba6bea58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/rail.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "X": "minecraft:iron_ingot" + }, + "pattern": [ + "X X", + "X#X", + "X X" + ], + "result": { + "count": 16, + "id": "minecraft:rail" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..264016a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:raiser_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:raiser_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..7b931038 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raiser_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:raiser", + "template": "minecraft:raiser_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_copper.json b/data/generated/V26_2/data/minecraft/recipe/raw_copper.json new file mode 100644 index 00000000..8461a79c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_copper.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:raw_copper_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_copper_block.json b/data/generated/V26_2/data/minecraft/recipe/raw_copper_block.json new file mode 100644 index 00000000..99a9abf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_copper_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_copper" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_gold.json b/data/generated/V26_2/data/minecraft/recipe/raw_gold.json new file mode 100644 index 00000000..f48c14d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_gold.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:raw_gold_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_gold" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_gold_block.json b/data/generated/V26_2/data/minecraft/recipe/raw_gold_block.json new file mode 100644 index 00000000..817d07a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_gold_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_gold" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_gold_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_iron.json b/data/generated/V26_2/data/minecraft/recipe/raw_iron.json new file mode 100644 index 00000000..f26eba9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_iron.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:raw_iron_block" + ], + "result": { + "count": 9, + "id": "minecraft:raw_iron" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/raw_iron_block.json b/data/generated/V26_2/data/minecraft/recipe/raw_iron_block.json new file mode 100644 index 00000000..edaed045 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/raw_iron_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:raw_iron" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:raw_iron_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/recovery_compass.json b/data/generated/V26_2/data/minecraft/recipe/recovery_compass.json new file mode 100644 index 00000000..b2004c0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/recovery_compass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "C": "minecraft:compass", + "S": "minecraft:echo_shard" + }, + "pattern": [ + "SSS", + "SCS", + "SSS" + ], + "result": { + "id": "minecraft:recovery_compass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_banner.json b/data/generated/V26_2/data/minecraft/recipe/red_banner.json new file mode 100644 index 00000000..1855f77f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:red_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:red_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/red_banner_duplicate.json new file mode 100644 index 00000000..f38235d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:red_banner", + "result": { + "id": "minecraft:red_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_bed.json b/data/generated/V26_2/data/minecraft/recipe/red_bed.json new file mode 100644 index 00000000..9f9f1b7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:red_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:red_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_bundle.json b/data/generated/V26_2/data/minecraft/recipe/red_bundle.json new file mode 100644 index 00000000..24c2f1b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:red_dye", + "result": { + "id": "minecraft:red_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_candle.json b/data/generated/V26_2/data/minecraft/recipe/red_candle.json new file mode 100644 index 00000000..2cdd9e35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:red_dye" + ], + "result": { + "id": "minecraft:red_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_carpet.json b/data/generated/V26_2/data/minecraft/recipe/red_carpet.json new file mode 100644 index 00000000..efd23360 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:red_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:red_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/red_concrete_powder.json new file mode 100644 index 00000000..d5e88d6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:red_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:red_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_dye_from_beetroot.json b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_beetroot.json new file mode 100644 index 00000000..c7ce1437 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_beetroot.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "red_dye", + "ingredients": [ + "minecraft:beetroot" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_dye_from_poppy.json b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_poppy.json new file mode 100644 index 00000000..7d75502c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_poppy.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "red_dye", + "ingredients": [ + "minecraft:poppy" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_dye_from_rose_bush.json b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_rose_bush.json new file mode 100644 index 00000000..7ca1d963 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_rose_bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "red_dye", + "ingredients": [ + "minecraft:rose_bush" + ], + "result": { + "count": 2, + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_dye_from_tulip.json b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_tulip.json new file mode 100644 index 00000000..8f96759a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_dye_from_tulip.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "red_dye", + "ingredients": [ + "minecraft:red_tulip" + ], + "result": { + "id": "minecraft:red_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/red_glazed_terracotta.json new file mode 100644 index 00000000..dbe474a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:red_terracotta", + "result": { + "id": "minecraft:red_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_harness.json b/data/generated/V26_2/data/minecraft/recipe/red_harness.json new file mode 100644 index 00000000..06e30fb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:red_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:red_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab.json new file mode 100644 index 00000000..84665125 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..edbdbf76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_slab_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "count": 2, + "id": "minecraft:red_nether_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs.json new file mode 100644 index 00000000..4999a589 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:red_nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..92510b0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_stairs_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "id": "minecraft:red_nether_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall.json new file mode 100644 index 00000000..13b11545 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:red_nether_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json new file mode 100644 index 00000000..8ddb9755 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_brick_wall_from_red_nether_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_nether_bricks", + "result": { + "id": "minecraft:red_nether_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_nether_bricks.json b/data/generated/V26_2/data/minecraft/recipe/red_nether_bricks.json new file mode 100644 index 00000000..604f1a05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_nether_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "N": "minecraft:nether_brick", + "W": "minecraft:nether_wart" + }, + "pattern": [ + "NW", + "WN" + ], + "result": { + "id": "minecraft:red_nether_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone.json new file mode 100644 index 00000000..b008283c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:red_sand" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab.json new file mode 100644 index 00000000..34d6a4a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..41fd49ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_slab_from_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "count": 2, + "id": "minecraft:red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs.json new file mode 100644 index 00000000..e36fa307 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone", + "minecraft:cut_red_sandstone" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..4c1dfeea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_stairs_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall.json new file mode 100644 index 00000000..9df3430e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:red_sandstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:red_sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json new file mode 100644 index 00000000..57781b50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_sandstone_wall_from_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:red_sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/red_shulker_box.json new file mode 100644 index 00000000..8cb621e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:red_dye", + "result": { + "id": "minecraft:red_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass.json new file mode 100644 index 00000000..d9e4e67e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane.json new file mode 100644 index 00000000..748e1cb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:red_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:red_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..e659069c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/red_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/red_terracotta.json new file mode 100644 index 00000000..2065d366 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/red_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:red_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:red_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone.json b/data/generated/V26_2/data/minecraft/recipe/redstone.json new file mode 100644 index 00000000..6125720a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:redstone_block" + ], + "result": { + "count": 9, + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_block.json b/data/generated/V26_2/data/minecraft/recipe/redstone_block.json new file mode 100644 index 00000000..f33df0e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:redstone_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json b/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json new file mode 100644 index 00000000..a31b3133 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_deepslate_redstone_ore.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "blocks", + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:deepslate_redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json b/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json new file mode 100644 index 00000000..a6bfa0e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_from_blasting_redstone_ore.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:blasting", + "category": "blocks", + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json b/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json new file mode 100644 index 00000000..eca03de0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_deepslate_redstone_ore.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:deepslate_redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json b/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json new file mode 100644 index 00000000..7deddb88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_from_smelting_redstone_ore.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.7, + "group": "redstone", + "ingredient": "minecraft:redstone_ore", + "result": { + "id": "minecraft:redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_lamp.json b/data/generated/V26_2/data/minecraft/recipe/redstone_lamp.json new file mode 100644 index 00000000..a6fcd73b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_lamp.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "G": "minecraft:glowstone", + "R": "minecraft:redstone" + }, + "pattern": [ + " R ", + "RGR", + " R " + ], + "result": { + "id": "minecraft:redstone_lamp" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/redstone_torch.json b/data/generated/V26_2/data/minecraft/recipe/redstone_torch.json new file mode 100644 index 00000000..a8f1adcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/redstone_torch.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:stick", + "X": "minecraft:redstone" + }, + "pattern": [ + "X", + "#" + ], + "result": { + "id": "minecraft:redstone_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/repair_item.json b/data/generated/V26_2/data/minecraft/recipe/repair_item.json new file mode 100644 index 00000000..d3fbc161 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/repair_item.json @@ -0,0 +1,3 @@ +{ + "type": "minecraft:crafting_special_repairitem" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/repeater.json b/data/generated/V26_2/data/minecraft/recipe/repeater.json new file mode 100644 index 00000000..60124f26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/repeater.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:redstone_torch", + "I": "minecraft:stone", + "X": "minecraft:redstone" + }, + "pattern": [ + "#X#", + "III" + ], + "result": { + "id": "minecraft:repeater" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_block.json b/data/generated/V26_2/data/minecraft/recipe/resin_block.json new file mode 100644 index 00000000..b9d570bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_clump" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:resin_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick.json new file mode 100644 index 00000000..4163c000 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:smelting", + "experience": 0.1, + "ingredient": "minecraft:resin_clump", + "result": { + "id": "minecraft:resin_brick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab.json new file mode 100644 index 00000000..6ae5a421 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:resin_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..f235fbf1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_slab_from_resin_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "count": 2, + "id": "minecraft:resin_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs.json new file mode 100644 index 00000000..29f45369 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:resin_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..fc181c86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_stairs_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:resin_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall.json new file mode 100644 index 00000000..9558fb09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:resin_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:resin_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json new file mode 100644 index 00000000..55229fdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_brick_wall_from_resin_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:resin_bricks", + "result": { + "id": "minecraft:resin_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_bricks.json b/data/generated/V26_2/data/minecraft/recipe/resin_bricks.json new file mode 100644 index 00000000..2d890960 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_bricks.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:resin_brick" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:resin_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/resin_clump.json b/data/generated/V26_2/data/minecraft/recipe/resin_clump.json new file mode 100644 index 00000000..b0703605 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/resin_clump.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:resin_block" + ], + "result": { + "count": 9, + "id": "minecraft:resin_clump" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/respawn_anchor.json b/data/generated/V26_2/data/minecraft/recipe/respawn_anchor.json new file mode 100644 index 00000000..178d5eed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/respawn_anchor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "G": "minecraft:glowstone", + "O": "minecraft:crying_obsidian" + }, + "pattern": [ + "OOO", + "GGG", + "OOO" + ], + "result": { + "id": "minecraft:respawn_anchor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..1ed24c4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:netherrack", + "S": "minecraft:rib_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:rib_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6ca6e350 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/rib_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:rib", + "template": "minecraft:rib_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/saddle.json b/data/generated/V26_2/data/minecraft/recipe/saddle.json new file mode 100644 index 00000000..c232dce9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/saddle.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot", + "X": "minecraft:leather" + }, + "pattern": [ + " X ", + "X#X" + ], + "result": { + "id": "minecraft:saddle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone.json b/data/generated/V26_2/data/minecraft/recipe/sandstone.json new file mode 100644 index 00000000..2012997e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sand" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_slab.json new file mode 100644 index 00000000..2e841bf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_slab.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:sandstone", + "minecraft:chiseled_sandstone" + ] + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json new file mode 100644 index 00000000..3a336412 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_slab_from_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "count": 2, + "id": "minecraft:sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs.json new file mode 100644 index 00000000..d04adb8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": [ + "minecraft:sandstone", + "minecraft:chiseled_sandstone", + "minecraft:cut_sandstone" + ] + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json new file mode 100644 index 00000000..a7e6ab77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_stairs_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_wall.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_wall.json new file mode 100644 index 00000000..f3882275 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:sandstone" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json new file mode 100644 index 00000000..149fd469 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sandstone_wall_from_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:sandstone_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/scaffolding.json b/data/generated/V26_2/data/minecraft/recipe/scaffolding.json new file mode 100644 index 00000000..f2be5d60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/scaffolding.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "I": "minecraft:bamboo", + "~": "minecraft:string" + }, + "pattern": [ + "I~I", + "I I", + "I I" + ], + "result": { + "count": 6, + "id": "minecraft:scaffolding" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sea_lantern.json b/data/generated/V26_2/data/minecraft/recipe/sea_lantern.json new file mode 100644 index 00000000..724ad67a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sea_lantern.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "C": "minecraft:prismarine_crystals", + "S": "minecraft:prismarine_shard" + }, + "pattern": [ + "SCS", + "CCC", + "SCS" + ], + "result": { + "id": "minecraft:sea_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..41a51842 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:sentry_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:sentry_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9a5a14a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sentry_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:sentry", + "template": "minecraft:sentry_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..6ccb466b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:shaper_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:shaper_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..9941c188 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shaper_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:shaper", + "template": "minecraft:shaper_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shears.json b/data/generated/V26_2/data/minecraft/recipe/shears.json new file mode 100644 index 00000000..83abe837 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shears.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:iron_ingot" + }, + "pattern": [ + " #", + "# " + ], + "result": { + "id": "minecraft:shears" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shield.json b/data/generated/V26_2/data/minecraft/recipe/shield.json new file mode 100644 index 00000000..87e424e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shield.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "W": "#minecraft:wooden_tool_materials", + "o": "minecraft:iron_ingot" + }, + "pattern": [ + "WoW", + "WWW", + " W " + ], + "result": { + "id": "minecraft:shield" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shield_decoration.json b/data/generated/V26_2/data/minecraft/recipe/shield_decoration.json new file mode 100644 index 00000000..036c7a5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shield_decoration.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:crafting_special_shielddecoration", + "banner": "#minecraft:banners", + "result": { + "id": "minecraft:shield" + }, + "target": "minecraft:shield" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/shulker_box.json new file mode 100644 index 00000000..d04d678d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/shulker_box.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:chest", + "-": "minecraft:shulker_shell" + }, + "pattern": [ + "-", + "#", + "-" + ], + "result": { + "id": "minecraft:shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..2ba7d70b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobbled_deepslate", + "S": "minecraft:silence_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:silence_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..33711f0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/silence_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:silence", + "template": "minecraft:silence_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/skull_banner_pattern.json b/data/generated/V26_2/data/minecraft/recipe/skull_banner_pattern.json new file mode 100644 index 00000000..155528ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/skull_banner_pattern.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:paper", + "minecraft:wither_skeleton_skull" + ], + "result": { + "id": "minecraft:skull_banner_pattern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/slime_ball.json b/data/generated/V26_2/data/minecraft/recipe/slime_ball.json new file mode 100644 index 00000000..79298c2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/slime_ball.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:slime_block" + ], + "result": { + "count": 9, + "id": "minecraft:slime_ball" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/slime_block.json b/data/generated/V26_2/data/minecraft/recipe/slime_block.json new file mode 100644 index 00000000..fe93e9cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/slime_block.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:slime_ball" + }, + "pattern": [ + "###", + "###", + "###" + ], + "result": { + "id": "minecraft:slime_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smithing_table.json b/data/generated/V26_2/data/minecraft/recipe/smithing_table.json new file mode 100644 index 00000000..2613b83b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smithing_table.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:planks", + "@": "minecraft:iron_ingot" + }, + "pattern": [ + "@@", + "##", + "##" + ], + "result": { + "id": "minecraft:smithing_table" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smoker.json b/data/generated/V26_2/data/minecraft/recipe/smoker.json new file mode 100644 index 00000000..71d32e1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smoker.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:logs", + "X": "minecraft:furnace" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "id": "minecraft:smoker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_basalt.json b/data/generated/V26_2/data/minecraft/recipe/smooth_basalt.json new file mode 100644 index 00000000..ab84b983 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_basalt.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:basalt", + "result": { + "id": "minecraft:smooth_basalt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_quartz.json b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz.json new file mode 100644 index 00000000..da764943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:quartz_block", + "result": { + "id": "minecraft:smooth_quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab.json b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab.json new file mode 100644 index 00000000..afa8ab60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_quartz" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..9bbbee7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_slab_from_smooth_quartz_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_quartz", + "result": { + "count": 2, + "id": "minecraft:smooth_quartz_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs.json b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs.json new file mode 100644 index 00000000..6c654436 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_quartz" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json new file mode 100644 index 00000000..2ee658f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_quartz_stairs_from_smooth_quartz_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_quartz", + "result": { + "id": "minecraft:smooth_quartz_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone.json new file mode 100644 index 00000000..7f19f834 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:red_sandstone", + "result": { + "id": "minecraft:smooth_red_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..5cfb7c92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_red_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..3393a8b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_slab_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_red_sandstone", + "result": { + "count": 2, + "id": "minecraft:smooth_red_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..d8c67687 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_red_sandstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json new file mode 100644 index 00000000..a602eef9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_red_sandstone_stairs_from_smooth_red_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_red_sandstone", + "result": { + "id": "minecraft:smooth_red_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone.json b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone.json new file mode 100644 index 00000000..f6c616f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:sandstone", + "result": { + "id": "minecraft:smooth_sandstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab.json b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab.json new file mode 100644 index 00000000..0ea7133e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_sandstone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..7caa3aec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_slab_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_sandstone", + "result": { + "count": 2, + "id": "minecraft:smooth_sandstone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs.json new file mode 100644 index 00000000..0d45df20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_sandstone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:smooth_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json new file mode 100644 index 00000000..ac2be615 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_sandstone_stairs_from_smooth_sandstone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_sandstone", + "result": { + "id": "minecraft:smooth_sandstone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_stone.json b/data/generated/V26_2/data/minecraft/recipe/smooth_stone.json new file mode 100644 index 00000000..4cd94e39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_stone.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:smooth_stone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab.json b/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab.json new file mode 100644 index 00000000..d1ea0a20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:smooth_stone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:smooth_stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json new file mode 100644 index 00000000..e375f2b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/smooth_stone_slab_from_smooth_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:smooth_stone", + "result": { + "count": 2, + "id": "minecraft:smooth_stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..f4dd5198 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:blackstone", + "S": "minecraft:snout_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:snout_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..fef00c3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/snout_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:snout", + "template": "minecraft:snout_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/snow.json b/data/generated/V26_2/data/minecraft/recipe/snow.json new file mode 100644 index 00000000..b7eacd7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/snow.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:snow_block" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:snow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/snow_block.json b/data/generated/V26_2/data/minecraft/recipe/snow_block.json new file mode 100644 index 00000000..b44406dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/snow_block.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:snowball" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:snow_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/soul_campfire.json b/data/generated/V26_2/data/minecraft/recipe/soul_campfire.json new file mode 100644 index 00000000..c6e27f2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/soul_campfire.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "#minecraft:soul_fire_base_blocks", + "L": "#minecraft:logs", + "S": "minecraft:stick" + }, + "pattern": [ + " S ", + "S#S", + "LLL" + ], + "result": { + "id": "minecraft:soul_campfire" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/soul_lantern.json b/data/generated/V26_2/data/minecraft/recipe/soul_lantern.json new file mode 100644 index 00000000..f6d67b10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/soul_lantern.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:soul_torch", + "X": "minecraft:iron_nugget" + }, + "pattern": [ + "XXX", + "X#X", + "XXX" + ], + "result": { + "id": "minecraft:soul_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/soul_torch.json b/data/generated/V26_2/data/minecraft/recipe/soul_torch.json new file mode 100644 index 00000000..0fc73942 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/soul_torch.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "S": "#minecraft:soul_fire_base_blocks", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "X", + "#", + "S" + ], + "result": { + "count": 4, + "id": "minecraft:soul_torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spectral_arrow.json b/data/generated/V26_2/data/minecraft/recipe/spectral_arrow.json new file mode 100644 index 00000000..99d9dfb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spectral_arrow.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:glowstone_dust", + "X": "minecraft:arrow" + }, + "pattern": [ + " # ", + "#X#", + " # " + ], + "result": { + "count": 2, + "id": "minecraft:spectral_arrow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..bc8c3e2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:purpur_block", + "S": "minecraft:spire_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:spire_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..2fd3e875 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spire_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:spire", + "template": "minecraft:spire_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sponge.json b/data/generated/V26_2/data/minecraft/recipe/sponge.json new file mode 100644 index 00000000..8ccaebce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sponge.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.15, + "ingredient": "minecraft:wet_sponge", + "result": { + "id": "minecraft:sponge" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_boat.json b/data/generated/V26_2/data/minecraft/recipe/spruce_boat.json new file mode 100644 index 00000000..ad3b43b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_boat.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "boat", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "# #", + "###" + ], + "result": { + "id": "minecraft:spruce_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_button.json b/data/generated/V26_2/data/minecraft/recipe/spruce_button.json new file mode 100644 index 00000000..5422823b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:spruce_planks" + ], + "result": { + "id": "minecraft:spruce_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_chest_boat.json b/data/generated/V26_2/data/minecraft/recipe/spruce_chest_boat.json new file mode 100644 index 00000000..a277ed68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_chest_boat.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "chest_boat", + "ingredients": [ + "minecraft:chest", + "minecraft:spruce_boat" + ], + "result": { + "id": "minecraft:spruce_chest_boat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_door.json b/data/generated/V26_2/data/minecraft/recipe/spruce_door.json new file mode 100644 index 00000000..0022b71e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_fence.json b/data/generated/V26_2/data/minecraft/recipe/spruce_fence.json new file mode 100644 index 00000000..a434ae96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:spruce_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/spruce_fence_gate.json new file mode 100644 index 00000000..d4c730ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:spruce_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:spruce_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/spruce_hanging_sign.json new file mode 100644 index 00000000..607a8543 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_spruce_log", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_planks.json b/data/generated/V26_2/data/minecraft/recipe/spruce_planks.json new file mode 100644 index 00000000..3609f5fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:spruce_logs" + ], + "result": { + "count": 4, + "id": "minecraft:spruce_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/spruce_pressure_plate.json new file mode 100644 index 00000000..0f5f8630 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:spruce_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_shelf.json b/data/generated/V26_2/data/minecraft/recipe/spruce_shelf.json new file mode 100644 index 00000000..d386f25c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_spruce_log" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_sign.json b/data/generated/V26_2/data/minecraft/recipe/spruce_sign.json new file mode 100644 index 00000000..c043f439 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:spruce_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:spruce_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_slab.json b/data/generated/V26_2/data/minecraft/recipe/spruce_slab.json new file mode 100644 index 00000000..abe2810c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:spruce_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_stairs.json b/data/generated/V26_2/data/minecraft/recipe/spruce_stairs.json new file mode 100644 index 00000000..b8e08cee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:spruce_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/spruce_trapdoor.json new file mode 100644 index 00000000..ec878a63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:spruce_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:spruce_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spruce_wood.json b/data/generated/V26_2/data/minecraft/recipe/spruce_wood.json new file mode 100644 index 00000000..406d0f36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spruce_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:spruce_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:spruce_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/spyglass.json b/data/generated/V26_2/data/minecraft/recipe/spyglass.json new file mode 100644 index 00000000..07da51ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/spyglass.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:amethyst_shard", + "X": "minecraft:copper_ingot" + }, + "pattern": [ + " # ", + " X ", + " X " + ], + "result": { + "id": "minecraft:spyglass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stick.json b/data/generated/V26_2/data/minecraft/recipe/stick.json new file mode 100644 index 00000000..bb8d884f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stick.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "sticks", + "key": { + "#": "#minecraft:planks" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stick_from_bamboo_item.json b/data/generated/V26_2/data/minecraft/recipe/stick_from_bamboo_item.json new file mode 100644 index 00000000..69052a39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stick_from_bamboo_item.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "sticks", + "key": { + "#": "minecraft:bamboo" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sticky_piston.json b/data/generated/V26_2/data/minecraft/recipe/sticky_piston.json new file mode 100644 index 00000000..53c80a2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sticky_piston.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "P": "minecraft:piston", + "S": "minecraft:slime_ball" + }, + "pattern": [ + "S", + "P" + ], + "result": { + "id": "minecraft:sticky_piston" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone.json b/data/generated/V26_2/data/minecraft/recipe/stone.json new file mode 100644 index 00000000..f58fce36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:cobblestone", + "result": { + "id": "minecraft:stone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_axe.json b/data/generated/V26_2/data/minecraft/recipe/stone_axe.json new file mode 100644 index 00000000..9dca9730 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:stone_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab.json new file mode 100644 index 00000000..e5d8e454 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..705c851b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..50a0a49a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:stone_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs.json new file mode 100644 index 00000000..f903839c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..546ca6dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..ce6417c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall.json new file mode 100644 index 00000000..4221de6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stone_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json new file mode 100644 index 00000000..6bb0404d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone_bricks", + "result": { + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json new file mode 100644 index 00000000..647cd14a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_brick_wall_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_bricks.json b/data/generated/V26_2/data/minecraft/recipe/stone_bricks.json new file mode 100644 index 00000000..d665b2b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json new file mode 100644 index 00000000..211dd0b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_bricks_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_button.json b/data/generated/V26_2/data/minecraft/recipe/stone_button.json new file mode 100644 index 00000000..9df67099 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_button.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:stone" + ], + "result": { + "id": "minecraft:stone_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_hoe.json b/data/generated/V26_2/data/minecraft/recipe/stone_hoe.json new file mode 100644 index 00000000..264c28d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:stone_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/stone_pickaxe.json new file mode 100644 index 00000000..2dc01cd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:stone_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/stone_pressure_plate.json new file mode 100644 index 00000000..2945dfdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_pressure_plate.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:stone_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_shovel.json b/data/generated/V26_2/data/minecraft/recipe/stone_shovel.json new file mode 100644 index 00000000..01a40ede --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:stone_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_slab.json b/data/generated/V26_2/data/minecraft/recipe/stone_slab.json new file mode 100644 index 00000000..a806dd95 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json new file mode 100644 index 00000000..930b82dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_slab_from_stone_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "count": 2, + "id": "minecraft:stone_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_spear.json b/data/generated/V26_2/data/minecraft/recipe/stone_spear.json new file mode 100644 index 00000000..32cb407d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:stone_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_stairs.json b/data/generated/V26_2/data/minecraft/recipe/stone_stairs.json new file mode 100644 index 00000000..9303ad94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:stone" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:stone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json new file mode 100644 index 00000000..138ada25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_stairs_from_stone_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:stone", + "result": { + "id": "minecraft:stone_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stone_sword.json b/data/generated/V26_2/data/minecraft/recipe/stone_sword.json new file mode 100644 index 00000000..5413d5d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stone_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:stone_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:stone_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stonecutter.json b/data/generated/V26_2/data/minecraft/recipe/stonecutter.json new file mode 100644 index 00000000..fa4bbf3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stonecutter.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stone", + "I": "minecraft:iron_ingot" + }, + "pattern": [ + " I ", + "###" + ], + "result": { + "id": "minecraft:stonecutter" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_acacia_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_acacia_wood.json new file mode 100644 index 00000000..5c2d6c30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_acacia_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_acacia_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_acacia_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_birch_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_birch_wood.json new file mode 100644 index 00000000..c8e20c51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_birch_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_birch_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_birch_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_cherry_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_cherry_wood.json new file mode 100644 index 00000000..bd09789f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_cherry_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_cherry_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_cherry_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_crimson_hyphae.json b/data/generated/V26_2/data/minecraft/recipe/stripped_crimson_hyphae.json new file mode 100644 index 00000000..4fd4c73b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_crimson_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_crimson_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_crimson_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_dark_oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_dark_oak_wood.json new file mode 100644 index 00000000..57bd48d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_dark_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_dark_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_dark_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_jungle_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_jungle_wood.json new file mode 100644 index 00000000..f555d670 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_jungle_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_jungle_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_jungle_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_mangrove_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_mangrove_wood.json new file mode 100644 index 00000000..ffae85f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_mangrove_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_mangrove_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_mangrove_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_oak_wood.json new file mode 100644 index 00000000..04844761 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_pale_oak_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_pale_oak_wood.json new file mode 100644 index 00000000..b6169e2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_pale_oak_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_pale_oak_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_pale_oak_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_spruce_wood.json b/data/generated/V26_2/data/minecraft/recipe/stripped_spruce_wood.json new file mode 100644 index 00000000..6829fc6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_spruce_wood.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_spruce_log" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_spruce_wood" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/stripped_warped_hyphae.json b/data/generated/V26_2/data/minecraft/recipe/stripped_warped_hyphae.json new file mode 100644 index 00000000..0efb427b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/stripped_warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:stripped_warped_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:stripped_warped_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sugar_from_honey_bottle.json b/data/generated/V26_2/data/minecraft/recipe/sugar_from_honey_bottle.json new file mode 100644 index 00000000..beaf956c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sugar_from_honey_bottle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "sugar", + "ingredients": [ + "minecraft:honey_bottle" + ], + "result": { + "count": 3, + "id": "minecraft:sugar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sugar_from_sugar_cane.json b/data/generated/V26_2/data/minecraft/recipe/sugar_from_sugar_cane.json new file mode 100644 index 00000000..5bc71fdc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sugar_from_sugar_cane.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "sugar", + "ingredients": [ + "minecraft:sugar_cane" + ], + "result": { + "id": "minecraft:sugar" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab.json new file mode 100644 index 00000000..e7907a6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sulfur_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..faa68946 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_polished_sulfur_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "count": 2, + "id": "minecraft:sulfur_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..a0a7f8ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur_bricks", + "result": { + "count": 2, + "id": "minecraft:sulfur_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..f13b4352 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_slab_from_sulfur_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "count": 2, + "id": "minecraft:sulfur_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs.json new file mode 100644 index 00000000..272d19f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:sulfur_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..3b4062c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_polished_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "id": "minecraft:sulfur_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..1b230d6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur_bricks", + "result": { + "id": "minecraft:sulfur_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..c9b7314a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:sulfur_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall.json new file mode 100644 index 00000000..19753ed2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:sulfur_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sulfur_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..7bc3a7fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_polished_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "id": "minecraft:sulfur_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json new file mode 100644 index 00000000..0e210840 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur_bricks", + "result": { + "id": "minecraft:sulfur_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..eb58db7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_brick_wall_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:sulfur_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks.json new file mode 100644 index 00000000..5423ca1a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_sulfur" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:sulfur_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_polished_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_polished_sulfur_stonecutting.json new file mode 100644 index 00000000..103b6d4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_polished_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_sulfur", + "result": { + "id": "minecraft:sulfur_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_sulfur_stonecutting.json new file mode 100644 index 00000000..72708db2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_bricks_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:sulfur_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_from_sulfur_spikes.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_from_sulfur_spikes.json new file mode 100644 index 00000000..33369196 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_from_sulfur_spikes.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur_spike" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:sulfur" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_slab.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_slab.json new file mode 100644 index 00000000..455da3ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sulfur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_slab_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_slab_from_sulfur_stonecutting.json new file mode 100644 index 00000000..6599ec07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_slab_from_sulfur_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "count": 2, + "id": "minecraft:sulfur_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs.json new file mode 100644 index 00000000..a619f2b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:sulfur" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:sulfur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs_from_sulfur_stonecutting.json new file mode 100644 index 00000000..c5c2a545 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_stairs_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:sulfur_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_wall.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_wall.json new file mode 100644 index 00000000..629d808c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:sulfur" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:sulfur_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/sulfur_wall_from_sulfur_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/sulfur_wall_from_sulfur_stonecutting.json new file mode 100644 index 00000000..266300d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/sulfur_wall_from_sulfur_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:sulfur", + "result": { + "id": "minecraft:sulfur_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_allium.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_allium.json new file mode 100644 index 00000000..2d101321 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_allium.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:allium" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 60, + "id": "minecraft:fire_resistance" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json new file mode 100644 index 00000000..04badffe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_azure_bluet.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:azure_bluet" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json new file mode 100644 index 00000000..c50a4db3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_blue_orchid.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:blue_orchid" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json new file mode 100644 index 00000000..d449bec4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_closed_eyeblossom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:closed_eyeblossom" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:nausea" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_cornflower.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_cornflower.json new file mode 100644 index 00000000..185707c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_cornflower.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:cornflower" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:jump_boost" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_dandelion.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_dandelion.json new file mode 100644 index 00000000..9c877658 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_dandelion.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:dandelion" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json new file mode 100644 index 00000000..75e54e4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_golden_dandelion.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:golden_dandelion" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json new file mode 100644 index 00000000..2ee12f1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_lily_of_the_valley.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:lily_of_the_valley" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:poison" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json new file mode 100644 index 00000000..8a5ce839 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_open_eyeblossom.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:open_eyeblossom" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json new file mode 100644 index 00000000..3179726d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_orange_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:orange_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json new file mode 100644 index 00000000..66794df2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_oxeye_daisy.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:oxeye_daisy" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:regeneration" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json new file mode 100644 index 00000000..a953e64a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_pink_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:pink_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_poppy.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_poppy.json new file mode 100644 index 00000000..e75c89ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_poppy.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:poppy" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_red_tulip.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_red_tulip.json new file mode 100644 index 00000000..f19dd852 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_red_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:red_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_torchflower.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_torchflower.json new file mode 100644 index 00000000..55ece676 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_torchflower.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:torchflower" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_white_tulip.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_white_tulip.json new file mode 100644 index 00000000..c27b6231 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_white_tulip.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:white_tulip" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_wither_rose.json b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_wither_rose.json new file mode 100644 index 00000000..51f2ac2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/suspicious_stew_from_wither_rose.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "suspicious_stew", + "ingredients": [ + "minecraft:bowl", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wither_rose" + ], + "result": { + "components": { + "minecraft:suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:wither" + } + ] + }, + "id": "minecraft:suspicious_stew" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/target.json b/data/generated/V26_2/data/minecraft/recipe/target.json new file mode 100644 index 00000000..5183b09c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/target.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "H": "minecraft:hay_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " R ", + "RHR", + " R " + ], + "result": { + "id": "minecraft:target" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/terracotta.json b/data/generated/V26_2/data/minecraft/recipe/terracotta.json new file mode 100644 index 00000000..72b1a4eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.35, + "ingredient": "minecraft:clay", + "result": { + "id": "minecraft:terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..748d4a8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:prismarine", + "S": "minecraft:tide_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:tide_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..6eca0d9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tide_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:tide", + "template": "minecraft:tide_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tinted_glass.json b/data/generated/V26_2/data/minecraft/recipe/tinted_glass.json new file mode 100644 index 00000000..22d60265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tinted_glass.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "G": "minecraft:glass", + "S": "minecraft:amethyst_shard" + }, + "pattern": [ + " S ", + "SGS", + " S " + ], + "result": { + "count": 2, + "id": "minecraft:tinted_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tipped_arrow.json b/data/generated/V26_2/data/minecraft/recipe/tipped_arrow.json new file mode 100644 index 00000000..bec67af7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tipped_arrow.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_imbue", + "material": "minecraft:arrow", + "result": { + "count": 8, + "id": "minecraft:tipped_arrow" + }, + "source": "minecraft:lingering_potion" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tnt.json b/data/generated/V26_2/data/minecraft/recipe/tnt.json new file mode 100644 index 00000000..127d3e32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tnt.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": [ + "minecraft:sand", + "minecraft:red_sand" + ], + "X": "minecraft:gunpowder" + }, + "pattern": [ + "X#X", + "#X#", + "X#X" + ], + "result": { + "id": "minecraft:tnt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tnt_minecart.json b/data/generated/V26_2/data/minecraft/recipe/tnt_minecart.json new file mode 100644 index 00000000..1ccf4b6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tnt_minecart.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:tnt", + "minecraft:minecart" + ], + "result": { + "id": "minecraft:tnt_minecart" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/torch.json b/data/generated/V26_2/data/minecraft/recipe/torch.json new file mode 100644 index 00000000..239ad3f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/torch.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:stick", + "X": [ + "minecraft:coal", + "minecraft:charcoal" + ] + }, + "pattern": [ + "X", + "#" + ], + "result": { + "count": 4, + "id": "minecraft:torch" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/trapped_chest.json b/data/generated/V26_2/data/minecraft/recipe/trapped_chest.json new file mode 100644 index 00000000..b88a443c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/trapped_chest.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "ingredients": [ + "minecraft:chest", + "minecraft:tripwire_hook" + ], + "result": { + "id": "minecraft:trapped_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tripwire_hook.json b/data/generated/V26_2/data/minecraft/recipe/tripwire_hook.json new file mode 100644 index 00000000..517cb480 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tripwire_hook.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "key": { + "#": "#minecraft:planks", + "I": "minecraft:iron_ingot", + "S": "minecraft:stick" + }, + "pattern": [ + "I", + "S", + "#" + ], + "result": { + "count": 2, + "id": "minecraft:tripwire_hook" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab.json new file mode 100644 index 00000000..1594434c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..03be0abc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_polished_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..89a7e7dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_bricks_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..fb0aef07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_brick_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs.json new file mode 100644 index 00000000..cb9371b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..10bad357 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..a401f3a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..75d95078 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_brick_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall.json new file mode 100644 index 00000000..eb8c837a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:tuff_bricks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..0d0e6401 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json new file mode 100644 index 00000000..8514262c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_bricks_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff_bricks", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..916051f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_brick_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_brick_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_bricks.json b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks.json new file mode 100644 index 00000000..e8324847 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:polished_tuff" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json new file mode 100644 index 00000000..89db1f74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_polished_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:polished_tuff", + "result": { + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json new file mode 100644 index 00000000..9ca28ec0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_bricks_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_bricks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_slab.json b/data/generated/V26_2/data/minecraft/recipe/tuff_slab.json new file mode 100644 index 00000000..23b2d28b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json new file mode 100644 index 00000000..8f5f7264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_slab_from_tuff_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "count": 2, + "id": "minecraft:tuff_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_stairs.json b/data/generated/V26_2/data/minecraft/recipe/tuff_stairs.json new file mode 100644 index 00000000..bb88093d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json new file mode 100644 index 00000000..fc4ee764 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_stairs_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_wall.json b/data/generated/V26_2/data/minecraft/recipe/tuff_wall.json new file mode 100644 index 00000000..c5d4ac0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_wall.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:tuff" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json new file mode 100644 index 00000000..e93b3946 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/tuff_wall_from_tuff_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:tuff", + "result": { + "id": "minecraft:tuff_wall" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/turtle_helmet.json b/data/generated/V26_2/data/minecraft/recipe/turtle_helmet.json new file mode 100644 index 00000000..8c34aa81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/turtle_helmet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:turtle_scute" + }, + "pattern": [ + "XXX", + "X X" + ], + "result": { + "id": "minecraft:turtle_helmet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..ad9eff4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobblestone", + "S": "minecraft:vex_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:vex_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..fc4bb7c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/vex_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:vex", + "template": "minecraft:vex_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..4b643633 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:cobbled_deepslate", + "S": "minecraft:ward_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:ward_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..4dae63a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/ward_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:ward", + "template": "minecraft:ward_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_button.json b/data/generated/V26_2/data/minecraft/recipe/warped_button.json new file mode 100644 index 00000000..ffe04541 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_button.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "wooden_button", + "ingredients": [ + "minecraft:warped_planks" + ], + "result": { + "id": "minecraft:warped_button" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_door.json b/data/generated/V26_2/data/minecraft/recipe/warped_door.json new file mode 100644 index 00000000..f2af5905 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_door.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_door", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "##", + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:warped_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_fence.json b/data/generated/V26_2/data/minecraft/recipe/warped_fence.json new file mode 100644 index 00000000..4fca6f58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_fence.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_fence", + "key": { + "#": "minecraft:stick", + "W": "minecraft:warped_planks" + }, + "pattern": [ + "W#W", + "W#W" + ], + "result": { + "count": 3, + "id": "minecraft:warped_fence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_fence_gate.json b/data/generated/V26_2/data/minecraft/recipe/warped_fence_gate.json new file mode 100644 index 00000000..6c9d0f09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_fence_gate.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_fence_gate", + "key": { + "#": "minecraft:stick", + "W": "minecraft:warped_planks" + }, + "pattern": [ + "#W#", + "#W#" + ], + "result": { + "id": "minecraft:warped_fence_gate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_fungus_on_a_stick.json b/data/generated/V26_2/data/minecraft/recipe/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..faec2277 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_fungus_on_a_stick.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:fishing_rod", + "X": "minecraft:warped_fungus" + }, + "pattern": [ + "# ", + " X" + ], + "result": { + "id": "minecraft:warped_fungus_on_a_stick" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_hanging_sign.json b/data/generated/V26_2/data/minecraft/recipe/warped_hanging_sign.json new file mode 100644 index 00000000..2140702c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_hanging_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_hanging_sign", + "key": { + "#": "minecraft:stripped_warped_stem", + "X": "minecraft:iron_chain" + }, + "pattern": [ + "X X", + "###", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_hanging_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_hyphae.json b/data/generated/V26_2/data/minecraft/recipe/warped_hyphae.json new file mode 100644 index 00000000..753a67e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_hyphae.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "bark", + "key": { + "#": "minecraft:warped_stem" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 3, + "id": "minecraft:warped_hyphae" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_planks.json b/data/generated/V26_2/data/minecraft/recipe/warped_planks.json new file mode 100644 index 00000000..95c3c1af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_planks.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "planks", + "ingredients": [ + "#minecraft:warped_stems" + ], + "result": { + "count": 4, + "id": "minecraft:warped_planks" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_pressure_plate.json b/data/generated/V26_2/data/minecraft/recipe/warped_pressure_plate.json new file mode 100644 index 00000000..0fcd1d6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_pressure_plate.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_pressure_plate", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "##" + ], + "result": { + "id": "minecraft:warped_pressure_plate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_shelf.json b/data/generated/V26_2/data/minecraft/recipe/warped_shelf.json new file mode 100644 index 00000000..6f951282 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_shelf.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "shelf", + "key": { + "#": "minecraft:stripped_warped_stem" + }, + "pattern": [ + "###", + " ", + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_shelf" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_sign.json b/data/generated/V26_2/data/minecraft/recipe/warped_sign.json new file mode 100644 index 00000000..46884e08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_sign.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "wooden_sign", + "key": { + "#": "minecraft:warped_planks", + "X": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " X " + ], + "result": { + "count": 3, + "id": "minecraft:warped_sign" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_slab.json b/data/generated/V26_2/data/minecraft/recipe/warped_slab.json new file mode 100644 index 00000000..0c3566d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_slab", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:warped_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_stairs.json b/data/generated/V26_2/data/minecraft/recipe/warped_stairs.json new file mode 100644 index 00000000..29328430 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "wooden_stairs", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:warped_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/warped_trapdoor.json b/data/generated/V26_2/data/minecraft/recipe/warped_trapdoor.json new file mode 100644 index 00000000..05bff88b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/warped_trapdoor.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "wooden_trapdoor", + "key": { + "#": "minecraft:warped_planks" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:warped_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper.json new file mode 100644 index 00000000..5049590e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_chiseled_copper", + "key": { + "M": "minecraft:waxed_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..fa866066 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_chiseled_copper", + "ingredients": [ + "minecraft:chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a9fe4a86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..9c8a3a3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_chiseled_copper_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "id": "minecraft:waxed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..6e7ce031 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json new file mode 100644 index 00000000..c435f7ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_block_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:copper_block", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb.json new file mode 100644 index 00000000..2de5e63f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_copper_block", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..82a4e2a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_bulb", + "ingredients": [ + "minecraft:copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..f33e8648 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..a750b15e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..fdaf4d0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..73ab4854 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate.json new file mode 100644 index 00000000..ee1d645f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_copper_grate", + "key": { + "M": "minecraft:waxed_copper_block" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..eba6a5e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_grate", + "ingredients": [ + "minecraft:copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..a2a1232a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_grate_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3dab3525 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..63917684 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper.json new file mode 100644 index 00000000..9d050bd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper", + "key": { + "#": "minecraft:waxed_copper_block" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..0a9bc3d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper", + "ingredients": [ + "minecraft:cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..7b4d8421 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab.json new file mode 100644 index 00000000..a5c962d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper_slab", + "key": { + "#": "minecraft:waxed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..6ccfa871 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper_slab", + "ingredients": [ + "minecraft:cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..e98500cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 8, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..e38ac369 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_slab_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..3af584eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..a55f1134 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_cut_copper_stairs", + "ingredients": [ + "minecraft:cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json new file mode 100644 index 00000000..af106046 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_copper_block_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_copper_block", + "result": { + "count": 4, + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json new file mode 100644 index 00000000..114047bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_cut_copper_stairs_from_waxed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_cut_copper", + "result": { + "id": "minecraft:waxed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..5884e813 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_chiseled_copper", + "key": { + "M": "minecraft:waxed_exposed_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..c9bd66e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_chiseled_copper", + "ingredients": [ + "minecraft:exposed_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..535527dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..b0ca06da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_chiseled_copper_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "id": "minecraft:waxed_exposed_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..4d7819ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:exposed_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..4194a498 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_exposed_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_exposed_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..59b7bf15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_exposed_copper_bulb", + "ingredients": [ + "minecraft:exposed_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..9ff465b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:exposed_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..9cf1edab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:exposed_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json new file mode 100644 index 00000000..2c23a058 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:exposed_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json new file mode 100644 index 00000000..f28dcca1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:exposed_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..bbf61d93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:exposed_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..5f52f7d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_copper_grate", + "key": { + "M": "minecraft:waxed_exposed_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..2e34b346 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_copper_grate", + "ingredients": [ + "minecraft:exposed_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..ecc67bde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_grate_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..faf5303c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:exposed_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..81e53fba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:exposed_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..1c59d4ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper", + "key": { + "#": "minecraft:waxed_exposed_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..c87eb166 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper", + "ingredients": [ + "minecraft:exposed_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..e4b608aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..177a4b6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper_slab", + "key": { + "#": "minecraft:waxed_exposed_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..0c922bcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper_slab", + "ingredients": [ + "minecraft:exposed_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..f5e37d2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..cc39ee9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_slab_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_exposed_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..1fe5d859 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_exposed_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_exposed_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..8fb5619e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_exposed_cut_copper_stairs", + "ingredients": [ + "minecraft:exposed_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json new file mode 100644 index 00000000..d2ab1991 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json new file mode 100644 index 00000000..f3f61643 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_cut_copper_stairs_from_waxed_exposed_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_exposed_cut_copper", + "result": { + "id": "minecraft:waxed_exposed_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..a9621058 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_exposed_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:exposed_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_exposed_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..37493823 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..21c06e8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_chiseled_copper", + "key": { + "M": "minecraft:waxed_oxidized_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..ec04a414 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_chiseled_copper", + "ingredients": [ + "minecraft:oxidized_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..7f5720ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..5a998127 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_chiseled_copper_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "id": "minecraft:waxed_oxidized_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..3bec8d67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:oxidized_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..63117f87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_oxidized_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_oxidized_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..2a4d0ff8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_oxidized_copper_bulb", + "ingredients": [ + "minecraft:oxidized_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..041263d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:oxidized_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..d1604432 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:oxidized_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json new file mode 100644 index 00000000..47981ca7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:oxidized_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json new file mode 100644 index 00000000..0cd907a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:oxidized_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..818c6ef1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:oxidized_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..aa5ce62f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_copper_grate", + "key": { + "M": "minecraft:waxed_oxidized_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..1342a05e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_copper_grate", + "ingredients": [ + "minecraft:oxidized_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..3c40d15b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_grate_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3287167f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:oxidized_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..5f4475c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:oxidized_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..2493f0c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper", + "key": { + "#": "minecraft:waxed_oxidized_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..e4cc2f83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper", + "ingredients": [ + "minecraft:oxidized_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..73581a1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..9f39f48b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper_slab", + "key": { + "#": "minecraft:waxed_oxidized_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..6c162c98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper_slab", + "ingredients": [ + "minecraft:oxidized_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..d6e7f51e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..cbde8f7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_slab_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_oxidized_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..729c4f25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_oxidized_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_oxidized_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..7926c264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_oxidized_cut_copper_stairs", + "ingredients": [ + "minecraft:oxidized_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json new file mode 100644 index 00000000..45625cd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json new file mode 100644 index 00000000..c2712adf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_cut_copper_stairs_from_waxed_oxidized_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_oxidized_cut_copper", + "result": { + "id": "minecraft:waxed_oxidized_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..52e98a89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_oxidized_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:oxidized_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_oxidized_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..fa062c02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_chiseled_copper", + "key": { + "M": "minecraft:waxed_weathered_cut_copper_slab" + }, + "pattern": [ + " M ", + " M " + ], + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json new file mode 100644 index 00000000..e0ad5c13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_chiseled_copper", + "ingredients": [ + "minecraft:weathered_chiseled_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..c3a57f8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5dcacacb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_chiseled_copper_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "id": "minecraft:waxed_weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json new file mode 100644 index 00000000..0f63f7b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bars_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_bar", + "ingredients": [ + "minecraft:weathered_copper_bars", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_bars" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..86de8395 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "waxed_weathered_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:waxed_weathered_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json new file mode 100644 index 00000000..f099acd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_bulb_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_weathered_copper_bulb", + "ingredients": [ + "minecraft:weathered_copper_bulb", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json new file mode 100644 index 00000000..3bf97f21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chain_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chain", + "ingredients": [ + "minecraft:weathered_copper_chain", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_chain" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json new file mode 100644 index 00000000..3346dd77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_chest_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_chest", + "ingredients": [ + "minecraft:weathered_copper_chest", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_chest" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json new file mode 100644 index 00000000..7876566e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_door_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_door", + "ingredients": [ + "minecraft:weathered_copper_door", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_door" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json new file mode 100644 index 00000000..d0d7d94e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_block", + "ingredients": [ + "minecraft:weathered_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json new file mode 100644 index 00000000..949c776a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_golem_statue_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_golem_statue", + "ingredients": [ + "minecraft:weathered_copper_golem_statue", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_golem_statue" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..b270263c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_copper_grate", + "key": { + "M": "minecraft:waxed_weathered_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json new file mode 100644 index 00000000..7efc6e33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_copper_grate", + "ingredients": [ + "minecraft:weathered_copper_grate", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..58c276dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_grate_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json new file mode 100644 index 00000000..3daa395d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_lantern_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_copper_lantern", + "ingredients": [ + "minecraft:weathered_copper_lantern", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_lantern" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json new file mode 100644 index 00000000..820edea0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_copper_trapdoor_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "redstone", + "group": "waxed_copper_trapdoor", + "ingredients": [ + "minecraft:weathered_copper_trapdoor", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_copper_trapdoor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..3974f10a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper", + "key": { + "#": "minecraft:waxed_weathered_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json new file mode 100644 index 00000000..6f46b1d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper", + "ingredients": [ + "minecraft:weathered_cut_copper", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..41b85441 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..0657aee7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper_slab", + "key": { + "#": "minecraft:waxed_weathered_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json new file mode 100644 index 00000000..ac736532 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper_slab", + "ingredients": [ + "minecraft:weathered_cut_copper_slab", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..daf8caf9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 8, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..6b4e5915 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_slab_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "count": 2, + "id": "minecraft:waxed_weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..6b5b79f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "waxed_weathered_cut_copper_stairs", + "key": { + "#": "minecraft:waxed_weathered_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json new file mode 100644 index 00000000..46aafe59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_weathered_cut_copper_stairs", + "ingredients": [ + "minecraft:weathered_cut_copper_stairs", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json new file mode 100644 index 00000000..95d35a7a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_copper", + "result": { + "count": 4, + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5e8679df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_cut_copper_stairs_from_waxed_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:waxed_weathered_cut_copper", + "result": { + "id": "minecraft:waxed_weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json new file mode 100644 index 00000000..880e903c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/waxed_weathered_lightning_rod_from_honeycomb.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "waxed_lightning_rod", + "ingredients": [ + "minecraft:weathered_lightning_rod", + "minecraft:honeycomb" + ], + "result": { + "id": "minecraft:waxed_weathered_lightning_rod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..636464e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:terracotta", + "S": "minecraft:wayfinder_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:wayfinder_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..465d06f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wayfinder_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:wayfinder", + "template": "minecraft:wayfinder_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper.json b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper.json new file mode 100644 index 00000000..c8b33c4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper_slab" + }, + "pattern": [ + "#", + "#" + ], + "result": { + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..3b68dd6d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..5f2cc08e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_chiseled_copper_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "id": "minecraft:weathered_chiseled_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_copper_bulb.json b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_bulb.json new file mode 100644 index 00000000..e9bd7853 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_bulb.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "redstone", + "group": "weathered_copper_bulb", + "key": { + "B": "minecraft:blaze_rod", + "C": "minecraft:weathered_copper", + "R": "minecraft:redstone" + }, + "pattern": [ + " C ", + "CBC", + " R " + ], + "result": { + "count": 4, + "id": "minecraft:weathered_copper_bulb" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate.json b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate.json new file mode 100644 index 00000000..7c2c633f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "weathered_copper_grate", + "key": { + "M": "minecraft:weathered_copper" + }, + "pattern": [ + " M ", + "M M", + " M " + ], + "result": { + "count": 4, + "id": "minecraft:weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..3c9d3c1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_copper_grate_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_copper_grate" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper.json new file mode 100644 index 00000000..d913d794 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_copper" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..ef41a497 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab.json new file mode 100644 index 00000000..f6ff1164 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper" + }, + "pattern": [ + "###" + ], + "result": { + "count": 6, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..083c1792 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 8, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..ce786304 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_slab_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "count": 2, + "id": "minecraft:weathered_cut_copper_slab" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..2cae1b28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:weathered_cut_copper" + }, + "pattern": [ + "# ", + "## ", + "###" + ], + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json new file mode 100644 index 00000000..8bb49f88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_copper_stonecutting.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_copper", + "result": { + "count": 4, + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json new file mode 100644 index 00000000..3714faa8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/weathered_cut_copper_stairs_from_weathered_cut_copper_stonecutting.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stonecutting", + "ingredient": "minecraft:weathered_cut_copper", + "result": { + "id": "minecraft:weathered_cut_copper_stairs" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wheat.json b/data/generated/V26_2/data/minecraft/recipe/wheat.json new file mode 100644 index 00000000..85219ac0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wheat.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:hay_block" + ], + "result": { + "count": 9, + "id": "minecraft:wheat" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_banner.json b/data/generated/V26_2/data/minecraft/recipe/white_banner.json new file mode 100644 index 00000000..b4a80d0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:white_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:white_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/white_banner_duplicate.json new file mode 100644 index 00000000..9df0752c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:white_banner", + "result": { + "id": "minecraft:white_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_bed.json b/data/generated/V26_2/data/minecraft/recipe/white_bed.json new file mode 100644 index 00000000..aa65c49a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:white_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:white_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_bundle.json b/data/generated/V26_2/data/minecraft/recipe/white_bundle.json new file mode 100644 index 00000000..69880b90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:white_dye", + "result": { + "id": "minecraft:white_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_candle.json b/data/generated/V26_2/data/minecraft/recipe/white_candle.json new file mode 100644 index 00000000..dbcd14b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:white_dye" + ], + "result": { + "id": "minecraft:white_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_carpet.json b/data/generated/V26_2/data/minecraft/recipe/white_carpet.json new file mode 100644 index 00000000..a6ffd674 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:white_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:white_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/white_concrete_powder.json new file mode 100644 index 00000000..83ca1693 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:white_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:white_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_dye.json b/data/generated/V26_2/data/minecraft/recipe/white_dye.json new file mode 100644 index 00000000..a04b4329 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_dye.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "white_dye", + "ingredients": [ + "minecraft:bone_meal" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json new file mode 100644 index 00000000..b7bc1849 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_dye_from_lily_of_the_valley.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "white_dye", + "ingredients": [ + "minecraft:lily_of_the_valley" + ], + "result": { + "id": "minecraft:white_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/white_glazed_terracotta.json new file mode 100644 index 00000000..0ed8d897 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:white_terracotta", + "result": { + "id": "minecraft:white_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_harness.json b/data/generated/V26_2/data/minecraft/recipe/white_harness.json new file mode 100644 index 00000000..eae43bd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:white_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:white_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/white_shulker_box.json new file mode 100644 index 00000000..5aa87df8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:white_dye", + "result": { + "id": "minecraft:white_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass.json new file mode 100644 index 00000000..269dc640 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane.json new file mode 100644 index 00000000..92d24dbc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:white_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:white_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..f2d9e2cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/white_terracotta.json new file mode 100644 index 00000000..e131d52f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:white_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:white_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/white_wool_from_string.json b/data/generated/V26_2/data/minecraft/recipe/white_wool_from_string.json new file mode 100644 index 00000000..ba62b223 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/white_wool_from_string.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "key": { + "#": "minecraft:string" + }, + "pattern": [ + "##", + "##" + ], + "result": { + "id": "minecraft:white_wool" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template.json b/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..b479f11e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "key": { + "#": "minecraft:diamond", + "C": "minecraft:mossy_cobblestone", + "S": "minecraft:wild_armor_trim_smithing_template" + }, + "pattern": [ + "#S#", + "#C#", + "###" + ], + "result": { + "count": 2, + "id": "minecraft:wild_armor_trim_smithing_template" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json b/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json new file mode 100644 index 00000000..ad95528d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wild_armor_trim_smithing_template_smithing_trim.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:smithing_trim", + "addition": "#minecraft:trim_materials", + "base": "#minecraft:trimmable_armor", + "pattern": "minecraft:wild", + "template": "minecraft:wild_armor_trim_smithing_template" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wind_charge.json b/data/generated/V26_2/data/minecraft/recipe/wind_charge.json new file mode 100644 index 00000000..d3a220d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wind_charge.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:breeze_rod" + ], + "result": { + "count": 4, + "id": "minecraft:wind_charge" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wolf_armor.json b/data/generated/V26_2/data/minecraft/recipe/wolf_armor.json new file mode 100644 index 00000000..9d424c22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wolf_armor.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "X": "minecraft:armadillo_scute" + }, + "pattern": [ + "X ", + "XXX", + "X X" + ], + "result": { + "id": "minecraft:wolf_armor" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wolf_armor_dyed.json b/data/generated/V26_2/data/minecraft/recipe/wolf_armor_dyed.json new file mode 100644 index 00000000..a64e6f0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wolf_armor_dyed.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_dye", + "dye": "#minecraft:dyes", + "group": "dyed_armor", + "result": { + "id": "minecraft:wolf_armor" + }, + "target": "minecraft:wolf_armor" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_axe.json b/data/generated/V26_2/data/minecraft/recipe/wooden_axe.json new file mode 100644 index 00000000..cf8ee5f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_axe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XX", + "X#", + " #" + ], + "result": { + "id": "minecraft:wooden_axe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_hoe.json b/data/generated/V26_2/data/minecraft/recipe/wooden_hoe.json new file mode 100644 index 00000000..0e033b53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_hoe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XX", + " #", + " #" + ], + "result": { + "id": "minecraft:wooden_hoe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_pickaxe.json b/data/generated/V26_2/data/minecraft/recipe/wooden_pickaxe.json new file mode 100644 index 00000000..703145ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_pickaxe.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "XXX", + " # ", + " # " + ], + "result": { + "id": "minecraft:wooden_pickaxe" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_shovel.json b/data/generated/V26_2/data/minecraft/recipe/wooden_shovel.json new file mode 100644 index 00000000..f4a5246b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_shovel.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "X", + "#", + "#" + ], + "result": { + "id": "minecraft:wooden_shovel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_spear.json b/data/generated/V26_2/data/minecraft/recipe/wooden_spear.json new file mode 100644 index 00000000..9f1251e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_spear.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + " X", + " # ", + "# " + ], + "result": { + "id": "minecraft:wooden_spear" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/wooden_sword.json b/data/generated/V26_2/data/minecraft/recipe/wooden_sword.json new file mode 100644 index 00000000..651a14e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/wooden_sword.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "key": { + "#": "minecraft:stick", + "X": "#minecraft:wooden_tool_materials" + }, + "pattern": [ + "X", + "X", + "#" + ], + "result": { + "id": "minecraft:wooden_sword" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/writable_book.json b/data/generated/V26_2/data/minecraft/recipe/writable_book.json new file mode 100644 index 00000000..9851f6b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/writable_book.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "ingredients": [ + "minecraft:book", + "minecraft:ink_sac", + "minecraft:feather" + ], + "result": { + "id": "minecraft:writable_book" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_banner.json b/data/generated/V26_2/data/minecraft/recipe/yellow_banner.json new file mode 100644 index 00000000..617c2c74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_banner.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "banner", + "key": { + "#": "minecraft:yellow_wool", + "|": "minecraft:stick" + }, + "pattern": [ + "###", + "###", + " | " + ], + "result": { + "id": "minecraft:yellow_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_banner_duplicate.json b/data/generated/V26_2/data/minecraft/recipe/yellow_banner_duplicate.json new file mode 100644 index 00000000..c2b2694b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_banner_duplicate.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:crafting_special_bannerduplicate", + "banner": "minecraft:yellow_banner", + "result": { + "id": "minecraft:yellow_banner" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_bed.json b/data/generated/V26_2/data/minecraft/recipe/yellow_bed.json new file mode 100644 index 00000000..513e9eb9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_bed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "bed", + "key": { + "#": "minecraft:yellow_wool", + "X": "#minecraft:planks" + }, + "pattern": [ + "###", + "XXX" + ], + "result": { + "id": "minecraft:yellow_bed" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_bundle.json b/data/generated/V26_2/data/minecraft/recipe/yellow_bundle.json new file mode 100644 index 00000000..9519bb8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_bundle.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_transmute", + "category": "equipment", + "group": "bundle_dye", + "input": "#minecraft:bundles", + "material": "minecraft:yellow_dye", + "result": { + "id": "minecraft:yellow_bundle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_candle.json b/data/generated/V26_2/data/minecraft/recipe/yellow_candle.json new file mode 100644 index 00000000..8ef7136b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_candle.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "dyed_candle", + "ingredients": [ + "minecraft:candle", + "minecraft:yellow_dye" + ], + "result": { + "id": "minecraft:yellow_candle" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_carpet.json b/data/generated/V26_2/data/minecraft/recipe/yellow_carpet.json new file mode 100644 index 00000000..769f96d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_carpet.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "carpet", + "key": { + "#": "minecraft:yellow_wool" + }, + "pattern": [ + "##" + ], + "result": { + "count": 3, + "id": "minecraft:yellow_carpet" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_concrete_powder.json b/data/generated/V26_2/data/minecraft/recipe/yellow_concrete_powder.json new file mode 100644 index 00000000..fb5b5357 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_concrete_powder.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:crafting_shapeless", + "category": "building", + "group": "concrete_powder", + "ingredients": [ + "minecraft:yellow_dye", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:sand", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel", + "minecraft:gravel" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_concrete_powder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_dandelion.json b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_dandelion.json new file mode 100644 index 00000000..bea3c3fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_dandelion.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "yellow_dye", + "ingredients": [ + "minecraft:dandelion" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json new file mode 100644 index 00000000..9218dde2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_golden_dandelion.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "yellow_dye", + "ingredients": [ + "minecraft:golden_dandelion" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_sunflower.json b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_sunflower.json new file mode 100644 index 00000000..bd4f6b37 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_sunflower.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "yellow_dye", + "ingredients": [ + "minecraft:sunflower" + ], + "result": { + "count": 2, + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_wildflowers.json b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_wildflowers.json new file mode 100644 index 00000000..fdf28b8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_dye_from_wildflowers.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:crafting_shapeless", + "group": "yellow_dye", + "ingredients": [ + "minecraft:wildflowers" + ], + "result": { + "id": "minecraft:yellow_dye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/yellow_glazed_terracotta.json new file mode 100644 index 00000000..33a3ccee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_glazed_terracotta.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:smelting", + "category": "blocks", + "experience": 0.1, + "ingredient": "minecraft:yellow_terracotta", + "result": { + "id": "minecraft:yellow_glazed_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_harness.json b/data/generated/V26_2/data/minecraft/recipe/yellow_harness.json new file mode 100644 index 00000000..5b0fc09c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_harness.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "equipment", + "group": "harness", + "key": { + "#": "minecraft:yellow_wool", + "G": "minecraft:glass", + "L": "minecraft:leather" + }, + "pattern": [ + "LLL", + "G#G" + ], + "result": { + "id": "minecraft:yellow_harness" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_shulker_box.json b/data/generated/V26_2/data/minecraft/recipe/yellow_shulker_box.json new file mode 100644 index 00000000..0ffae765 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_shulker_box.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:crafting_transmute", + "group": "shulker_box_dye", + "input": "#minecraft:shulker_boxes", + "material": "minecraft:yellow_dye", + "result": { + "id": "minecraft:yellow_shulker_box" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass.json b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass.json new file mode 100644 index 00000000..14284408 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_glass", + "key": { + "#": "minecraft:glass", + "X": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_stained_glass" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane.json new file mode 100644 index 00000000..db8f0b24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:yellow_stained_glass" + }, + "pattern": [ + "###", + "###" + ], + "result": { + "count": 16, + "id": "minecraft:yellow_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json new file mode 100644 index 00000000..8407e8ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_stained_glass_pane_from_glass_pane.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:crafting_shaped", + "group": "stained_glass_pane", + "key": { + "#": "minecraft:glass_pane", + "$": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#$#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_stained_glass_pane" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/recipe/yellow_terracotta.json b/data/generated/V26_2/data/minecraft/recipe/yellow_terracotta.json new file mode 100644 index 00000000..1f48893a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/recipe/yellow_terracotta.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:crafting_shaped", + "category": "building", + "group": "stained_terracotta", + "key": { + "#": "minecraft:terracotta", + "X": "minecraft:yellow_dye" + }, + "pattern": [ + "###", + "#X#", + "###" + ], + "result": { + "count": 8, + "id": "minecraft:yellow_terracotta" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/bouncy.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/bouncy.json new file mode 100644 index 00000000..b4560d6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/bouncy.json @@ -0,0 +1,46 @@ +{ + "attribute_modifiers": [ + { + "amount": -2.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:bouncy_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -2.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:bouncy_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.8999999761581421, + "attribute": "minecraft:bounciness", + "id": "minecraft:bouncy_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:bouncy_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:bouncy_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "buoyant": true, + "items": "#minecraft:sulfur_cube_archetype/bouncy", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.105 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.bouncy.hit", + "push_sound": "minecraft:entity.sulfur_cube.bouncy.push", + "push_sound_cooldown": 0.7, + "push_sound_impulse_threshold": 0.3 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/explosive.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/explosive.json new file mode 100644 index 00000000..af03feae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/explosive.json @@ -0,0 +1,51 @@ +{ + "attribute_modifiers": [ + { + "amount": -1.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:explosive_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -1.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:explosive_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:bounciness", + "id": "minecraft:explosive_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:explosive_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:explosive_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "buoyant": true, + "explosion": { + "causes_fire": false, + "fuse": 120, + "power": 3 + }, + "items": "#minecraft:sulfur_cube_archetype/explosive", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.explosive.hit", + "push_sound": "minecraft:entity.sulfur_cube.explosive.push", + "push_sound_cooldown": 0.7, + "push_sound_impulse_threshold": 0.1 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_flat.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_flat.json new file mode 100644 index 00000000..649930cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_flat.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": -1.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:fast_flat_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -1.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:fast_flat_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:bounciness", + "id": "minecraft:fast_flat_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.7999999970197678, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:fast_flat_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:fast_flat_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/fast_flat", + "knockback_modifiers": { + "horizontal_power": 0.9125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.fast_flat.hit", + "push_sound": "minecraft:entity.sulfur_cube.fast_flat.push", + "push_sound_cooldown": 0.9, + "push_sound_impulse_threshold": 0.03 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_sliding.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_sliding.json new file mode 100644 index 00000000..d69a0927 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/fast_sliding.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": 0.5, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:fast_sliding_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:fast_sliding_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.10000000149011612, + "attribute": "minecraft:bounciness", + "id": "minecraft:fast_sliding_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.9499999992549419, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:fast_sliding_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:fast_sliding_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/fast_sliding", + "knockback_modifiers": { + "horizontal_power": 0.6625, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.fast_sliding.hit", + "push_sound": "minecraft:entity.sulfur_cube.fast_sliding.push", + "push_sound_cooldown": 1.0, + "push_sound_impulse_threshold": 0.05 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/high_resistance.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/high_resistance.json new file mode 100644 index 00000000..22c8a079 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/high_resistance.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": 0.699999988079071, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:high_resistance_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.699999988079071, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:high_resistance_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.20000000298023224, + "attribute": "minecraft:bounciness", + "id": "minecraft:high_resistance_add_bounciness", + "operation": "add_value" + }, + { + "amount": 0.0, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:high_resistance_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:high_resistance_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/high_resistance", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.high_resistance.hit", + "push_sound": "minecraft:entity.sulfur_cube.high_resistance.push", + "push_sound_cooldown": 0.7, + "push_sound_impulse_threshold": 0.03 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/hot.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/hot.json new file mode 100644 index 00000000..08bb2db9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/hot.json @@ -0,0 +1,51 @@ +{ + "attribute_modifiers": [ + { + "amount": -1.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:hot_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -1.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:hot_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:bounciness", + "id": "minecraft:hot_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:hot_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.8999999985098839, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:hot_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "buoyant": true, + "contact_damage": { + "amount": 1.0, + "attribute_to_source": false, + "damage_type": "minecraft:sulfur_cube_hot" + }, + "items": "#minecraft:sulfur_cube_archetype/hot", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.hot.hit", + "push_sound": "minecraft:entity.sulfur_cube.hot.push", + "push_sound_cooldown": 0.7, + "push_sound_impulse_threshold": 0.2 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/light.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/light.json new file mode 100644 index 00000000..f50c6c96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/light.json @@ -0,0 +1,46 @@ +{ + "attribute_modifiers": [ + { + "amount": -1.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:light_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -1.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:light_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 1.0, + "attribute": "minecraft:bounciness", + "id": "minecraft:light_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:light_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": 0.7999999523162842, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:light_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "buoyant": true, + "items": "#minecraft:sulfur_cube_archetype/light", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.18 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.light.hit", + "push_sound": "minecraft:entity.sulfur_cube.light.push", + "push_sound_cooldown": 0.7, + "push_sound_impulse_threshold": 0.2 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/regular.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/regular.json new file mode 100644 index 00000000..36219605 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/regular.json @@ -0,0 +1,46 @@ +{ + "attribute_modifiers": [ + { + "amount": -1.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:regular_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -1.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:regular_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:bounciness", + "id": "minecraft:regular_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:regular_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.8999999985098839, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:regular_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "buoyant": true, + "items": "#minecraft:sulfur_cube_archetype/regular", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.regular.hit", + "push_sound": "minecraft:entity.sulfur_cube.regular.push", + "push_sound_cooldown": 0.5, + "push_sound_impulse_threshold": 0.2 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_bouncy.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_bouncy.json new file mode 100644 index 00000000..705d7266 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_bouncy.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": 0.4000000059604645, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:slow_bouncy_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.4000000059604645, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:slow_bouncy_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.6000000238418579, + "attribute": "minecraft:bounciness", + "id": "minecraft:slow_bouncy_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.699999988079071, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:slow_bouncy_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9499999992549419, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:slow_bouncy_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/slow_bouncy", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.24 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.slow_bouncy.hit", + "push_sound": "minecraft:entity.sulfur_cube.slow_bouncy.push", + "push_sound_cooldown": 0.5, + "push_sound_impulse_threshold": 0.05 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_flat.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_flat.json new file mode 100644 index 00000000..6387d581 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_flat.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": 0.5, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:slow_flat_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.5, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:slow_flat_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.4000000059604645, + "attribute": "minecraft:bounciness", + "id": "minecraft:slow_flat_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.5999999940395355, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:slow_flat_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.8999999985098839, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:slow_flat_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/slow_flat", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.105 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.slow_flat.hit", + "push_sound": "minecraft:entity.sulfur_cube.slow_flat.push", + "push_sound_cooldown": 0.9, + "push_sound_impulse_threshold": 0.03 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_sliding.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_sliding.json new file mode 100644 index 00000000..0d310a1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/slow_sliding.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": 0.800000011920929, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:slow_sliding_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.800000011920929, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:slow_sliding_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.10000000149011612, + "attribute": "minecraft:bounciness", + "id": "minecraft:slow_sliding_add_bounciness", + "operation": "add_value" + }, + { + "amount": -0.9499999992549419, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:slow_sliding_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:slow_sliding_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/slow_sliding", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.slow_sliding.hit", + "push_sound": "minecraft:entity.sulfur_cube.slow_sliding.push", + "push_sound_cooldown": 1.0, + "push_sound_impulse_threshold": 0.02 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/sticky.json b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/sticky.json new file mode 100644 index 00000000..7f13606a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/sulfur_cube_archetype/sticky.json @@ -0,0 +1,45 @@ +{ + "attribute_modifiers": [ + { + "amount": -2.0, + "attribute": "minecraft:knockback_resistance", + "id": "minecraft:sticky_add_knockback_resistance", + "operation": "add_value" + }, + { + "amount": -2.0, + "attribute": "minecraft:explosion_knockback_resistance", + "id": "minecraft:sticky_add_explosion_knockback_resistance", + "operation": "add_value" + }, + { + "amount": 0.0, + "attribute": "minecraft:bounciness", + "id": "minecraft:sticky_add_bounciness", + "operation": "add_value" + }, + { + "amount": 1.0, + "attribute": "minecraft:friction_modifier", + "id": "minecraft:sticky_mul_friction_modifier", + "operation": "add_multiplied_total" + }, + { + "amount": -0.9900000002235174, + "attribute": "minecraft:air_drag_modifier", + "id": "minecraft:sticky_mul_air_drag_modifier", + "operation": "add_multiplied_total" + } + ], + "items": "#minecraft:sulfur_cube_archetype/sticky", + "knockback_modifiers": { + "horizontal_power": 0.4125, + "vertical_power": 0.09 + }, + "sound_settings": { + "hit_sound": "minecraft:entity.sulfur_cube.sticky.hit", + "push_sound": "minecraft:entity.sulfur_cube.sticky.push", + "push_sound_cooldown": 0.5, + "push_sound_impulse_threshold": 0.05 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/no_item_required.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/no_item_required.json new file mode 100644 index 00000000..301d4e8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/no_item_required.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:square_bottom_left", + "minecraft:square_bottom_right", + "minecraft:square_top_left", + "minecraft:square_top_right", + "minecraft:stripe_bottom", + "minecraft:stripe_top", + "minecraft:stripe_left", + "minecraft:stripe_right", + "minecraft:stripe_center", + "minecraft:stripe_middle", + "minecraft:stripe_downright", + "minecraft:stripe_downleft", + "minecraft:small_stripes", + "minecraft:cross", + "minecraft:straight_cross", + "minecraft:triangle_bottom", + "minecraft:triangle_top", + "minecraft:triangles_bottom", + "minecraft:triangles_top", + "minecraft:diagonal_left", + "minecraft:diagonal_up_right", + "minecraft:diagonal_up_left", + "minecraft:diagonal_right", + "minecraft:circle", + "minecraft:rhombus", + "minecraft:half_vertical", + "minecraft:half_horizontal", + "minecraft:half_vertical_right", + "minecraft:half_horizontal_bottom", + "minecraft:border", + "minecraft:gradient", + "minecraft:gradient_up" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json new file mode 100644 index 00000000..f0386070 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/bordure_indented.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:curly_border" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/creeper.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/creeper.json new file mode 100644 index 00000000..8304eb7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/creeper.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:creeper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json new file mode 100644 index 00000000..e7d8939e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/field_masoned.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flow.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flow.json new file mode 100644 index 00000000..7cd2d38f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:flow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flower.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flower.json new file mode 100644 index 00000000..ed022242 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/flower.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/globe.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/globe.json new file mode 100644 index 00000000..1bb567b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/globe.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:globe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/guster.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/guster.json new file mode 100644 index 00000000..1935cc99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/guster.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:guster" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/mojang.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/mojang.json new file mode 100644 index 00000000..ffb0bb60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/mojang.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mojang" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/piglin.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/piglin.json new file mode 100644 index 00000000..d4d1b921 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/piglin.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:piglin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/skull.json b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/skull.json new file mode 100644 index 00000000..9a3125fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/banner_pattern/pattern_item/skull.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:skull" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/acacia_logs.json b/data/generated/V26_2/data/minecraft/tags/block/acacia_logs.json new file mode 100644 index 00000000..84a0bc4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/acacia_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:acacia_wood", + "minecraft:stripped_acacia_log", + "minecraft:stripped_acacia_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/air.json b/data/generated/V26_2/data/minecraft/tags/block/air.json new file mode 100644 index 00000000..fb634b59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/air.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:air", + "minecraft:void_air", + "minecraft:cave_air" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/all_hanging_signs.json b/data/generated/V26_2/data/minecraft/tags/block/all_hanging_signs.json new file mode 100644 index 00000000..c77b75c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/all_hanging_signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:ceiling_hanging_signs", + "#minecraft:wall_hanging_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/all_signs.json b/data/generated/V26_2/data/minecraft/tags/block/all_signs.json new file mode 100644 index 00000000..d7987ebb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/all_signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:signs", + "#minecraft:all_hanging_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/ancient_city_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/ancient_city_replaceable.json new file mode 100644 index 00000000..23e7a6e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/ancient_city_replaceable.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:deepslate", + "minecraft:deepslate_bricks", + "minecraft:deepslate_tiles", + "minecraft:deepslate_brick_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_stairs", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:cobbled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:gray_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/animals_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/animals_spawnable_on.json new file mode 100644 index 00000000..ce2108c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/animals_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:grass_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/anvil.json b/data/generated/V26_2/data/minecraft/tags/block/anvil.json new file mode 100644 index 00000000..84ef65a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/anvil.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:anvil", + "minecraft:chipped_anvil", + "minecraft:damaged_anvil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/armadillo_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/armadillo_spawnable_on.json new file mode 100644 index 00000000..10d73ff7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/armadillo_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:animals_spawnable_on", + "#minecraft:badlands_terracotta", + "minecraft:red_sand", + "minecraft:coarse_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/axolotls_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/axolotls_spawnable_on.json new file mode 100644 index 00000000..957a556d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/axolotls_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/azalea_grows_on.json b/data/generated/V26_2/data/minecraft/tags/block/azalea_grows_on.json new file mode 100644 index 00000000..d8920940 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/azalea_grows_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:sand", + "#minecraft:terracotta", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/azalea_root_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/azalea_root_replaceable.json new file mode 100644 index 00000000..bfea95ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/azalea_root_replaceable.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:terracotta", + "minecraft:red_sand", + "minecraft:clay", + "minecraft:gravel", + "minecraft:sand", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/badlands_terracotta.json b/data/generated/V26_2/data/minecraft/tags/block/badlands_terracotta.json new file mode 100644 index 00000000..095749c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/badlands_terracotta.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:yellow_terracotta", + "minecraft:orange_terracotta", + "minecraft:red_terracotta", + "minecraft:brown_terracotta", + "minecraft:light_gray_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/bamboo_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/bamboo_blocks.json new file mode 100644 index 00000000..347c0af8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/bamboo_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_block", + "minecraft:stripped_bamboo_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/banners.json b/data/generated/V26_2/data/minecraft/tags/block/banners.json new file mode 100644 index 00000000..6cab5e09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/banners.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:white_banner", + "minecraft:orange_banner", + "minecraft:magenta_banner", + "minecraft:light_blue_banner", + "minecraft:yellow_banner", + "minecraft:lime_banner", + "minecraft:pink_banner", + "minecraft:gray_banner", + "minecraft:light_gray_banner", + "minecraft:cyan_banner", + "minecraft:purple_banner", + "minecraft:blue_banner", + "minecraft:brown_banner", + "minecraft:green_banner", + "minecraft:red_banner", + "minecraft:black_banner", + "minecraft:white_wall_banner", + "minecraft:orange_wall_banner", + "minecraft:magenta_wall_banner", + "minecraft:light_blue_wall_banner", + "minecraft:yellow_wall_banner", + "minecraft:lime_wall_banner", + "minecraft:pink_wall_banner", + "minecraft:gray_wall_banner", + "minecraft:light_gray_wall_banner", + "minecraft:cyan_wall_banner", + "minecraft:purple_wall_banner", + "minecraft:blue_wall_banner", + "minecraft:brown_wall_banner", + "minecraft:green_wall_banner", + "minecraft:red_wall_banner", + "minecraft:black_wall_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/bars.json b/data/generated/V26_2/data/minecraft/tags/block/bars.json new file mode 100644 index 00000000..bd77807e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/bars.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_bars", + "minecraft:copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:waxed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:waxed_oxidized_copper_bars" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/base_stone_nether.json b/data/generated/V26_2/data/minecraft/tags/block/base_stone_nether.json new file mode 100644 index 00000000..082e785c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/base_stone_nether.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:netherrack", + "minecraft:basalt", + "minecraft:blackstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/base_stone_overworld.json b/data/generated/V26_2/data/minecraft/tags/block/base_stone_overworld.json new file mode 100644 index 00000000..dfa496a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/base_stone_overworld.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:tuff", + "minecraft:deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/bats_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/bats_spawnable_on.json new file mode 100644 index 00000000..511ad97c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/bats_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/beacon_base_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/beacon_base_blocks.json new file mode 100644 index 00000000..a44cd4a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/beacon_base_blocks.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:netherite_block", + "minecraft:emerald_block", + "minecraft:diamond_block", + "minecraft:gold_block", + "minecraft:iron_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/beds.json b/data/generated/V26_2/data/minecraft/tags/block/beds.json new file mode 100644 index 00000000..0336d8d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/beds.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/bee_attractive.json b/data/generated/V26_2/data/minecraft/tags/block/bee_attractive.json new file mode 100644 index 00000000..f2851d5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/bee_attractive.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/bee_growables.json b/data/generated/V26_2/data/minecraft/tags/block/bee_growables.json new file mode 100644 index 00000000..50f6d615 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/bee_growables.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:crops", + "minecraft:sweet_berry_bush", + "minecraft:cave_vines", + "minecraft:cave_vines_plant" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/beehives.json b/data/generated/V26_2/data/minecraft/tags/block/beehives.json new file mode 100644 index 00000000..434e455b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/beehives.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bee_nest", + "minecraft:beehive" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json new file mode 100644 index 00000000..bcb6a3de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/beneath_bamboo_podzol_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:substrate_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json new file mode 100644 index 00000000..bcb6a3de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/beneath_tree_podzol_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:substrate_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/birch_logs.json b/data/generated/V26_2/data/minecraft/tags/block/birch_logs.json new file mode 100644 index 00000000..9203a57b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/birch_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:birch_log", + "minecraft:birch_wood", + "minecraft:stripped_birch_log", + "minecraft:stripped_birch_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/blocks_wind_charge_explosions.json b/data/generated/V26_2/data/minecraft/tags/block/blocks_wind_charge_explosions.json new file mode 100644 index 00000000..934e8279 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/blocks_wind_charge_explosions.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/buttons.json b/data/generated/V26_2/data/minecraft/tags/block/buttons.json new file mode 100644 index 00000000..3400bf38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_buttons", + "#minecraft:stone_buttons" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/camel_sand_step_sound_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/camel_sand_step_sound_blocks.json new file mode 100644 index 00000000..ce4e902e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/camel_sand_step_sound_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:concrete_powders" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/camels_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/camels_spawnable_on.json new file mode 100644 index 00000000..3dd992bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/camels_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/campfires.json b/data/generated/V26_2/data/minecraft/tags/block/campfires.json new file mode 100644 index 00000000..30f946d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/campfires.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:campfire", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/can_glide_through.json b/data/generated/V26_2/data/minecraft/tags/block/can_glide_through.json new file mode 100644 index 00000000..0946f19c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/can_glide_through.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:vine", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "#minecraft:cave_vines" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/candle_cakes.json b/data/generated/V26_2/data/minecraft/tags/block/candle_cakes.json new file mode 100644 index 00000000..f7d0a93f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/candle_cakes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle_cake", + "minecraft:white_candle_cake", + "minecraft:orange_candle_cake", + "minecraft:magenta_candle_cake", + "minecraft:light_blue_candle_cake", + "minecraft:yellow_candle_cake", + "minecraft:lime_candle_cake", + "minecraft:pink_candle_cake", + "minecraft:gray_candle_cake", + "minecraft:light_gray_candle_cake", + "minecraft:cyan_candle_cake", + "minecraft:purple_candle_cake", + "minecraft:blue_candle_cake", + "minecraft:brown_candle_cake", + "minecraft:green_candle_cake", + "minecraft:red_candle_cake", + "minecraft:black_candle_cake" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/candles.json b/data/generated/V26_2/data/minecraft/tags/block/candles.json new file mode 100644 index 00000000..a7b2b62f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/candles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle", + "minecraft:white_candle", + "minecraft:orange_candle", + "minecraft:magenta_candle", + "minecraft:light_blue_candle", + "minecraft:yellow_candle", + "minecraft:lime_candle", + "minecraft:pink_candle", + "minecraft:gray_candle", + "minecraft:light_gray_candle", + "minecraft:cyan_candle", + "minecraft:purple_candle", + "minecraft:blue_candle", + "minecraft:brown_candle", + "minecraft:green_candle", + "minecraft:red_candle", + "minecraft:black_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json b/data/generated/V26_2/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json new file mode 100644 index 00000000..7f8e050b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cannot_replace_below_tree_trunk.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cannot_support_kelp.json b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_kelp.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_kelp.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cannot_support_seagrass.json b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_seagrass.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_seagrass.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cannot_support_snow_layer.json b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_snow_layer.json new file mode 100644 index 00000000..3c125afc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cannot_support_snow_layer.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cauldrons.json b/data/generated/V26_2/data/minecraft/tags/block/cauldrons.json new file mode 100644 index 00000000..d527a7b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cauldrons.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cauldron", + "minecraft:water_cauldron", + "minecraft:lava_cauldron", + "minecraft:powder_snow_cauldron" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/causes_continuous_geyser_eruptions.json b/data/generated/V26_2/data/minecraft/tags/block/causes_continuous_geyser_eruptions.json new file mode 100644 index 00000000..27562834 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/causes_continuous_geyser_eruptions.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lava" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/causes_periodic_geyser_eruptions.json b/data/generated/V26_2/data/minecraft/tags/block/causes_periodic_geyser_eruptions.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/causes_periodic_geyser_eruptions.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cave_vines.json b/data/generated/V26_2/data/minecraft/tags/block/cave_vines.json new file mode 100644 index 00000000..806b27cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cave_vines.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cave_vines_plant", + "minecraft:cave_vines" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/ceiling_hanging_signs.json b/data/generated/V26_2/data/minecraft/tags/block/ceiling_hanging_signs.json new file mode 100644 index 00000000..b55f67ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/ceiling_hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_hanging_sign", + "minecraft:spruce_hanging_sign", + "minecraft:birch_hanging_sign", + "minecraft:acacia_hanging_sign", + "minecraft:cherry_hanging_sign", + "minecraft:jungle_hanging_sign", + "minecraft:dark_oak_hanging_sign", + "minecraft:pale_oak_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_hanging_sign", + "minecraft:mangrove_hanging_sign", + "minecraft:bamboo_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/chains.json b/data/generated/V26_2/data/minecraft/tags/block/chains.json new file mode 100644 index 00000000..daba291f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/chains.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_chain", + "minecraft:copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:oxidized_copper_chain", + "minecraft:waxed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/cherry_logs.json b/data/generated/V26_2/data/minecraft/tags/block/cherry_logs.json new file mode 100644 index 00000000..4295e055 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/cherry_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cherry_log", + "minecraft:cherry_wood", + "minecraft:stripped_cherry_log", + "minecraft:stripped_cherry_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/climbable.json b/data/generated/V26_2/data/minecraft/tags/block/climbable.json new file mode 100644 index 00000000..de2e0a70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/climbable.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:ladder", + "minecraft:vine", + "minecraft:scaffolding", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/coal_ores.json b/data/generated/V26_2/data/minecraft/tags/block/coal_ores.json new file mode 100644 index 00000000..aaa76288 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/coal_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/combination_step_sound_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/combination_step_sound_blocks.json new file mode 100644 index 00000000..71da8418 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/combination_step_sound_blocks.json @@ -0,0 +1,12 @@ +{ + "values": [ + "#minecraft:wool_carpets", + "minecraft:moss_carpet", + "minecraft:pale_moss_carpet", + "minecraft:snow", + "minecraft:nether_sprouts", + "minecraft:warped_roots", + "minecraft:crimson_roots", + "minecraft:resin_clump" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/completes_find_tree_tutorial.json b/data/generated/V26_2/data/minecraft/tags/block/completes_find_tree_tutorial.json new file mode 100644 index 00000000..74701c2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/completes_find_tree_tutorial.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs", + "#minecraft:leaves", + "#minecraft:wart_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/concrete.json b/data/generated/V26_2/data/minecraft/tags/block/concrete.json new file mode 100644 index 00000000..99c8ab40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/concrete.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_concrete", + "minecraft:orange_concrete", + "minecraft:magenta_concrete", + "minecraft:light_blue_concrete", + "minecraft:yellow_concrete", + "minecraft:lime_concrete", + "minecraft:pink_concrete", + "minecraft:gray_concrete", + "minecraft:light_gray_concrete", + "minecraft:cyan_concrete", + "minecraft:purple_concrete", + "minecraft:blue_concrete", + "minecraft:brown_concrete", + "minecraft:green_concrete", + "minecraft:red_concrete", + "minecraft:black_concrete" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/concrete_powders.json b/data/generated/V26_2/data/minecraft/tags/block/concrete_powders.json new file mode 100644 index 00000000..57a09c9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/concrete_powders.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_concrete_powder", + "minecraft:orange_concrete_powder", + "minecraft:magenta_concrete_powder", + "minecraft:light_blue_concrete_powder", + "minecraft:yellow_concrete_powder", + "minecraft:lime_concrete_powder", + "minecraft:pink_concrete_powder", + "minecraft:gray_concrete_powder", + "minecraft:light_gray_concrete_powder", + "minecraft:cyan_concrete_powder", + "minecraft:purple_concrete_powder", + "minecraft:blue_concrete_powder", + "minecraft:brown_concrete_powder", + "minecraft:green_concrete_powder", + "minecraft:red_concrete_powder", + "minecraft:black_concrete_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/convertable_to_mud.json b/data/generated/V26_2/data/minecraft/tags/block/convertable_to_mud.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/convertable_to_mud.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/copper.json b/data/generated/V26_2/data/minecraft/tags/block/copper.json new file mode 100644 index 00000000..53848650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/copper.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/copper_chests.json b/data/generated/V26_2/data/minecraft/tags/block/copper_chests.json new file mode 100644 index 00000000..90d0a9ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/copper_chests.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/copper_golem_statues.json b/data/generated/V26_2/data/minecraft/tags/block/copper_golem_statues.json new file mode 100644 index 00000000..531fc959 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/copper_golem_statues.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/copper_ores.json b/data/generated/V26_2/data/minecraft/tags/block/copper_ores.json new file mode 100644 index 00000000..5d76012e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/copper_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/coral_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/coral_blocks.json new file mode 100644 index 00000000..70f4b9e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/coral_blocks.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral_block", + "minecraft:brain_coral_block", + "minecraft:bubble_coral_block", + "minecraft:fire_coral_block", + "minecraft:horn_coral_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/coral_plants.json b/data/generated/V26_2/data/minecraft/tags/block/coral_plants.json new file mode 100644 index 00000000..78700681 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/coral_plants.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral", + "minecraft:brain_coral", + "minecraft:bubble_coral", + "minecraft:fire_coral", + "minecraft:horn_coral" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/corals.json b/data/generated/V26_2/data/minecraft/tags/block/corals.json new file mode 100644 index 00000000..c38a95a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/corals.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:coral_plants", + "minecraft:tube_coral_fan", + "minecraft:brain_coral_fan", + "minecraft:bubble_coral_fan", + "minecraft:fire_coral_fan", + "minecraft:horn_coral_fan" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/crimson_stems.json b/data/generated/V26_2/data/minecraft/tags/block/crimson_stems.json new file mode 100644 index 00000000..f78c7a3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/crimson_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/crops.json b/data/generated/V26_2/data/minecraft/tags/block/crops.json new file mode 100644 index 00000000..b808e769 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/crops.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:beetroots", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:wheat", + "minecraft:melon_stem", + "minecraft:pumpkin_stem", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/crystal_sound_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/crystal_sound_blocks.json new file mode 100644 index 00000000..cb3685b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/crystal_sound_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:amethyst_block", + "minecraft:budding_amethyst" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dampens_vibrations.json b/data/generated/V26_2/data/minecraft/tags/block/dampens_vibrations.json new file mode 100644 index 00000000..89eab86d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dampens_vibrations.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wool", + "#minecraft:wool_carpets" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dark_oak_logs.json b/data/generated/V26_2/data/minecraft/tags/block/dark_oak_logs.json new file mode 100644 index 00000000..f7f5a28e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dark_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:dark_oak_log", + "minecraft:dark_oak_wood", + "minecraft:stripped_dark_oak_log", + "minecraft:stripped_dark_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/deepslate_ore_replaceables.json b/data/generated/V26_2/data/minecraft/tags/block/deepslate_ore_replaceables.json new file mode 100644 index 00000000..4c51c376 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/deepslate_ore_replaceables.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:deepslate", + "minecraft:tuff" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/default_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/default_immune_to.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/default_immune_to.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/diamond_ores.json b/data/generated/V26_2/data/minecraft/tags/block/diamond_ores.json new file mode 100644 index 00000000..cfa6e09c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/diamond_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dirt.json b/data/generated/V26_2/data/minecraft/tags/block/dirt.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dirt.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/does_not_block_hoppers.json b/data/generated/V26_2/data/minecraft/tags/block/does_not_block_hoppers.json new file mode 100644 index 00000000..919ecdad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/does_not_block_hoppers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:beehives" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/doors.json b/data/generated/V26_2/data/minecraft/tags/block/doors.json new file mode 100644 index 00000000..9ca24fcf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/doors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:iron_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dragon_immune.json b/data/generated/V26_2/data/minecraft/tags/block/dragon_immune.json new file mode 100644 index 00000000..a04c3db3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dragon_immune.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock", + "minecraft:end_portal", + "minecraft:end_portal_frame", + "minecraft:end_gateway", + "minecraft:command_block", + "minecraft:repeating_command_block", + "minecraft:chain_command_block", + "minecraft:structure_block", + "minecraft:jigsaw", + "minecraft:moving_piston", + "minecraft:obsidian", + "minecraft:crying_obsidian", + "minecraft:end_stone", + "minecraft:iron_bars", + "minecraft:respawn_anchor", + "minecraft:reinforced_deepslate", + "minecraft:test_block", + "minecraft:test_instance_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dragon_transparent.json b/data/generated/V26_2/data/minecraft/tags/block/dragon_transparent.json new file mode 100644 index 00000000..394ae3ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dragon_transparent.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:light", + "#minecraft:fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/dripstone_replaceable_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/dripstone_replaceable_blocks.json new file mode 100644 index 00000000..511ad97c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/dripstone_replaceable_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/edible_for_sheep.json b/data/generated/V26_2/data/minecraft/tags/block/edible_for_sheep.json new file mode 100644 index 00000000..91cc71b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/edible_for_sheep.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:short_grass", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:fern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/emerald_ores.json b/data/generated/V26_2/data/minecraft/tags/block/emerald_ores.json new file mode 100644 index 00000000..063d8e62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/emerald_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_drag_down.json b/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_drag_down.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_drag_down.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_push_up.json b/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_push_up.json new file mode 100644 index 00000000..355a91fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/enables_bubble_column_push_up.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_provider.json b/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_provider.json new file mode 100644 index 00000000..c09b2185 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_provider.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bookshelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_transmitter.json b/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_transmitter.json new file mode 100644 index 00000000..f64881ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/enchantment_power_transmitter.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:replaceable" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/enderman_holdable.json b/data/generated/V26_2/data/minecraft/tags/block/enderman_holdable.json new file mode 100644 index 00000000..cbbf1d3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/enderman_holdable.json @@ -0,0 +1,27 @@ +{ + "values": [ + "#minecraft:small_flowers", + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:gravel", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:tnt", + "minecraft:cactus", + "minecraft:clay", + "minecraft:pumpkin", + "minecraft:carved_pumpkin", + "minecraft:melon", + "minecraft:crimson_fungus", + "minecraft:crimson_nylium", + "minecraft:crimson_roots", + "minecraft:warped_fungus", + "minecraft:warped_nylium", + "minecraft:warped_roots", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/fall_damage_resetting.json b/data/generated/V26_2/data/minecraft/tags/block/fall_damage_resetting.json new file mode 100644 index 00000000..21b20b23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/fall_damage_resetting.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:climbable", + "minecraft:sweet_berry_bush", + "minecraft:cobweb" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/features_cannot_replace.json b/data/generated/V26_2/data/minecraft/tags/block/features_cannot_replace.json new file mode 100644 index 00000000..e4378752 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/features_cannot_replace.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:bedrock", + "minecraft:spawner", + "minecraft:chest", + "minecraft:end_portal_frame", + "minecraft:reinforced_deepslate", + "minecraft:trial_spawner", + "minecraft:vault" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/fence_gates.json b/data/generated/V26_2/data/minecraft/tags/block/fence_gates.json new file mode 100644 index 00000000..9904fc97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/fence_gates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_fence_gate", + "minecraft:birch_fence_gate", + "minecraft:dark_oak_fence_gate", + "minecraft:pale_oak_fence_gate", + "minecraft:jungle_fence_gate", + "minecraft:oak_fence_gate", + "minecraft:spruce_fence_gate", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:mangrove_fence_gate", + "minecraft:bamboo_fence_gate", + "minecraft:cherry_fence_gate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/fences.json b/data/generated/V26_2/data/minecraft/tags/block/fences.json new file mode 100644 index 00000000..045fa7d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/fences.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_fences", + "minecraft:nether_brick_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/fire.json b/data/generated/V26_2/data/minecraft/tags/block/fire.json new file mode 100644 index 00000000..fb8f0fb8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/fire.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fire", + "minecraft:soul_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/flower_pots.json b/data/generated/V26_2/data/minecraft/tags/block/flower_pots.json new file mode 100644 index 00000000..7e57b9d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/flower_pots.json @@ -0,0 +1,43 @@ +{ + "values": [ + "minecraft:flower_pot", + "minecraft:potted_open_eyeblossom", + "minecraft:potted_closed_eyeblossom", + "minecraft:potted_poppy", + "minecraft:potted_blue_orchid", + "minecraft:potted_allium", + "minecraft:potted_azure_bluet", + "minecraft:potted_red_tulip", + "minecraft:potted_orange_tulip", + "minecraft:potted_white_tulip", + "minecraft:potted_pink_tulip", + "minecraft:potted_oxeye_daisy", + "minecraft:potted_dandelion", + "minecraft:potted_oak_sapling", + "minecraft:potted_spruce_sapling", + "minecraft:potted_birch_sapling", + "minecraft:potted_jungle_sapling", + "minecraft:potted_acacia_sapling", + "minecraft:potted_dark_oak_sapling", + "minecraft:potted_pale_oak_sapling", + "minecraft:potted_red_mushroom", + "minecraft:potted_brown_mushroom", + "minecraft:potted_dead_bush", + "minecraft:potted_fern", + "minecraft:potted_cactus", + "minecraft:potted_cornflower", + "minecraft:potted_lily_of_the_valley", + "minecraft:potted_wither_rose", + "minecraft:potted_bamboo", + "minecraft:potted_crimson_fungus", + "minecraft:potted_warped_fungus", + "minecraft:potted_crimson_roots", + "minecraft:potted_warped_roots", + "minecraft:potted_azalea_bush", + "minecraft:potted_flowering_azalea_bush", + "minecraft:potted_mangrove_propagule", + "minecraft:potted_cherry_sapling", + "minecraft:potted_torchflower", + "minecraft:potted_golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/flowers.json b/data/generated/V26_2/data/minecraft/tags/block/flowers.json new file mode 100644 index 00000000..e0095f65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/flowers.json @@ -0,0 +1,19 @@ +{ + "values": [ + "#minecraft:small_flowers", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/forest_rock_can_place_on.json b/data/generated/V26_2/data/minecraft/tags/block/forest_rock_can_place_on.json new file mode 100644 index 00000000..8ac22b11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/forest_rock_can_place_on.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:base_stone_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/fox_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/fox_immune_to.json new file mode 100644 index 00000000..9755275b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/fox_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:sweet_berry_bush" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/foxes_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/foxes_spawnable_on.json new file mode 100644 index 00000000..cffc85c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/foxes_spawnable_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:podzol", + "minecraft:coarse_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/frog_prefer_jump_to.json b/data/generated/V26_2/data/minecraft/tags/block/frog_prefer_jump_to.json new file mode 100644 index 00000000..213cbab2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/frog_prefer_jump_to.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lily_pad", + "minecraft:big_dripleaf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/frogs_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/frogs_spawnable_on.json new file mode 100644 index 00000000..2499843d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/frogs_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:mud", + "minecraft:mangrove_roots", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/geode_invalid_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/geode_invalid_blocks.json new file mode 100644 index 00000000..3ffe7ace --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/geode_invalid_blocks.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:bedrock", + "minecraft:water", + "minecraft:lava", + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/glazed_terracotta.json b/data/generated/V26_2/data/minecraft/tags/block/glazed_terracotta.json new file mode 100644 index 00000000..26cb2df2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_glazed_terracotta", + "minecraft:orange_glazed_terracotta", + "minecraft:magenta_glazed_terracotta", + "minecraft:light_blue_glazed_terracotta", + "minecraft:yellow_glazed_terracotta", + "minecraft:lime_glazed_terracotta", + "minecraft:pink_glazed_terracotta", + "minecraft:gray_glazed_terracotta", + "minecraft:light_gray_glazed_terracotta", + "minecraft:cyan_glazed_terracotta", + "minecraft:purple_glazed_terracotta", + "minecraft:blue_glazed_terracotta", + "minecraft:brown_glazed_terracotta", + "minecraft:green_glazed_terracotta", + "minecraft:red_glazed_terracotta", + "minecraft:black_glazed_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/goats_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/goats_spawnable_on.json new file mode 100644 index 00000000..8376d7ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/goats_spawnable_on.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:animals_spawnable_on", + "minecraft:stone", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:packed_ice", + "minecraft:gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/gold_ores.json b/data/generated/V26_2/data/minecraft/tags/block/gold_ores.json new file mode 100644 index 00000000..279f354d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/gold_ores.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:gold_ore", + "minecraft:nether_gold_ore", + "minecraft:deepslate_gold_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/grass_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/grass_blocks.json new file mode 100644 index 00000000..e7e86f75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/grass_blocks.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/grows_crops.json b/data/generated/V26_2/data/minecraft/tags/block/grows_crops.json new file mode 100644 index 00000000..ea3a8d61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/grows_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/guarded_by_piglins.json b/data/generated/V26_2/data/minecraft/tags/block/guarded_by_piglins.json new file mode 100644 index 00000000..42e54c28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/guarded_by_piglins.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:copper_chests", + "minecraft:gold_block", + "minecraft:barrel", + "minecraft:chest", + "minecraft:ender_chest", + "minecraft:gilded_blackstone", + "minecraft:trapped_chest", + "minecraft:raw_gold_block", + "#minecraft:shulker_boxes", + "#minecraft:gold_ores" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/happy_ghast_avoids.json b/data/generated/V26_2/data/minecraft/tags/block/happy_ghast_avoids.json new file mode 100644 index 00000000..41b74e58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/happy_ghast_avoids.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:sweet_berry_bush", + "minecraft:cactus", + "minecraft:wither_rose", + "minecraft:magma_block", + "minecraft:fire", + "#minecraft:speleothems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/hoglin_repellents.json b/data/generated/V26_2/data/minecraft/tags/block/hoglin_repellents.json new file mode 100644 index 00000000..25bbcb54 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/hoglin_repellents.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_fungus", + "minecraft:potted_warped_fungus", + "minecraft:nether_portal", + "minecraft:respawn_anchor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json b/data/generated/V26_2/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json new file mode 100644 index 00000000..a2e728c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/huge_brown_mushroom_can_place_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json b/data/generated/V26_2/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json new file mode 100644 index 00000000..a2e728c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/huge_red_mushroom_can_place_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/ice.json b/data/generated/V26_2/data/minecraft/tags/block/ice.json new file mode 100644 index 00000000..71c9326f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/ice.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice", + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/ice_spike_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/ice_spike_replaceable.json new file mode 100644 index 00000000..4ce8ee99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/ice_spike_replaceable.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:snow_block", + "minecraft:ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/impermeable.json b/data/generated/V26_2/data/minecraft/tags/block/impermeable.json new file mode 100644 index 00000000..7bcebf3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/impermeable.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:white_stained_glass", + "minecraft:orange_stained_glass", + "minecraft:magenta_stained_glass", + "minecraft:light_blue_stained_glass", + "minecraft:yellow_stained_glass", + "minecraft:lime_stained_glass", + "minecraft:pink_stained_glass", + "minecraft:gray_stained_glass", + "minecraft:light_gray_stained_glass", + "minecraft:cyan_stained_glass", + "minecraft:purple_stained_glass", + "minecraft:blue_stained_glass", + "minecraft:brown_stained_glass", + "minecraft:green_stained_glass", + "minecraft:red_stained_glass", + "minecraft:black_stained_glass", + "minecraft:glass", + "minecraft:tinted_glass", + "minecraft:barrier" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_copper_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_copper_tool.json new file mode 100644 index 00000000..1f5e3de8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_copper_tool.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_diamond_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_diamond_tool.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_diamond_tool.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_gold_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_gold_tool.json new file mode 100644 index 00000000..3cecdc74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_gold_tool.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_iron_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_iron_tool.json new file mode 100644 index 00000000..094771ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_iron_tool.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_netherite_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_netherite_tool.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_netherite_tool.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_stone_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_stone_tool.json new file mode 100644 index 00000000..1f5e3de8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_stone_tool.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_wooden_tool.json b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_wooden_tool.json new file mode 100644 index 00000000..3cecdc74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/incorrect_for_wooden_tool.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:needs_diamond_tool", + "#minecraft:needs_iron_tool", + "#minecraft:needs_stone_tool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/infiniburn_end.json b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_end.json new file mode 100644 index 00000000..10ebb05e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_end.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:infiniburn_overworld", + "minecraft:bedrock" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/infiniburn_nether.json b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_nether.json new file mode 100644 index 00000000..ba389733 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:infiniburn_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/infiniburn_overworld.json b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_overworld.json new file mode 100644 index 00000000..d6c76a1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/infiniburn_overworld.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:netherrack", + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/inside_step_sound_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/inside_step_sound_blocks.json new file mode 100644 index 00000000..c376c71d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/inside_step_sound_blocks.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:powder_snow", + "minecraft:sculk_vein", + "minecraft:glow_lichen", + "minecraft:lily_pad", + "minecraft:small_amethyst_bud", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:leaf_litter" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/invalid_spawn_inside.json b/data/generated/V26_2/data/minecraft/tags/block/invalid_spawn_inside.json new file mode 100644 index 00000000..82f8056b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/invalid_spawn_inside.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:end_portal", + "minecraft:end_gateway" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/iron_ores.json b/data/generated/V26_2/data/minecraft/tags/block/iron_ores.json new file mode 100644 index 00000000..0566d8ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/iron_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/jungle_logs.json b/data/generated/V26_2/data/minecraft/tags/block/jungle_logs.json new file mode 100644 index 00000000..437efbff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/jungle_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:jungle_log", + "minecraft:jungle_wood", + "minecraft:stripped_jungle_log", + "minecraft:stripped_jungle_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/lanterns.json b/data/generated/V26_2/data/minecraft/tags/block/lanterns.json new file mode 100644 index 00000000..557f94d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/lanterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:lantern", + "minecraft:soul_lantern", + "minecraft:copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:waxed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/lapis_ores.json b/data/generated/V26_2/data/minecraft/tags/block/lapis_ores.json new file mode 100644 index 00000000..a041526e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/lapis_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json b/data/generated/V26_2/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json new file mode 100644 index 00000000..e2526493 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/lava_pool_stone_cannot_replace.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:features_cannot_replace", + "#minecraft:leaves", + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/leaves.json b/data/generated/V26_2/data/minecraft/tags/block/leaves.json new file mode 100644 index 00000000..523787f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/leaves.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:jungle_leaves", + "minecraft:oak_leaves", + "minecraft:spruce_leaves", + "minecraft:pale_oak_leaves", + "minecraft:dark_oak_leaves", + "minecraft:acacia_leaves", + "minecraft:birch_leaves", + "minecraft:azalea_leaves", + "minecraft:flowering_azalea_leaves", + "minecraft:mangrove_leaves", + "minecraft:cherry_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/lightning_rods.json b/data/generated/V26_2/data/minecraft/tags/block/lightning_rods.json new file mode 100644 index 00000000..73469e26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/lightning_rods.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/logs.json b/data/generated/V26_2/data/minecraft/tags/block/logs.json new file mode 100644 index 00000000..234e4fee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/logs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs_that_burn", + "#minecraft:crimson_stems", + "#minecraft:warped_stems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/logs_that_burn.json b/data/generated/V26_2/data/minecraft/tags/block/logs_that_burn.json new file mode 100644 index 00000000..00f0e7fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/logs_that_burn.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:dark_oak_logs", + "#minecraft:pale_oak_logs", + "#minecraft:oak_logs", + "#minecraft:acacia_logs", + "#minecraft:birch_logs", + "#minecraft:jungle_logs", + "#minecraft:spruce_logs", + "#minecraft:mangrove_logs", + "#minecraft:cherry_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/lush_ground_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/lush_ground_replaceable.json new file mode 100644 index 00000000..8230f62b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/lush_ground_replaceable.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:moss_replaceable", + "minecraft:clay", + "minecraft:gravel", + "minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/maintains_farmland.json b/data/generated/V26_2/data/minecraft/tags/block/maintains_farmland.json new file mode 100644 index 00000000..c908578c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/maintains_farmland.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:pumpkin_stem", + "minecraft:attached_pumpkin_stem", + "minecraft:melon_stem", + "minecraft:attached_melon_stem", + "minecraft:beetroots", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:torchflower_crop", + "minecraft:torchflower", + "minecraft:pitcher_crop", + "minecraft:wheat", + "minecraft:moving_piston", + "#minecraft:fence_gates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs.json b/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs.json new file mode 100644 index 00000000..d69fadff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mangrove_log", + "minecraft:mangrove_wood", + "minecraft:stripped_mangrove_log", + "minecraft:stripped_mangrove_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs_can_grow_through.json b/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs_can_grow_through.json new file mode 100644 index 00000000..ab323766 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mangrove_logs_can_grow_through.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:mangrove_roots", + "minecraft:mangrove_leaves", + "minecraft:mangrove_log", + "minecraft:mangrove_propagule", + "minecraft:moss_carpet", + "minecraft:vine" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mangrove_roots_can_grow_through.json b/data/generated/V26_2/data/minecraft/tags/block/mangrove_roots_can_grow_through.json new file mode 100644 index 00000000..07eb0f3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mangrove_roots_can_grow_through.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:mangrove_roots", + "minecraft:moss_carpet", + "minecraft:vine", + "minecraft:mangrove_propagule", + "minecraft:snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mineable/axe.json b/data/generated/V26_2/data/minecraft/tags/block/mineable/axe.json new file mode 100644 index 00000000..414687af --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mineable/axe.json @@ -0,0 +1,59 @@ +{ + "values": [ + "minecraft:note_block", + "minecraft:bamboo", + "minecraft:barrel", + "minecraft:bee_nest", + "minecraft:beehive", + "minecraft:big_dripleaf_stem", + "minecraft:big_dripleaf", + "minecraft:bookshelf", + "minecraft:brown_mushroom_block", + "minecraft:campfire", + "minecraft:cartography_table", + "minecraft:carved_pumpkin", + "minecraft:chest", + "minecraft:chorus_flower", + "minecraft:chorus_plant", + "minecraft:cocoa", + "minecraft:composter", + "minecraft:crafting_table", + "minecraft:daylight_detector", + "minecraft:fletching_table", + "minecraft:glow_lichen", + "minecraft:jack_o_lantern", + "minecraft:jukebox", + "minecraft:ladder", + "minecraft:lectern", + "minecraft:loom", + "minecraft:melon", + "minecraft:mushroom_stem", + "minecraft:pumpkin", + "minecraft:red_mushroom_block", + "minecraft:smithing_table", + "minecraft:soul_campfire", + "minecraft:trapped_chest", + "minecraft:vine", + "#minecraft:banners", + "#minecraft:fence_gates", + "#minecraft:logs", + "#minecraft:planks", + "#minecraft:signs", + "#minecraft:wooden_buttons", + "#minecraft:wooden_doors", + "#minecraft:wooden_fences", + "#minecraft:wooden_pressure_plates", + "#minecraft:wooden_slabs", + "#minecraft:wooden_stairs", + "#minecraft:wooden_trapdoors", + "minecraft:mangrove_roots", + "#minecraft:all_hanging_signs", + "minecraft:bamboo_mosaic", + "minecraft:bamboo_mosaic_slab", + "minecraft:bamboo_mosaic_stairs", + "#minecraft:bamboo_blocks", + "minecraft:chiseled_bookshelf", + "#minecraft:wooden_shelves", + "minecraft:creaking_heart" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mineable/hoe.json b/data/generated/V26_2/data/minecraft/tags/block/mineable/hoe.json new file mode 100644 index 00000000..ed7b791a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mineable/hoe.json @@ -0,0 +1,23 @@ +{ + "values": [ + "#minecraft:leaves", + "minecraft:nether_wart_block", + "minecraft:warped_wart_block", + "minecraft:hay_block", + "minecraft:dried_kelp_block", + "minecraft:target", + "minecraft:shroomlight", + "minecraft:sponge", + "minecraft:wet_sponge", + "minecraft:sculk_sensor", + "minecraft:calibrated_sculk_sensor", + "minecraft:moss_block", + "minecraft:moss_carpet", + "minecraft:pale_moss_block", + "minecraft:pale_moss_carpet", + "minecraft:sculk", + "minecraft:sculk_catalyst", + "minecraft:sculk_vein", + "minecraft:sculk_shrieker" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mineable/pickaxe.json b/data/generated/V26_2/data/minecraft/tags/block/mineable/pickaxe.json new file mode 100644 index 00000000..94ceb0a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mineable/pickaxe.json @@ -0,0 +1,421 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:polished_granite", + "minecraft:diorite", + "minecraft:polished_diorite", + "minecraft:andesite", + "minecraft:polished_andesite", + "minecraft:cobblestone", + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore", + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore", + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore", + "minecraft:nether_gold_ore", + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore", + "minecraft:lapis_block", + "minecraft:dispenser", + "minecraft:sandstone", + "minecraft:chiseled_sandstone", + "minecraft:cut_sandstone", + "minecraft:gold_block", + "minecraft:iron_block", + "minecraft:bricks", + "minecraft:mossy_cobblestone", + "minecraft:obsidian", + "minecraft:spawner", + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore", + "minecraft:diamond_block", + "minecraft:furnace", + "minecraft:cobblestone_stairs", + "minecraft:stone_pressure_plate", + "minecraft:iron_door", + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore", + "minecraft:netherrack", + "minecraft:basalt", + "minecraft:polished_basalt", + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks", + "minecraft:brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:nether_bricks", + "minecraft:nether_brick_fence", + "minecraft:nether_brick_stairs", + "minecraft:enchanting_table", + "minecraft:brewing_stand", + "minecraft:end_stone", + "minecraft:sandstone_stairs", + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore", + "minecraft:ender_chest", + "minecraft:emerald_block", + "minecraft:light_weighted_pressure_plate", + "minecraft:heavy_weighted_pressure_plate", + "minecraft:redstone_block", + "minecraft:nether_quartz_ore", + "minecraft:hopper", + "minecraft:quartz_block", + "minecraft:chiseled_quartz_block", + "minecraft:quartz_pillar", + "minecraft:quartz_stairs", + "minecraft:dropper", + "minecraft:iron_trapdoor", + "minecraft:prismarine", + "minecraft:prismarine_bricks", + "minecraft:dark_prismarine", + "minecraft:prismarine_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:terracotta", + "minecraft:coal_block", + "minecraft:red_sandstone", + "minecraft:chiseled_red_sandstone", + "minecraft:cut_red_sandstone", + "minecraft:red_sandstone_stairs", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:sandstone_slab", + "minecraft:cut_sandstone_slab", + "minecraft:petrified_oak_slab", + "minecraft:cobblestone_slab", + "minecraft:brick_slab", + "minecraft:stone_brick_slab", + "minecraft:nether_brick_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:purpur_slab", + "minecraft:smooth_stone", + "minecraft:smooth_sandstone", + "minecraft:smooth_quartz", + "minecraft:smooth_red_sandstone", + "minecraft:purpur_block", + "minecraft:purpur_pillar", + "minecraft:purpur_stairs", + "minecraft:end_stone_bricks", + "minecraft:magma_block", + "minecraft:red_nether_bricks", + "minecraft:bone_block", + "minecraft:observer", + "minecraft:dead_tube_coral_block", + "minecraft:dead_brain_coral_block", + "minecraft:dead_bubble_coral_block", + "minecraft:dead_fire_coral_block", + "minecraft:dead_horn_coral_block", + "minecraft:tube_coral_block", + "minecraft:brain_coral_block", + "minecraft:bubble_coral_block", + "minecraft:fire_coral_block", + "minecraft:horn_coral_block", + "minecraft:dead_tube_coral", + "minecraft:dead_brain_coral", + "minecraft:dead_bubble_coral", + "minecraft:dead_fire_coral", + "minecraft:dead_horn_coral", + "minecraft:dead_tube_coral_fan", + "minecraft:dead_brain_coral_fan", + "minecraft:dead_bubble_coral_fan", + "minecraft:dead_fire_coral_fan", + "minecraft:dead_horn_coral_fan", + "minecraft:dead_tube_coral_wall_fan", + "minecraft:dead_brain_coral_wall_fan", + "minecraft:dead_bubble_coral_wall_fan", + "minecraft:dead_fire_coral_wall_fan", + "minecraft:dead_horn_coral_wall_fan", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:smoker", + "minecraft:blast_furnace", + "minecraft:grindstone", + "minecraft:stonecutter", + "minecraft:bell", + "minecraft:warped_nylium", + "minecraft:crimson_nylium", + "minecraft:netherite_block", + "minecraft:ancient_debris", + "minecraft:crying_obsidian", + "minecraft:respawn_anchor", + "minecraft:lodestone", + "minecraft:blackstone", + "minecraft:blackstone_stairs", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone", + "minecraft:polished_blackstone_bricks", + "minecraft:cracked_polished_blackstone_bricks", + "minecraft:chiseled_polished_blackstone", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:gilded_blackstone", + "minecraft:polished_blackstone_stairs", + "minecraft:polished_blackstone_slab", + "minecraft:polished_blackstone_pressure_plate", + "minecraft:chiseled_nether_bricks", + "minecraft:cracked_nether_bricks", + "minecraft:quartz_bricks", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore", + "minecraft:dripstone_block", + "minecraft:deepslate", + "minecraft:cobbled_deepslate", + "minecraft:cobbled_deepslate_stairs", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate", + "minecraft:polished_deepslate_stairs", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tiles", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_bricks", + "minecraft:deepslate_brick_stairs", + "minecraft:deepslate_brick_slab", + "minecraft:chiseled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:smooth_basalt", + "minecraft:raw_iron_block", + "minecraft:raw_copper_block", + "minecraft:raw_gold_block", + "minecraft:ice", + "minecraft:packed_ice", + "minecraft:blue_ice", + "minecraft:piston", + "minecraft:sticky_piston", + "minecraft:piston_head", + "minecraft:amethyst_cluster", + "minecraft:small_amethyst_bud", + "minecraft:medium_amethyst_bud", + "minecraft:large_amethyst_bud", + "minecraft:amethyst_block", + "minecraft:budding_amethyst", + "minecraft:infested_cobblestone", + "minecraft:infested_chiseled_stone_bricks", + "minecraft:infested_cracked_stone_bricks", + "minecraft:infested_deepslate", + "minecraft:infested_stone", + "minecraft:infested_mossy_stone_bricks", + "minecraft:infested_stone_bricks", + "#minecraft:stone_buttons", + "#minecraft:walls", + "#minecraft:shulker_boxes", + "#minecraft:anvil", + "#minecraft:cauldrons", + "#minecraft:rails", + "minecraft:conduit", + "minecraft:mud_bricks", + "minecraft:mud_brick_stairs", + "minecraft:mud_brick_slab", + "minecraft:packed_mud", + "minecraft:crafter", + "minecraft:tuff_slab", + "minecraft:tuff_stairs", + "minecraft:tuff_wall", + "minecraft:chiseled_tuff", + "minecraft:polished_tuff", + "minecraft:polished_tuff_slab", + "minecraft:polished_tuff_stairs", + "minecraft:polished_tuff_wall", + "minecraft:tuff_bricks", + "minecraft:tuff_brick_slab", + "minecraft:tuff_brick_stairs", + "minecraft:tuff_brick_wall", + "minecraft:chiseled_tuff_bricks", + "minecraft:heavy_core", + "minecraft:resin_bricks", + "minecraft:resin_brick_slab", + "minecraft:resin_brick_wall", + "minecraft:resin_brick_stairs", + "minecraft:chiseled_resin_bricks", + "minecraft:cinnabar", + "minecraft:cinnabar_slab", + "minecraft:cinnabar_stairs", + "minecraft:cinnabar_wall", + "minecraft:polished_cinnabar", + "minecraft:polished_cinnabar_slab", + "minecraft:polished_cinnabar_stairs", + "minecraft:polished_cinnabar_wall", + "minecraft:cinnabar_bricks", + "minecraft:cinnabar_brick_slab", + "minecraft:cinnabar_brick_stairs", + "minecraft:cinnabar_brick_wall", + "minecraft:chiseled_cinnabar", + "minecraft:sulfur", + "minecraft:potent_sulfur", + "minecraft:sulfur_slab", + "minecraft:sulfur_stairs", + "minecraft:sulfur_wall", + "minecraft:polished_sulfur", + "minecraft:polished_sulfur_slab", + "minecraft:polished_sulfur_stairs", + "minecraft:polished_sulfur_wall", + "minecraft:sulfur_bricks", + "minecraft:sulfur_brick_slab", + "minecraft:sulfur_brick_stairs", + "minecraft:sulfur_brick_wall", + "minecraft:chiseled_sulfur", + "#minecraft:copper_chests", + "#minecraft:copper_golem_statues", + "#minecraft:lightning_rods", + "#minecraft:lanterns", + "#minecraft:chains", + "#minecraft:bars", + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_cut_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate", + "minecraft:white_glazed_terracotta", + "minecraft:orange_glazed_terracotta", + "minecraft:magenta_glazed_terracotta", + "minecraft:light_blue_glazed_terracotta", + "minecraft:yellow_glazed_terracotta", + "minecraft:lime_glazed_terracotta", + "minecraft:pink_glazed_terracotta", + "minecraft:gray_glazed_terracotta", + "minecraft:light_gray_glazed_terracotta", + "minecraft:cyan_glazed_terracotta", + "minecraft:purple_glazed_terracotta", + "minecraft:blue_glazed_terracotta", + "minecraft:brown_glazed_terracotta", + "minecraft:green_glazed_terracotta", + "minecraft:red_glazed_terracotta", + "minecraft:black_glazed_terracotta", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta", + "minecraft:white_concrete", + "minecraft:orange_concrete", + "minecraft:magenta_concrete", + "minecraft:light_blue_concrete", + "minecraft:yellow_concrete", + "minecraft:lime_concrete", + "minecraft:pink_concrete", + "minecraft:gray_concrete", + "minecraft:light_gray_concrete", + "minecraft:cyan_concrete", + "minecraft:purple_concrete", + "minecraft:blue_concrete", + "minecraft:brown_concrete", + "minecraft:green_concrete", + "minecraft:red_concrete", + "minecraft:black_concrete", + "#minecraft:speleothems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mineable/shovel.json b/data/generated/V26_2/data/minecraft/tags/block/mineable/shovel.json new file mode 100644 index 00000000..1723ab48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mineable/shovel.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:clay", + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:podzol", + "minecraft:farmland", + "minecraft:grass_block", + "minecraft:gravel", + "minecraft:mycelium", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:snow_block", + "minecraft:snow", + "minecraft:soul_sand", + "minecraft:dirt_path", + "minecraft:soul_soil", + "minecraft:rooted_dirt", + "minecraft:muddy_mangrove_roots", + "minecraft:mud", + "minecraft:suspicious_sand", + "minecraft:suspicious_gravel", + "#minecraft:concrete_powders" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mob_interactable_doors.json b/data/generated/V26_2/data/minecraft/tags/block/mob_interactable_doors.json new file mode 100644 index 00000000..fe5c57d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mob_interactable_doors.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mooshrooms_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/mooshrooms_spawnable_on.json new file mode 100644 index 00000000..a5e4042d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mooshrooms_spawnable_on.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/moss_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/moss_blocks.json new file mode 100644 index 00000000..2774bdfa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/moss_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:moss_block", + "minecraft:pale_moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/moss_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/moss_replaceable.json new file mode 100644 index 00000000..aded58c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/moss_replaceable.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:cave_vines", + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/mud.json b/data/generated/V26_2/data/minecraft/tags/block/mud.json new file mode 100644 index 00000000..0ac1535b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/mud.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/needs_diamond_tool.json b/data/generated/V26_2/data/minecraft/tags/block/needs_diamond_tool.json new file mode 100644 index 00000000..f3c60ba6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/needs_diamond_tool.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:obsidian", + "minecraft:crying_obsidian", + "minecraft:netherite_block", + "minecraft:respawn_anchor", + "minecraft:ancient_debris" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/needs_iron_tool.json b/data/generated/V26_2/data/minecraft/tags/block/needs_iron_tool.json new file mode 100644 index 00000000..7a21ba46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/needs_iron_tool.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:diamond_block", + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore", + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore", + "minecraft:emerald_block", + "minecraft:gold_block", + "minecraft:raw_gold_block", + "minecraft:gold_ore", + "minecraft:deepslate_gold_ore", + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/needs_stone_tool.json b/data/generated/V26_2/data/minecraft/tags/block/needs_stone_tool.json new file mode 100644 index 00000000..1eec0e06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/needs_stone_tool.json @@ -0,0 +1,81 @@ +{ + "values": [ + "minecraft:iron_block", + "minecraft:raw_iron_block", + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore", + "minecraft:lapis_block", + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore", + "minecraft:raw_copper_block", + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore", + "minecraft:crafter", + "#minecraft:copper_chests", + "#minecraft:lightning_rods", + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_cut_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:copper_grate", + "minecraft:exposed_copper_grate", + "minecraft:weathered_copper_grate", + "minecraft:oxidized_copper_grate", + "minecraft:waxed_copper_grate", + "minecraft:waxed_exposed_copper_grate", + "minecraft:waxed_weathered_copper_grate", + "minecraft:waxed_oxidized_copper_grate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/nether_carver_replaceables.json b/data/generated/V26_2/data/minecraft/tags/block/nether_carver_replaceables.json new file mode 100644 index 00000000..6d2f67a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/nether_carver_replaceables.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:base_stone_nether", + "#minecraft:substrate_overworld", + "#minecraft:nylium", + "#minecraft:wart_blocks", + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/nylium.json b/data/generated/V26_2/data/minecraft/tags/block/nylium.json new file mode 100644 index 00000000..7fbae3ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/nylium.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/oak_logs.json b/data/generated/V26_2/data/minecraft/tags/block/oak_logs.json new file mode 100644 index 00000000..d4bae2a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:oak_log", + "minecraft:oak_wood", + "minecraft:stripped_oak_log", + "minecraft:stripped_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/occludes_vibration_signals.json b/data/generated/V26_2/data/minecraft/tags/block/occludes_vibration_signals.json new file mode 100644 index 00000000..495a1df4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/occludes_vibration_signals.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/overrides_mushroom_light_requirement.json b/data/generated/V26_2/data/minecraft/tags/block/overrides_mushroom_light_requirement.json new file mode 100644 index 00000000..a65b470b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/overrides_mushroom_light_requirement.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mycelium", + "minecraft:podzol", + "minecraft:crimson_nylium", + "minecraft:warped_nylium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/overworld_carver_replaceables.json b/data/generated/V26_2/data/minecraft/tags/block/overworld_carver_replaceables.json new file mode 100644 index 00000000..0f1a56f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/overworld_carver_replaceables.json @@ -0,0 +1,23 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:sand", + "#minecraft:terracotta", + "#minecraft:iron_ores", + "#minecraft:copper_ores", + "#minecraft:snow", + "minecraft:water", + "minecraft:gravel", + "minecraft:suspicious_gravel", + "minecraft:sandstone", + "minecraft:red_sandstone", + "minecraft:calcite", + "minecraft:packed_ice", + "minecraft:raw_iron_block", + "minecraft:raw_copper_block", + "minecraft:cinnabar", + "minecraft:sulfur", + "minecraft:potent_sulfur" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/overworld_natural_logs.json b/data/generated/V26_2/data/minecraft/tags/block/overworld_natural_logs.json new file mode 100644 index 00000000..940bdb74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/overworld_natural_logs.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:birch_log", + "minecraft:oak_log", + "minecraft:jungle_log", + "minecraft:spruce_log", + "minecraft:dark_oak_log", + "minecraft:pale_oak_log", + "minecraft:mangrove_log", + "minecraft:cherry_log" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/pale_oak_logs.json b/data/generated/V26_2/data/minecraft/tags/block/pale_oak_logs.json new file mode 100644 index 00000000..928a458b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/pale_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pale_oak_log", + "minecraft:pale_oak_wood", + "minecraft:stripped_pale_oak_log", + "minecraft:stripped_pale_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/parrots_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/parrots_spawnable_on.json new file mode 100644 index 00000000..aaa88e4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/parrots_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:air", + "#minecraft:leaves", + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/piglin_repellents.json b/data/generated/V26_2/data/minecraft/tags/block/piglin_repellents.json new file mode 100644 index 00000000..73820539 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/piglin_repellents.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:soul_fire", + "minecraft:soul_torch", + "minecraft:soul_lantern", + "minecraft:soul_wall_torch", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/planks.json b/data/generated/V26_2/data/minecraft/tags/block/planks.json new file mode 100644 index 00000000..55fa6f30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/planks.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:dark_oak_planks", + "minecraft:pale_oak_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:cherry_planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/polar_bear_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/polar_bear_immune_to.json new file mode 100644 index 00000000..38b8ecdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/polar_bear_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json b/data/generated/V26_2/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json new file mode 100644 index 00000000..d08f7cca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/polar_bears_spawnable_on_alternate.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/portals.json b/data/generated/V26_2/data/minecraft/tags/block/portals.json new file mode 100644 index 00000000..bb47430c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/portals.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:nether_portal", + "minecraft:end_portal", + "minecraft:end_gateway" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/pressure_plates.json b/data/generated/V26_2/data/minecraft/tags/block/pressure_plates.json new file mode 100644 index 00000000..dbcd3df0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/pressure_plates.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:light_weighted_pressure_plate", + "minecraft:heavy_weighted_pressure_plate", + "#minecraft:wooden_pressure_plates", + "#minecraft:stone_pressure_plates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/prevent_mob_spawning_inside.json b/data/generated/V26_2/data/minecraft/tags/block/prevent_mob_spawning_inside.json new file mode 100644 index 00000000..69f0511d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/prevent_mob_spawning_inside.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:rails" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/prevents_nearby_leaf_decay.json b/data/generated/V26_2/data/minecraft/tags/block/prevents_nearby_leaf_decay.json new file mode 100644 index 00000000..ff878bdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/prevents_nearby_leaf_decay.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/rabbits_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/rabbits_spawnable_on.json new file mode 100644 index 00000000..4618ed4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/rabbits_spawnable_on.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/rails.json b/data/generated/V26_2/data/minecraft/tags/block/rails.json new file mode 100644 index 00000000..ba7e2c11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/rails.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rail", + "minecraft:powered_rail", + "minecraft:detector_rail", + "minecraft:activator_rail" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/redstone_ores.json b/data/generated/V26_2/data/minecraft/tags/block/redstone_ores.json new file mode 100644 index 00000000..2fd184de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/redstone_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/replaceable.json new file mode 100644 index 00000000..da052432 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/replaceable.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:air", + "minecraft:water", + "minecraft:lava", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:bush", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:fire", + "minecraft:soul_fire", + "minecraft:snow", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:resin_clump", + "minecraft:light", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:structure_void", + "minecraft:void_air", + "minecraft:cave_air", + "minecraft:bubble_column", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:hanging_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_mushrooms.json b/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_mushrooms.json new file mode 100644 index 00000000..d2894adf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_mushrooms.json @@ -0,0 +1,35 @@ +{ + "values": [ + "#minecraft:leaves", + "#minecraft:small_flowers", + "minecraft:pale_moss_carpet", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:hanging_roots", + "minecraft:pitcher_plant", + "minecraft:water", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:brown_mushroom_block", + "minecraft:red_mushroom_block", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass", + "minecraft:bush", + "minecraft:firefly_bush" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_trees.json b/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_trees.json new file mode 100644 index 00000000..c04ade87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/replaceable_by_trees.json @@ -0,0 +1,31 @@ +{ + "values": [ + "#minecraft:leaves", + "#minecraft:small_flowers", + "minecraft:pale_moss_carpet", + "minecraft:short_grass", + "minecraft:fern", + "minecraft:dead_bush", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:rose_bush", + "minecraft:peony", + "minecraft:tall_grass", + "minecraft:large_fern", + "minecraft:hanging_roots", + "minecraft:pitcher_plant", + "minecraft:water", + "minecraft:seagrass", + "minecraft:tall_seagrass", + "minecraft:bush", + "minecraft:firefly_bush", + "minecraft:warped_roots", + "minecraft:nether_sprouts", + "minecraft:crimson_roots", + "minecraft:leaf_litter", + "minecraft:short_dry_grass", + "minecraft:tall_dry_grass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sand.json b/data/generated/V26_2/data/minecraft/tags/block/sand.json new file mode 100644 index 00000000..43f90f3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sand.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand", + "minecraft:suspicious_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/saplings.json b/data/generated/V26_2/data/minecraft/tags/block/saplings.json new file mode 100644 index 00000000..286497bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/saplings.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable.json new file mode 100644 index 00000000..12201024 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable.json @@ -0,0 +1,23 @@ +{ + "values": [ + "#minecraft:base_stone_overworld", + "#minecraft:substrate_overworld", + "#minecraft:terracotta", + "#minecraft:nylium", + "#minecraft:base_stone_nether", + "minecraft:sand", + "minecraft:red_sand", + "minecraft:gravel", + "minecraft:soul_sand", + "minecraft:soul_soil", + "minecraft:calcite", + "minecraft:smooth_basalt", + "minecraft:clay", + "minecraft:dripstone_block", + "minecraft:end_stone", + "minecraft:red_sandstone", + "minecraft:sandstone", + "minecraft:sulfur", + "minecraft:cinnabar" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable_world_gen.json b/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable_world_gen.json new file mode 100644 index 00000000..d1ee2653 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sculk_replaceable_world_gen.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:sculk_replaceable", + "minecraft:deepslate_bricks", + "minecraft:deepslate_tiles", + "minecraft:cobbled_deepslate", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:polished_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/shears_extreme_breaking_speed.json b/data/generated/V26_2/data/minecraft/tags/block/shears_extreme_breaking_speed.json new file mode 100644 index 00000000..a93e89db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/shears_extreme_breaking_speed.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/shears_major_breaking_speed.json b/data/generated/V26_2/data/minecraft/tags/block/shears_major_breaking_speed.json new file mode 100644 index 00000000..495a1df4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/shears_major_breaking_speed.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/shears_minor_breaking_speed.json b/data/generated/V26_2/data/minecraft/tags/block/shears_minor_breaking_speed.json new file mode 100644 index 00000000..d85498f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/shears_minor_breaking_speed.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:glow_lichen", + "minecraft:vine" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/shulker_boxes.json b/data/generated/V26_2/data/minecraft/tags/block/shulker_boxes.json new file mode 100644 index 00000000..8ffa83c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/shulker_boxes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:shulker_box", + "minecraft:white_shulker_box", + "minecraft:orange_shulker_box", + "minecraft:magenta_shulker_box", + "minecraft:light_blue_shulker_box", + "minecraft:yellow_shulker_box", + "minecraft:lime_shulker_box", + "minecraft:pink_shulker_box", + "minecraft:gray_shulker_box", + "minecraft:light_gray_shulker_box", + "minecraft:cyan_shulker_box", + "minecraft:purple_shulker_box", + "minecraft:blue_shulker_box", + "minecraft:brown_shulker_box", + "minecraft:green_shulker_box", + "minecraft:red_shulker_box", + "minecraft:black_shulker_box" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/signs.json b/data/generated/V26_2/data/minecraft/tags/block/signs.json new file mode 100644 index 00000000..78c89c18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/signs.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:standing_signs", + "#minecraft:wall_signs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/slabs.json b/data/generated/V26_2/data/minecraft/tags/block/slabs.json new file mode 100644 index 00000000..7d52cb30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/slabs.json @@ -0,0 +1,61 @@ +{ + "values": [ + "#minecraft:wooden_slabs", + "minecraft:bamboo_mosaic_slab", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:stone_brick_slab", + "minecraft:sandstone_slab", + "minecraft:purpur_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:brick_slab", + "minecraft:cobblestone_slab", + "minecraft:nether_brick_slab", + "minecraft:petrified_oak_slab", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:cut_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_slab", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_slab", + "minecraft:mud_brick_slab", + "minecraft:tuff_slab", + "minecraft:polished_tuff_slab", + "minecraft:tuff_brick_slab", + "minecraft:resin_brick_slab", + "minecraft:cinnabar_slab", + "minecraft:polished_cinnabar_slab", + "minecraft:cinnabar_brick_slab", + "minecraft:sulfur_slab", + "minecraft:polished_sulfur_slab", + "minecraft:sulfur_brick_slab", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/small_flowers.json b/data/generated/V26_2/data/minecraft/tags/block/small_flowers.json new file mode 100644 index 00000000..14472b0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/small_flowers.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:closed_eyeblossom", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/smelts_to_glass.json b/data/generated/V26_2/data/minecraft/tags/block/smelts_to_glass.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/smelts_to_glass.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/snaps_goat_horn.json b/data/generated/V26_2/data/minecraft/tags/block/snaps_goat_horn.json new file mode 100644 index 00000000..910be36c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/snaps_goat_horn.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:overworld_natural_logs", + "minecraft:stone", + "minecraft:packed_ice", + "minecraft:iron_ore", + "minecraft:coal_ore", + "minecraft:copper_ore", + "minecraft:emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sniffer_diggable_block.json b/data/generated/V26_2/data/minecraft/tags/block/sniffer_diggable_block.json new file mode 100644 index 00000000..c6868b45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sniffer_diggable_block.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "minecraft:grass_block", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sniffer_egg_hatch_boost.json b/data/generated/V26_2/data/minecraft/tags/block/sniffer_egg_hatch_boost.json new file mode 100644 index 00000000..a7ff8e19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sniffer_egg_hatch_boost.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/snow.json b/data/generated/V26_2/data/minecraft/tags/block/snow.json new file mode 100644 index 00000000..498129db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/snow.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:snow", + "minecraft:snow_block", + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/snow_golem_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/snow_golem_immune_to.json new file mode 100644 index 00000000..38b8ecdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/snow_golem_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/soul_fire_base_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/soul_fire_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/soul_fire_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/soul_speed_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/soul_speed_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/soul_speed_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/speleothems.json b/data/generated/V26_2/data/minecraft/tags/block/speleothems.json new file mode 100644 index 00000000..7bfd9505 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/speleothems.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:pointed_dripstone", + "minecraft:sulfur_spike" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/spruce_logs.json b/data/generated/V26_2/data/minecraft/tags/block/spruce_logs.json new file mode 100644 index 00000000..a8008420 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/spruce_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:spruce_log", + "minecraft:spruce_wood", + "minecraft:stripped_spruce_log", + "minecraft:stripped_spruce_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stairs.json b/data/generated/V26_2/data/minecraft/tags/block/stairs.json new file mode 100644 index 00000000..2b1e0639 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stairs.json @@ -0,0 +1,57 @@ +{ + "values": [ + "#minecraft:wooden_stairs", + "minecraft:bamboo_mosaic_stairs", + "minecraft:cobblestone_stairs", + "minecraft:sandstone_stairs", + "minecraft:nether_brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:brick_stairs", + "minecraft:purpur_stairs", + "minecraft:quartz_stairs", + "minecraft:red_sandstone_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:prismarine_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:blackstone_stairs", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:polished_blackstone_stairs", + "minecraft:cobbled_deepslate_stairs", + "minecraft:polished_deepslate_stairs", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_brick_stairs", + "minecraft:mud_brick_stairs", + "minecraft:tuff_stairs", + "minecraft:polished_tuff_stairs", + "minecraft:tuff_brick_stairs", + "minecraft:resin_brick_stairs", + "minecraft:cinnabar_stairs", + "minecraft:polished_cinnabar_stairs", + "minecraft:cinnabar_brick_stairs", + "minecraft:sulfur_stairs", + "minecraft:polished_sulfur_stairs", + "minecraft:sulfur_brick_stairs", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/standing_signs.json b/data/generated/V26_2/data/minecraft/tags/block/standing_signs.json new file mode 100644 index 00000000..84fda375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/standing_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_sign", + "minecraft:spruce_sign", + "minecraft:birch_sign", + "minecraft:acacia_sign", + "minecraft:jungle_sign", + "minecraft:dark_oak_sign", + "minecraft:pale_oak_sign", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:mangrove_sign", + "minecraft:bamboo_sign", + "minecraft:cherry_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stone_bricks.json b/data/generated/V26_2/data/minecraft/tags/block/stone_bricks.json new file mode 100644 index 00000000..973064b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stone_bricks.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stone_buttons.json b/data/generated/V26_2/data/minecraft/tags/block/stone_buttons.json new file mode 100644 index 00000000..decb592a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stone_buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_button", + "minecraft:polished_blackstone_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stone_ore_replaceables.json b/data/generated/V26_2/data/minecraft/tags/block/stone_ore_replaceables.json new file mode 100644 index 00000000..0269200f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stone_ore_replaceables.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stone_pressure_plates.json b/data/generated/V26_2/data/minecraft/tags/block/stone_pressure_plates.json new file mode 100644 index 00000000..ca6a4e95 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stone_pressure_plates.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_pressure_plate", + "minecraft:polished_blackstone_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/stray_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/stray_immune_to.json new file mode 100644 index 00000000..38b8ecdb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/stray_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:powder_snow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/strider_warm_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/strider_warm_blocks.json new file mode 100644 index 00000000..27562834 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/strider_warm_blocks.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lava" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/substrate_overworld.json b/data/generated/V26_2/data/minecraft/tags/block/substrate_overworld.json new file mode 100644 index 00000000..275f8ba3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/substrate_overworld.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:dirt", + "#minecraft:mud", + "#minecraft:moss_blocks", + "#minecraft:grass_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sulfur_spike_replaceable_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/sulfur_spike_replaceable_blocks.json new file mode 100644 index 00000000..5ede1b06 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sulfur_spike_replaceable_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sulfur", + "minecraft:cinnabar" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/support_override_cactus_flower.json b/data/generated/V26_2/data/minecraft/tags/block/support_override_cactus_flower.json new file mode 100644 index 00000000..7c4a3ebf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/support_override_cactus_flower.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cactus", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/support_override_snow_layer.json b/data/generated/V26_2/data/minecraft/tags/block/support_override_snow_layer.json new file mode 100644 index 00000000..a06843ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/support_override_snow_layer.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:honey_block", + "minecraft:soul_sand", + "minecraft:mud" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_azalea.json b/data/generated/V26_2/data/minecraft/tags/block/supports_azalea.json new file mode 100644 index 00000000..a5465996 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_azalea.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_bamboo.json b/data/generated/V26_2/data/minecraft/tags/block/supports_bamboo.json new file mode 100644 index 00000000..50f3cb58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_bamboo.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:substrate_overworld", + "minecraft:bamboo", + "minecraft:bamboo_sapling", + "minecraft:gravel", + "minecraft:suspicious_gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_big_dripleaf.json b/data/generated/V26_2/data/minecraft/tags/block/supports_big_dripleaf.json new file mode 100644 index 00000000..5993a4a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_big_dripleaf.json @@ -0,0 +1,15 @@ +{ + "values": [ + "#minecraft:supports_small_dripleaf", + "minecraft:dirt", + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:coarse_dirt", + "minecraft:mycelium", + "minecraft:rooted_dirt", + "minecraft:moss_block", + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_cactus.json b/data/generated/V26_2/data/minecraft/tags/block/supports_cactus.json new file mode 100644 index 00000000..3dd992bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_cactus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_flower.json b/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_flower.json new file mode 100644 index 00000000..f2d11375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_flower.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:end_stone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_plant.json b/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_plant.json new file mode 100644 index 00000000..f2d11375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_chorus_plant.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:end_stone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_cocoa.json b/data/generated/V26_2/data/minecraft/tags/block/supports_cocoa.json new file mode 100644 index 00000000..ea0a45ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_cocoa.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:jungle_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_fungus.json b/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_fungus.json new file mode 100644 index 00000000..4cd14f30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_fungus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_warped_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_roots.json b/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_roots.json new file mode 100644 index 00000000..a9107143 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_crimson_roots.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_warped_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_crops.json b/data/generated/V26_2/data/minecraft/tags/block/supports_crops.json new file mode 100644 index 00000000..ea3a8d61 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_dry_vegetation.json b/data/generated/V26_2/data/minecraft/tags/block/supports_dry_vegetation.json new file mode 100644 index 00000000..d554c509 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_dry_vegetation.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:sand", + "#minecraft:terracotta", + "#minecraft:supports_vegetation" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_frogspawn.json b/data/generated/V26_2/data/minecraft/tags/block/supports_frogspawn.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_frogspawn.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json b/data/generated/V26_2/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json new file mode 100644 index 00000000..badb3d3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_hanging_mangrove_propagule.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mangrove_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_lily_pad.json b/data/generated/V26_2/data/minecraft/tags/block/supports_lily_pad.json new file mode 100644 index 00000000..234e5336 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_lily_pad.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:ice", + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_mangrove_propagule.json b/data/generated/V26_2/data/minecraft/tags/block/supports_mangrove_propagule.json new file mode 100644 index 00000000..a5465996 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_mangrove_propagule.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:clay" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem.json b/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem.json new file mode 100644 index 00000000..93e75638 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem_fruit.json b/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem_fruit.json new file mode 100644 index 00000000..204ae8fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_melon_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_fruit" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_nether_sprouts.json b/data/generated/V26_2/data/minecraft/tags/block/supports_nether_sprouts.json new file mode 100644 index 00000000..09c95c6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_nether_sprouts.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_nether_wart.json b/data/generated/V26_2/data/minecraft/tags/block/supports_nether_wart.json new file mode 100644 index 00000000..355a91fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_nether_wart.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem.json b/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem.json new file mode 100644 index 00000000..93e75638 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json b/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json new file mode 100644 index 00000000..204ae8fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_pumpkin_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_stem_fruit" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_small_dripleaf.json b/data/generated/V26_2/data/minecraft/tags/block/supports_small_dripleaf.json new file mode 100644 index 00000000..57fb0315 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_small_dripleaf.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:clay", + "minecraft:moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_stem_crops.json b/data/generated/V26_2/data/minecraft/tags/block/supports_stem_crops.json new file mode 100644 index 00000000..16c9e509 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_stem_crops.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_crops" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_stem_fruit.json b/data/generated/V26_2/data/minecraft/tags/block/supports_stem_fruit.json new file mode 100644 index 00000000..f3fadb44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_stem_fruit.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:supports_vegetation" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane.json b/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane.json new file mode 100644 index 00000000..07e6f7eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "#minecraft:sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane_adjacently.json b/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane_adjacently.json new file mode 100644 index 00000000..3434ccfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_sugar_cane_adjacently.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:frosted_ice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_vegetation.json b/data/generated/V26_2/data/minecraft/tags/block/supports_vegetation.json new file mode 100644 index 00000000..8d67645a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_vegetation.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:substrate_overworld", + "minecraft:farmland" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_warped_fungus.json b/data/generated/V26_2/data/minecraft/tags/block/supports_warped_fungus.json new file mode 100644 index 00000000..0f115fa6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_warped_fungus.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:mycelium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_warped_roots.json b/data/generated/V26_2/data/minecraft/tags/block/supports_warped_roots.json new file mode 100644 index 00000000..09c95c6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_warped_roots.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "#minecraft:nylium", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/supports_wither_rose.json b/data/generated/V26_2/data/minecraft/tags/block/supports_wither_rose.json new file mode 100644 index 00000000..f028c897 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/supports_wither_rose.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:supports_vegetation", + "minecraft:netherrack", + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/suppresses_bounce.json b/data/generated/V26_2/data/minecraft/tags/block/suppresses_bounce.json new file mode 100644 index 00000000..f5bfa87b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/suppresses_bounce.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:honey_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sword_efficient.json b/data/generated/V26_2/data/minecraft/tags/block/sword_efficient.json new file mode 100644 index 00000000..bdfcc89d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sword_efficient.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:leaves", + "minecraft:vine", + "minecraft:glow_lichen", + "minecraft:pumpkin", + "minecraft:carved_pumpkin", + "minecraft:jack_o_lantern", + "minecraft:melon", + "minecraft:cocoa", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:chorus_plant", + "minecraft:chorus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/sword_instantly_mines.json b/data/generated/V26_2/data/minecraft/tags/block/sword_instantly_mines.json new file mode 100644 index 00000000..5059bebb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/sword_instantly_mines.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo", + "minecraft:bamboo_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/terracotta.json b/data/generated/V26_2/data/minecraft/tags/block/terracotta.json new file mode 100644 index 00000000..27aac67a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/terracotta.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/trail_ruins_replaceable.json b/data/generated/V26_2/data/minecraft/tags/block/trail_ruins_replaceable.json new file mode 100644 index 00000000..f6968bff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/trail_ruins_replaceable.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gravel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/trapdoors.json b/data/generated/V26_2/data/minecraft/tags/block/trapdoors.json new file mode 100644 index 00000000..269e4b8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/trapdoors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_trapdoors", + "minecraft:iron_trapdoor", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json new file mode 100644 index 00000000..abb97570 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_dry_vegetation_block_sounds.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:terracotta", + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_desert_sand_block_sounds.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/triggers_ambient_dried_ghast_block_sounds.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/underwater_bonemeals.json b/data/generated/V26_2/data/minecraft/tags/block/underwater_bonemeals.json new file mode 100644 index 00000000..9115b1b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/underwater_bonemeals.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:seagrass", + "#minecraft:corals", + "#minecraft:wall_corals" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/unstable_bottom_center.json b/data/generated/V26_2/data/minecraft/tags/block/unstable_bottom_center.json new file mode 100644 index 00000000..4a5113ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/unstable_bottom_center.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:fence_gates" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/valid_spawn.json b/data/generated/V26_2/data/minecraft/tags/block/valid_spawn.json new file mode 100644 index 00000000..00f8571e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/valid_spawn.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/vibration_resonators.json b/data/generated/V26_2/data/minecraft/tags/block/vibration_resonators.json new file mode 100644 index 00000000..7f66725a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/vibration_resonators.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:amethyst_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wall_corals.json b/data/generated/V26_2/data/minecraft/tags/block/wall_corals.json new file mode 100644 index 00000000..632d46ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wall_corals.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:tube_coral_wall_fan", + "minecraft:brain_coral_wall_fan", + "minecraft:bubble_coral_wall_fan", + "minecraft:fire_coral_wall_fan", + "minecraft:horn_coral_wall_fan" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wall_hanging_signs.json b/data/generated/V26_2/data/minecraft/tags/block/wall_hanging_signs.json new file mode 100644 index 00000000..4afc13d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wall_hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_wall_hanging_sign", + "minecraft:spruce_wall_hanging_sign", + "minecraft:birch_wall_hanging_sign", + "minecraft:acacia_wall_hanging_sign", + "minecraft:cherry_wall_hanging_sign", + "minecraft:jungle_wall_hanging_sign", + "minecraft:dark_oak_wall_hanging_sign", + "minecraft:pale_oak_wall_hanging_sign", + "minecraft:crimson_wall_hanging_sign", + "minecraft:warped_wall_hanging_sign", + "minecraft:mangrove_wall_hanging_sign", + "minecraft:bamboo_wall_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wall_post_override.json b/data/generated/V26_2/data/minecraft/tags/block/wall_post_override.json new file mode 100644 index 00000000..f0b8ac09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wall_post_override.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:torch", + "minecraft:soul_torch", + "minecraft:redstone_torch", + "minecraft:copper_torch", + "minecraft:tripwire", + "#minecraft:signs", + "#minecraft:banners", + "#minecraft:pressure_plates", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wall_signs.json b/data/generated/V26_2/data/minecraft/tags/block/wall_signs.json new file mode 100644 index 00000000..6f430df4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wall_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_wall_sign", + "minecraft:spruce_wall_sign", + "minecraft:birch_wall_sign", + "minecraft:acacia_wall_sign", + "minecraft:jungle_wall_sign", + "minecraft:dark_oak_wall_sign", + "minecraft:pale_oak_wall_sign", + "minecraft:crimson_wall_sign", + "minecraft:warped_wall_sign", + "minecraft:mangrove_wall_sign", + "minecraft:bamboo_wall_sign", + "minecraft:cherry_wall_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/walls.json b/data/generated/V26_2/data/minecraft/tags/block/walls.json new file mode 100644 index 00000000..15148910 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/walls.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:cobblestone_wall", + "minecraft:mossy_cobblestone_wall", + "minecraft:brick_wall", + "minecraft:prismarine_wall", + "minecraft:red_sandstone_wall", + "minecraft:mossy_stone_brick_wall", + "minecraft:granite_wall", + "minecraft:stone_brick_wall", + "minecraft:nether_brick_wall", + "minecraft:andesite_wall", + "minecraft:red_nether_brick_wall", + "minecraft:sandstone_wall", + "minecraft:end_stone_brick_wall", + "minecraft:diorite_wall", + "minecraft:blackstone_wall", + "minecraft:polished_blackstone_brick_wall", + "minecraft:polished_blackstone_wall", + "minecraft:cobbled_deepslate_wall", + "minecraft:polished_deepslate_wall", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:mud_brick_wall", + "minecraft:tuff_wall", + "minecraft:polished_tuff_wall", + "minecraft:tuff_brick_wall", + "minecraft:resin_brick_wall", + "minecraft:cinnabar_wall", + "minecraft:polished_cinnabar_wall", + "minecraft:cinnabar_brick_wall", + "minecraft:sulfur_wall", + "minecraft:polished_sulfur_wall", + "minecraft:sulfur_brick_wall" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/warped_stems.json b/data/generated/V26_2/data/minecraft/tags/block/warped_stems.json new file mode 100644 index 00000000..4da63869 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/warped_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wart_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/wart_blocks.json new file mode 100644 index 00000000..bab2679f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wart_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nether_wart_block", + "minecraft:warped_wart_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wither_immune.json b/data/generated/V26_2/data/minecraft/tags/block/wither_immune.json new file mode 100644 index 00000000..5c14361a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wither_immune.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:barrier", + "minecraft:bedrock", + "minecraft:end_portal", + "minecraft:end_portal_frame", + "minecraft:end_gateway", + "minecraft:command_block", + "minecraft:repeating_command_block", + "minecraft:chain_command_block", + "minecraft:structure_block", + "minecraft:jigsaw", + "minecraft:moving_piston", + "minecraft:light", + "minecraft:reinforced_deepslate", + "minecraft:test_block", + "minecraft:test_instance_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wither_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/wither_immune_to.json new file mode 100644 index 00000000..4950d614 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wither_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wither_rose" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wither_skeleton_immune_to.json b/data/generated/V26_2/data/minecraft/tags/block/wither_skeleton_immune_to.json new file mode 100644 index 00000000..4950d614 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wither_skeleton_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wither_rose" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wither_summon_base_blocks.json b/data/generated/V26_2/data/minecraft/tags/block/wither_summon_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wither_summon_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wolves_spawnable_on.json b/data/generated/V26_2/data/minecraft/tags/block/wolves_spawnable_on.json new file mode 100644 index 00000000..8a9f41e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wolves_spawnable_on.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:snow", + "minecraft:snow_block", + "minecraft:coarse_dirt", + "minecraft:podzol" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_buttons.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_buttons.json new file mode 100644 index 00000000..f6646d7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_buttons.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_button", + "minecraft:spruce_button", + "minecraft:birch_button", + "minecraft:jungle_button", + "minecraft:acacia_button", + "minecraft:dark_oak_button", + "minecraft:pale_oak_button", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:mangrove_button", + "minecraft:bamboo_button", + "minecraft:cherry_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_doors.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_doors.json new file mode 100644 index 00000000..be8b7def --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_doors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_door", + "minecraft:spruce_door", + "minecraft:birch_door", + "minecraft:jungle_door", + "minecraft:acacia_door", + "minecraft:dark_oak_door", + "minecraft:pale_oak_door", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:mangrove_door", + "minecraft:bamboo_door", + "minecraft:cherry_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_fences.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_fences.json new file mode 100644 index 00000000..dc051583 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_fences.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_fence", + "minecraft:acacia_fence", + "minecraft:dark_oak_fence", + "minecraft:pale_oak_fence", + "minecraft:spruce_fence", + "minecraft:birch_fence", + "minecraft:jungle_fence", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:mangrove_fence", + "minecraft:bamboo_fence", + "minecraft:cherry_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_pressure_plates.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_pressure_plates.json new file mode 100644 index 00000000..008f0063 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_pressure_plates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_pressure_plate", + "minecraft:spruce_pressure_plate", + "minecraft:birch_pressure_plate", + "minecraft:jungle_pressure_plate", + "minecraft:acacia_pressure_plate", + "minecraft:dark_oak_pressure_plate", + "minecraft:pale_oak_pressure_plate", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:mangrove_pressure_plate", + "minecraft:bamboo_pressure_plate", + "minecraft:cherry_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_shelves.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_shelves.json new file mode 100644 index 00000000..eb265470 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_shelves.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_shelf", + "minecraft:bamboo_shelf", + "minecraft:birch_shelf", + "minecraft:cherry_shelf", + "minecraft:crimson_shelf", + "minecraft:dark_oak_shelf", + "minecraft:jungle_shelf", + "minecraft:mangrove_shelf", + "minecraft:oak_shelf", + "minecraft:pale_oak_shelf", + "minecraft:spruce_shelf", + "minecraft:warped_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_slabs.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_slabs.json new file mode 100644 index 00000000..795bd3b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_slabs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_slab", + "minecraft:spruce_slab", + "minecraft:birch_slab", + "minecraft:jungle_slab", + "minecraft:acacia_slab", + "minecraft:dark_oak_slab", + "minecraft:pale_oak_slab", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:mangrove_slab", + "minecraft:bamboo_slab", + "minecraft:cherry_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_stairs.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_stairs.json new file mode 100644 index 00000000..86239e4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_stairs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_stairs", + "minecraft:spruce_stairs", + "minecraft:birch_stairs", + "minecraft:jungle_stairs", + "minecraft:acacia_stairs", + "minecraft:dark_oak_stairs", + "minecraft:pale_oak_stairs", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:mangrove_stairs", + "minecraft:bamboo_stairs", + "minecraft:cherry_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wooden_trapdoors.json b/data/generated/V26_2/data/minecraft/tags/block/wooden_trapdoors.json new file mode 100644 index 00000000..050e05f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wooden_trapdoors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_trapdoor", + "minecraft:birch_trapdoor", + "minecraft:dark_oak_trapdoor", + "minecraft:pale_oak_trapdoor", + "minecraft:jungle_trapdoor", + "minecraft:oak_trapdoor", + "minecraft:spruce_trapdoor", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:mangrove_trapdoor", + "minecraft:bamboo_trapdoor", + "minecraft:cherry_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wool.json b/data/generated/V26_2/data/minecraft/tags/block/wool.json new file mode 100644 index 00000000..bb52fac8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wool.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/block/wool_carpets.json b/data/generated/V26_2/data/minecraft/tags/block/wool_carpets.json new file mode 100644 index 00000000..4dec4650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/block/wool_carpets.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json b/data/generated/V26_2/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json new file mode 100644 index 00000000..7f5fbcd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/always_hurts_ender_dragons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/always_kills_armor_stands.json b/data/generated/V26_2/data/minecraft/tags/damage_type/always_kills_armor_stands.json new file mode 100644 index 00000000..0e167fe2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/always_kills_armor_stands.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:trident", + "minecraft:fireball", + "minecraft:wither_skull", + "minecraft:wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/always_most_significant_fall.json b/data/generated/V26_2/data/minecraft/tags/damage_type/always_most_significant_fall.json new file mode 100644 index 00000000..ae490d1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/always_most_significant_fall.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:out_of_world" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/always_triggers_silverfish.json b/data/generated/V26_2/data/minecraft/tags/damage_type/always_triggers_silverfish.json new file mode 100644 index 00000000..9a9e29eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/always_triggers_silverfish.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magic" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/avoids_guardian_thorns.json b/data/generated/V26_2/data/minecraft/tags/damage_type/avoids_guardian_thorns.json new file mode 100644 index 00000000..bc4634b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/avoids_guardian_thorns.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:magic", + "minecraft:thorns", + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/burn_from_stepping.json b/data/generated/V26_2/data/minecraft/tags/damage_type/burn_from_stepping.json new file mode 100644 index 00000000..785b4331 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/burn_from_stepping.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:campfire", + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/burns_armor_stands.json b/data/generated/V26_2/data/minecraft/tags/damage_type/burns_armor_stands.json new file mode 100644 index 00000000..ce817e3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/burns_armor_stands.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:on_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_armor.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_armor.json new file mode 100644 index 00000000..03637734 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_armor.json @@ -0,0 +1,23 @@ +{ + "values": [ + "minecraft:on_fire", + "minecraft:in_wall", + "minecraft:cramming", + "minecraft:drown", + "minecraft:fly_into_wall", + "minecraft:generic", + "minecraft:wither", + "minecraft:dragon_breath", + "minecraft:starve", + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:freeze", + "minecraft:stalagmite", + "minecraft:magic", + "minecraft:indirect_magic", + "minecraft:out_of_world", + "minecraft:generic_kill", + "minecraft:sonic_boom", + "minecraft:outside_border" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_effects.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_effects.json new file mode 100644 index 00000000..01571fc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_effects.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:starve" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_enchantments.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_enchantments.json new file mode 100644 index 00000000..65ae4189 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_enchantments.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:sonic_boom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_invulnerability.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_invulnerability.json new file mode 100644 index 00000000..f1930d3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_invulnerability.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:out_of_world", + "minecraft:generic_kill" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_resistance.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_resistance.json new file mode 100644 index 00000000..f1930d3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_resistance.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:out_of_world", + "minecraft:generic_kill" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_shield.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_shield.json new file mode 100644 index 00000000..85b61a2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_shield.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:bypasses_armor", + "minecraft:cactus", + "minecraft:campfire", + "minecraft:dry_out", + "minecraft:falling_anvil", + "minecraft:falling_stalactite", + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", + "minecraft:in_fire", + "minecraft:lava", + "minecraft:lightning_bolt", + "minecraft:sweet_berry_bush" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_wolf_armor.json b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_wolf_armor.json new file mode 100644 index 00000000..7c434bd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/bypasses_wolf_armor.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:bypasses_invulnerability", + "minecraft:cramming", + "minecraft:drown", + "minecraft:dry_out", + "minecraft:freeze", + "minecraft:in_wall", + "minecraft:indirect_magic", + "minecraft:magic", + "minecraft:outside_border", + "minecraft:starve", + "minecraft:thorns", + "minecraft:wither" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/can_break_armor_stand.json b/data/generated/V26_2/data/minecraft/tags/damage_type/can_break_armor_stand.json new file mode 100644 index 00000000..edabbaaf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/can_break_armor_stand.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:player_explosion", + "#minecraft:is_player_attack" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/damages_helmet.json b/data/generated/V26_2/data/minecraft/tags/damage_type/damages_helmet.json new file mode 100644 index 00000000..a0eaa65a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/damages_helmet.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:falling_anvil", + "minecraft:falling_block", + "minecraft:falling_stalactite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/ignites_armor_stands.json b/data/generated/V26_2/data/minecraft/tags/damage_type/ignites_armor_stands.json new file mode 100644 index 00000000..4e026f96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/ignites_armor_stands.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:in_fire", + "minecraft:campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_drowning.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_drowning.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_drowning.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_explosion.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_explosion.json new file mode 100644 index 00000000..c9f43370 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_explosion.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:fireworks", + "minecraft:explosion", + "minecraft:player_explosion", + "minecraft:bad_respawn_point" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_fall.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_fall.json new file mode 100644 index 00000000..fbbb7938 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_fall.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:stalagmite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_fire.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_fire.json new file mode 100644 index 00000000..af154e99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_fire.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:in_fire", + "minecraft:campfire", + "minecraft:on_fire", + "minecraft:lava", + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", + "minecraft:unattributed_fireball", + "minecraft:fireball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_freezing.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_freezing.json new file mode 100644 index 00000000..98b43893 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_freezing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:freeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_lightning.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_lightning.json new file mode 100644 index 00000000..e6164d1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_lightning.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lightning_bolt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_player_attack.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_player_attack.json new file mode 100644 index 00000000..12234e8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_player_attack.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:player_attack", + "minecraft:spear", + "minecraft:mace_smash" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/is_projectile.json b/data/generated/V26_2/data/minecraft/tags/damage_type/is_projectile.json new file mode 100644 index 00000000..632a4277 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/is_projectile.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:trident", + "minecraft:mob_projectile", + "minecraft:unattributed_fireball", + "minecraft:fireball", + "minecraft:wither_skull", + "minecraft:thrown", + "minecraft:wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/mace_smash.json b/data/generated/V26_2/data/minecraft/tags/damage_type/mace_smash.json new file mode 100644 index 00000000..66e2ac15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/mace_smash.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mace_smash" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/no_anger.json b/data/generated/V26_2/data/minecraft/tags/damage_type/no_anger.json new file mode 100644 index 00000000..d1ccae62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/no_anger.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mob_attack_no_aggro" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/no_impact.json b/data/generated/V26_2/data/minecraft/tags/damage_type/no_impact.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/no_impact.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/no_knockback.json b/data/generated/V26_2/data/minecraft/tags/damage_type/no_knockback.json new file mode 100644 index 00000000..1fd4ffa3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/no_knockback.json @@ -0,0 +1,34 @@ +{ + "values": [ + "minecraft:explosion", + "minecraft:player_explosion", + "minecraft:bad_respawn_point", + "minecraft:in_fire", + "minecraft:lightning_bolt", + "minecraft:on_fire", + "minecraft:lava", + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", + "minecraft:in_wall", + "minecraft:cramming", + "minecraft:drown", + "minecraft:starve", + "minecraft:cactus", + "minecraft:fall", + "minecraft:ender_pearl", + "minecraft:fly_into_wall", + "minecraft:out_of_world", + "minecraft:generic", + "minecraft:magic", + "minecraft:wither", + "minecraft:dragon_breath", + "minecraft:dry_out", + "minecraft:sweet_berry_bush", + "minecraft:freeze", + "minecraft:stalagmite", + "minecraft:outside_border", + "minecraft:generic_kill", + "minecraft:campfire", + "minecraft:spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/panic_causes.json b/data/generated/V26_2/data/minecraft/tags/damage_type/panic_causes.json new file mode 100644 index 00000000..8114375d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/panic_causes.json @@ -0,0 +1,24 @@ +{ + "values": [ + "#minecraft:panic_environmental_causes", + "minecraft:arrow", + "minecraft:dragon_breath", + "minecraft:explosion", + "minecraft:fireball", + "minecraft:fireworks", + "minecraft:indirect_magic", + "minecraft:magic", + "minecraft:mob_attack", + "minecraft:mob_projectile", + "minecraft:player_explosion", + "minecraft:sonic_boom", + "minecraft:sting", + "minecraft:thrown", + "minecraft:trident", + "minecraft:unattributed_fireball", + "minecraft:wind_charge", + "minecraft:wither", + "minecraft:wither_skull", + "#minecraft:is_player_attack" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/panic_environmental_causes.json b/data/generated/V26_2/data/minecraft/tags/damage_type/panic_environmental_causes.json new file mode 100644 index 00000000..f48368ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/panic_environmental_causes.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:cactus", + "minecraft:freeze", + "minecraft:hot_floor", + "minecraft:sulfur_cube_hot", + "minecraft:in_fire", + "minecraft:lava", + "minecraft:lightning_bolt", + "minecraft:on_fire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json b/data/generated/V26_2/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json new file mode 100644 index 00000000..39b26526 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/sulfur_cube_with_block_immune_to.json @@ -0,0 +1,28 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:cactus", + "minecraft:dry_out", + "minecraft:fall", + "minecraft:falling_anvil", + "minecraft:falling_block", + "minecraft:falling_stalactite", + "minecraft:freeze", + "minecraft:mace_smash", + "minecraft:hot_floor", + "minecraft:mob_attack", + "minecraft:mob_attack_no_aggro", + "minecraft:mob_projectile", + "minecraft:player_attack", + "minecraft:spear", + "minecraft:spit", + "minecraft:stalagmite", + "minecraft:sting", + "minecraft:sulfur_cube_hot", + "minecraft:sweet_berry_bush", + "minecraft:thrown", + "minecraft:trident", + "minecraft:wind_charge", + "#minecraft:is_explosion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/witch_resistant_to.json b/data/generated/V26_2/data/minecraft/tags/damage_type/witch_resistant_to.json new file mode 100644 index 00000000..726ffa30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/witch_resistant_to.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:magic", + "minecraft:indirect_magic", + "minecraft:sonic_boom", + "minecraft:thorns" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/damage_type/wither_immune_to.json b/data/generated/V26_2/data/minecraft/tags/damage_type/wither_immune_to.json new file mode 100644 index 00000000..e4852112 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/damage_type/wither_immune_to.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:drown" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/dialog/pause_screen_additions.json b/data/generated/V26_2/data/minecraft/tags/dialog/pause_screen_additions.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/dialog/pause_screen_additions.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/dialog/quick_actions.json b/data/generated/V26_2/data/minecraft/tags/dialog/quick_actions.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/dialog/quick_actions.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/curse.json b/data/generated/V26_2/data/minecraft/tags/enchantment/curse.json new file mode 100644 index 00000000..0c7d6110 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/curse.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/double_trade_price.json b/data/generated/V26_2/data/minecraft/tags/enchantment/double_trade_price.json new file mode 100644 index 00000000..0e924c6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/double_trade_price.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/armor.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/armor.json new file mode 100644 index 00000000..965552f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:protection", + "minecraft:blast_protection", + "minecraft:fire_protection", + "minecraft:projectile_protection" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/boots.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/boots.json new file mode 100644 index 00000000..837664e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/boots.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:frost_walker", + "minecraft:depth_strider" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/bow.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/bow.json new file mode 100644 index 00000000..ad527369 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/bow.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:infinity", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/crossbow.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/crossbow.json new file mode 100644 index 00000000..d7437404 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/crossbow.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:multishot", + "minecraft:piercing" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/damage.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/damage.json new file mode 100644 index 00000000..e95a3193 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/damage.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:impaling", + "minecraft:density", + "minecraft:breach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/mining.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/mining.json new file mode 100644 index 00000000..8413d0bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/mining.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fortune", + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/riptide.json b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/riptide.json new file mode 100644 index 00000000..c11a2f9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/exclusive_set/riptide.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:loyalty", + "minecraft:channeling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/in_enchanting_table.json b/data/generated/V26_2/data/minecraft/tags/enchantment/in_enchanting_table.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/in_enchanting_table.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/non_treasure.json b/data/generated/V26_2/data/minecraft/tags/enchantment/non_treasure.json new file mode 100644 index 00000000..677c5943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/non_treasure.json @@ -0,0 +1,40 @@ +{ + "values": [ + "minecraft:protection", + "minecraft:fire_protection", + "minecraft:feather_falling", + "minecraft:blast_protection", + "minecraft:projectile_protection", + "minecraft:respiration", + "minecraft:aqua_affinity", + "minecraft:thorns", + "minecraft:depth_strider", + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:knockback", + "minecraft:fire_aspect", + "minecraft:looting", + "minecraft:sweeping_edge", + "minecraft:efficiency", + "minecraft:silk_touch", + "minecraft:unbreaking", + "minecraft:fortune", + "minecraft:power", + "minecraft:punch", + "minecraft:flame", + "minecraft:infinity", + "minecraft:luck_of_the_sea", + "minecraft:lure", + "minecraft:loyalty", + "minecraft:impaling", + "minecraft:riptide", + "minecraft:channeling", + "minecraft:multishot", + "minecraft:quick_charge", + "minecraft:piercing", + "minecraft:density", + "minecraft:breach", + "minecraft:lunge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json b/data/generated/V26_2/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/on_mob_spawn_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/on_random_loot.json b/data/generated/V26_2/data/minecraft/tags/enchantment/on_random_loot.json new file mode 100644 index 00000000..e20b0084 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/on_random_loot.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:non_treasure", + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:frost_walker", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/on_traded_equipment.json b/data/generated/V26_2/data/minecraft/tags/enchantment/on_traded_equipment.json new file mode 100644 index 00000000..39656740 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/on_traded_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:non_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_bee_spawns_when_mining.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_decorated_pot_shattering.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_ice_melting.json b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_ice_melting.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_ice_melting.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_infested_spawns.json b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_infested_spawns.json new file mode 100644 index 00000000..9fe019a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/prevents_infested_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silk_touch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/smelts_loot.json b/data/generated/V26_2/data/minecraft/tags/enchantment/smelts_loot.json new file mode 100644 index 00000000..bc4d7821 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/smelts_loot.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fire_aspect" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/tooltip_order.json b/data/generated/V26_2/data/minecraft/tags/enchantment/tooltip_order.json new file mode 100644 index 00000000..129e9f9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/tooltip_order.json @@ -0,0 +1,47 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:riptide", + "minecraft:channeling", + "minecraft:wind_burst", + "minecraft:frost_walker", + "minecraft:lunge", + "minecraft:sharpness", + "minecraft:smite", + "minecraft:bane_of_arthropods", + "minecraft:impaling", + "minecraft:power", + "minecraft:density", + "minecraft:breach", + "minecraft:piercing", + "minecraft:sweeping_edge", + "minecraft:multishot", + "minecraft:fire_aspect", + "minecraft:flame", + "minecraft:knockback", + "minecraft:punch", + "minecraft:protection", + "minecraft:blast_protection", + "minecraft:fire_protection", + "minecraft:projectile_protection", + "minecraft:feather_falling", + "minecraft:fortune", + "minecraft:looting", + "minecraft:silk_touch", + "minecraft:luck_of_the_sea", + "minecraft:efficiency", + "minecraft:quick_charge", + "minecraft:lure", + "minecraft:respiration", + "minecraft:aqua_affinity", + "minecraft:soul_speed", + "minecraft:swift_sneak", + "minecraft:depth_strider", + "minecraft:thorns", + "minecraft:loyalty", + "minecraft:unbreaking", + "minecraft:infinity", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/tradeable.json b/data/generated/V26_2/data/minecraft/tags/enchantment/tradeable.json new file mode 100644 index 00000000..e20b0084 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/tradeable.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:non_treasure", + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:frost_walker", + "minecraft:mending" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/enchantment/treasure.json b/data/generated/V26_2/data/minecraft/tags/enchantment/treasure.json new file mode 100644 index 00000000..a2712dd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/enchantment/treasure.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:binding_curse", + "minecraft:vanishing_curse", + "minecraft:swift_sneak", + "minecraft:soul_speed", + "minecraft:frost_walker", + "minecraft:mending", + "minecraft:wind_burst" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json b/data/generated/V26_2/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json new file mode 100644 index 00000000..eb3b6b36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/accepts_iron_golem_gift.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_golem" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/aquatic.json b/data/generated/V26_2/data/minecraft/tags/entity_type/aquatic.json new file mode 100644 index 00000000..caa1040b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/aquatic.json @@ -0,0 +1,18 @@ +{ + "values": [ + "minecraft:turtle", + "minecraft:axolotl", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/arrows.json b/data/generated/V26_2/data/minecraft/tags/entity_type/arrows.json new file mode 100644 index 00000000..8421d31d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/arrows.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:spectral_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/arthropod.json b/data/generated/V26_2/data/minecraft/tags/entity_type/arthropod.json new file mode 100644 index 00000000..4d51ee2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/arthropod.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:bee", + "minecraft:endermite", + "minecraft:silverfish", + "minecraft:spider", + "minecraft:cave_spider" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_always_hostiles.json b/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_always_hostiles.json new file mode 100644 index 00000000..811f076e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_always_hostiles.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:drowned", + "minecraft:guardian", + "minecraft:elder_guardian" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_hunt_targets.json b/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_hunt_targets.json new file mode 100644 index 00000000..531dcb81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/axolotl_hunt_targets.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:tropical_fish", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:cod", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/beehive_inhabitors.json b/data/generated/V26_2/data/minecraft/tags/entity_type/beehive_inhabitors.json new file mode 100644 index 00000000..a5a951b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/beehive_inhabitors.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bee" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/boat.json b/data/generated/V26_2/data/minecraft/tags/entity_type/boat.json new file mode 100644 index 00000000..252370c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/boat.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:oak_boat", + "minecraft:spruce_boat", + "minecraft:birch_boat", + "minecraft:jungle_boat", + "minecraft:acacia_boat", + "minecraft:cherry_boat", + "minecraft:dark_oak_boat", + "minecraft:pale_oak_boat", + "minecraft:mangrove_boat", + "minecraft:bamboo_raft" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/burn_in_daylight.json b/data/generated/V26_2/data/minecraft/tags/entity_type/burn_in_daylight.json new file mode 100644 index 00000000..8f54dc8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/burn_in_daylight.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:stray", + "minecraft:wither_skeleton", + "minecraft:bogged", + "minecraft:zombie", + "minecraft:zombie_horse", + "minecraft:zombie_villager", + "minecraft:drowned", + "minecraft:zombie_nautilus", + "minecraft:phantom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_breathe_under_water.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_breathe_under_water.json new file mode 100644 index 00000000..35476b09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_breathe_under_water.json @@ -0,0 +1,20 @@ +{ + "values": [ + "#minecraft:undead", + "minecraft:axolotl", + "minecraft:frog", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:turtle", + "minecraft:glow_squid", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:squid", + "minecraft:tropical_fish", + "minecraft:tadpole", + "minecraft:armor_stand", + "minecraft:copper_golem", + "minecraft:nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_harness.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_harness.json new file mode 100644 index 00000000..bf784bb2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_harness.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:happy_ghast" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_saddle.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_saddle.json new file mode 100644 index 00000000..eb053a30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_equip_saddle.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:skeleton_horse", + "minecraft:zombie_horse", + "minecraft:donkey", + "minecraft:mule", + "minecraft:pig", + "minecraft:strider", + "minecraft:camel", + "minecraft:camel_husk", + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_float_while_ridden.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_float_while_ridden.json new file mode 100644 index 00000000..2c6da42c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_float_while_ridden.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:zombie_horse", + "minecraft:mule", + "minecraft:donkey", + "minecraft:camel", + "minecraft:camel_husk" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_turn_in_boats.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_turn_in_boats.json new file mode 100644 index 00000000..21945c27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_turn_in_boats.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_horse_armor.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_horse_armor.json new file mode 100644 index 00000000..c1546f02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_horse_armor.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:horse", + "minecraft:zombie_horse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json b/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json new file mode 100644 index 00000000..4ec1ffa2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/can_wear_nautilus_armor.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nautilus", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json b/data/generated/V26_2/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json new file mode 100644 index 00000000..4903d377 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/candidate_for_iron_golem_gift.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:villager", + "#minecraft:accepts_iron_golem_gift" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_age_locked.json b/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_age_locked.json new file mode 100644 index 00000000..92c9655e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_age_locked.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:zombie_horse", + "minecraft:skeleton_horse", + "minecraft:villager" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json b/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json new file mode 100644 index 00000000..528d30a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/cannot_be_pushed_onto_boats.json @@ -0,0 +1,18 @@ +{ + "values": [ + "minecraft:player", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:creaking", + "minecraft:nautilus", + "minecraft:zombie_nautilus", + "minecraft:sulfur_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/deflects_projectiles.json b/data/generated/V26_2/data/minecraft/tags/entity_type/deflects_projectiles.json new file mode 100644 index 00000000..21945c27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/deflects_projectiles.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/dismounts_underwater.json b/data/generated/V26_2/data/minecraft/tags/entity_type/dismounts_underwater.json new file mode 100644 index 00000000..9c53e262 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/dismounts_underwater.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:camel", + "minecraft:chicken", + "minecraft:donkey", + "minecraft:happy_ghast", + "minecraft:horse", + "minecraft:llama", + "minecraft:mule", + "minecraft:pig", + "minecraft:ravager", + "minecraft:spider", + "minecraft:strider", + "minecraft:trader_llama", + "minecraft:zombie_horse" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/fall_damage_immune.json b/data/generated/V26_2/data/minecraft/tags/entity_type/fall_damage_immune.json new file mode 100644 index 00000000..3d1830c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/fall_damage_immune.json @@ -0,0 +1,22 @@ +{ + "values": [ + "minecraft:copper_golem", + "minecraft:iron_golem", + "minecraft:snow_golem", + "minecraft:shulker", + "minecraft:allay", + "minecraft:bat", + "minecraft:bee", + "minecraft:blaze", + "minecraft:cat", + "minecraft:chicken", + "minecraft:ghast", + "minecraft:happy_ghast", + "minecraft:phantom", + "minecraft:magma_cube", + "minecraft:ocelot", + "minecraft:parrot", + "minecraft:wither", + "minecraft:breeze" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/followable_friendly_mobs.json b/data/generated/V26_2/data/minecraft/tags/entity_type/followable_friendly_mobs.json new file mode 100644 index 00000000..26848cc3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/followable_friendly_mobs.json @@ -0,0 +1,29 @@ +{ + "values": [ + "minecraft:armadillo", + "minecraft:bee", + "minecraft:camel", + "minecraft:cat", + "minecraft:chicken", + "minecraft:cow", + "minecraft:donkey", + "minecraft:fox", + "minecraft:goat", + "minecraft:happy_ghast", + "minecraft:horse", + "minecraft:skeleton_horse", + "minecraft:llama", + "minecraft:mule", + "minecraft:ocelot", + "minecraft:panda", + "minecraft:parrot", + "minecraft:pig", + "minecraft:polar_bear", + "minecraft:rabbit", + "minecraft:sheep", + "minecraft:sniffer", + "minecraft:strider", + "minecraft:villager", + "minecraft:wolf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json b/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json new file mode 100644 index 00000000..e4cdb51e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_hurts_extra_types.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:strider", + "minecraft:blaze", + "minecraft:magma_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_immune_entity_types.json b/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_immune_entity_types.json new file mode 100644 index 00000000..e1063a63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/freeze_immune_entity_types.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stray", + "minecraft:polar_bear", + "minecraft:snow_golem", + "minecraft:wither" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/frog_food.json b/data/generated/V26_2/data/minecraft/tags/entity_type/frog_food.json new file mode 100644 index 00000000..858f48c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/frog_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:slime", + "minecraft:magma_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/ignores_poison_and_regen.json b/data/generated/V26_2/data/minecraft/tags/entity_type/ignores_poison_and_regen.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/ignores_poison_and_regen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/illager.json b/data/generated/V26_2/data/minecraft/tags/entity_type/illager.json new file mode 100644 index 00000000..437d9528 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/illager.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:evoker", + "minecraft:illusioner", + "minecraft:pillager", + "minecraft:vindicator" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/illager_friends.json b/data/generated/V26_2/data/minecraft/tags/entity_type/illager_friends.json new file mode 100644 index 00000000..0f27c0ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/illager_friends.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:illager" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_infested.json b/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_infested.json new file mode 100644 index 00000000..06dc7c0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_infested.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:silverfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_oozing.json b/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_oozing.json new file mode 100644 index 00000000..90c32b4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/immune_to_oozing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:slime" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/impact_projectiles.json b/data/generated/V26_2/data/minecraft/tags/entity_type/impact_projectiles.json new file mode 100644 index 00000000..2d4eb4e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/impact_projectiles.json @@ -0,0 +1,15 @@ +{ + "values": [ + "#minecraft:arrows", + "minecraft:firework_rocket", + "minecraft:snowball", + "minecraft:fireball", + "minecraft:small_fireball", + "minecraft:egg", + "minecraft:trident", + "minecraft:dragon_fireball", + "minecraft:wither_skull", + "minecraft:wind_charge", + "minecraft:breeze_wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/inverted_healing_and_harm.json b/data/generated/V26_2/data/minecraft/tags/entity_type/inverted_healing_and_harm.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/inverted_healing_and_harm.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/nautilus_hostiles.json b/data/generated/V26_2/data/minecraft/tags/entity_type/nautilus_hostiles.json new file mode 100644 index 00000000..6a4ad949 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/nautilus_hostiles.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:pufferfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json b/data/generated/V26_2/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json new file mode 100644 index 00000000..7cc30fb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/no_anger_from_wind_charge.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:breeze", + "minecraft:skeleton", + "minecraft:bogged", + "minecraft:stray", + "minecraft:zombie", + "minecraft:husk", + "minecraft:spider", + "minecraft:cave_spider", + "minecraft:slime" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/non_controlling_rider.json b/data/generated/V26_2/data/minecraft/tags/entity_type/non_controlling_rider.json new file mode 100644 index 00000000..3f871c5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/non_controlling_rider.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:slime", + "minecraft:magma_cube", + "minecraft:sulfur_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/not_affected_by_geysers.json b/data/generated/V26_2/data/minecraft/tags/entity_type/not_affected_by_geysers.json new file mode 100644 index 00000000..50003ea6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/not_affected_by_geysers.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:ender_dragon" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json b/data/generated/V26_2/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json new file mode 100644 index 00000000..b0e2ac1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/not_scary_for_pufferfish.json @@ -0,0 +1,18 @@ +{ + "values": [ + "minecraft:turtle", + "minecraft:guardian", + "minecraft:elder_guardian", + "minecraft:cod", + "minecraft:pufferfish", + "minecraft:salmon", + "minecraft:tropical_fish", + "minecraft:dolphin", + "minecraft:squid", + "minecraft:glow_squid", + "minecraft:tadpole", + "minecraft:nautilus", + "minecraft:zombie_nautilus", + "minecraft:sulfur_cube" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json b/data/generated/V26_2/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json new file mode 100644 index 00000000..e8db267a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/powder_snow_walkable_mobs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rabbit", + "minecraft:endermite", + "minecraft:silverfish", + "minecraft:fox" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/raiders.json b/data/generated/V26_2/data/minecraft/tags/entity_type/raiders.json new file mode 100644 index 00000000..9548830a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/raiders.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:evoker", + "minecraft:pillager", + "minecraft:ravager", + "minecraft:vindicator", + "minecraft:illusioner", + "minecraft:witch" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/redirectable_projectile.json b/data/generated/V26_2/data/minecraft/tags/entity_type/redirectable_projectile.json new file mode 100644 index 00000000..5fb9fd44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/redirectable_projectile.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fireball", + "minecraft:wind_charge", + "minecraft:breeze_wind_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json new file mode 100644 index 00000000..e3570962 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_bane_of_arthropods.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:arthropod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_impaling.json b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_impaling.json new file mode 100644 index 00000000..203a8af2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_impaling.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:aquatic" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_smite.json b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_smite.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/sensitive_to_smite.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/skeletons.json b/data/generated/V26_2/data/minecraft/tags/entity_type/skeletons.json new file mode 100644 index 00000000..d722688a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/skeletons.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:skeleton", + "minecraft:stray", + "minecraft:wither_skeleton", + "minecraft:skeleton_horse", + "minecraft:bogged", + "minecraft:parched" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/undead.json b/data/generated/V26_2/data/minecraft/tags/entity_type/undead.json new file mode 100644 index 00000000..f00edb98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/undead.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:skeletons", + "#minecraft:zombies", + "minecraft:wither", + "minecraft:phantom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/wither_friends.json b/data/generated/V26_2/data/minecraft/tags/entity_type/wither_friends.json new file mode 100644 index 00000000..b77400e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/wither_friends.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:undead" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/entity_type/zombies.json b/data/generated/V26_2/data/minecraft/tags/entity_type/zombies.json new file mode 100644 index 00000000..ca3355d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/entity_type/zombies.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:zombie_horse", + "minecraft:camel_husk", + "minecraft:zombie", + "minecraft:zombie_villager", + "minecraft:zombified_piglin", + "minecraft:zoglin", + "minecraft:drowned", + "minecraft:husk", + "minecraft:zombie_nautilus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/bubble_column_can_occupy.json b/data/generated/V26_2/data/minecraft/tags/fluid/bubble_column_can_occupy.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/bubble_column_can_occupy.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/lava.json b/data/generated/V26_2/data/minecraft/tags/fluid/lava.json new file mode 100644 index 00000000..c4953e87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/lava.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lava", + "minecraft:flowing_lava" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/supports_frogspawn.json b/data/generated/V26_2/data/minecraft/tags/fluid/supports_frogspawn.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/supports_frogspawn.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/supports_lily_pad.json b/data/generated/V26_2/data/minecraft/tags/fluid/supports_lily_pad.json new file mode 100644 index 00000000..d1e7f7ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/supports_lily_pad.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json b/data/generated/V26_2/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json new file mode 100644 index 00000000..387e410f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/supports_sugar_cane_adjacently.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/fluid/water.json b/data/generated/V26_2/data/minecraft/tags/fluid/water.json new file mode 100644 index 00000000..dbfbaa80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/fluid/water.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:water", + "minecraft:flowing_water" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/game_event/allay_can_listen.json b/data/generated/V26_2/data/minecraft/tags/game_event/allay_can_listen.json new file mode 100644 index 00000000..916088c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/game_event/allay_can_listen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:note_block_play" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json b/data/generated/V26_2/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json new file mode 100644 index 00000000..6bf4071d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/game_event/ignore_vibrations_sneaking.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:hit_ground", + "minecraft:projectile_shoot", + "minecraft:step", + "minecraft:swim", + "minecraft:item_interact_start", + "minecraft:item_interact_finish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/game_event/shrieker_can_listen.json b/data/generated/V26_2/data/minecraft/tags/game_event/shrieker_can_listen.json new file mode 100644 index 00000000..a5cddd84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/game_event/shrieker_can_listen.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:sculk_sensor_tendrils_clicking" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/game_event/vibrations.json b/data/generated/V26_2/data/minecraft/tags/game_event/vibrations.json new file mode 100644 index 00000000..3d6c17f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/game_event/vibrations.json @@ -0,0 +1,60 @@ +{ + "values": [ + "minecraft:block_attach", + "minecraft:block_change", + "minecraft:block_close", + "minecraft:block_destroy", + "minecraft:block_detach", + "minecraft:block_open", + "minecraft:block_place", + "minecraft:block_activate", + "minecraft:block_deactivate", + "minecraft:bounce", + "minecraft:container_close", + "minecraft:container_open", + "minecraft:drink", + "minecraft:eat", + "minecraft:elytra_glide", + "minecraft:entity_damage", + "minecraft:entity_die", + "minecraft:entity_dismount", + "minecraft:entity_interact", + "minecraft:entity_mount", + "minecraft:entity_place", + "minecraft:entity_action", + "minecraft:equip", + "minecraft:explode", + "minecraft:fluid_pickup", + "minecraft:fluid_place", + "minecraft:hit_ground", + "minecraft:instrument_play", + "minecraft:item_interact_finish", + "minecraft:lightning_strike", + "minecraft:note_block_play", + "minecraft:prime_fuse", + "minecraft:projectile_land", + "minecraft:projectile_shoot", + "minecraft:shear", + "minecraft:splash", + "minecraft:step", + "minecraft:swim", + "minecraft:teleport", + "minecraft:unequip", + "minecraft:resonate_1", + "minecraft:resonate_2", + "minecraft:resonate_3", + "minecraft:resonate_4", + "minecraft:resonate_5", + "minecraft:resonate_6", + "minecraft:resonate_7", + "minecraft:resonate_8", + "minecraft:resonate_9", + "minecraft:resonate_10", + "minecraft:resonate_11", + "minecraft:resonate_12", + "minecraft:resonate_13", + "minecraft:resonate_14", + "minecraft:resonate_15", + "minecraft:flap" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/game_event/warden_can_listen.json b/data/generated/V26_2/data/minecraft/tags/game_event/warden_can_listen.json new file mode 100644 index 00000000..57b0fa5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/game_event/warden_can_listen.json @@ -0,0 +1,61 @@ +{ + "values": [ + "minecraft:block_attach", + "minecraft:block_change", + "minecraft:block_close", + "minecraft:block_destroy", + "minecraft:block_detach", + "minecraft:block_open", + "minecraft:block_place", + "minecraft:block_activate", + "minecraft:block_deactivate", + "minecraft:bounce", + "minecraft:container_close", + "minecraft:container_open", + "minecraft:drink", + "minecraft:eat", + "minecraft:elytra_glide", + "minecraft:entity_damage", + "minecraft:entity_die", + "minecraft:entity_dismount", + "minecraft:entity_interact", + "minecraft:entity_mount", + "minecraft:entity_place", + "minecraft:entity_action", + "minecraft:equip", + "minecraft:explode", + "minecraft:fluid_pickup", + "minecraft:fluid_place", + "minecraft:hit_ground", + "minecraft:instrument_play", + "minecraft:item_interact_finish", + "minecraft:lightning_strike", + "minecraft:note_block_play", + "minecraft:prime_fuse", + "minecraft:projectile_land", + "minecraft:projectile_shoot", + "minecraft:shear", + "minecraft:splash", + "minecraft:step", + "minecraft:swim", + "minecraft:teleport", + "minecraft:unequip", + "minecraft:resonate_1", + "minecraft:resonate_2", + "minecraft:resonate_3", + "minecraft:resonate_4", + "minecraft:resonate_5", + "minecraft:resonate_6", + "minecraft:resonate_7", + "minecraft:resonate_8", + "minecraft:resonate_9", + "minecraft:resonate_10", + "minecraft:resonate_11", + "minecraft:resonate_12", + "minecraft:resonate_13", + "minecraft:resonate_14", + "minecraft:resonate_15", + "minecraft:shriek", + "#minecraft:shrieker_can_listen" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/instrument/goat_horns.json b/data/generated/V26_2/data/minecraft/tags/instrument/goat_horns.json new file mode 100644 index 00000000..c0f7ced1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/instrument/goat_horns.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:regular_goat_horns", + "#minecraft:screaming_goat_horns" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/instrument/regular_goat_horns.json b/data/generated/V26_2/data/minecraft/tags/instrument/regular_goat_horns.json new file mode 100644 index 00000000..0386d95e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/instrument/regular_goat_horns.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:ponder_goat_horn", + "minecraft:sing_goat_horn", + "minecraft:seek_goat_horn", + "minecraft:feel_goat_horn" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/instrument/screaming_goat_horns.json b/data/generated/V26_2/data/minecraft/tags/instrument/screaming_goat_horns.json new file mode 100644 index 00000000..e7befb9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/instrument/screaming_goat_horns.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:admire_goat_horn", + "minecraft:call_goat_horn", + "minecraft:yearn_goat_horn", + "minecraft:dream_goat_horn" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/acacia_logs.json b/data/generated/V26_2/data/minecraft/tags/item/acacia_logs.json new file mode 100644 index 00000000..84a0bc4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/acacia_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:acacia_log", + "minecraft:acacia_wood", + "minecraft:stripped_acacia_log", + "minecraft:stripped_acacia_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/anvil.json b/data/generated/V26_2/data/minecraft/tags/item/anvil.json new file mode 100644 index 00000000..84ef65a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/anvil.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:anvil", + "minecraft:chipped_anvil", + "minecraft:damaged_anvil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/armadillo_food.json b/data/generated/V26_2/data/minecraft/tags/item/armadillo_food.json new file mode 100644 index 00000000..fb33a5ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/armadillo_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:spider_eye" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/arrows.json b/data/generated/V26_2/data/minecraft/tags/item/arrows.json new file mode 100644 index 00000000..4ebac713 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/arrows.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:arrow", + "minecraft:tipped_arrow", + "minecraft:spectral_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/axes.json b/data/generated/V26_2/data/minecraft/tags/item/axes.json new file mode 100644 index 00000000..55b3892b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/axes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_axe", + "minecraft:stone_axe", + "minecraft:golden_axe", + "minecraft:netherite_axe", + "minecraft:wooden_axe", + "minecraft:iron_axe", + "minecraft:copper_axe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/axolotl_food.json b/data/generated/V26_2/data/minecraft/tags/item/axolotl_food.json new file mode 100644 index 00000000..62859aa6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/axolotl_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:tropical_fish_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/bamboo_blocks.json b/data/generated/V26_2/data/minecraft/tags/item/bamboo_blocks.json new file mode 100644 index 00000000..347c0af8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/bamboo_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_block", + "minecraft:stripped_bamboo_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/banners.json b/data/generated/V26_2/data/minecraft/tags/item/banners.json new file mode 100644 index 00000000..e2efe3d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/banners.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_banner", + "minecraft:orange_banner", + "minecraft:magenta_banner", + "minecraft:light_blue_banner", + "minecraft:yellow_banner", + "minecraft:lime_banner", + "minecraft:pink_banner", + "minecraft:gray_banner", + "minecraft:light_gray_banner", + "minecraft:cyan_banner", + "minecraft:purple_banner", + "minecraft:blue_banner", + "minecraft:brown_banner", + "minecraft:green_banner", + "minecraft:red_banner", + "minecraft:black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/bars.json b/data/generated/V26_2/data/minecraft/tags/item/bars.json new file mode 100644 index 00000000..bd77807e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/bars.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_bars", + "minecraft:copper_bars", + "minecraft:exposed_copper_bars", + "minecraft:weathered_copper_bars", + "minecraft:oxidized_copper_bars", + "minecraft:waxed_copper_bars", + "minecraft:waxed_exposed_copper_bars", + "minecraft:waxed_weathered_copper_bars", + "minecraft:waxed_oxidized_copper_bars" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/beacon_payment_items.json b/data/generated/V26_2/data/minecraft/tags/item/beacon_payment_items.json new file mode 100644 index 00000000..802967c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/beacon_payment_items.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:netherite_ingot", + "minecraft:emerald", + "minecraft:diamond", + "minecraft:gold_ingot", + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/beds.json b/data/generated/V26_2/data/minecraft/tags/item/beds.json new file mode 100644 index 00000000..0336d8d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/beds.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_bed", + "minecraft:orange_bed", + "minecraft:magenta_bed", + "minecraft:light_blue_bed", + "minecraft:yellow_bed", + "minecraft:lime_bed", + "minecraft:pink_bed", + "minecraft:gray_bed", + "minecraft:light_gray_bed", + "minecraft:cyan_bed", + "minecraft:purple_bed", + "minecraft:blue_bed", + "minecraft:brown_bed", + "minecraft:green_bed", + "minecraft:red_bed", + "minecraft:black_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/bee_food.json b/data/generated/V26_2/data/minecraft/tags/item/bee_food.json new file mode 100644 index 00000000..f2851d5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/bee_food.json @@ -0,0 +1,33 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/birch_logs.json b/data/generated/V26_2/data/minecraft/tags/item/birch_logs.json new file mode 100644 index 00000000..9203a57b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/birch_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:birch_log", + "minecraft:birch_wood", + "minecraft:stripped_birch_log", + "minecraft:stripped_birch_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/boats.json b/data/generated/V26_2/data/minecraft/tags/item/boats.json new file mode 100644 index 00000000..c04cb9ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/boats.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_boat", + "minecraft:spruce_boat", + "minecraft:birch_boat", + "minecraft:jungle_boat", + "minecraft:acacia_boat", + "minecraft:dark_oak_boat", + "minecraft:pale_oak_boat", + "minecraft:mangrove_boat", + "minecraft:bamboo_raft", + "minecraft:cherry_boat", + "#minecraft:chest_boats" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/book_cloning_target.json b/data/generated/V26_2/data/minecraft/tags/item/book_cloning_target.json new file mode 100644 index 00000000..0fdf7a21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/book_cloning_target.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:writable_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/bookshelf_books.json b/data/generated/V26_2/data/minecraft/tags/item/bookshelf_books.json new file mode 100644 index 00000000..66dc5510 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/bookshelf_books.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:book", + "minecraft:written_book", + "minecraft:enchanted_book", + "minecraft:writable_book", + "minecraft:knowledge_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/breaks_decorated_pots.json b/data/generated/V26_2/data/minecraft/tags/item/breaks_decorated_pots.json new file mode 100644 index 00000000..9b99abb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/breaks_decorated_pots.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:trident", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/brewing_fuel.json b/data/generated/V26_2/data/minecraft/tags/item/brewing_fuel.json new file mode 100644 index 00000000..10d5c868 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/brewing_fuel.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:blaze_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/bundles.json b/data/generated/V26_2/data/minecraft/tags/item/bundles.json new file mode 100644 index 00000000..9d525b1c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/bundles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:bundle", + "minecraft:white_bundle", + "minecraft:orange_bundle", + "minecraft:magenta_bundle", + "minecraft:light_blue_bundle", + "minecraft:yellow_bundle", + "minecraft:lime_bundle", + "minecraft:pink_bundle", + "minecraft:gray_bundle", + "minecraft:light_gray_bundle", + "minecraft:cyan_bundle", + "minecraft:purple_bundle", + "minecraft:blue_bundle", + "minecraft:brown_bundle", + "minecraft:green_bundle", + "minecraft:red_bundle", + "minecraft:black_bundle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/buttons.json b/data/generated/V26_2/data/minecraft/tags/item/buttons.json new file mode 100644 index 00000000..3400bf38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_buttons", + "#minecraft:stone_buttons" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/camel_food.json b/data/generated/V26_2/data/minecraft/tags/item/camel_food.json new file mode 100644 index 00000000..2624ccf2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/camel_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:cactus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/camel_husk_food.json b/data/generated/V26_2/data/minecraft/tags/item/camel_husk_food.json new file mode 100644 index 00000000..8c072820 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/camel_husk_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:rabbit_foot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/candles.json b/data/generated/V26_2/data/minecraft/tags/item/candles.json new file mode 100644 index 00000000..a7b2b62f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/candles.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:candle", + "minecraft:white_candle", + "minecraft:orange_candle", + "minecraft:magenta_candle", + "minecraft:light_blue_candle", + "minecraft:yellow_candle", + "minecraft:lime_candle", + "minecraft:pink_candle", + "minecraft:gray_candle", + "minecraft:light_gray_candle", + "minecraft:cyan_candle", + "minecraft:purple_candle", + "minecraft:blue_candle", + "minecraft:brown_candle", + "minecraft:green_candle", + "minecraft:red_candle", + "minecraft:black_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cat_collar_dyes.json b/data/generated/V26_2/data/minecraft/tags/item/cat_collar_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cat_collar_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cat_food.json b/data/generated/V26_2/data/minecraft/tags/item/cat_food.json new file mode 100644 index 00000000..7869b407 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cat_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cauldron_can_remove_dye.json b/data/generated/V26_2/data/minecraft/tags/item/cauldron_can_remove_dye.json new file mode 100644 index 00000000..e70da38d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cauldron_can_remove_dye.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:leather_helmet", + "minecraft:leather_chestplate", + "minecraft:leather_leggings", + "minecraft:leather_boots", + "minecraft:leather_horse_armor", + "minecraft:wolf_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/chains.json b/data/generated/V26_2/data/minecraft/tags/item/chains.json new file mode 100644 index 00000000..daba291f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/chains.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:iron_chain", + "minecraft:copper_chain", + "minecraft:exposed_copper_chain", + "minecraft:weathered_copper_chain", + "minecraft:oxidized_copper_chain", + "minecraft:waxed_copper_chain", + "minecraft:waxed_exposed_copper_chain", + "minecraft:waxed_weathered_copper_chain", + "minecraft:waxed_oxidized_copper_chain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cherry_logs.json b/data/generated/V26_2/data/minecraft/tags/item/cherry_logs.json new file mode 100644 index 00000000..4295e055 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cherry_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:cherry_log", + "minecraft:cherry_wood", + "minecraft:stripped_cherry_log", + "minecraft:stripped_cherry_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/chest_armor.json b/data/generated/V26_2/data/minecraft/tags/item/chest_armor.json new file mode 100644 index 00000000..f46b289b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/chest_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_chestplate", + "minecraft:copper_chestplate", + "minecraft:chainmail_chestplate", + "minecraft:golden_chestplate", + "minecraft:iron_chestplate", + "minecraft:diamond_chestplate", + "minecraft:netherite_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/chest_boats.json b/data/generated/V26_2/data/minecraft/tags/item/chest_boats.json new file mode 100644 index 00000000..ab1b5c07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/chest_boats.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:oak_chest_boat", + "minecraft:spruce_chest_boat", + "minecraft:birch_chest_boat", + "minecraft:jungle_chest_boat", + "minecraft:acacia_chest_boat", + "minecraft:dark_oak_chest_boat", + "minecraft:pale_oak_chest_boat", + "minecraft:mangrove_chest_boat", + "minecraft:bamboo_chest_raft", + "minecraft:cherry_chest_boat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/chicken_food.json b/data/generated/V26_2/data/minecraft/tags/item/chicken_food.json new file mode 100644 index 00000000..295a67c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/chicken_food.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cluster_max_harvestables.json b/data/generated/V26_2/data/minecraft/tags/item/cluster_max_harvestables.json new file mode 100644 index 00000000..5e6fc1be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cluster_max_harvestables.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_pickaxe", + "minecraft:golden_pickaxe", + "minecraft:iron_pickaxe", + "minecraft:netherite_pickaxe", + "minecraft:stone_pickaxe", + "minecraft:wooden_pickaxe", + "minecraft:copper_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/coal_ores.json b/data/generated/V26_2/data/minecraft/tags/item/coal_ores.json new file mode 100644 index 00000000..aaa76288 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/coal_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal_ore", + "minecraft:deepslate_coal_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/coals.json b/data/generated/V26_2/data/minecraft/tags/item/coals.json new file mode 100644 index 00000000..43868c8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/coals.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal", + "minecraft:charcoal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/compasses.json b/data/generated/V26_2/data/minecraft/tags/item/compasses.json new file mode 100644 index 00000000..e0f422fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/compasses.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:compass", + "minecraft:recovery_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/completes_find_tree_tutorial.json b/data/generated/V26_2/data/minecraft/tags/item/completes_find_tree_tutorial.json new file mode 100644 index 00000000..74701c2e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/completes_find_tree_tutorial.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs", + "#minecraft:leaves", + "#minecraft:wart_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/concrete.json b/data/generated/V26_2/data/minecraft/tags/item/concrete.json new file mode 100644 index 00000000..99c8ab40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/concrete.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_concrete", + "minecraft:orange_concrete", + "minecraft:magenta_concrete", + "minecraft:light_blue_concrete", + "minecraft:yellow_concrete", + "minecraft:lime_concrete", + "minecraft:pink_concrete", + "minecraft:gray_concrete", + "minecraft:light_gray_concrete", + "minecraft:cyan_concrete", + "minecraft:purple_concrete", + "minecraft:blue_concrete", + "minecraft:brown_concrete", + "minecraft:green_concrete", + "minecraft:red_concrete", + "minecraft:black_concrete" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/concrete_powders.json b/data/generated/V26_2/data/minecraft/tags/item/concrete_powders.json new file mode 100644 index 00000000..57a09c9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/concrete_powders.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_concrete_powder", + "minecraft:orange_concrete_powder", + "minecraft:magenta_concrete_powder", + "minecraft:light_blue_concrete_powder", + "minecraft:yellow_concrete_powder", + "minecraft:lime_concrete_powder", + "minecraft:pink_concrete_powder", + "minecraft:gray_concrete_powder", + "minecraft:light_gray_concrete_powder", + "minecraft:cyan_concrete_powder", + "minecraft:purple_concrete_powder", + "minecraft:blue_concrete_powder", + "minecraft:brown_concrete_powder", + "minecraft:green_concrete_powder", + "minecraft:red_concrete_powder", + "minecraft:black_concrete_powder" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/copper.json b/data/generated/V26_2/data/minecraft/tags/item/copper.json new file mode 100644 index 00000000..53848650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/copper.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/copper_chests.json b/data/generated/V26_2/data/minecraft/tags/item/copper_chests.json new file mode 100644 index 00000000..90d0a9ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/copper_chests.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_chest", + "minecraft:exposed_copper_chest", + "minecraft:weathered_copper_chest", + "minecraft:oxidized_copper_chest", + "minecraft:waxed_copper_chest", + "minecraft:waxed_exposed_copper_chest", + "minecraft:waxed_weathered_copper_chest", + "minecraft:waxed_oxidized_copper_chest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/copper_golem_statues.json b/data/generated/V26_2/data/minecraft/tags/item/copper_golem_statues.json new file mode 100644 index 00000000..531fc959 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/copper_golem_statues.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:copper_golem_statue", + "minecraft:exposed_copper_golem_statue", + "minecraft:weathered_copper_golem_statue", + "minecraft:oxidized_copper_golem_statue", + "minecraft:waxed_copper_golem_statue", + "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:waxed_oxidized_copper_golem_statue" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/copper_ores.json b/data/generated/V26_2/data/minecraft/tags/item/copper_ores.json new file mode 100644 index 00000000..5d76012e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/copper_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:copper_ore", + "minecraft:deepslate_copper_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/copper_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/copper_tool_materials.json new file mode 100644 index 00000000..1cc1f065 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/copper_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/cow_food.json b/data/generated/V26_2/data/minecraft/tags/item/cow_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/cow_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/creeper_drop_music_discs.json b/data/generated/V26_2/data/minecraft/tags/item/creeper_drop_music_discs.json new file mode 100644 index 00000000..d79c2be5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/creeper_drop_music_discs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:music_disc_13", + "minecraft:music_disc_cat", + "minecraft:music_disc_blocks", + "minecraft:music_disc_chirp", + "minecraft:music_disc_far", + "minecraft:music_disc_mall", + "minecraft:music_disc_mellohi", + "minecraft:music_disc_stal", + "minecraft:music_disc_strad", + "minecraft:music_disc_ward", + "minecraft:music_disc_11", + "minecraft:music_disc_wait" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/creeper_igniters.json b/data/generated/V26_2/data/minecraft/tags/item/creeper_igniters.json new file mode 100644 index 00000000..d30efcd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/creeper_igniters.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:flint_and_steel", + "minecraft:fire_charge" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/crimson_stems.json b/data/generated/V26_2/data/minecraft/tags/item/crimson_stems.json new file mode 100644 index 00000000..f78c7a3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/crimson_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/dampens_vibrations.json b/data/generated/V26_2/data/minecraft/tags/item/dampens_vibrations.json new file mode 100644 index 00000000..89eab86d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/dampens_vibrations.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wool", + "#minecraft:wool_carpets" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/dark_oak_logs.json b/data/generated/V26_2/data/minecraft/tags/item/dark_oak_logs.json new file mode 100644 index 00000000..f7f5a28e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/dark_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:dark_oak_log", + "minecraft:dark_oak_wood", + "minecraft:stripped_dark_oak_log", + "minecraft:stripped_dark_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_ingredients.json b/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_ingredients.json new file mode 100644 index 00000000..98e5e880 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_ingredients.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:brick", + "#minecraft:decorated_pot_sherds" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_sherds.json b/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_sherds.json new file mode 100644 index 00000000..0ef9aa8d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/decorated_pot_sherds.json @@ -0,0 +1,27 @@ +{ + "values": [ + "minecraft:angler_pottery_sherd", + "minecraft:archer_pottery_sherd", + "minecraft:arms_up_pottery_sherd", + "minecraft:blade_pottery_sherd", + "minecraft:brewer_pottery_sherd", + "minecraft:burn_pottery_sherd", + "minecraft:danger_pottery_sherd", + "minecraft:explorer_pottery_sherd", + "minecraft:friend_pottery_sherd", + "minecraft:heart_pottery_sherd", + "minecraft:heartbreak_pottery_sherd", + "minecraft:howl_pottery_sherd", + "minecraft:miner_pottery_sherd", + "minecraft:mourner_pottery_sherd", + "minecraft:plenty_pottery_sherd", + "minecraft:prize_pottery_sherd", + "minecraft:sheaf_pottery_sherd", + "minecraft:shelter_pottery_sherd", + "minecraft:skull_pottery_sherd", + "minecraft:snort_pottery_sherd", + "minecraft:flow_pottery_sherd", + "minecraft:guster_pottery_sherd", + "minecraft:scrape_pottery_sherd" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/diamond_ores.json b/data/generated/V26_2/data/minecraft/tags/item/diamond_ores.json new file mode 100644 index 00000000..cfa6e09c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/diamond_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:diamond_ore", + "minecraft:deepslate_diamond_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/diamond_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/diamond_tool_materials.json new file mode 100644 index 00000000..f44f30dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/diamond_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:diamond" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/dirt.json b/data/generated/V26_2/data/minecraft/tags/item/dirt.json new file mode 100644 index 00000000..9b5e54ac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/dirt.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/doors.json b/data/generated/V26_2/data/minecraft/tags/item/doors.json new file mode 100644 index 00000000..9ca24fcf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/doors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_doors", + "minecraft:copper_door", + "minecraft:exposed_copper_door", + "minecraft:weathered_copper_door", + "minecraft:oxidized_copper_door", + "minecraft:waxed_copper_door", + "minecraft:waxed_exposed_copper_door", + "minecraft:waxed_weathered_copper_door", + "minecraft:waxed_oxidized_copper_door", + "minecraft:iron_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/drowned_preferred_weapons.json b/data/generated/V26_2/data/minecraft/tags/item/drowned_preferred_weapons.json new file mode 100644 index 00000000..7a2c450b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/drowned_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/duplicates_allays.json b/data/generated/V26_2/data/minecraft/tags/item/duplicates_allays.json new file mode 100644 index 00000000..742ef896 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/duplicates_allays.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:amethyst_shard" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/dyes.json b/data/generated/V26_2/data/minecraft/tags/item/dyes.json new file mode 100644 index 00000000..f6474def --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/dyes.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_dye", + "minecraft:orange_dye", + "minecraft:magenta_dye", + "minecraft:light_blue_dye", + "minecraft:yellow_dye", + "minecraft:lime_dye", + "minecraft:pink_dye", + "minecraft:gray_dye", + "minecraft:light_gray_dye", + "minecraft:cyan_dye", + "minecraft:purple_dye", + "minecraft:blue_dye", + "minecraft:brown_dye", + "minecraft:green_dye", + "minecraft:red_dye", + "minecraft:black_dye" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/eggs.json b/data/generated/V26_2/data/minecraft/tags/item/eggs.json new file mode 100644 index 00000000..828fbcc1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/eggs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:egg", + "minecraft:blue_egg", + "minecraft:brown_egg" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/emerald_ores.json b/data/generated/V26_2/data/minecraft/tags/item/emerald_ores.json new file mode 100644 index 00000000..063d8e62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/emerald_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:emerald_ore", + "minecraft:deepslate_emerald_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/armor.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/armor.json new file mode 100644 index 00000000..00405056 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:enchantable/foot_armor", + "#minecraft:enchantable/leg_armor", + "#minecraft:enchantable/chest_armor", + "#minecraft:enchantable/head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/bow.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/bow.json new file mode 100644 index 00000000..a1c8a443 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/bow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/chest_armor.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/chest_armor.json new file mode 100644 index 00000000..913ce1bd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/chest_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:chest_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/crossbow.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/crossbow.json new file mode 100644 index 00000000..848f97bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/crossbow.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/durability.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/durability.json new file mode 100644 index 00000000..2304e0f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/durability.json @@ -0,0 +1,26 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "minecraft:shield", + "#minecraft:swords", + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:bow", + "minecraft:crossbow", + "minecraft:trident", + "minecraft:flint_and_steel", + "minecraft:shears", + "minecraft:brush", + "minecraft:fishing_rod", + "minecraft:carrot_on_a_stick", + "minecraft:warped_fungus_on_a_stick", + "minecraft:mace", + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/equippable.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/equippable.json new file mode 100644 index 00000000..653c557b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/equippable.json @@ -0,0 +1,11 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor", + "minecraft:elytra", + "#minecraft:skulls", + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/fire_aspect.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/fire_aspect.json new file mode 100644 index 00000000..a93e5ff2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/fire_aspect.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/melee_weapon", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/fishing.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/fishing.json new file mode 100644 index 00000000..e97941e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/fishing.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fishing_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/foot_armor.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/foot_armor.json new file mode 100644 index 00000000..9dc9d4ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/foot_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:foot_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/head_armor.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/head_armor.json new file mode 100644 index 00000000..027283b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/head_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/leg_armor.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/leg_armor.json new file mode 100644 index 00000000..af44f45c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/leg_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:leg_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/lunge.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/lunge.json new file mode 100644 index 00000000..1f3b3aa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/lunge.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/mace.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mace.json new file mode 100644 index 00000000..c149f0e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mace.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/melee_weapon.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/melee_weapon.json new file mode 100644 index 00000000..21b32efb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/melee_weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:swords", + "#minecraft:spears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining.json new file mode 100644 index 00000000..a2cc0e4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes", + "minecraft:shears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining_loot.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining_loot.json new file mode 100644 index 00000000..753a5b3d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/mining_loot.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:axes", + "#minecraft:pickaxes", + "#minecraft:shovels", + "#minecraft:hoes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/sharp_weapon.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/sharp_weapon.json new file mode 100644 index 00000000..5838ae45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/sharp_weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/melee_weapon", + "#minecraft:axes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/sweeping.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/sweeping.json new file mode 100644 index 00000000..66370891 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/sweeping.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:swords" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/trident.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/trident.json new file mode 100644 index 00000000..7a2c450b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/trident.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trident" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/vanishing.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/vanishing.json new file mode 100644 index 00000000..dae3ff80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/vanishing.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:enchantable/durability", + "minecraft:compass", + "minecraft:carved_pumpkin", + "#minecraft:skulls" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/enchantable/weapon.json b/data/generated/V26_2/data/minecraft/tags/item/enchantable/weapon.json new file mode 100644 index 00000000..4cda09f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/enchantable/weapon.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:enchantable/sharp_weapon", + "minecraft:mace" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/fence_gates.json b/data/generated/V26_2/data/minecraft/tags/item/fence_gates.json new file mode 100644 index 00000000..9904fc97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/fence_gates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_fence_gate", + "minecraft:birch_fence_gate", + "minecraft:dark_oak_fence_gate", + "minecraft:pale_oak_fence_gate", + "minecraft:jungle_fence_gate", + "minecraft:oak_fence_gate", + "minecraft:spruce_fence_gate", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:mangrove_fence_gate", + "minecraft:bamboo_fence_gate", + "minecraft:cherry_fence_gate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/fences.json b/data/generated/V26_2/data/minecraft/tags/item/fences.json new file mode 100644 index 00000000..045fa7d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/fences.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:wooden_fences", + "minecraft:nether_brick_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/fishes.json b/data/generated/V26_2/data/minecraft/tags/item/fishes.json new file mode 100644 index 00000000..434e9372 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/fishes.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:cooked_cod", + "minecraft:salmon", + "minecraft:cooked_salmon", + "minecraft:pufferfish", + "minecraft:tropical_fish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/flowers.json b/data/generated/V26_2/data/minecraft/tags/item/flowers.json new file mode 100644 index 00000000..e0095f65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/flowers.json @@ -0,0 +1,19 @@ +{ + "values": [ + "#minecraft:small_flowers", + "minecraft:sunflower", + "minecraft:lilac", + "minecraft:peony", + "minecraft:rose_bush", + "minecraft:pitcher_plant", + "minecraft:flowering_azalea_leaves", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_leaves", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:chorus_flower", + "minecraft:spore_blossom", + "minecraft:cactus_flower" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/foot_armor.json b/data/generated/V26_2/data/minecraft/tags/item/foot_armor.json new file mode 100644 index 00000000..47593a57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/foot_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_boots", + "minecraft:copper_boots", + "minecraft:chainmail_boots", + "minecraft:golden_boots", + "minecraft:iron_boots", + "minecraft:diamond_boots", + "minecraft:netherite_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/fox_food.json b/data/generated/V26_2/data/minecraft/tags/item/fox_food.json new file mode 100644 index 00000000..500bd943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/fox_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sweet_berries", + "minecraft:glow_berries" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/freeze_immune_wearables.json b/data/generated/V26_2/data/minecraft/tags/item/freeze_immune_wearables.json new file mode 100644 index 00000000..1e8a642d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/freeze_immune_wearables.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:leather_boots", + "minecraft:leather_leggings", + "minecraft:leather_chestplate", + "minecraft:leather_helmet", + "minecraft:leather_horse_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/frog_food.json b/data/generated/V26_2/data/minecraft/tags/item/frog_food.json new file mode 100644 index 00000000..533c25d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/frog_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:slime_ball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/furnace_minecart_fuel.json b/data/generated/V26_2/data/minecraft/tags/item/furnace_minecart_fuel.json new file mode 100644 index 00000000..43868c8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/furnace_minecart_fuel.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:coal", + "minecraft:charcoal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/gaze_disguise_equipment.json b/data/generated/V26_2/data/minecraft/tags/item/gaze_disguise_equipment.json new file mode 100644 index 00000000..1a0f6d39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/gaze_disguise_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/glazed_terracotta.json b/data/generated/V26_2/data/minecraft/tags/item/glazed_terracotta.json new file mode 100644 index 00000000..26cb2df2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/glazed_terracotta.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_glazed_terracotta", + "minecraft:orange_glazed_terracotta", + "minecraft:magenta_glazed_terracotta", + "minecraft:light_blue_glazed_terracotta", + "minecraft:yellow_glazed_terracotta", + "minecraft:lime_glazed_terracotta", + "minecraft:pink_glazed_terracotta", + "minecraft:gray_glazed_terracotta", + "minecraft:light_gray_glazed_terracotta", + "minecraft:cyan_glazed_terracotta", + "minecraft:purple_glazed_terracotta", + "minecraft:blue_glazed_terracotta", + "minecraft:brown_glazed_terracotta", + "minecraft:green_glazed_terracotta", + "minecraft:red_glazed_terracotta", + "minecraft:black_glazed_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/goat_food.json b/data/generated/V26_2/data/minecraft/tags/item/goat_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/goat_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/gold_ores.json b/data/generated/V26_2/data/minecraft/tags/item/gold_ores.json new file mode 100644 index 00000000..279f354d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/gold_ores.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:gold_ore", + "minecraft:nether_gold_ore", + "minecraft:deepslate_gold_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/gold_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/gold_tool_materials.json new file mode 100644 index 00000000..07e9f66a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/gold_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gold_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/grass_blocks.json b/data/generated/V26_2/data/minecraft/tags/item/grass_blocks.json new file mode 100644 index 00000000..e7e86f75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/grass_blocks.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:mycelium" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/hanging_signs.json b/data/generated/V26_2/data/minecraft/tags/item/hanging_signs.json new file mode 100644 index 00000000..b55f67ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/hanging_signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_hanging_sign", + "minecraft:spruce_hanging_sign", + "minecraft:birch_hanging_sign", + "minecraft:acacia_hanging_sign", + "minecraft:cherry_hanging_sign", + "minecraft:jungle_hanging_sign", + "minecraft:dark_oak_hanging_sign", + "minecraft:pale_oak_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_hanging_sign", + "minecraft:mangrove_hanging_sign", + "minecraft:bamboo_hanging_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_food.json b/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_food.json new file mode 100644 index 00000000..952b6ca8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:snowball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_tempt_items.json b/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_tempt_items.json new file mode 100644 index 00000000..141ba108 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/happy_ghast_tempt_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:happy_ghast_food", + "#minecraft:harnesses" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/harnesses.json b/data/generated/V26_2/data/minecraft/tags/item/harnesses.json new file mode 100644 index 00000000..2592da68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/harnesses.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_harness", + "minecraft:orange_harness", + "minecraft:magenta_harness", + "minecraft:light_blue_harness", + "minecraft:yellow_harness", + "minecraft:lime_harness", + "minecraft:pink_harness", + "minecraft:gray_harness", + "minecraft:light_gray_harness", + "minecraft:cyan_harness", + "minecraft:purple_harness", + "minecraft:blue_harness", + "minecraft:brown_harness", + "minecraft:green_harness", + "minecraft:red_harness", + "minecraft:black_harness" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/head_armor.json b/data/generated/V26_2/data/minecraft/tags/item/head_armor.json new file mode 100644 index 00000000..a0074afc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/head_armor.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:leather_helmet", + "minecraft:copper_helmet", + "minecraft:chainmail_helmet", + "minecraft:golden_helmet", + "minecraft:iron_helmet", + "minecraft:diamond_helmet", + "minecraft:netherite_helmet", + "minecraft:turtle_helmet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/hoes.json b/data/generated/V26_2/data/minecraft/tags/item/hoes.json new file mode 100644 index 00000000..b0da60a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/hoes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_hoe", + "minecraft:stone_hoe", + "minecraft:golden_hoe", + "minecraft:netherite_hoe", + "minecraft:wooden_hoe", + "minecraft:iron_hoe", + "minecraft:copper_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/hoglin_food.json b/data/generated/V26_2/data/minecraft/tags/item/hoglin_food.json new file mode 100644 index 00000000..cca7408f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/hoglin_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crimson_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/horse_food.json b/data/generated/V26_2/data/minecraft/tags/item/horse_food.json new file mode 100644 index 00000000..a7adf36b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/horse_food.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:wheat", + "minecraft:sugar", + "minecraft:hay_block", + "minecraft:apple", + "minecraft:carrot", + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/horse_tempt_items.json b/data/generated/V26_2/data/minecraft/tags/item/horse_tempt_items.json new file mode 100644 index 00000000..9e7e81d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/horse_tempt_items.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:golden_carrot", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/ignored_by_piglin_babies.json b/data/generated/V26_2/data/minecraft/tags/item/ignored_by_piglin_babies.json new file mode 100644 index 00000000..71b797d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/ignored_by_piglin_babies.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:leather" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/iron_ores.json b/data/generated/V26_2/data/minecraft/tags/item/iron_ores.json new file mode 100644 index 00000000..0566d8ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/iron_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:iron_ore", + "minecraft:deepslate_iron_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/iron_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/iron_tool_materials.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/iron_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/jungle_logs.json b/data/generated/V26_2/data/minecraft/tags/item/jungle_logs.json new file mode 100644 index 00000000..437efbff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/jungle_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:jungle_log", + "minecraft:jungle_wood", + "minecraft:stripped_jungle_log", + "minecraft:stripped_jungle_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/lanterns.json b/data/generated/V26_2/data/minecraft/tags/item/lanterns.json new file mode 100644 index 00000000..557f94d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/lanterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:lantern", + "minecraft:soul_lantern", + "minecraft:copper_lantern", + "minecraft:exposed_copper_lantern", + "minecraft:weathered_copper_lantern", + "minecraft:oxidized_copper_lantern", + "minecraft:waxed_copper_lantern", + "minecraft:waxed_exposed_copper_lantern", + "minecraft:waxed_weathered_copper_lantern", + "minecraft:waxed_oxidized_copper_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/lapis_ores.json b/data/generated/V26_2/data/minecraft/tags/item/lapis_ores.json new file mode 100644 index 00000000..a041526e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/lapis_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:lapis_ore", + "minecraft:deepslate_lapis_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/leaves.json b/data/generated/V26_2/data/minecraft/tags/item/leaves.json new file mode 100644 index 00000000..523787f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/leaves.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:jungle_leaves", + "minecraft:oak_leaves", + "minecraft:spruce_leaves", + "minecraft:pale_oak_leaves", + "minecraft:dark_oak_leaves", + "minecraft:acacia_leaves", + "minecraft:birch_leaves", + "minecraft:azalea_leaves", + "minecraft:flowering_azalea_leaves", + "minecraft:mangrove_leaves", + "minecraft:cherry_leaves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/lectern_books.json b/data/generated/V26_2/data/minecraft/tags/item/lectern_books.json new file mode 100644 index 00000000..d34a332a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/lectern_books.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:written_book", + "minecraft:writable_book" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/leg_armor.json b/data/generated/V26_2/data/minecraft/tags/item/leg_armor.json new file mode 100644 index 00000000..0aed8815 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/leg_armor.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:leather_leggings", + "minecraft:copper_leggings", + "minecraft:chainmail_leggings", + "minecraft:golden_leggings", + "minecraft:iron_leggings", + "minecraft:diamond_leggings", + "minecraft:netherite_leggings" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/lightning_rods.json b/data/generated/V26_2/data/minecraft/tags/item/lightning_rods.json new file mode 100644 index 00000000..73469e26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/lightning_rods.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:lightning_rod", + "minecraft:exposed_lightning_rod", + "minecraft:weathered_lightning_rod", + "minecraft:oxidized_lightning_rod", + "minecraft:waxed_lightning_rod", + "minecraft:waxed_exposed_lightning_rod", + "minecraft:waxed_weathered_lightning_rod", + "minecraft:waxed_oxidized_lightning_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/llama_food.json b/data/generated/V26_2/data/minecraft/tags/item/llama_food.json new file mode 100644 index 00000000..a80c6075 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/llama_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:wheat", + "minecraft:hay_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/llama_tempt_items.json b/data/generated/V26_2/data/minecraft/tags/item/llama_tempt_items.json new file mode 100644 index 00000000..ea92d03c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/llama_tempt_items.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:hay_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/logs.json b/data/generated/V26_2/data/minecraft/tags/item/logs.json new file mode 100644 index 00000000..234e4fee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/logs.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:logs_that_burn", + "#minecraft:crimson_stems", + "#minecraft:warped_stems" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/logs_that_burn.json b/data/generated/V26_2/data/minecraft/tags/item/logs_that_burn.json new file mode 100644 index 00000000..00f0e7fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/logs_that_burn.json @@ -0,0 +1,13 @@ +{ + "values": [ + "#minecraft:dark_oak_logs", + "#minecraft:pale_oak_logs", + "#minecraft:oak_logs", + "#minecraft:acacia_logs", + "#minecraft:birch_logs", + "#minecraft:jungle_logs", + "#minecraft:spruce_logs", + "#minecraft:mangrove_logs", + "#minecraft:cherry_logs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/loom_dyes.json b/data/generated/V26_2/data/minecraft/tags/item/loom_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/loom_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/loom_patterns.json b/data/generated/V26_2/data/minecraft/tags/item/loom_patterns.json new file mode 100644 index 00000000..9c3adc4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/loom_patterns.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:flower_banner_pattern", + "minecraft:creeper_banner_pattern", + "minecraft:skull_banner_pattern", + "minecraft:mojang_banner_pattern", + "minecraft:globe_banner_pattern", + "minecraft:piglin_banner_pattern", + "minecraft:flow_banner_pattern", + "minecraft:guster_banner_pattern", + "minecraft:field_masoned_banner_pattern", + "minecraft:bordure_indented_banner_pattern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/mangrove_logs.json b/data/generated/V26_2/data/minecraft/tags/item/mangrove_logs.json new file mode 100644 index 00000000..d69fadff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/mangrove_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:mangrove_log", + "minecraft:mangrove_wood", + "minecraft:stripped_mangrove_log", + "minecraft:stripped_mangrove_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/map_invisibility_equipment.json b/data/generated/V26_2/data/minecraft/tags/item/map_invisibility_equipment.json new file mode 100644 index 00000000..1a0f6d39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/map_invisibility_equipment.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:carved_pumpkin" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/meat.json b/data/generated/V26_2/data/minecraft/tags/item/meat.json new file mode 100644 index 00000000..df339943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/meat.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:beef", + "minecraft:chicken", + "minecraft:cooked_beef", + "minecraft:cooked_chicken", + "minecraft:cooked_mutton", + "minecraft:cooked_porkchop", + "minecraft:cooked_rabbit", + "minecraft:mutton", + "minecraft:porkchop", + "minecraft:rabbit", + "minecraft:rotten_flesh" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/metal_nuggets.json b/data/generated/V26_2/data/minecraft/tags/item/metal_nuggets.json new file mode 100644 index 00000000..f8807c64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/metal_nuggets.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:copper_nugget", + "minecraft:iron_nugget", + "minecraft:gold_nugget" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/moss_blocks.json b/data/generated/V26_2/data/minecraft/tags/item/moss_blocks.json new file mode 100644 index 00000000..2774bdfa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/moss_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:moss_block", + "minecraft:pale_moss_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/mud.json b/data/generated/V26_2/data/minecraft/tags/item/mud.json new file mode 100644 index 00000000..0ac1535b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/mud.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/nautilus_bucket_food.json b/data/generated/V26_2/data/minecraft/tags/item/nautilus_bucket_food.json new file mode 100644 index 00000000..d3900544 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/nautilus_bucket_food.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pufferfish_bucket", + "minecraft:cod_bucket", + "minecraft:salmon_bucket", + "minecraft:tropical_fish_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/nautilus_food.json b/data/generated/V26_2/data/minecraft/tags/item/nautilus_food.json new file mode 100644 index 00000000..a6fe3fe3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/nautilus_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:fishes", + "#minecraft:nautilus_bucket_food" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/nautilus_taming_items.json b/data/generated/V26_2/data/minecraft/tags/item/nautilus_taming_items.json new file mode 100644 index 00000000..4192297b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/nautilus_taming_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:pufferfish_bucket", + "minecraft:pufferfish" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/netherite_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/netherite_tool_materials.json new file mode 100644 index 00000000..bd6929df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/netherite_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:netherite_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/non_flammable_wood.json b/data/generated/V26_2/data/minecraft/tags/item/non_flammable_wood.json new file mode 100644 index 00000000..41c8d15e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/non_flammable_wood.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae", + "minecraft:crimson_stem", + "minecraft:stripped_crimson_stem", + "minecraft:crimson_hyphae", + "minecraft:stripped_crimson_hyphae", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:crimson_fence_gate", + "minecraft:warped_fence_gate", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:warped_hanging_sign", + "minecraft:crimson_hanging_sign", + "minecraft:warped_shelf", + "minecraft:crimson_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/noteblock_top_instruments.json b/data/generated/V26_2/data/minecraft/tags/item/noteblock_top_instruments.json new file mode 100644 index 00000000..b32f59c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/noteblock_top_instruments.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:creeper_head", + "minecraft:dragon_head", + "minecraft:wither_skeleton_skull", + "minecraft:piglin_head", + "minecraft:player_head" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/oak_logs.json b/data/generated/V26_2/data/minecraft/tags/item/oak_logs.json new file mode 100644 index 00000000..d4bae2a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:oak_log", + "minecraft:oak_wood", + "minecraft:stripped_oak_log", + "minecraft:stripped_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/ocelot_food.json b/data/generated/V26_2/data/minecraft/tags/item/ocelot_food.json new file mode 100644 index 00000000..7869b407 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/ocelot_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cod", + "minecraft:salmon" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/pale_oak_logs.json b/data/generated/V26_2/data/minecraft/tags/item/pale_oak_logs.json new file mode 100644 index 00000000..928a458b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/pale_oak_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:pale_oak_log", + "minecraft:pale_oak_wood", + "minecraft:stripped_pale_oak_log", + "minecraft:stripped_pale_oak_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/panda_eats_from_ground.json b/data/generated/V26_2/data/minecraft/tags/item/panda_eats_from_ground.json new file mode 100644 index 00000000..421a2fc2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/panda_eats_from_ground.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:panda_food", + "minecraft:cake" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/panda_food.json b/data/generated/V26_2/data/minecraft/tags/item/panda_food.json new file mode 100644 index 00000000..acf1b10b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/panda_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bamboo" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/parrot_food.json b/data/generated/V26_2/data/minecraft/tags/item/parrot_food.json new file mode 100644 index 00000000..295a67c8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/parrot_food.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:melon_seeds", + "minecraft:pumpkin_seeds", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/parrot_poisonous_food.json b/data/generated/V26_2/data/minecraft/tags/item/parrot_poisonous_food.json new file mode 100644 index 00000000..a7c0dc91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/parrot_poisonous_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:cookie" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/pickaxes.json b/data/generated/V26_2/data/minecraft/tags/item/pickaxes.json new file mode 100644 index 00000000..3902c558 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/pickaxes.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_pickaxe", + "minecraft:stone_pickaxe", + "minecraft:golden_pickaxe", + "minecraft:netherite_pickaxe", + "minecraft:wooden_pickaxe", + "minecraft:iron_pickaxe", + "minecraft:copper_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/pig_food.json b/data/generated/V26_2/data/minecraft/tags/item/pig_food.json new file mode 100644 index 00000000..204b4abb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/pig_food.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:carrot", + "minecraft:potato", + "minecraft:beetroot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/piglin_food.json b/data/generated/V26_2/data/minecraft/tags/item/piglin_food.json new file mode 100644 index 00000000..0dde9b43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/piglin_food.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:porkchop", + "minecraft:cooked_porkchop" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/piglin_loved.json b/data/generated/V26_2/data/minecraft/tags/item/piglin_loved.json new file mode 100644 index 00000000..1d06ec69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/piglin_loved.json @@ -0,0 +1,30 @@ +{ + "values": [ + "#minecraft:gold_ores", + "minecraft:gold_block", + "minecraft:gilded_blackstone", + "minecraft:light_weighted_pressure_plate", + "minecraft:gold_ingot", + "minecraft:bell", + "minecraft:clock", + "minecraft:golden_carrot", + "minecraft:glistering_melon_slice", + "minecraft:golden_apple", + "minecraft:enchanted_golden_apple", + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots", + "minecraft:golden_horse_armor", + "minecraft:golden_nautilus_armor", + "minecraft:golden_sword", + "minecraft:golden_spear", + "minecraft:golden_pickaxe", + "minecraft:golden_shovel", + "minecraft:golden_axe", + "minecraft:golden_hoe", + "minecraft:raw_gold", + "minecraft:raw_gold_block", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/piglin_preferred_weapons.json b/data/generated/V26_2/data/minecraft/tags/item/piglin_preferred_weapons.json new file mode 100644 index 00000000..4623c70e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/piglin_preferred_weapons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:crossbow", + "minecraft:golden_spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/piglin_repellents.json b/data/generated/V26_2/data/minecraft/tags/item/piglin_repellents.json new file mode 100644 index 00000000..1538a80c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/piglin_repellents.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:soul_torch", + "minecraft:soul_lantern", + "minecraft:soul_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/piglin_safe_armor.json b/data/generated/V26_2/data/minecraft/tags/item/piglin_safe_armor.json new file mode 100644 index 00000000..656c3b2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/piglin_safe_armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:golden_helmet", + "minecraft:golden_chestplate", + "minecraft:golden_leggings", + "minecraft:golden_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/pillager_preferred_weapons.json b/data/generated/V26_2/data/minecraft/tags/item/pillager_preferred_weapons.json new file mode 100644 index 00000000..848f97bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/pillager_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/planks.json b/data/generated/V26_2/data/minecraft/tags/item/planks.json new file mode 100644 index 00000000..55fa6f30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/planks.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_planks", + "minecraft:spruce_planks", + "minecraft:birch_planks", + "minecraft:jungle_planks", + "minecraft:acacia_planks", + "minecraft:dark_oak_planks", + "minecraft:pale_oak_planks", + "minecraft:crimson_planks", + "minecraft:warped_planks", + "minecraft:mangrove_planks", + "minecraft:bamboo_planks", + "minecraft:cherry_planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/rabbit_food.json b/data/generated/V26_2/data/minecraft/tags/item/rabbit_food.json new file mode 100644 index 00000000..a67d5321 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/rabbit_food.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:carrot", + "minecraft:golden_carrot", + "minecraft:dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/rails.json b/data/generated/V26_2/data/minecraft/tags/item/rails.json new file mode 100644 index 00000000..ba7e2c11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/rails.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:rail", + "minecraft:powered_rail", + "minecraft:detector_rail", + "minecraft:activator_rail" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/redstone_ores.json b/data/generated/V26_2/data/minecraft/tags/item/redstone_ores.json new file mode 100644 index 00000000..2fd184de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/redstone_ores.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:redstone_ore", + "minecraft:deepslate_redstone_ore" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_chain_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_chain_armor.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_chain_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_copper_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_copper_armor.json new file mode 100644 index 00000000..1cc1f065 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_copper_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:copper_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_diamond_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_diamond_armor.json new file mode 100644 index 00000000..f44f30dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_diamond_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:diamond" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_gold_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_gold_armor.json new file mode 100644 index 00000000..07e9f66a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_gold_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:gold_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_iron_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_iron_armor.json new file mode 100644 index 00000000..c656021b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_iron_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:iron_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_leather_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_leather_armor.json new file mode 100644 index 00000000..71b797d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_leather_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:leather" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_netherite_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_netherite_armor.json new file mode 100644 index 00000000..bd6929df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_netherite_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:netherite_ingot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_turtle_helmet.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_turtle_helmet.json new file mode 100644 index 00000000..d1d4c27f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_turtle_helmet.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:turtle_scute" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/repairs_wolf_armor.json b/data/generated/V26_2/data/minecraft/tags/item/repairs_wolf_armor.json new file mode 100644 index 00000000..ad5988f5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/repairs_wolf_armor.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:armadillo_scute" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sand.json b/data/generated/V26_2/data/minecraft/tags/item/sand.json new file mode 100644 index 00000000..43f90f3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sand.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand", + "minecraft:suspicious_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/saplings.json b/data/generated/V26_2/data/minecraft/tags/item/saplings.json new file mode 100644 index 00000000..286497bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/saplings.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:mangrove_propagule", + "minecraft:cherry_sapling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/shearable_from_copper_golem.json b/data/generated/V26_2/data/minecraft/tags/item/shearable_from_copper_golem.json new file mode 100644 index 00000000..fcef1afb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/shearable_from_copper_golem.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:poppy" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sheep_food.json b/data/generated/V26_2/data/minecraft/tags/item/sheep_food.json new file mode 100644 index 00000000..498cb445 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sheep_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:wheat" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/shovels.json b/data/generated/V26_2/data/minecraft/tags/item/shovels.json new file mode 100644 index 00000000..3c03a437 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/shovels.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_shovel", + "minecraft:stone_shovel", + "minecraft:golden_shovel", + "minecraft:netherite_shovel", + "minecraft:wooden_shovel", + "minecraft:iron_shovel", + "minecraft:copper_shovel" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/shulker_boxes.json b/data/generated/V26_2/data/minecraft/tags/item/shulker_boxes.json new file mode 100644 index 00000000..8ffa83c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/shulker_boxes.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:shulker_box", + "minecraft:white_shulker_box", + "minecraft:orange_shulker_box", + "minecraft:magenta_shulker_box", + "minecraft:light_blue_shulker_box", + "minecraft:yellow_shulker_box", + "minecraft:lime_shulker_box", + "minecraft:pink_shulker_box", + "minecraft:gray_shulker_box", + "minecraft:light_gray_shulker_box", + "minecraft:cyan_shulker_box", + "minecraft:purple_shulker_box", + "minecraft:blue_shulker_box", + "minecraft:brown_shulker_box", + "minecraft:green_shulker_box", + "minecraft:red_shulker_box", + "minecraft:black_shulker_box" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/signs.json b/data/generated/V26_2/data/minecraft/tags/item/signs.json new file mode 100644 index 00000000..84fda375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/signs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_sign", + "minecraft:spruce_sign", + "minecraft:birch_sign", + "minecraft:acacia_sign", + "minecraft:jungle_sign", + "minecraft:dark_oak_sign", + "minecraft:pale_oak_sign", + "minecraft:crimson_sign", + "minecraft:warped_sign", + "minecraft:mangrove_sign", + "minecraft:bamboo_sign", + "minecraft:cherry_sign" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/skeleton_preferred_weapons.json b/data/generated/V26_2/data/minecraft/tags/item/skeleton_preferred_weapons.json new file mode 100644 index 00000000..a1c8a443 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/skeleton_preferred_weapons.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/skulls.json b/data/generated/V26_2/data/minecraft/tags/item/skulls.json new file mode 100644 index 00000000..1e76c2e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/skulls.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:player_head", + "minecraft:creeper_head", + "minecraft:zombie_head", + "minecraft:skeleton_skull", + "minecraft:wither_skeleton_skull", + "minecraft:dragon_head", + "minecraft:piglin_head" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/slabs.json b/data/generated/V26_2/data/minecraft/tags/item/slabs.json new file mode 100644 index 00000000..7d52cb30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/slabs.json @@ -0,0 +1,61 @@ +{ + "values": [ + "#minecraft:wooden_slabs", + "minecraft:bamboo_mosaic_slab", + "minecraft:stone_slab", + "minecraft:smooth_stone_slab", + "minecraft:stone_brick_slab", + "minecraft:sandstone_slab", + "minecraft:purpur_slab", + "minecraft:quartz_slab", + "minecraft:red_sandstone_slab", + "minecraft:brick_slab", + "minecraft:cobblestone_slab", + "minecraft:nether_brick_slab", + "minecraft:petrified_oak_slab", + "minecraft:prismarine_slab", + "minecraft:prismarine_brick_slab", + "minecraft:dark_prismarine_slab", + "minecraft:polished_granite_slab", + "minecraft:smooth_red_sandstone_slab", + "minecraft:mossy_stone_brick_slab", + "minecraft:polished_diorite_slab", + "minecraft:mossy_cobblestone_slab", + "minecraft:end_stone_brick_slab", + "minecraft:smooth_sandstone_slab", + "minecraft:smooth_quartz_slab", + "minecraft:granite_slab", + "minecraft:andesite_slab", + "minecraft:red_nether_brick_slab", + "minecraft:polished_andesite_slab", + "minecraft:diorite_slab", + "minecraft:cut_sandstone_slab", + "minecraft:cut_red_sandstone_slab", + "minecraft:blackstone_slab", + "minecraft:polished_blackstone_brick_slab", + "minecraft:polished_blackstone_slab", + "minecraft:cobbled_deepslate_slab", + "minecraft:polished_deepslate_slab", + "minecraft:deepslate_tile_slab", + "minecraft:deepslate_brick_slab", + "minecraft:mud_brick_slab", + "minecraft:tuff_slab", + "minecraft:polished_tuff_slab", + "minecraft:tuff_brick_slab", + "minecraft:resin_brick_slab", + "minecraft:cinnabar_slab", + "minecraft:polished_cinnabar_slab", + "minecraft:cinnabar_brick_slab", + "minecraft:sulfur_slab", + "minecraft:polished_sulfur_slab", + "minecraft:sulfur_brick_slab", + "minecraft:cut_copper_slab", + "minecraft:exposed_cut_copper_slab", + "minecraft:weathered_cut_copper_slab", + "minecraft:oxidized_cut_copper_slab", + "minecraft:waxed_cut_copper_slab", + "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:waxed_oxidized_cut_copper_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/small_flowers.json b/data/generated/V26_2/data/minecraft/tags/item/small_flowers.json new file mode 100644 index 00000000..14472b0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/small_flowers.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:dandelion", + "minecraft:open_eyeblossom", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:lily_of_the_valley", + "minecraft:wither_rose", + "minecraft:torchflower", + "minecraft:closed_eyeblossom", + "minecraft:golden_dandelion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/smelts_to_glass.json b/data/generated/V26_2/data/minecraft/tags/item/smelts_to_glass.json new file mode 100644 index 00000000..3d8220ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/smelts_to_glass.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:sand", + "minecraft:red_sand" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sniffer_food.json b/data/generated/V26_2/data/minecraft/tags/item/sniffer_food.json new file mode 100644 index 00000000..e02282a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sniffer_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:torchflower_seeds" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/soul_fire_base_blocks.json b/data/generated/V26_2/data/minecraft/tags/item/soul_fire_base_blocks.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/soul_fire_base_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/spears.json b/data/generated/V26_2/data/minecraft/tags/item/spears.json new file mode 100644 index 00000000..61999a53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/spears.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_spear", + "minecraft:stone_spear", + "minecraft:golden_spear", + "minecraft:netherite_spear", + "minecraft:wooden_spear", + "minecraft:iron_spear", + "minecraft:copper_spear" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/spruce_logs.json b/data/generated/V26_2/data/minecraft/tags/item/spruce_logs.json new file mode 100644 index 00000000..a8008420 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/spruce_logs.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:spruce_log", + "minecraft:spruce_wood", + "minecraft:stripped_spruce_log", + "minecraft:stripped_spruce_wood" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/stairs.json b/data/generated/V26_2/data/minecraft/tags/item/stairs.json new file mode 100644 index 00000000..2b1e0639 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/stairs.json @@ -0,0 +1,57 @@ +{ + "values": [ + "#minecraft:wooden_stairs", + "minecraft:bamboo_mosaic_stairs", + "minecraft:cobblestone_stairs", + "minecraft:sandstone_stairs", + "minecraft:nether_brick_stairs", + "minecraft:stone_brick_stairs", + "minecraft:brick_stairs", + "minecraft:purpur_stairs", + "minecraft:quartz_stairs", + "minecraft:red_sandstone_stairs", + "minecraft:prismarine_brick_stairs", + "minecraft:prismarine_stairs", + "minecraft:dark_prismarine_stairs", + "minecraft:polished_granite_stairs", + "minecraft:smooth_red_sandstone_stairs", + "minecraft:mossy_stone_brick_stairs", + "minecraft:polished_diorite_stairs", + "minecraft:mossy_cobblestone_stairs", + "minecraft:end_stone_brick_stairs", + "minecraft:stone_stairs", + "minecraft:smooth_sandstone_stairs", + "minecraft:smooth_quartz_stairs", + "minecraft:granite_stairs", + "minecraft:andesite_stairs", + "minecraft:red_nether_brick_stairs", + "minecraft:polished_andesite_stairs", + "minecraft:diorite_stairs", + "minecraft:blackstone_stairs", + "minecraft:polished_blackstone_brick_stairs", + "minecraft:polished_blackstone_stairs", + "minecraft:cobbled_deepslate_stairs", + "minecraft:polished_deepslate_stairs", + "minecraft:deepslate_tile_stairs", + "minecraft:deepslate_brick_stairs", + "minecraft:mud_brick_stairs", + "minecraft:tuff_stairs", + "minecraft:polished_tuff_stairs", + "minecraft:tuff_brick_stairs", + "minecraft:resin_brick_stairs", + "minecraft:cinnabar_stairs", + "minecraft:polished_cinnabar_stairs", + "minecraft:cinnabar_brick_stairs", + "minecraft:sulfur_stairs", + "minecraft:polished_sulfur_stairs", + "minecraft:sulfur_brick_stairs", + "minecraft:cut_copper_stairs", + "minecraft:exposed_cut_copper_stairs", + "minecraft:weathered_cut_copper_stairs", + "minecraft:oxidized_cut_copper_stairs", + "minecraft:waxed_cut_copper_stairs", + "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:waxed_oxidized_cut_copper_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/stone_bricks.json b/data/generated/V26_2/data/minecraft/tags/item/stone_bricks.json new file mode 100644 index 00000000..973064b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/stone_bricks.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:stone_bricks", + "minecraft:mossy_stone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/stone_buttons.json b/data/generated/V26_2/data/minecraft/tags/item/stone_buttons.json new file mode 100644 index 00000000..decb592a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/stone_buttons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:stone_button", + "minecraft:polished_blackstone_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/stone_crafting_materials.json b/data/generated/V26_2/data/minecraft/tags/item/stone_crafting_materials.json new file mode 100644 index 00000000..e579c141 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/stone_crafting_materials.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cobblestone", + "minecraft:blackstone", + "minecraft:cobbled_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/stone_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/stone_tool_materials.json new file mode 100644 index 00000000..e579c141 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/stone_tool_materials.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cobblestone", + "minecraft:blackstone", + "minecraft:cobbled_deepslate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/strider_food.json b/data/generated/V26_2/data/minecraft/tags/item/strider_food.json new file mode 100644 index 00000000..af616fbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/strider_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warped_fungus" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/strider_tempt_items.json b/data/generated/V26_2/data/minecraft/tags/item/strider_tempt_items.json new file mode 100644 index 00000000..f9c93495 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/strider_tempt_items.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:strider_food", + "minecraft:warped_fungus_on_a_stick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/bouncy.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/bouncy.json new file mode 100644 index 00000000..a379e605 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/bouncy.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:planks", + "minecraft:bamboo_mosaic", + "#minecraft:logs", + "#minecraft:bamboo_blocks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/explosive.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/explosive.json new file mode 100644 index 00000000..d90445e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/explosive.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:tnt" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_flat.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_flat.json new file mode 100644 index 00000000..2e2c2d1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_flat.json @@ -0,0 +1,29 @@ +{ + "values": [ + "minecraft:tube_coral_block", + "minecraft:brain_coral_block", + "minecraft:bubble_coral_block", + "minecraft:fire_coral_block", + "minecraft:horn_coral_block", + "minecraft:dead_tube_coral_block", + "minecraft:dead_brain_coral_block", + "minecraft:dead_bubble_coral_block", + "minecraft:dead_fire_coral_block", + "minecraft:dead_horn_coral_block", + "minecraft:sponge", + "minecraft:wet_sponge", + "minecraft:dried_kelp_block", + "#minecraft:moss_blocks", + "minecraft:resin_block", + "minecraft:resin_bricks", + "minecraft:chiseled_resin_bricks", + "minecraft:melon", + "minecraft:hay_block", + "minecraft:pumpkin", + "minecraft:carved_pumpkin", + "minecraft:jack_o_lantern", + "minecraft:ochre_froglight", + "minecraft:pearlescent_froglight", + "minecraft:verdant_froglight" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_sliding.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_sliding.json new file mode 100644 index 00000000..2a6044ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/fast_sliding.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:blue_ice", + "minecraft:packed_ice", + "minecraft:snow_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/high_resistance.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/high_resistance.json new file mode 100644 index 00000000..e8aa4afd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/high_resistance.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:soul_sand", + "minecraft:soul_soil" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/hot.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/hot.json new file mode 100644 index 00000000..3bf0a87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/hot.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:magma_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/light.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/light.json new file mode 100644 index 00000000..495a1df4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/light.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/regular.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/regular.json new file mode 100644 index 00000000..3e667b6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/regular.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:concrete_powders", + "minecraft:mud", + "minecraft:muddy_mangrove_roots", + "minecraft:packed_mud", + "minecraft:coal_block", + "minecraft:dirt", + "minecraft:coarse_dirt", + "minecraft:rooted_dirt", + "minecraft:podzol", + "minecraft:grass_block", + "minecraft:clay", + "minecraft:bone_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_bouncy.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_bouncy.json new file mode 100644 index 00000000..734fb9b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_bouncy.json @@ -0,0 +1,98 @@ +{ + "values": [ + "minecraft:amethyst_block", + "minecraft:andesite", + "minecraft:basalt", + "minecraft:blackstone", + "minecraft:bricks", + "minecraft:calcite", + "minecraft:chiseled_cinnabar", + "minecraft:chiseled_deepslate", + "minecraft:chiseled_nether_bricks", + "minecraft:chiseled_polished_blackstone", + "minecraft:chiseled_quartz_block", + "minecraft:chiseled_red_sandstone", + "minecraft:chiseled_sandstone", + "minecraft:chiseled_stone_bricks", + "minecraft:chiseled_sulfur", + "minecraft:chiseled_tuff", + "minecraft:chiseled_tuff_bricks", + "minecraft:cinnabar", + "minecraft:cinnabar_bricks", + "minecraft:cobbled_deepslate", + "minecraft:cobblestone", + "minecraft:cracked_deepslate_bricks", + "minecraft:cracked_deepslate_tiles", + "minecraft:cracked_nether_bricks", + "minecraft:cracked_polished_blackstone_bricks", + "minecraft:cracked_stone_bricks", + "minecraft:crimson_nylium", + "minecraft:crying_obsidian", + "minecraft:cut_red_sandstone", + "minecraft:cut_sandstone", + "minecraft:dark_prismarine", + "minecraft:deepslate", + "minecraft:deepslate_bricks", + "minecraft:deepslate_tiles", + "minecraft:diamond_block", + "minecraft:diorite", + "minecraft:dripstone_block", + "minecraft:emerald_block", + "minecraft:end_stone", + "minecraft:end_stone_bricks", + "minecraft:gilded_blackstone", + "minecraft:glowstone", + "minecraft:granite", + "minecraft:lapis_block", + "minecraft:mossy_cobblestone", + "minecraft:mossy_stone_bricks", + "minecraft:mud_bricks", + "minecraft:nether_bricks", + "minecraft:netherrack", + "minecraft:observer", + "minecraft:obsidian", + "minecraft:polished_andesite", + "minecraft:polished_basalt", + "minecraft:polished_blackstone", + "minecraft:polished_blackstone_bricks", + "minecraft:polished_cinnabar", + "minecraft:polished_deepslate", + "minecraft:polished_diorite", + "minecraft:polished_granite", + "minecraft:polished_sulfur", + "minecraft:polished_tuff", + "minecraft:prismarine", + "minecraft:prismarine_bricks", + "minecraft:purpur_block", + "minecraft:purpur_pillar", + "minecraft:quartz_block", + "minecraft:quartz_bricks", + "minecraft:nether_quartz_ore", + "minecraft:quartz_pillar", + "minecraft:red_nether_bricks", + "minecraft:red_sandstone", + "minecraft:redstone_lamp", + "minecraft:sandstone", + "minecraft:sea_lantern", + "minecraft:smooth_basalt", + "minecraft:smooth_quartz", + "minecraft:smooth_red_sandstone", + "minecraft:smooth_sandstone", + "minecraft:smooth_stone", + "minecraft:stone", + "minecraft:stone_bricks", + "minecraft:sulfur", + "minecraft:sulfur_bricks", + "minecraft:tuff", + "minecraft:tuff_bricks", + "minecraft:warped_nylium", + "#minecraft:concrete", + "#minecraft:coal_ores", + "#minecraft:lapis_ores", + "#minecraft:redstone_ores", + "#minecraft:diamond_ores", + "#minecraft:emerald_ores", + "#minecraft:terracotta", + "#minecraft:glazed_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_flat.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_flat.json new file mode 100644 index 00000000..12843e15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_flat.json @@ -0,0 +1,46 @@ +{ + "values": [ + "minecraft:iron_block", + "minecraft:gold_block", + "minecraft:raw_copper_block", + "minecraft:raw_gold_block", + "minecraft:raw_iron_block", + "#minecraft:gold_ores", + "#minecraft:iron_ores", + "#minecraft:copper_ores", + "minecraft:netherite_block", + "minecraft:ancient_debris", + "minecraft:copper_block", + "minecraft:exposed_copper", + "minecraft:weathered_copper", + "minecraft:oxidized_copper", + "minecraft:waxed_copper_block", + "minecraft:waxed_exposed_copper", + "minecraft:waxed_weathered_copper", + "minecraft:waxed_oxidized_copper", + "minecraft:copper_bulb", + "minecraft:exposed_copper_bulb", + "minecraft:weathered_copper_bulb", + "minecraft:oxidized_copper_bulb", + "minecraft:waxed_copper_bulb", + "minecraft:waxed_exposed_copper_bulb", + "minecraft:waxed_weathered_copper_bulb", + "minecraft:waxed_oxidized_copper_bulb", + "minecraft:cut_copper", + "minecraft:exposed_cut_copper", + "minecraft:weathered_cut_copper", + "minecraft:oxidized_cut_copper", + "minecraft:waxed_cut_copper", + "minecraft:waxed_exposed_cut_copper", + "minecraft:waxed_weathered_cut_copper", + "minecraft:waxed_oxidized_cut_copper", + "minecraft:chiseled_copper", + "minecraft:exposed_chiseled_copper", + "minecraft:weathered_chiseled_copper", + "minecraft:oxidized_chiseled_copper", + "minecraft:waxed_chiseled_copper", + "minecraft:waxed_exposed_chiseled_copper", + "minecraft:waxed_weathered_chiseled_copper", + "minecraft:waxed_oxidized_chiseled_copper" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_sliding.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_sliding.json new file mode 100644 index 00000000..22558185 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/slow_sliding.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:brown_mushroom_block", + "minecraft:red_mushroom_block", + "minecraft:mushroom_stem", + "minecraft:mycelium", + "#minecraft:wart_blocks", + "minecraft:shroomlight" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/sticky.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/sticky.json new file mode 100644 index 00000000..4d8ba18e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_archetype/sticky.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:honeycomb_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_food.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_food.json new file mode 100644 index 00000000..533c25d9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:slime_ball" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_swallowable.json b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_swallowable.json new file mode 100644 index 00000000..ab1f9cb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/sulfur_cube_swallowable.json @@ -0,0 +1,16 @@ +{ + "values": [ + "#minecraft:sulfur_cube_archetype/bouncy", + "#minecraft:sulfur_cube_archetype/regular", + "#minecraft:sulfur_cube_archetype/slow_flat", + "#minecraft:sulfur_cube_archetype/fast_flat", + "#minecraft:sulfur_cube_archetype/light", + "#minecraft:sulfur_cube_archetype/fast_sliding", + "#minecraft:sulfur_cube_archetype/slow_sliding", + "#minecraft:sulfur_cube_archetype/sticky", + "#minecraft:sulfur_cube_archetype/high_resistance", + "#minecraft:sulfur_cube_archetype/explosive", + "#minecraft:sulfur_cube_archetype/hot", + "#minecraft:sulfur_cube_archetype/slow_bouncy" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/swords.json b/data/generated/V26_2/data/minecraft/tags/item/swords.json new file mode 100644 index 00000000..1483ad5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/swords.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:diamond_sword", + "minecraft:stone_sword", + "minecraft:golden_sword", + "minecraft:netherite_sword", + "minecraft:wooden_sword", + "minecraft:iron_sword", + "minecraft:copper_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/terracotta.json b/data/generated/V26_2/data/minecraft/tags/item/terracotta.json new file mode 100644 index 00000000..27aac67a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/terracotta.json @@ -0,0 +1,21 @@ +{ + "values": [ + "minecraft:terracotta", + "minecraft:white_terracotta", + "minecraft:orange_terracotta", + "minecraft:magenta_terracotta", + "minecraft:light_blue_terracotta", + "minecraft:yellow_terracotta", + "minecraft:lime_terracotta", + "minecraft:pink_terracotta", + "minecraft:gray_terracotta", + "minecraft:light_gray_terracotta", + "minecraft:cyan_terracotta", + "minecraft:purple_terracotta", + "minecraft:blue_terracotta", + "minecraft:brown_terracotta", + "minecraft:green_terracotta", + "minecraft:red_terracotta", + "minecraft:black_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/trapdoors.json b/data/generated/V26_2/data/minecraft/tags/item/trapdoors.json new file mode 100644 index 00000000..269e4b8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/trapdoors.json @@ -0,0 +1,14 @@ +{ + "values": [ + "#minecraft:wooden_trapdoors", + "minecraft:iron_trapdoor", + "minecraft:copper_trapdoor", + "minecraft:exposed_copper_trapdoor", + "minecraft:weathered_copper_trapdoor", + "minecraft:oxidized_copper_trapdoor", + "minecraft:waxed_copper_trapdoor", + "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:waxed_oxidized_copper_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/trim_materials.json b/data/generated/V26_2/data/minecraft/tags/item/trim_materials.json new file mode 100644 index 00000000..c2fc877c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/trim_materials.json @@ -0,0 +1,15 @@ +{ + "values": [ + "minecraft:amethyst_shard", + "minecraft:copper_ingot", + "minecraft:diamond", + "minecraft:emerald", + "minecraft:gold_ingot", + "minecraft:iron_ingot", + "minecraft:lapis_lazuli", + "minecraft:netherite_ingot", + "minecraft:quartz", + "minecraft:redstone", + "minecraft:resin_brick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/trimmable_armor.json b/data/generated/V26_2/data/minecraft/tags/item/trimmable_armor.json new file mode 100644 index 00000000..00a23523 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/trimmable_armor.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:foot_armor", + "#minecraft:leg_armor", + "#minecraft:chest_armor", + "#minecraft:head_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/turtle_food.json b/data/generated/V26_2/data/minecraft/tags/item/turtle_food.json new file mode 100644 index 00000000..92433f72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/turtle_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:seagrass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/villager_picks_up.json b/data/generated/V26_2/data/minecraft/tags/item/villager_picks_up.json new file mode 100644 index 00000000..24e9da32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/villager_picks_up.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:villager_plantable_seeds", + "minecraft:bread", + "minecraft:wheat", + "minecraft:beetroot" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/villager_plantable_seeds.json b/data/generated/V26_2/data/minecraft/tags/item/villager_plantable_seeds.json new file mode 100644 index 00000000..00a0c227 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/villager_plantable_seeds.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wheat_seeds", + "minecraft:potato", + "minecraft:carrot", + "minecraft:beetroot_seeds", + "minecraft:torchflower_seeds", + "minecraft:pitcher_pod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/walls.json b/data/generated/V26_2/data/minecraft/tags/item/walls.json new file mode 100644 index 00000000..15148910 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/walls.json @@ -0,0 +1,36 @@ +{ + "values": [ + "minecraft:cobblestone_wall", + "minecraft:mossy_cobblestone_wall", + "minecraft:brick_wall", + "minecraft:prismarine_wall", + "minecraft:red_sandstone_wall", + "minecraft:mossy_stone_brick_wall", + "minecraft:granite_wall", + "minecraft:stone_brick_wall", + "minecraft:nether_brick_wall", + "minecraft:andesite_wall", + "minecraft:red_nether_brick_wall", + "minecraft:sandstone_wall", + "minecraft:end_stone_brick_wall", + "minecraft:diorite_wall", + "minecraft:blackstone_wall", + "minecraft:polished_blackstone_brick_wall", + "minecraft:polished_blackstone_wall", + "minecraft:cobbled_deepslate_wall", + "minecraft:polished_deepslate_wall", + "minecraft:deepslate_tile_wall", + "minecraft:deepslate_brick_wall", + "minecraft:mud_brick_wall", + "minecraft:tuff_wall", + "minecraft:polished_tuff_wall", + "minecraft:tuff_brick_wall", + "minecraft:resin_brick_wall", + "minecraft:cinnabar_wall", + "minecraft:polished_cinnabar_wall", + "minecraft:cinnabar_brick_wall", + "minecraft:sulfur_wall", + "minecraft:polished_sulfur_wall", + "minecraft:sulfur_brick_wall" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/warped_stems.json b/data/generated/V26_2/data/minecraft/tags/item/warped_stems.json new file mode 100644 index 00000000..4da63869 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/warped_stems.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:warped_stem", + "minecraft:stripped_warped_stem", + "minecraft:warped_hyphae", + "minecraft:stripped_warped_hyphae" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wart_blocks.json b/data/generated/V26_2/data/minecraft/tags/item/wart_blocks.json new file mode 100644 index 00000000..bab2679f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wart_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:nether_wart_block", + "minecraft:warped_wart_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json b/data/generated/V26_2/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json new file mode 100644 index 00000000..0783487a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wither_skeleton_disliked_weapons.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bow", + "minecraft:crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wolf_collar_dyes.json b/data/generated/V26_2/data/minecraft/tags/item/wolf_collar_dyes.json new file mode 100644 index 00000000..9902cb0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wolf_collar_dyes.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:dyes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wolf_food.json b/data/generated/V26_2/data/minecraft/tags/item/wolf_food.json new file mode 100644 index 00000000..2dfd95a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wolf_food.json @@ -0,0 +1,12 @@ +{ + "values": [ + "#minecraft:meat", + "minecraft:cod", + "minecraft:cooked_cod", + "minecraft:salmon", + "minecraft:cooked_salmon", + "minecraft:tropical_fish", + "minecraft:pufferfish", + "minecraft:rabbit_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_buttons.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_buttons.json new file mode 100644 index 00000000..f6646d7d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_buttons.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_button", + "minecraft:spruce_button", + "minecraft:birch_button", + "minecraft:jungle_button", + "minecraft:acacia_button", + "minecraft:dark_oak_button", + "minecraft:pale_oak_button", + "minecraft:crimson_button", + "minecraft:warped_button", + "minecraft:mangrove_button", + "minecraft:bamboo_button", + "minecraft:cherry_button" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_doors.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_doors.json new file mode 100644 index 00000000..be8b7def --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_doors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_door", + "minecraft:spruce_door", + "minecraft:birch_door", + "minecraft:jungle_door", + "minecraft:acacia_door", + "minecraft:dark_oak_door", + "minecraft:pale_oak_door", + "minecraft:crimson_door", + "minecraft:warped_door", + "minecraft:mangrove_door", + "minecraft:bamboo_door", + "minecraft:cherry_door" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_fences.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_fences.json new file mode 100644 index 00000000..dc051583 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_fences.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_fence", + "minecraft:acacia_fence", + "minecraft:dark_oak_fence", + "minecraft:pale_oak_fence", + "minecraft:spruce_fence", + "minecraft:birch_fence", + "minecraft:jungle_fence", + "minecraft:crimson_fence", + "minecraft:warped_fence", + "minecraft:mangrove_fence", + "minecraft:bamboo_fence", + "minecraft:cherry_fence" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_pressure_plates.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_pressure_plates.json new file mode 100644 index 00000000..008f0063 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_pressure_plates.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_pressure_plate", + "minecraft:spruce_pressure_plate", + "minecraft:birch_pressure_plate", + "minecraft:jungle_pressure_plate", + "minecraft:acacia_pressure_plate", + "minecraft:dark_oak_pressure_plate", + "minecraft:pale_oak_pressure_plate", + "minecraft:crimson_pressure_plate", + "minecraft:warped_pressure_plate", + "minecraft:mangrove_pressure_plate", + "minecraft:bamboo_pressure_plate", + "minecraft:cherry_pressure_plate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_shelves.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_shelves.json new file mode 100644 index 00000000..eb265470 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_shelves.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_shelf", + "minecraft:bamboo_shelf", + "minecraft:birch_shelf", + "minecraft:cherry_shelf", + "minecraft:crimson_shelf", + "minecraft:dark_oak_shelf", + "minecraft:jungle_shelf", + "minecraft:mangrove_shelf", + "minecraft:oak_shelf", + "minecraft:pale_oak_shelf", + "minecraft:spruce_shelf", + "minecraft:warped_shelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_slabs.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_slabs.json new file mode 100644 index 00000000..795bd3b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_slabs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_slab", + "minecraft:spruce_slab", + "minecraft:birch_slab", + "minecraft:jungle_slab", + "minecraft:acacia_slab", + "minecraft:dark_oak_slab", + "minecraft:pale_oak_slab", + "minecraft:crimson_slab", + "minecraft:warped_slab", + "minecraft:mangrove_slab", + "minecraft:bamboo_slab", + "minecraft:cherry_slab" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_stairs.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_stairs.json new file mode 100644 index 00000000..86239e4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_stairs.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:oak_stairs", + "minecraft:spruce_stairs", + "minecraft:birch_stairs", + "minecraft:jungle_stairs", + "minecraft:acacia_stairs", + "minecraft:dark_oak_stairs", + "minecraft:pale_oak_stairs", + "minecraft:crimson_stairs", + "minecraft:warped_stairs", + "minecraft:mangrove_stairs", + "minecraft:bamboo_stairs", + "minecraft:cherry_stairs" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_tool_materials.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_tool_materials.json new file mode 100644 index 00000000..97fee2c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_tool_materials.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:planks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wooden_trapdoors.json b/data/generated/V26_2/data/minecraft/tags/item/wooden_trapdoors.json new file mode 100644 index 00000000..050e05f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wooden_trapdoors.json @@ -0,0 +1,16 @@ +{ + "values": [ + "minecraft:acacia_trapdoor", + "minecraft:birch_trapdoor", + "minecraft:dark_oak_trapdoor", + "minecraft:pale_oak_trapdoor", + "minecraft:jungle_trapdoor", + "minecraft:oak_trapdoor", + "minecraft:spruce_trapdoor", + "minecraft:crimson_trapdoor", + "minecraft:warped_trapdoor", + "minecraft:mangrove_trapdoor", + "minecraft:bamboo_trapdoor", + "minecraft:cherry_trapdoor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wool.json b/data/generated/V26_2/data/minecraft/tags/item/wool.json new file mode 100644 index 00000000..bb52fac8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wool.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_wool", + "minecraft:orange_wool", + "minecraft:magenta_wool", + "minecraft:light_blue_wool", + "minecraft:yellow_wool", + "minecraft:lime_wool", + "minecraft:pink_wool", + "minecraft:gray_wool", + "minecraft:light_gray_wool", + "minecraft:cyan_wool", + "minecraft:purple_wool", + "minecraft:blue_wool", + "minecraft:brown_wool", + "minecraft:green_wool", + "minecraft:red_wool", + "minecraft:black_wool" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/wool_carpets.json b/data/generated/V26_2/data/minecraft/tags/item/wool_carpets.json new file mode 100644 index 00000000..4dec4650 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/wool_carpets.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:white_carpet", + "minecraft:orange_carpet", + "minecraft:magenta_carpet", + "minecraft:light_blue_carpet", + "minecraft:yellow_carpet", + "minecraft:lime_carpet", + "minecraft:pink_carpet", + "minecraft:gray_carpet", + "minecraft:light_gray_carpet", + "minecraft:cyan_carpet", + "minecraft:purple_carpet", + "minecraft:blue_carpet", + "minecraft:brown_carpet", + "minecraft:green_carpet", + "minecraft:red_carpet", + "minecraft:black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/item/zombie_horse_food.json b/data/generated/V26_2/data/minecraft/tags/item/zombie_horse_food.json new file mode 100644 index 00000000..02bd559b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/item/zombie_horse_food.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:red_mushroom" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/painting_variant/placeable.json b/data/generated/V26_2/data/minecraft/tags/painting_variant/placeable.json new file mode 100644 index 00000000..fa9feb5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/painting_variant/placeable.json @@ -0,0 +1,51 @@ +{ + "values": [ + "minecraft:kebab", + "minecraft:aztec", + "minecraft:alban", + "minecraft:aztec2", + "minecraft:bomb", + "minecraft:plant", + "minecraft:wasteland", + "minecraft:pool", + "minecraft:courbet", + "minecraft:sea", + "minecraft:sunset", + "minecraft:creebet", + "minecraft:wanderer", + "minecraft:graham", + "minecraft:match", + "minecraft:bust", + "minecraft:stage", + "minecraft:void", + "minecraft:skull_and_roses", + "minecraft:wither", + "minecraft:fighters", + "minecraft:pointer", + "minecraft:pigscene", + "minecraft:burning_skull", + "minecraft:skeleton", + "minecraft:donkey_kong", + "minecraft:baroque", + "minecraft:humble", + "minecraft:meditative", + "minecraft:prairie_ride", + "minecraft:unpacked", + "minecraft:backyard", + "minecraft:bouquet", + "minecraft:cavebird", + "minecraft:changing", + "minecraft:cotan", + "minecraft:endboss", + "minecraft:fern", + "minecraft:finding", + "minecraft:lowmist", + "minecraft:orb", + "minecraft:owlemons", + "minecraft:passage", + "minecraft:pond", + "minecraft:sunflowers", + "minecraft:tides", + "minecraft:dennis" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json new file mode 100644 index 00000000..3f0ecb64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/acquirable_job_site.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:armorer", + "minecraft:butcher", + "minecraft:cartographer", + "minecraft:cleric", + "minecraft:farmer", + "minecraft:fisherman", + "minecraft:fletcher", + "minecraft:leatherworker", + "minecraft:librarian", + "minecraft:mason", + "minecraft:shepherd", + "minecraft:toolsmith", + "minecraft:weaponsmith" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/bee_home.json b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/bee_home.json new file mode 100644 index 00000000..4c023d0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/bee_home.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:beehive", + "minecraft:bee_nest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/village.json b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/village.json new file mode 100644 index 00000000..92e93e8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/point_of_interest_type/village.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:acquirable_job_site", + "minecraft:home", + "minecraft:meeting" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/potion/tradeable.json b/data/generated/V26_2/data/minecraft/tags/potion/tradeable.json new file mode 100644 index 00000000..760b7b0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/potion/tradeable.json @@ -0,0 +1,45 @@ +{ + "values": [ + "minecraft:wind_charged", + "minecraft:oozing", + "minecraft:infested", + "minecraft:weaving", + "minecraft:night_vision", + "minecraft:long_night_vision", + "minecraft:invisibility", + "minecraft:long_invisibility", + "minecraft:fire_resistance", + "minecraft:long_fire_resistance", + "minecraft:leaping", + "minecraft:long_leaping", + "minecraft:strong_leaping", + "minecraft:slowness", + "minecraft:long_slowness", + "minecraft:strong_slowness", + "minecraft:turtle_master", + "minecraft:long_turtle_master", + "minecraft:strong_turtle_master", + "minecraft:swiftness", + "minecraft:long_swiftness", + "minecraft:strong_swiftness", + "minecraft:water_breathing", + "minecraft:long_water_breathing", + "minecraft:healing", + "minecraft:strong_healing", + "minecraft:harming", + "minecraft:strong_harming", + "minecraft:poison", + "minecraft:long_poison", + "minecraft:strong_poison", + "minecraft:regeneration", + "minecraft:long_regeneration", + "minecraft:strong_regeneration", + "minecraft:strength", + "minecraft:long_strength", + "minecraft:strong_strength", + "minecraft:weakness", + "minecraft:long_weakness", + "minecraft:slow_falling", + "minecraft:long_slow_falling" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/timeline/in_end.json b/data/generated/V26_2/data/minecraft/tags/timeline/in_end.json new file mode 100644 index 00000000..2a0e147f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/timeline/in_end.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:universal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/timeline/in_nether.json b/data/generated/V26_2/data/minecraft/tags/timeline/in_nether.json new file mode 100644 index 00000000..2a0e147f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/timeline/in_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:universal" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/timeline/in_overworld.json b/data/generated/V26_2/data/minecraft/tags/timeline/in_overworld.json new file mode 100644 index 00000000..94f2424f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/timeline/in_overworld.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:universal", + "minecraft:day", + "minecraft:moon", + "minecraft:early_game" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/timeline/universal.json b/data/generated/V26_2/data/minecraft/tags/timeline/universal.json new file mode 100644 index 00000000..a37beba9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/timeline/universal.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:villager_schedule" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_1.json new file mode 100644 index 00000000..d6016c67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:armorer/1/emerald_iron_leggings", + "minecraft:armorer/1/emerald_iron_boots", + "minecraft:armorer/1/emerald_iron_helmet", + "minecraft:armorer/1/emerald_iron_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_2.json new file mode 100644 index 00000000..c0d20141 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_2", + "minecraft:armorer/2/emerald_chainmail_boots", + "minecraft:armorer/2/emerald_chainmail_leggings" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_3.json new file mode 100644 index 00000000..33ac9777 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_3.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:armorer/3/lava_bucket_emerald", + "minecraft:armorer/3/emerald_chainmail_helmet", + "minecraft:armorer/3/emerald_chainmail_chestplate", + "minecraft:armorer/3/emerald_shield", + "minecraft:armorer/3/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_4.json new file mode 100644 index 00000000..bd112ecb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:armorer/4/emerald_enchanted_diamond_leggings", + "minecraft:armorer/4/emerald_enchanted_diamond_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_5.json new file mode 100644 index 00000000..3648799e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/armorer/level_5.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:armorer/5/emerald_enchanted_diamond_helmet", + "minecraft:armorer/5/emerald_enchanted_diamond_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_1.json new file mode 100644 index 00000000..58207736 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_1.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:butcher/1/chicken_emerald", + "minecraft:butcher/1/porkchop_emerald", + "minecraft:butcher/1/rabbit_emerald", + "minecraft:butcher/1/emerald_rabbit_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_2.json new file mode 100644 index 00000000..ab129713 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:butcher/2/coal_emerald", + "minecraft:butcher/2/emerald_cooked_porkchop", + "minecraft:butcher/2/emerald_cooked_chicken" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_3.json new file mode 100644 index 00000000..918f3d11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:butcher/3/mutton_emerald", + "minecraft:butcher/3/beef_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_4.json new file mode 100644 index 00000000..79f50798 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_4.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:butcher/4/dried_kelp_block_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_5.json new file mode 100644 index 00000000..b62f74ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/butcher/level_5.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:butcher/5/sweet_berries_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_1.json new file mode 100644 index 00000000..bd3de907 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cartographer/1/paper_emerald", + "minecraft:cartographer/1/emerald_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_2.json new file mode 100644 index 00000000..1d54d8ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_2.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:cartographer/2/glass_pane_emerald", + "minecraft:cartographer/2/emerald_and_compass_village_taiga_map", + "minecraft:cartographer/2/emerald_and_compass_explorer_swamp_map", + "minecraft:cartographer/2/emerald_and_compass_village_snowy_map", + "minecraft:cartographer/2/emerald_and_compass_village_savanna_map", + "minecraft:cartographer/2/emerald_and_compass_village_plains_map", + "minecraft:cartographer/2/emerald_and_compass_explorer_jungle_map", + "minecraft:cartographer/2/emerald_and_compass_village_desert_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_3.json new file mode 100644 index 00000000..bc1a1f92 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_3.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cartographer/3/compass_emerald", + "minecraft:cartographer/3/emerald_and_compass_ocean_explorer_map", + "minecraft:cartographer/3/emerald_and_compass_trial_chamber_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_4.json new file mode 100644 index 00000000..803b4dad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_4.json @@ -0,0 +1,20 @@ +{ + "values": [ + "minecraft:cartographer/4/emerald_item_frame", + "minecraft:cartographer/4/emerald_white_banner", + "minecraft:cartographer/4/emerald_orange_banner", + "minecraft:cartographer/4/emerald_magenta_banner", + "minecraft:cartographer/4/emerald_blue_banner", + "minecraft:cartographer/4/emerald_light_blue_banner", + "minecraft:cartographer/4/emerald_yellow_banner", + "minecraft:cartographer/4/emerald_lime_banner", + "minecraft:cartographer/4/emerald_pink_banner", + "minecraft:cartographer/4/emerald_gray_banner", + "minecraft:cartographer/4/emerald_cyan_banner", + "minecraft:cartographer/4/emerald_purple_banner", + "minecraft:cartographer/4/emerald_brown_banner", + "minecraft:cartographer/4/emerald_green_banner", + "minecraft:cartographer/4/emerald_red_banner", + "minecraft:cartographer/4/emerald_black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_5.json new file mode 100644 index 00000000..e74159a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cartographer/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cartographer/5/emerald_globe_banner_pattern", + "minecraft:cartographer/5/emerald_and_compass_woodland_mansion_map" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_1.json new file mode 100644 index 00000000..88884f56 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/1/rotten_flesh_emerald", + "minecraft:cleric/1/emerald_redstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_2.json new file mode 100644 index 00000000..7c5463bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/2/gold_ingot_emerald", + "minecraft:cleric/2/emerald_lapis_lazuli" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_3.json new file mode 100644 index 00000000..0dee4336 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/3/rabbit_foot_emerald", + "minecraft:cleric/3/emerald_glowstone" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_4.json new file mode 100644 index 00000000..8a83287a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:cleric/4/turtle_scute_emerald", + "minecraft:cleric/4/glass_bottle_emerald", + "minecraft:cleric/4/emerald_ender_pearl" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_5.json new file mode 100644 index 00000000..4cfec0bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/cleric/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:cleric/5/nether_wart_emerald", + "minecraft:cleric/5/emerald_experience_bottle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_1.json new file mode 100644 index 00000000..75410cab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_1.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:smith/1/coal_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_2.json new file mode 100644 index 00000000..1b461892 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:smith/2/iron_ingot_emerald", + "minecraft:smith/2/emerald_bell" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_3.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_3.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_4.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_4.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_5.json new file mode 100644 index 00000000..f72d209d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/common_smith/level_5.json @@ -0,0 +1,3 @@ +{ + "values": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_1.json new file mode 100644 index 00000000..78fee47f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:farmer/1/wheat_emerald", + "minecraft:farmer/1/potato_emerald", + "minecraft:farmer/1/carrot_emerald", + "minecraft:farmer/1/beetroot_emerald", + "minecraft:farmer/1/emerald_bread" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_2.json new file mode 100644 index 00000000..cd3c3d27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:farmer/2/pumpkin_emerald", + "minecraft:farmer/2/emerald_pumpkin_pie", + "minecraft:farmer/2/emerald_apple" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_3.json new file mode 100644 index 00000000..0613a9e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/3/emerald_cookie", + "minecraft:farmer/3/melon_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_4.json new file mode 100644 index 00000000..5b2314a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/4/emerald_cake", + "minecraft:farmer/4/emerald_suspicious_stew" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_5.json new file mode 100644 index 00000000..f0781264 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/farmer/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:farmer/5/emerald_golden_carrot", + "minecraft:farmer/5/emerald_glistening_melon_slice" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_1.json new file mode 100644 index 00000000..bbf452f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_1.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:fisherman/1/string_emerald", + "minecraft:fisherman/1/coal_emerald", + "minecraft:fisherman/1/raw_cod_and_emerald_cooked_cod", + "minecraft:fisherman/1/emerald_cod_bucket" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_2.json new file mode 100644 index 00000000..1099b16e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fisherman/2/cod_emerald", + "minecraft:fisherman/2/salmon_and_emerald_cooked_salmon", + "minecraft:fisherman/2/emerald_campfire" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_3.json new file mode 100644 index 00000000..80f48f79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fisherman/3/salmon_emerald", + "minecraft:fisherman/3/emerald_enchanted_fishing_rod" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_4.json new file mode 100644 index 00000000..fda11c0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_4.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:fisherman/4/tropical_fish_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_5.json new file mode 100644 index 00000000..de1addad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fisherman/level_5.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:fisherman/5/pufferfish_emerald", + "minecraft:fisherman/5/oak_boat_emerald", + "minecraft:fisherman/5/spruce_boat_emerald", + "minecraft:fisherman/5/jungle_boat_emerald", + "minecraft:fisherman/5/acacia_boat_emerald", + "minecraft:fisherman/5/dark_oak_boat_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_1.json new file mode 100644 index 00000000..7664d060 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fletcher/1/stick_emerald", + "minecraft:fletcher/1/emerald_arrow", + "minecraft:fletcher/1/gravel_and_emerald_flint" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_2.json new file mode 100644 index 00000000..ceb85494 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/2/flint_emerald", + "minecraft:fletcher/2/emerald_bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_3.json new file mode 100644 index 00000000..d39af008 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/3/string_emerald", + "minecraft:fletcher/3/emerald_crossbow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_4.json new file mode 100644 index 00000000..3ecc80db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:fletcher/4/feather_emerald", + "minecraft:fletcher/4/emerald_enchanted_bow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_5.json new file mode 100644 index 00000000..e9a77439 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/fletcher/level_5.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:fletcher/5/tripwire_hook_emerald", + "minecraft:fletcher/5/emerald_enchanted_crossbow", + "minecraft:fletcher/5/arrow_and_emerald_tipped_arrow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_1.json new file mode 100644 index 00000000..baff227a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:leatherworker/1/leather_emerald", + "minecraft:leatherworker/1/emerald_dyed_leather_leggings", + "minecraft:leatherworker/1/emerald_dyed_leather_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_2.json new file mode 100644 index 00000000..70676502 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:leatherworker/2/flint_emerald", + "minecraft:leatherworker/2/emerald_dyed_leather_helmet", + "minecraft:leatherworker/2/emerald_dyed_leather_boots" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_3.json new file mode 100644 index 00000000..cd9f6b8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/3/rabbit_hide_emerald", + "minecraft:leatherworker/3/emerald_dyed_leather_chestplate" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_4.json new file mode 100644 index 00000000..3fe6fc94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_4.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/4/turtle_scute_emerald", + "minecraft:leatherworker/4/emerald_dyed_leather_horse_armor" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_5.json new file mode 100644 index 00000000..0460865b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/leatherworker/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:leatherworker/5/emerald_saddle", + "minecraft:leatherworker/5/emerald_dyed_leather_helmet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_1.json new file mode 100644 index 00000000..e90ecc12 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/1/paper_emerald", + "minecraft:librarian/1/emerald_and_book_enchanted_book", + "minecraft:librarian/1/emerald_bookshelf" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_2.json new file mode 100644 index 00000000..5301491e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_2.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/2/book_emerald", + "minecraft:librarian/2/emerald_and_book_enchanted_book", + "minecraft:librarian/2/emerald_lantern" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_3.json new file mode 100644 index 00000000..8160ab00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_3.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:librarian/3/ink_sac_emerald", + "minecraft:librarian/3/emerald_and_book_enchanted_book", + "minecraft:librarian/3/emerald_glass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_4.json new file mode 100644 index 00000000..c5b5d4f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_4.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:librarian/4/writable_book_emerald", + "minecraft:librarian/4/emerald_book_and_enchanted_book", + "minecraft:librarian/4/emerald_clock", + "minecraft:librarian/4/emerald_compass" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_5.json new file mode 100644 index 00000000..6679cf57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/librarian/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:librarian/5/emerald_yellow_candle", + "minecraft:librarian/5/emerald_red_candle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_1.json new file mode 100644 index 00000000..5fe4be9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_1.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/1/clay_ball_emerald", + "minecraft:mason/1/emerald_brick" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_2.json new file mode 100644 index 00000000..4a5399b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_2.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/2/stone_emerald", + "minecraft:mason/2/emerald_chiseled_stone_bricks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_3.json new file mode 100644 index 00000000..f4885916 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_3.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:mason/3/granite_emerald", + "minecraft:mason/3/andesite_emerald", + "minecraft:mason/3/diorite_emerald", + "minecraft:mason/3/emerald_dripstone_block", + "minecraft:mason/3/emerald_polished_andesite", + "minecraft:mason/3/emerald_polished_diorite", + "minecraft:mason/3/emerald_polished_granite" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_4.json new file mode 100644 index 00000000..ea2fae44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_4.json @@ -0,0 +1,37 @@ +{ + "values": [ + "minecraft:mason/4/quartz_emerald", + "minecraft:mason/4/emerald_white_terracotta", + "minecraft:mason/4/emerald_orange_terracotta", + "minecraft:mason/4/emerald_magenta_terracotta", + "minecraft:mason/4/emerald_light_blue_terracotta", + "minecraft:mason/4/emerald_yellow_terracotta", + "minecraft:mason/4/emerald_lime_terracotta", + "minecraft:mason/4/emerald_pink_terracotta", + "minecraft:mason/4/emerald_gray_terracotta", + "minecraft:mason/4/emerald_light_gray_terracotta", + "minecraft:mason/4/emerald_cyan_terracotta", + "minecraft:mason/4/emerald_purple_terracotta", + "minecraft:mason/4/emerald_blue_terracotta", + "minecraft:mason/4/emerald_brown_terracotta", + "minecraft:mason/4/emerald_green_terracotta", + "minecraft:mason/4/emerald_red_terracotta", + "minecraft:mason/4/emerald_black_terracotta", + "minecraft:mason/4/emerald_white_glazed_terracotta", + "minecraft:mason/4/emerald_orange_glazed_terracotta", + "minecraft:mason/4/emerald_magenta_glazed_terracotta", + "minecraft:mason/4/emerald_light_blue_glazed_terracotta", + "minecraft:mason/4/emerald_yellow_glazed_terracotta", + "minecraft:mason/4/emerald_lime_glazed_terracotta", + "minecraft:mason/4/emerald_pink_glazed_terracotta", + "minecraft:mason/4/emerald_gray_glazed_terracotta", + "minecraft:mason/4/emerald_light_gray_glazed_terracotta", + "minecraft:mason/4/emerald_cyan_glazed_terracotta", + "minecraft:mason/4/emerald_purple_glazed_terracotta", + "minecraft:mason/4/emerald_blue_glazed_terracotta", + "minecraft:mason/4/emerald_brown_glazed_terracotta", + "minecraft:mason/4/emerald_green_glazed_terracotta", + "minecraft:mason/4/emerald_red_glazed_terracotta", + "minecraft:mason/4/emerald_black_glazed_terracotta" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_5.json new file mode 100644 index 00000000..8ced55d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/mason/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mason/5/emerald_quartz_pillar", + "minecraft:mason/5/emerald_quartz_block" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_1.json new file mode 100644 index 00000000..03aecec6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:shepherd/1/white_wool_emerald", + "minecraft:shepherd/1/brown_wool_emerald", + "minecraft:shepherd/1/gray_wool_emerald", + "minecraft:shepherd/1/black_wool_emerald", + "minecraft:shepherd/1/emerald_shears" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_2.json new file mode 100644 index 00000000..7f847b94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_2.json @@ -0,0 +1,41 @@ +{ + "values": [ + "minecraft:shepherd/2/white_dye_emerald", + "minecraft:shepherd/2/gray_dye_emerald", + "minecraft:shepherd/2/black_dye_emerald", + "minecraft:shepherd/2/light_blue_dye_emerald", + "minecraft:shepherd/2/lime_dye_emerald", + "minecraft:shepherd/2/emerald_white_wool", + "minecraft:shepherd/2/emerald_orange_wool", + "minecraft:shepherd/2/emerald_magenta_wool", + "minecraft:shepherd/2/emerald_light_blue_wool", + "minecraft:shepherd/2/emerald_yellow_wool", + "minecraft:shepherd/2/emerald_lime_wool", + "minecraft:shepherd/2/emerald_pink_wool", + "minecraft:shepherd/2/emerald_gray_wool", + "minecraft:shepherd/2/emerald_light_gray_wool", + "minecraft:shepherd/2/emerald_cyan_wool", + "minecraft:shepherd/2/emerald_purple_wool", + "minecraft:shepherd/2/emerald_blue_wool", + "minecraft:shepherd/2/emerald_brown_wool", + "minecraft:shepherd/2/emerald_green_wool", + "minecraft:shepherd/2/emerald_red_wool", + "minecraft:shepherd/2/emerald_black_wool", + "minecraft:shepherd/2/emerald_white_carpet", + "minecraft:shepherd/2/emerald_orange_carpet", + "minecraft:shepherd/2/emerald_magenta_carpet", + "minecraft:shepherd/2/emerald_light_blue_carpet", + "minecraft:shepherd/2/emerald_yellow_carpet", + "minecraft:shepherd/2/emerald_lime_carpet", + "minecraft:shepherd/2/emerald_pink_carpet", + "minecraft:shepherd/2/emerald_gray_carpet", + "minecraft:shepherd/2/emerald_light_gray_carpet", + "minecraft:shepherd/2/emerald_cyan_carpet", + "minecraft:shepherd/2/emerald_purple_carpet", + "minecraft:shepherd/2/emerald_blue_carpet", + "minecraft:shepherd/2/emerald_brown_carpet", + "minecraft:shepherd/2/emerald_green_carpet", + "minecraft:shepherd/2/emerald_red_carpet", + "minecraft:shepherd/2/emerald_black_carpet" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_3.json new file mode 100644 index 00000000..ad3b1cab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_3.json @@ -0,0 +1,25 @@ +{ + "values": [ + "minecraft:shepherd/3/yellow_dye_emerald", + "minecraft:shepherd/3/light_gray_dye_emerald", + "minecraft:shepherd/3/orange_dye_emerald", + "minecraft:shepherd/3/red_dye_emerald", + "minecraft:shepherd/3/pink_dye_emerald", + "minecraft:shepherd/3/emerald_white_bed", + "minecraft:shepherd/3/emerald_orange_bed", + "minecraft:shepherd/3/emerald_magenta_bed", + "minecraft:shepherd/3/emerald_light_blue_bed", + "minecraft:shepherd/3/emerald_yellow_bed", + "minecraft:shepherd/3/emerald_lime_bed", + "minecraft:shepherd/3/emerald_pink_bed", + "minecraft:shepherd/3/emerald_gray_bed", + "minecraft:shepherd/3/emerald_light_gray_bed", + "minecraft:shepherd/3/emerald_cyan_bed", + "minecraft:shepherd/3/emerald_purple_bed", + "minecraft:shepherd/3/emerald_blue_bed", + "minecraft:shepherd/3/emerald_brown_bed", + "minecraft:shepherd/3/emerald_green_bed", + "minecraft:shepherd/3/emerald_red_bed", + "minecraft:shepherd/3/emerald_black_bed" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_4.json new file mode 100644 index 00000000..8696a19d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_4.json @@ -0,0 +1,26 @@ +{ + "values": [ + "minecraft:shepherd/4/brown_dye_emerald", + "minecraft:shepherd/4/purple_dye_emerald", + "minecraft:shepherd/4/blue_dye_emerald", + "minecraft:shepherd/4/green_dye_emerald", + "minecraft:shepherd/4/magenta_dye_emerald", + "minecraft:shepherd/4/cyan_dye_emerald", + "minecraft:shepherd/4/emerald_white_banner", + "minecraft:shepherd/4/emerald_orange_banner", + "minecraft:shepherd/4/emerald_magenta_banner", + "minecraft:shepherd/4/emerald_light_blue_banner", + "minecraft:shepherd/4/emerald_yellow_banner", + "minecraft:shepherd/4/emerald_lime_banner", + "minecraft:shepherd/4/emerald_pink_banner", + "minecraft:shepherd/4/emerald_gray_banner", + "minecraft:shepherd/4/emerald_light_gray_banner", + "minecraft:shepherd/4/emerald_cyan_banner", + "minecraft:shepherd/4/emerald_purple_banner", + "minecraft:shepherd/4/emerald_blue_banner", + "minecraft:shepherd/4/emerald_brown_banner", + "minecraft:shepherd/4/emerald_green_banner", + "minecraft:shepherd/4/emerald_red_banner", + "minecraft:shepherd/4/emerald_black_banner" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_5.json new file mode 100644 index 00000000..7bc1a5f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/shepherd/level_5.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:shepherd/5/emerald_painting" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_1.json new file mode 100644 index 00000000..4893c1d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_1.json @@ -0,0 +1,9 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:toolsmith/1/emerald_stone_axe", + "minecraft:toolsmith/1/emerald_stone_shovel", + "minecraft:toolsmith/1/emerald_stone_pickaxe", + "minecraft:toolsmith/1/emerald_stone_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_2.json new file mode 100644 index 00000000..bd2b80bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:common_smith/level_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_3.json new file mode 100644 index 00000000..9dc15e11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_3.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:toolsmith/3/flint_emerald", + "minecraft:toolsmith/3/emerald_enchanted_iron_axe", + "minecraft:toolsmith/3/emerald_enchanted_iron_shovel", + "minecraft:toolsmith/3/emerald_enchanted_iron_pickaxe", + "minecraft:toolsmith/3/emerald_diamond_hoe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_4.json new file mode 100644 index 00000000..28bdd8e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_4.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:toolsmith/4/emerald_enchanted_diamond_axe", + "minecraft:toolsmith/4/emerald_enchanted_diamond_shovel", + "minecraft:toolsmith/4/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_5.json new file mode 100644 index 00000000..439d29d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/toolsmith/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:toolsmith/5/emerald_enchanted_diamond_pickaxe" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/buying.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/buying.json new file mode 100644 index 00000000..d7b71c44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/buying.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:wandering_trader/water_bottle_emerald", + "minecraft:wandering_trader/water_bucket_emerald", + "minecraft:wandering_trader/milk_bucket_emerald", + "minecraft:wandering_trader/fermented_spider_eye_emerald", + "minecraft:wandering_trader/baked_potato_emerald", + "minecraft:wandering_trader/hay_block_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/common.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/common.json new file mode 100644 index 00000000..0f82ef7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/common.json @@ -0,0 +1,80 @@ +{ + "values": [ + "minecraft:wandering_trader/emerald_white_dye", + "minecraft:wandering_trader/emerald_orange_dye", + "minecraft:wandering_trader/emerald_magenta_dye", + "minecraft:wandering_trader/emerald_light_blue_dye", + "minecraft:wandering_trader/emerald_yellow_dye", + "minecraft:wandering_trader/emerald_lime_dye", + "minecraft:wandering_trader/emerald_pink_dye", + "minecraft:wandering_trader/emerald_gray_dye", + "minecraft:wandering_trader/emerald_light_gray_dye", + "minecraft:wandering_trader/emerald_cyan_dye", + "minecraft:wandering_trader/emerald_purple_dye", + "minecraft:wandering_trader/emerald_blue_dye", + "minecraft:wandering_trader/emerald_brown_dye", + "minecraft:wandering_trader/emerald_green_dye", + "minecraft:wandering_trader/emerald_red_dye", + "minecraft:wandering_trader/emerald_black_dye", + "minecraft:wandering_trader/emerald_fish_bucket", + "minecraft:wandering_trader/emerald_pufferfish_bucket", + "minecraft:wandering_trader/emerald_sea_pickle", + "minecraft:wandering_trader/emerald_slime_ball", + "minecraft:wandering_trader/emerald_glowstone", + "minecraft:wandering_trader/emerald_nautilus_shell", + "minecraft:wandering_trader/emerald_fern", + "minecraft:wandering_trader/emerald_sugar_cane", + "minecraft:wandering_trader/emerald_pumpkin", + "minecraft:wandering_trader/emerald_kelp", + "minecraft:wandering_trader/emerald_cactus", + "minecraft:wandering_trader/emerald_dandelion", + "minecraft:wandering_trader/emerald_poppy", + "minecraft:wandering_trader/emerald_blue_orchid", + "minecraft:wandering_trader/emerald_allium", + "minecraft:wandering_trader/emerald_azure_bluet", + "minecraft:wandering_trader/emerald_red_tulip", + "minecraft:wandering_trader/emerald_orange_tulip", + "minecraft:wandering_trader/emerald_white_tulip", + "minecraft:wandering_trader/emerald_pink_tulip", + "minecraft:wandering_trader/emerald_oxeye_daisy", + "minecraft:wandering_trader/emerald_cornflower", + "minecraft:wandering_trader/emerald_lily_of_the_valley", + "minecraft:wandering_trader/emerald_open_eyeblossom", + "minecraft:wandering_trader/emerald_wheat_seeds", + "minecraft:wandering_trader/emerald_beetroot_seeds", + "minecraft:wandering_trader/emerald_pumpkin_seeds", + "minecraft:wandering_trader/emerald_melon_seeds", + "minecraft:wandering_trader/emerald_acacia_sapling", + "minecraft:wandering_trader/emerald_birch_sapling", + "minecraft:wandering_trader/emerald_dark_oak_sapling", + "minecraft:wandering_trader/emerald_jungle_sapling", + "minecraft:wandering_trader/emerald_oak_sapling", + "minecraft:wandering_trader/emerald_spruce_sapling", + "minecraft:wandering_trader/emerald_cherry_sapling", + "minecraft:wandering_trader/emerald_pale_oak_sapling", + "minecraft:wandering_trader/emerald_mangrove_propagule", + "minecraft:wandering_trader/emerald_brain_coral_block", + "minecraft:wandering_trader/emerald_bubble_coral_block", + "minecraft:wandering_trader/emerald_fire_coral_block", + "minecraft:wandering_trader/emerald_horn_coral_block", + "minecraft:wandering_trader/emerald_tube_coral_block", + "minecraft:wandering_trader/emerald_vine", + "minecraft:wandering_trader/emerald_pale_hanging_moss", + "minecraft:wandering_trader/emerald_brown_mushroom", + "minecraft:wandering_trader/emerald_red_mushroom", + "minecraft:wandering_trader/emerald_lily_pad", + "minecraft:wandering_trader/emerald_small_dripleaf", + "minecraft:wandering_trader/emerald_sand", + "minecraft:wandering_trader/emerald_red_sand", + "minecraft:wandering_trader/emerald_pointed_dripstone", + "minecraft:wandering_trader/emerald_sulfur_spike", + "minecraft:wandering_trader/emerald_rooted_dirt", + "minecraft:wandering_trader/emerald_moss_block", + "minecraft:wandering_trader/emerald_pale_moss_block", + "minecraft:wandering_trader/emerald_wildflowers", + "minecraft:wandering_trader/emerald_dry_tall_grass", + "minecraft:wandering_trader/emerald_firefly_bush", + "minecraft:wandering_trader/emerald_golden_dandelion", + "minecraft:wandering_trader/emerald_name_tag" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json new file mode 100644 index 00000000..8f108f4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/wandering_trader/uncommon.json @@ -0,0 +1,19 @@ +{ + "values": [ + "minecraft:wandering_trader/emerald_packed_ice", + "minecraft:wandering_trader/emerald_blue_ice", + "minecraft:wandering_trader/emerald_gunpowder", + "minecraft:wandering_trader/emerald_podzol", + "minecraft:wandering_trader/emerald_acacia_log", + "minecraft:wandering_trader/emerald_birch_log", + "minecraft:wandering_trader/emerald_dark_oak_log", + "minecraft:wandering_trader/emerald_jungle_log", + "minecraft:wandering_trader/emerald_oak_log", + "minecraft:wandering_trader/emerald_spruce_log", + "minecraft:wandering_trader/emerald_cherry_log", + "minecraft:wandering_trader/emerald_mangrove_log", + "minecraft:wandering_trader/emerald_pale_oak_log", + "minecraft:wandering_trader/emerald_enchanted_iron_pickaxe", + "minecraft:wandering_trader/emerald_long_invisibility_potion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_1.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_1.json new file mode 100644 index 00000000..89cad00a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_1.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_1", + "minecraft:weaponsmith/1/emerald_iron_axe", + "minecraft:weaponsmith/1/emerald_enchanted_iron_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_2.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_2.json new file mode 100644 index 00000000..bd2b80bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:common_smith/level_2" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_3.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_3.json new file mode 100644 index 00000000..9d396106 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_3.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_3", + "minecraft:weaponsmith/3/flint_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_4.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_4.json new file mode 100644 index 00000000..65aa303f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_4.json @@ -0,0 +1,7 @@ +{ + "values": [ + "#minecraft:common_smith/level_4", + "minecraft:weaponsmith/4/emerald_enchanted_diamond_axe", + "minecraft:weaponsmith/4/diamond_emerald" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_5.json b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_5.json new file mode 100644 index 00000000..580d25e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/villager_trade/weaponsmith/level_5.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:common_smith/level_5", + "minecraft:weaponsmith/5/emerald_enchanted_diamond_sword" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json new file mode 100644 index 00000000..0f5eb22e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_surface_slime_spawns.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json new file mode 100644 index 00000000..14035f0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/allows_tropical_fish_spawns_at_any_height.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:lush_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json new file mode 100644 index 00000000..896ce431 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ancient_city.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json new file mode 100644 index 00000000..35f76302 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/bastion_remnant.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:crimson_forest", + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:warped_forest" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json new file mode 100644 index 00000000..b15673e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/buried_treasure.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/desert_pyramid.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/end_city.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/end_city.json new file mode 100644 index 00000000..b7e75588 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/end_city.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:end_highlands", + "minecraft:end_midlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/igloo.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/igloo.json new file mode 100644 index 00000000..71ee6f11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/igloo.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:snowy_taiga", + "minecraft:snowy_plains", + "minecraft:snowy_slopes" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json new file mode 100644 index 00000000..cdde1cc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/jungle_temple.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:bamboo_jungle", + "minecraft:jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json new file mode 100644 index 00000000..691cc0c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft.json @@ -0,0 +1,27 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river", + "#minecraft:is_beach", + "#minecraft:is_mountain", + "#minecraft:is_hill", + "#minecraft:is_taiga", + "#minecraft:is_jungle", + "#minecraft:is_forest", + "minecraft:stony_shore", + "minecraft:mushroom_fields", + "minecraft:ice_spikes", + "minecraft:windswept_savanna", + "minecraft:desert", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:savanna_plateau", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:sulfur_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json new file mode 100644 index 00000000..161fcc28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/mineshaft_mesa.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_badlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json new file mode 100644 index 00000000..f7e672b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fortress.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_nether" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json new file mode 100644 index 00000000..220ffbbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/nether_fossil.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:soul_sand_valley" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json new file mode 100644 index 00000000..0fef9dd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_monument.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_deep_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json new file mode 100644 index 00000000..87f9e020 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_cold.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:frozen_ocean", + "minecraft:cold_ocean", + "minecraft:ocean", + "minecraft:deep_frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:deep_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json new file mode 100644 index 00000000..7e0e114b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ocean_ruin_warm.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:deep_lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json new file mode 100644 index 00000000..966dca19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/pillager_outpost.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:plains", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:taiga", + "#minecraft:is_mountain", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_desert.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json new file mode 100644 index 00000000..c1d3c371 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_jungle.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json new file mode 100644 index 00000000..5863945e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_mountain.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:is_badlands", + "#minecraft:is_hill", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna", + "minecraft:stony_shore", + "#minecraft:is_mountain" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json new file mode 100644 index 00000000..f7e672b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_nether.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_nether" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json new file mode 100644 index 00000000..9d98621b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_ocean.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json new file mode 100644 index 00000000..6c39727a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_standard.json @@ -0,0 +1,17 @@ +{ + "values": [ + "#minecraft:is_beach", + "#minecraft:is_river", + "#minecraft:is_taiga", + "#minecraft:is_forest", + "minecraft:mushroom_fields", + "minecraft:ice_spikes", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:sulfur_caves", + "minecraft:savanna", + "minecraft:snowy_plains", + "minecraft:plains", + "minecraft:sunflower_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json new file mode 100644 index 00000000..0f5eb22e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/ruined_portal_swamp.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json new file mode 100644 index 00000000..9d98621b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json new file mode 100644 index 00000000..b15673e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/shipwreck_beached.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json new file mode 100644 index 00000000..d3152c5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/stronghold.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_overworld" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json new file mode 100644 index 00000000..6afa2575 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/swamp_hut.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json new file mode 100644 index 00000000..6cd82ab7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trail_ruins.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:old_growth_birch_forest", + "minecraft:jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json new file mode 100644 index 00000000..5bab5cf3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/trial_chambers.json @@ -0,0 +1,58 @@ +{ + "values": [ + "minecraft:mushroom_fields", + "minecraft:deep_frozen_ocean", + "minecraft:frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:cold_ocean", + "minecraft:deep_ocean", + "minecraft:ocean", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:stony_shore", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:snowy_slopes", + "minecraft:snowy_plains", + "minecraft:snowy_beach", + "minecraft:windswept_gravelly_hills", + "minecraft:grove", + "minecraft:windswept_hills", + "minecraft:snowy_taiga", + "minecraft:windswept_forest", + "minecraft:taiga", + "minecraft:plains", + "minecraft:meadow", + "minecraft:beach", + "minecraft:forest", + "minecraft:old_growth_spruce_taiga", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:savanna_plateau", + "minecraft:savanna", + "minecraft:jungle", + "minecraft:badlands", + "minecraft:desert", + "minecraft:wooded_badlands", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:frozen_river", + "minecraft:river", + "minecraft:ice_spikes", + "minecraft:old_growth_pine_taiga", + "minecraft:sunflower_plains", + "minecraft:old_growth_birch_forest", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:eroded_badlands", + "minecraft:windswept_savanna", + "minecraft:cherry_grove", + "minecraft:frozen_peaks", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:sulfur_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_desert.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json new file mode 100644 index 00000000..b602af3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_plains.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:plains", + "minecraft:meadow" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json new file mode 100644 index 00000000..ed8b4550 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_savanna.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json new file mode 100644 index 00000000..05a22cb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_snowy.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:snowy_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json new file mode 100644 index 00000000..a466ede6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/village_taiga.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json new file mode 100644 index 00000000..33519bb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/has_structure/woodland_mansion.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:dark_forest", + "minecraft:pale_garden" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_badlands.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_badlands.json new file mode 100644 index 00000000..2067af28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_badlands.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_beach.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_beach.json new file mode 100644 index 00000000..124b0d42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_beach.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:beach", + "minecraft:snowy_beach" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_deep_ocean.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_deep_ocean.json new file mode 100644 index 00000000..eefd3ebd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_deep_ocean.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:deep_frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:deep_ocean", + "minecraft:deep_lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_end.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_end.json new file mode 100644 index 00000000..71d4af2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_end.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:the_end", + "minecraft:end_highlands", + "minecraft:end_midlands", + "minecraft:small_end_islands", + "minecraft:end_barrens" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_forest.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_forest.json new file mode 100644 index 00000000..bcd87f0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_forest.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:forest", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:old_growth_birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_hill.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_hill.json new file mode 100644 index 00000000..e52099d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_hill.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:windswept_hills", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_jungle.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_jungle.json new file mode 100644 index 00000000..2bc95599 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_jungle.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:bamboo_jungle", + "minecraft:jungle", + "minecraft:sparse_jungle" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_mountain.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_mountain.json new file mode 100644 index 00000000..fe922aa6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_mountain.json @@ -0,0 +1,10 @@ +{ + "values": [ + "minecraft:meadow", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:snowy_slopes", + "minecraft:cherry_grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_nether.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_nether.json new file mode 100644 index 00000000..340c9d16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_nether.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:nether_wastes", + "minecraft:soul_sand_valley", + "minecraft:crimson_forest", + "minecraft:warped_forest", + "minecraft:basalt_deltas" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_ocean.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_ocean.json new file mode 100644 index 00000000..ce6b5168 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_ocean.json @@ -0,0 +1,10 @@ +{ + "values": [ + "#minecraft:is_deep_ocean", + "minecraft:frozen_ocean", + "minecraft:ocean", + "minecraft:cold_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_overworld.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_overworld.json new file mode 100644 index 00000000..772fd884 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_overworld.json @@ -0,0 +1,59 @@ +{ + "values": [ + "minecraft:mushroom_fields", + "minecraft:deep_frozen_ocean", + "minecraft:frozen_ocean", + "minecraft:deep_cold_ocean", + "minecraft:cold_ocean", + "minecraft:deep_ocean", + "minecraft:ocean", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:warm_ocean", + "minecraft:stony_shore", + "minecraft:swamp", + "minecraft:mangrove_swamp", + "minecraft:snowy_slopes", + "minecraft:snowy_plains", + "minecraft:snowy_beach", + "minecraft:windswept_gravelly_hills", + "minecraft:grove", + "minecraft:windswept_hills", + "minecraft:snowy_taiga", + "minecraft:windswept_forest", + "minecraft:taiga", + "minecraft:plains", + "minecraft:meadow", + "minecraft:beach", + "minecraft:forest", + "minecraft:old_growth_spruce_taiga", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:savanna_plateau", + "minecraft:savanna", + "minecraft:jungle", + "minecraft:badlands", + "minecraft:desert", + "minecraft:wooded_badlands", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:frozen_river", + "minecraft:river", + "minecraft:ice_spikes", + "minecraft:old_growth_pine_taiga", + "minecraft:sunflower_plains", + "minecraft:old_growth_birch_forest", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:eroded_badlands", + "minecraft:windswept_savanna", + "minecraft:cherry_grove", + "minecraft:frozen_peaks", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:sulfur_caves", + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_river.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_river.json new file mode 100644 index 00000000..5ca91a79 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_river.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:river", + "minecraft:frozen_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_savanna.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_savanna.json new file mode 100644 index 00000000..fc71cb52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_savanna.json @@ -0,0 +1,7 @@ +{ + "values": [ + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_taiga.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_taiga.json new file mode 100644 index 00000000..42944dcb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/is_taiga.json @@ -0,0 +1,8 @@ +{ + "values": [ + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json new file mode 100644 index 00000000..896ce431 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/mineshaft_blocking.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:deep_dark" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json new file mode 100644 index 00000000..c5435e25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/more_frequent_drowned_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json new file mode 100644 index 00000000..94d00730 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/polar_bears_spawn_on_alternate_blocks.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json new file mode 100644 index 00000000..21875c99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/produces_corals_from_bonemeal.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json new file mode 100644 index 00000000..c5435e25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/reduce_water_ambient_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json new file mode 100644 index 00000000..800c1719 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/required_ocean_monument_surrounding.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json new file mode 100644 index 00000000..c9da19ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_farm_animals.json @@ -0,0 +1,26 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "#minecraft:is_end", + "minecraft:cold_ocean", + "minecraft:deep_cold_ocean", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:windswept_forest", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_hills", + "minecraft:stony_peaks" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json new file mode 100644 index 00000000..76dda367 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_cold_variant_frogs.json @@ -0,0 +1,17 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean", + "minecraft:grove", + "minecraft:deep_dark", + "minecraft:frozen_river", + "minecraft:snowy_taiga", + "minecraft:snowy_beach", + "#minecraft:is_end" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json new file mode 100644 index 00000000..21875c99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_coral_variant_zombie_nautilus.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:warm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json new file mode 100644 index 00000000..f1a8ccb6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_gold_rabbits.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json new file mode 100644 index 00000000..b37d5ef6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_snow_foxes.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_ocean", + "minecraft:snowy_taiga", + "minecraft:frozen_river", + "minecraft:snowy_beach", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json new file mode 100644 index 00000000..b009f682 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_farm_animals.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:warm_ocean", + "#minecraft:is_jungle", + "#minecraft:is_savanna", + "#minecraft:is_nether", + "#minecraft:is_badlands", + "minecraft:mangrove_swamp", + "minecraft:deep_lukewarm_ocean", + "minecraft:lukewarm_ocean" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json new file mode 100644 index 00000000..c38caafd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_warm_variant_frogs.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:desert", + "minecraft:warm_ocean", + "#minecraft:is_jungle", + "#minecraft:is_savanna", + "#minecraft:is_nether", + "#minecraft:is_badlands", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json new file mode 100644 index 00000000..b37d5ef6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/spawns_white_rabbits.json @@ -0,0 +1,14 @@ +{ + "values": [ + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:frozen_ocean", + "minecraft:snowy_taiga", + "minecraft:frozen_river", + "minecraft:snowy_beach", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:snowy_slopes", + "minecraft:grove" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json new file mode 100644 index 00000000..c8e9dc29 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/stronghold_biased_to.json @@ -0,0 +1,42 @@ +{ + "values": [ + "minecraft:plains", + "minecraft:sunflower_plains", + "minecraft:snowy_plains", + "minecraft:ice_spikes", + "minecraft:desert", + "minecraft:forest", + "minecraft:flower_forest", + "minecraft:birch_forest", + "minecraft:dark_forest", + "minecraft:pale_garden", + "minecraft:old_growth_birch_forest", + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga", + "minecraft:taiga", + "minecraft:snowy_taiga", + "minecraft:savanna", + "minecraft:savanna_plateau", + "minecraft:windswept_hills", + "minecraft:windswept_gravelly_hills", + "minecraft:windswept_forest", + "minecraft:windswept_savanna", + "minecraft:jungle", + "minecraft:sparse_jungle", + "minecraft:bamboo_jungle", + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands", + "minecraft:meadow", + "minecraft:cherry_grove", + "minecraft:grove", + "minecraft:snowy_slopes", + "minecraft:frozen_peaks", + "minecraft:jagged_peaks", + "minecraft:stony_peaks", + "minecraft:mushroom_fields", + "minecraft:dripstone_caves", + "minecraft:lush_caves", + "minecraft:sulfur_caves" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json new file mode 100644 index 00000000..1128ade1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/water_on_map_outlines.json @@ -0,0 +1,8 @@ +{ + "values": [ + "#minecraft:is_ocean", + "#minecraft:is_river", + "minecraft:swamp", + "minecraft:mangrove_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json new file mode 100644 index 00000000..f55aea66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_wandering_trader_spawns.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:the_void" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json new file mode 100644 index 00000000..05d85d95 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/biome/without_zombie_sieges.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mushroom_fields" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json b/data/generated/V26_2/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json new file mode 100644 index 00000000..4c3e7adc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/configured_feature/can_spawn_from_bone_meal.json @@ -0,0 +1,12 @@ +{ + "values": [ + "minecraft:flower_default", + "minecraft:flower_flower_forest", + "minecraft:flower_swamp", + "minecraft:flower_plain", + "minecraft:flower_meadow", + "minecraft:flower_cherry", + "minecraft:wildflower", + "minecraft:flower_pale_garden" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json b/data/generated/V26_2/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json new file mode 100644 index 00000000..de2b98df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/flat_level_generator_preset/visible.json @@ -0,0 +1,13 @@ +{ + "values": [ + "minecraft:classic_flat", + "minecraft:tunnelers_dream", + "minecraft:water_world", + "minecraft:overworld", + "minecraft:snowy_kingdom", + "minecraft:bottomless_pit", + "minecraft:desert", + "minecraft:redstone_ready", + "minecraft:the_void" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_as_black.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_in.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_in.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/cats_spawn_in.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/dolphin_located.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/dolphin_located.json new file mode 100644 index 00000000..4c5da1fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/dolphin_located.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:ocean_ruin", + "#minecraft:shipwreck" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json new file mode 100644 index 00000000..0635d07a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/eye_of_ender_located.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:stronghold" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/mineshaft.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/mineshaft.json new file mode 100644 index 00000000..3def9bec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/mineshaft.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:mineshaft", + "minecraft:mineshaft_mesa" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ocean_ruin.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ocean_ruin.json new file mode 100644 index 00000000..da7a0aca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ocean_ruin.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:ocean_ruin_cold", + "minecraft:ocean_ruin_warm" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json new file mode 100644 index 00000000..ba7efaf3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_desert_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_desert" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json new file mode 100644 index 00000000..ba0e1c3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_jungle_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:jungle_pyramid" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json new file mode 100644 index 00000000..ab6748eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_ocean_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:monument" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json new file mode 100644 index 00000000..10f9ba4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_plains_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_plains" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json new file mode 100644 index 00000000..c3bd14d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_savanna_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_savanna" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json new file mode 100644 index 00000000..d9477e5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_snowy_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_snowy" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json new file mode 100644 index 00000000..69fd4a7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_swamp_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:swamp_hut" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json new file mode 100644 index 00000000..e74218b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_taiga_village_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:village_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_treasure_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_treasure_maps.json new file mode 100644 index 00000000..5dcd7092 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_treasure_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:buried_treasure" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json new file mode 100644 index 00000000..e8128caa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_trial_chambers_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:trial_chambers" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json new file mode 100644 index 00000000..b15b4215 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/on_woodland_explorer_maps.json @@ -0,0 +1,5 @@ +{ + "values": [ + "minecraft:mansion" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ruined_portal.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ruined_portal.json new file mode 100644 index 00000000..b2424b11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/ruined_portal.json @@ -0,0 +1,11 @@ +{ + "values": [ + "minecraft:ruined_portal_desert", + "minecraft:ruined_portal_jungle", + "minecraft:ruined_portal_mountain", + "minecraft:ruined_portal_nether", + "minecraft:ruined_portal_ocean", + "minecraft:ruined_portal", + "minecraft:ruined_portal_swamp" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/shipwreck.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/shipwreck.json new file mode 100644 index 00000000..6b8bc734 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/shipwreck.json @@ -0,0 +1,6 @@ +{ + "values": [ + "minecraft:shipwreck", + "minecraft:shipwreck_beached" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/structure/village.json b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/village.json new file mode 100644 index 00000000..a0f77018 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/structure/village.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:village_plains", + "minecraft:village_desert", + "minecraft:village_savanna", + "minecraft:village_snowy", + "minecraft:village_taiga" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/extended.json b/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/extended.json new file mode 100644 index 00000000..9603a20b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/extended.json @@ -0,0 +1,6 @@ +{ + "values": [ + "#minecraft:normal", + "minecraft:debug_all_block_states" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/normal.json b/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/normal.json new file mode 100644 index 00000000..cbd3e0b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/tags/worldgen/world_preset/normal.json @@ -0,0 +1,9 @@ +{ + "values": [ + "minecraft:normal", + "minecraft:flat", + "minecraft:large_biomes", + "minecraft:amplified", + "minecraft:single_biome_surface" + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/test_environment/default.json b/data/generated/V26_2/data/minecraft/test_environment/default.json new file mode 100644 index 00000000..8808857c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/test_environment/default.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:all_of", + "definitions": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/test_instance/always_pass.json b/data/generated/V26_2/data/minecraft/test_instance/always_pass.json new file mode 100644 index 00000000..b4effb8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/test_instance/always_pass.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:function", + "environment": "minecraft:default", + "function": "minecraft:always_pass", + "max_ticks": 1, + "required": false, + "setup_ticks": 1, + "structure": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/timeline/day.json b/data/generated/V26_2/data/minecraft/timeline/day.json new file mode 100644 index 00000000..cfe088c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/timeline/day.json @@ -0,0 +1,489 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 24000, + "time_markers": { + "minecraft:day": { + "show_in_commands": true, + "ticks": 1000 + }, + "minecraft:midnight": { + "show_in_commands": true, + "ticks": 18000 + }, + "minecraft:night": { + "show_in_commands": true, + "ticks": 13000 + }, + "minecraft:noon": { + "show_in_commands": true, + "ticks": 6000 + }, + "minecraft:roll_village_siege": 18000, + "minecraft:wake_up_from_sleep": 0 + }, + "tracks": { + "minecraft:audio/firefly_bush_sounds": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/bees_stay_in_hive": { + "keyframes": [ + { + "ticks": 12542, + "value": true + }, + { + "ticks": 23460, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/cat_waking_up_gift_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 362, + "value": 0.0 + }, + { + "ticks": 23667, + "value": 0.7 + } + ], + "modifier": "maximum" + }, + "minecraft:gameplay/creaking_active": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ], + "modifier": "or" + }, + "minecraft:gameplay/eyeblossom_open": { + "keyframes": [ + { + "ticks": 12600, + "value": true + }, + { + "ticks": 23401, + "value": false + } + ] + }, + "minecraft:gameplay/monsters_burn": { + "keyframes": [ + { + "ticks": 12542, + "value": false + }, + { + "ticks": 23460, + "value": true + } + ], + "modifier": "or" + }, + "minecraft:gameplay/sky_light_level": { + "keyframes": [ + { + "ticks": 133, + "value": 1.0 + }, + { + "ticks": 11867, + "value": 1.0 + }, + { + "ticks": 13670, + "value": 0.26666668 + }, + { + "ticks": 22330, + "value": 0.26666668 + } + ], + "modifier": "multiply" + }, + "minecraft:gameplay/turtle_egg_hatch_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 21062, + "value": 1.0 + }, + { + "ticks": 21905, + "value": 0.002 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/cloud_color": { + "keyframes": [ + { + "ticks": 133, + "value": -1 + }, + { + "ticks": 11867, + "value": -1 + }, + { + "ticks": 13670, + "value": -15132378 + }, + { + "ticks": 22330, + "value": -15132378 + } + ], + "modifier": "multiply" + }, + "minecraft:visual/fog_color": { + "keyframes": [ + { + "ticks": 133, + "value": "#ffffff" + }, + { + "ticks": 11867, + "value": "#ffffff" + }, + { + "ticks": 13670, + "value": "#0c0c16" + }, + { + "ticks": 22330, + "value": "#161616" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/moon_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 540.0 + }, + { + "ticks": 6000, + "value": 180.0 + } + ] + }, + "minecraft:visual/sky_color": { + "keyframes": [ + { + "ticks": 133, + "value": "#ffffff" + }, + { + "ticks": 11867, + "value": "#ffffff" + }, + { + "ticks": 13670, + "value": "#000000" + }, + { + "ticks": 22330, + "value": "#000000" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/sky_light_color": { + "keyframes": [ + { + "ticks": 730, + "value": "#ffffff" + }, + { + "ticks": 11270, + "value": "#ffffff" + }, + { + "ticks": 13140, + "value": "#7a7aff" + }, + { + "ticks": 22860, + "value": "#7a7aff" + } + ], + "modifier": "multiply" + }, + "minecraft:visual/sky_light_factor": { + "keyframes": [ + { + "ticks": 730, + "value": 1.0 + }, + { + "ticks": 11270, + "value": 1.0 + }, + { + "ticks": 13140, + "value": 0.24 + }, + { + "ticks": 22860, + "value": 0.24 + } + ], + "modifier": "multiply" + }, + "minecraft:visual/star_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 360.0 + }, + { + "ticks": 6000, + "value": 0.0 + } + ] + }, + "minecraft:visual/star_brightness": { + "keyframes": [ + { + "ticks": 92, + "value": 0.037 + }, + { + "ticks": 627, + "value": 0.0 + }, + { + "ticks": 11373, + "value": 0.0 + }, + { + "ticks": 11732, + "value": 0.016 + }, + { + "ticks": 11959, + "value": 0.044 + }, + { + "ticks": 12399, + "value": 0.143 + }, + { + "ticks": 12729, + "value": 0.258 + }, + { + "ticks": 13228, + "value": 0.5 + }, + { + "ticks": 22772, + "value": 0.5 + }, + { + "ticks": 23032, + "value": 0.364 + }, + { + "ticks": 23356, + "value": 0.225 + }, + { + "ticks": 23758, + "value": 0.101 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/sun_angle": { + "ease": { + "cubic_bezier": [ + 0.362, + 0.241, + 0.638, + 0.759 + ] + }, + "keyframes": [ + { + "ticks": 6000, + "value": 360.0 + }, + { + "ticks": 6000, + "value": 0.0 + } + ] + }, + "minecraft:visual/sunrise_sunset_color": { + "keyframes": [ + { + "ticks": 71, + "value": "#5fefa333" + }, + { + "ticks": 310, + "value": "#29f5ba33" + }, + { + "ticks": 565, + "value": "#06fbd433" + }, + { + "ticks": 730, + "value": "#00ffe533" + }, + { + "ticks": 11270, + "value": "#00ffe533" + }, + { + "ticks": 11397, + "value": "#04fcd833" + }, + { + "ticks": 11522, + "value": "#0ff9cb33" + }, + { + "ticks": 11690, + "value": "#29f5ba33" + }, + { + "ticks": 11929, + "value": "#5fefa333" + }, + { + "ticks": 12243, + "value": "#b1e78733" + }, + { + "ticks": 12358, + "value": "#cce47e33" + }, + { + "ticks": 12512, + "value": "#e9e07233" + }, + { + "ticks": 12613, + "value": "#f6dd6b33" + }, + { + "ticks": 12732, + "value": "#feda6333" + }, + { + "ticks": 12841, + "value": "#fed75c33" + }, + { + "ticks": 13035, + "value": "#ecd25133" + }, + { + "ticks": 13252, + "value": "#c1cc4733" + }, + { + "ticks": 13775, + "value": "#36be3733" + }, + { + "ticks": 13888, + "value": "#1fbb3533" + }, + { + "ticks": 14039, + "value": "#09b73333" + }, + { + "ticks": 14192, + "value": "#00b33333" + }, + { + "ticks": 21807, + "value": "#00b23333" + }, + { + "ticks": 21961, + "value": "#09b73333" + }, + { + "ticks": 22112, + "value": "#1fbb3533" + }, + { + "ticks": 22225, + "value": "#36be3733" + }, + { + "ticks": 22748, + "value": "#c1cc4733" + }, + { + "ticks": 22965, + "value": "#ecd25133" + }, + { + "ticks": 23159, + "value": "#fed75c33" + }, + { + "ticks": 23272, + "value": "#feda6333" + }, + { + "ticks": 23488, + "value": "#e9e07233" + }, + { + "ticks": 23642, + "value": "#cce47e33" + }, + { + "ticks": 23757, + "value": "#b1e78733" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/timeline/early_game.json b/data/generated/V26_2/data/minecraft/timeline/early_game.json new file mode 100644 index 00000000..f9a10ee6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/timeline/early_game.json @@ -0,0 +1,18 @@ +{ + "clock": "minecraft:overworld", + "tracks": { + "minecraft:gameplay/can_pillager_patrol_spawn": { + "keyframes": [ + { + "ticks": 0, + "value": false + }, + { + "ticks": 120000, + "value": true + } + ], + "modifier": "and" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/timeline/moon.json b/data/generated/V26_2/data/minecraft/timeline/moon.json new file mode 100644 index 00000000..9b78d22d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/timeline/moon.json @@ -0,0 +1,80 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 192000, + "tracks": { + "minecraft:gameplay/surface_slime_spawn_chance": { + "ease": "constant", + "keyframes": [ + { + "ticks": 0, + "value": 0.5 + }, + { + "ticks": 24000, + "value": 0.375 + }, + { + "ticks": 48000, + "value": 0.25 + }, + { + "ticks": 72000, + "value": 0.125 + }, + { + "ticks": 96000, + "value": 0.0 + }, + { + "ticks": 120000, + "value": 0.125 + }, + { + "ticks": 144000, + "value": 0.25 + }, + { + "ticks": 168000, + "value": 0.375 + } + ], + "modifier": "maximum" + }, + "minecraft:visual/moon_phase": { + "keyframes": [ + { + "ticks": 0, + "value": "full_moon" + }, + { + "ticks": 24000, + "value": "waning_gibbous" + }, + { + "ticks": 48000, + "value": "third_quarter" + }, + { + "ticks": 72000, + "value": "waning_crescent" + }, + { + "ticks": 96000, + "value": "new_moon" + }, + { + "ticks": 120000, + "value": "waxing_crescent" + }, + { + "ticks": 144000, + "value": "first_quarter" + }, + { + "ticks": 168000, + "value": "waxing_gibbous" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/timeline/villager_schedule.json b/data/generated/V26_2/data/minecraft/timeline/villager_schedule.json new file mode 100644 index 00000000..b9c1bb66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/timeline/villager_schedule.json @@ -0,0 +1,54 @@ +{ + "clock": "minecraft:overworld", + "period_ticks": 24000, + "tracks": { + "minecraft:gameplay/baby_villager_activity": { + "keyframes": [ + { + "ticks": 10, + "value": "minecraft:idle" + }, + { + "ticks": 3000, + "value": "minecraft:play" + }, + { + "ticks": 6000, + "value": "minecraft:idle" + }, + { + "ticks": 10000, + "value": "minecraft:play" + }, + { + "ticks": 12000, + "value": "minecraft:rest" + } + ] + }, + "minecraft:gameplay/villager_activity": { + "keyframes": [ + { + "ticks": 10, + "value": "minecraft:idle" + }, + { + "ticks": 2000, + "value": "minecraft:work" + }, + { + "ticks": 9000, + "value": "minecraft:meet" + }, + { + "ticks": 11000, + "value": "minecraft:idle" + }, + { + "ticks": 12000, + "value": "minecraft:rest" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/armorer/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_1.json new file mode 100644 index 00000000..8e60ef3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_1", + "trades": "#minecraft:armorer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/armorer/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_2.json new file mode 100644 index 00000000..85e4c451 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_2", + "trades": "#minecraft:armorer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/armorer/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_3.json new file mode 100644 index 00000000..b45fcedb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_3", + "trades": "#minecraft:armorer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/armorer/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_4.json new file mode 100644 index 00000000..9498b8c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_4", + "trades": "#minecraft:armorer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/armorer/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_5.json new file mode 100644 index 00000000..4ac4a74a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/armorer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/armorer/level_5", + "trades": "#minecraft:armorer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/butcher/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_1.json new file mode 100644 index 00000000..4bb588b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_1", + "trades": "#minecraft:butcher/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/butcher/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_2.json new file mode 100644 index 00000000..581f6402 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_2", + "trades": "#minecraft:butcher/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/butcher/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_3.json new file mode 100644 index 00000000..af3495c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_3", + "trades": "#minecraft:butcher/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/butcher/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_4.json new file mode 100644 index 00000000..9218cc5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_4", + "trades": "#minecraft:butcher/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/butcher/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_5.json new file mode 100644 index 00000000..9c350f8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/butcher/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/butcher/level_5", + "trades": "#minecraft:butcher/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_1.json new file mode 100644 index 00000000..a9e18225 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_1", + "trades": "#minecraft:cartographer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_2.json new file mode 100644 index 00000000..72777f75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_2", + "trades": "#minecraft:cartographer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_3.json new file mode 100644 index 00000000..1351cc55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_3", + "trades": "#minecraft:cartographer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_4.json new file mode 100644 index 00000000..5c1765b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_4", + "trades": "#minecraft:cartographer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_5.json new file mode 100644 index 00000000..0d8e46a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cartographer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cartographer/level_5", + "trades": "#minecraft:cartographer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cleric/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_1.json new file mode 100644 index 00000000..dc7a0d5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_1", + "trades": "#minecraft:cleric/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cleric/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_2.json new file mode 100644 index 00000000..f3580e4e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_2", + "trades": "#minecraft:cleric/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cleric/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_3.json new file mode 100644 index 00000000..36d8f708 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_3", + "trades": "#minecraft:cleric/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cleric/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_4.json new file mode 100644 index 00000000..e7875794 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_4", + "trades": "#minecraft:cleric/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/cleric/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_5.json new file mode 100644 index 00000000..94f8492d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/cleric/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/cleric/level_5", + "trades": "#minecraft:cleric/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/farmer/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_1.json new file mode 100644 index 00000000..fe947169 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_1", + "trades": "#minecraft:farmer/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/farmer/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_2.json new file mode 100644 index 00000000..be905eca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_2", + "trades": "#minecraft:farmer/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/farmer/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_3.json new file mode 100644 index 00000000..3681cbbe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_3", + "trades": "#minecraft:farmer/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/farmer/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_4.json new file mode 100644 index 00000000..a271841c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_4", + "trades": "#minecraft:farmer/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/farmer/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_5.json new file mode 100644 index 00000000..30cc0a58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/farmer/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/farmer/level_5", + "trades": "#minecraft:farmer/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_1.json new file mode 100644 index 00000000..c0d10980 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_1", + "trades": "#minecraft:fisherman/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_2.json new file mode 100644 index 00000000..d9b8a481 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_2", + "trades": "#minecraft:fisherman/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_3.json new file mode 100644 index 00000000..370c7d09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_3", + "trades": "#minecraft:fisherman/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_4.json new file mode 100644 index 00000000..d480fade --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_4", + "trades": "#minecraft:fisherman/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_5.json new file mode 100644 index 00000000..2a2c1e49 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fisherman/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fisherman/level_5", + "trades": "#minecraft:fisherman/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_1.json new file mode 100644 index 00000000..6aa2f740 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_1", + "trades": "#minecraft:fletcher/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_2.json new file mode 100644 index 00000000..7fae8c6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_2", + "trades": "#minecraft:fletcher/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_3.json new file mode 100644 index 00000000..439770c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_3", + "trades": "#minecraft:fletcher/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_4.json new file mode 100644 index 00000000..726fada5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_4", + "trades": "#minecraft:fletcher/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_5.json new file mode 100644 index 00000000..cfbc75a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/fletcher/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/fletcher/level_5", + "trades": "#minecraft:fletcher/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_1.json new file mode 100644 index 00000000..a3f32f2c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_1", + "trades": "#minecraft:leatherworker/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_2.json new file mode 100644 index 00000000..0725d7da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_2", + "trades": "#minecraft:leatherworker/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_3.json new file mode 100644 index 00000000..b8d0b07c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_3", + "trades": "#minecraft:leatherworker/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_4.json new file mode 100644 index 00000000..9b3949aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_4", + "trades": "#minecraft:leatherworker/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_5.json new file mode 100644 index 00000000..cb2c80ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/leatherworker/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/leatherworker/level_5", + "trades": "#minecraft:leatherworker/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/librarian/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_1.json new file mode 100644 index 00000000..4dbeeb75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_1", + "trades": "#minecraft:librarian/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/librarian/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_2.json new file mode 100644 index 00000000..c9673c77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_2", + "trades": "#minecraft:librarian/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/librarian/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_3.json new file mode 100644 index 00000000..656d65e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_3", + "trades": "#minecraft:librarian/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/librarian/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_4.json new file mode 100644 index 00000000..907fc8de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/librarian/level_4", + "trades": "#minecraft:librarian/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/librarian/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_5.json new file mode 100644 index 00000000..fb1cdbb2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/librarian/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 3.0, + "random_sequence": "minecraft:trade_set/librarian/level_5", + "trades": "#minecraft:librarian/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/mason/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/mason/level_1.json new file mode 100644 index 00000000..2ae23b85 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/mason/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_1", + "trades": "#minecraft:mason/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/mason/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/mason/level_2.json new file mode 100644 index 00000000..b9d72c1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/mason/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_2", + "trades": "#minecraft:mason/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/mason/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/mason/level_3.json new file mode 100644 index 00000000..c0fa6abb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/mason/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_3", + "trades": "#minecraft:mason/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/mason/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/mason/level_4.json new file mode 100644 index 00000000..46d87e6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/mason/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_4", + "trades": "#minecraft:mason/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/mason/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/mason/level_5.json new file mode 100644 index 00000000..ed2a3c09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/mason/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/mason/level_5", + "trades": "#minecraft:mason/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_1.json new file mode 100644 index 00000000..da4e3d0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_1", + "trades": "#minecraft:shepherd/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_2.json new file mode 100644 index 00000000..e4bb87fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_2", + "trades": "#minecraft:shepherd/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_3.json new file mode 100644 index 00000000..742d4900 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_3", + "trades": "#minecraft:shepherd/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_4.json new file mode 100644 index 00000000..4ba69086 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_4", + "trades": "#minecraft:shepherd/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_5.json new file mode 100644 index 00000000..7aa18fca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/shepherd/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/shepherd/level_5", + "trades": "#minecraft:shepherd/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_1.json new file mode 100644 index 00000000..12300c73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_1", + "trades": "#minecraft:toolsmith/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_2.json new file mode 100644 index 00000000..39f257d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_2", + "trades": "#minecraft:toolsmith/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_3.json new file mode 100644 index 00000000..e041d82c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_3", + "trades": "#minecraft:toolsmith/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_4.json new file mode 100644 index 00000000..03ac88a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_4", + "trades": "#minecraft:toolsmith/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_5.json new file mode 100644 index 00000000..5d2af714 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/toolsmith/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/toolsmith/level_5", + "trades": "#minecraft:toolsmith/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/buying.json b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/buying.json new file mode 100644 index 00000000..6296a19f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/buying.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/wandering_trader/buying", + "trades": "#minecraft:wandering_trader/buying" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/common.json b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/common.json new file mode 100644 index 00000000..5e1fd19f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/common.json @@ -0,0 +1,5 @@ +{ + "amount": 5.0, + "random_sequence": "minecraft:trade_set/wandering_trader/common", + "trades": "#minecraft:wandering_trader/common" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/uncommon.json b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/uncommon.json new file mode 100644 index 00000000..18e5e7b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/wandering_trader/uncommon.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/wandering_trader/uncommon", + "trades": "#minecraft:wandering_trader/uncommon" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_1.json b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_1.json new file mode 100644 index 00000000..6a069e35 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_1.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_1", + "trades": "#minecraft:weaponsmith/level_1" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_2.json b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_2.json new file mode 100644 index 00000000..49994e86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_2.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_2", + "trades": "#minecraft:weaponsmith/level_2" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_3.json b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_3.json new file mode 100644 index 00000000..a61692d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_3.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_3", + "trades": "#minecraft:weaponsmith/level_3" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_4.json b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_4.json new file mode 100644 index 00000000..e3b198ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_4.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_4", + "trades": "#minecraft:weaponsmith/level_4" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_5.json b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_5.json new file mode 100644 index 00000000..93340760 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trade_set/weaponsmith/level_5.json @@ -0,0 +1,5 @@ +{ + "amount": 2.0, + "random_sequence": "minecraft:trade_set/weaponsmith/level_5", + "trades": "#minecraft:weaponsmith/level_5" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json new file mode 100644 index 00000000..d2d070c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/normal.json @@ -0,0 +1,17 @@ +{ + "simultaneous_mobs": 1.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:breeze" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 2.0, + "total_mobs_added_per_player": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json new file mode 100644 index 00000000..2ae41412 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/breeze/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:breeze" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 4.0, + "total_mobs_added_per_player": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json new file mode 100644 index 00000000..fdb89086 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:husk" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json new file mode 100644 index 00000000..19af8a68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/husk/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:husk" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json new file mode 100644 index 00000000..429a8c0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json new file mode 100644 index 00000000..7cf6a6d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/spider/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json new file mode 100644 index 00000000..c57d6b63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:zombie" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json new file mode 100644 index 00000000..e5a1ca28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/melee/zombie/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:zombie" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json new file mode 100644 index 00000000..3b1fc126 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json new file mode 100644 index 00000000..2ae8933a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/poison_skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json new file mode 100644 index 00000000..29c9a1b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json new file mode 100644 index 00000000..5a06ca59 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json new file mode 100644 index 00000000..4a0e90ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json new file mode 100644 index 00000000..f4dc8840 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/ranged/stray/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json new file mode 100644 index 00000000..a8c39b00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json new file mode 100644 index 00000000..6ecc76c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/poison_skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:bogged" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json new file mode 100644 index 00000000..212d4f3c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json new file mode 100644 index 00000000..97b42e47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/skeleton/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:skeleton" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json new file mode 100644 index 00000000..37fdcc10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json new file mode 100644 index 00000000..5fef6aeb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/slow_ranged/stray/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 2.0, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:stray" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_ranged", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 160 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json new file mode 100644 index 00000000..23712fd5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "IsBaby": 1, + "id": "minecraft:zombie" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json new file mode 100644 index 00000000..5870dcf6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/baby_zombie/ominous.json @@ -0,0 +1,29 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "IsBaby": 1, + "id": "minecraft:zombie" + }, + "equipment": { + "loot_table": "minecraft:equipment/trial_chamber_melee", + "slot_drop_chances": 0.0 + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json new file mode 100644 index 00000000..5fb31836 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:cave_spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json new file mode 100644 index 00000000..040a6755 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/cave_spider/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:cave_spider" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json new file mode 100644 index 00000000..b7c75408 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/normal.json @@ -0,0 +1,15 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:silverfish" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json new file mode 100644 index 00000000..7441b4c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/silverfish/ominous.json @@ -0,0 +1,26 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "id": "minecraft:silverfish" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json new file mode 100644 index 00000000..24c0f956 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/normal.json @@ -0,0 +1,25 @@ +{ + "simultaneous_mobs": 3.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "Size": 1, + "id": "minecraft:slime" + } + }, + "weight": 3 + }, + { + "data": { + "entity": { + "Size": 2, + "id": "minecraft:slime" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json new file mode 100644 index 00000000..eadafd86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trial_spawner/trial_chamber/small_melee/slime/ominous.json @@ -0,0 +1,36 @@ +{ + "loot_tables_to_eject": [ + { + "data": "minecraft:spawners/ominous/trial_chamber/key", + "weight": 3 + }, + { + "data": "minecraft:spawners/ominous/trial_chamber/consumables", + "weight": 7 + } + ], + "simultaneous_mobs": 4.0, + "simultaneous_mobs_added_per_player": 0.5, + "spawn_potentials": [ + { + "data": { + "entity": { + "Size": 1, + "id": "minecraft:slime" + } + }, + "weight": 3 + }, + { + "data": { + "entity": { + "Size": 2, + "id": "minecraft:slime" + } + }, + "weight": 1 + } + ], + "ticks_between_spawn": 20, + "total_mobs": 12.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/amethyst.json b/data/generated/V26_2/data/minecraft/trim_material/amethyst.json new file mode 100644 index 00000000..8ee4630b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/amethyst.json @@ -0,0 +1,7 @@ +{ + "asset_name": "amethyst", + "description": { + "color": "#9A5CC6", + "translate": "trim_material.minecraft.amethyst" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/copper.json b/data/generated/V26_2/data/minecraft/trim_material/copper.json new file mode 100644 index 00000000..7922e35d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/copper.json @@ -0,0 +1,10 @@ +{ + "asset_name": "copper", + "description": { + "color": "#B4684D", + "translate": "trim_material.minecraft.copper" + }, + "override_armor_assets": { + "minecraft:copper": "copper_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/diamond.json b/data/generated/V26_2/data/minecraft/trim_material/diamond.json new file mode 100644 index 00000000..bf9d314f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/diamond.json @@ -0,0 +1,10 @@ +{ + "asset_name": "diamond", + "description": { + "color": "#6EECD2", + "translate": "trim_material.minecraft.diamond" + }, + "override_armor_assets": { + "minecraft:diamond": "diamond_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/emerald.json b/data/generated/V26_2/data/minecraft/trim_material/emerald.json new file mode 100644 index 00000000..10c7c240 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/emerald.json @@ -0,0 +1,7 @@ +{ + "asset_name": "emerald", + "description": { + "color": "#11A036", + "translate": "trim_material.minecraft.emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/gold.json b/data/generated/V26_2/data/minecraft/trim_material/gold.json new file mode 100644 index 00000000..3c0eff3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/gold.json @@ -0,0 +1,10 @@ +{ + "asset_name": "gold", + "description": { + "color": "#DEB12D", + "translate": "trim_material.minecraft.gold" + }, + "override_armor_assets": { + "minecraft:gold": "gold_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/iron.json b/data/generated/V26_2/data/minecraft/trim_material/iron.json new file mode 100644 index 00000000..208e50f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/iron.json @@ -0,0 +1,10 @@ +{ + "asset_name": "iron", + "description": { + "color": "#ECECEC", + "translate": "trim_material.minecraft.iron" + }, + "override_armor_assets": { + "minecraft:iron": "iron_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/lapis.json b/data/generated/V26_2/data/minecraft/trim_material/lapis.json new file mode 100644 index 00000000..2f78caad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/lapis.json @@ -0,0 +1,7 @@ +{ + "asset_name": "lapis", + "description": { + "color": "#416E97", + "translate": "trim_material.minecraft.lapis" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/netherite.json b/data/generated/V26_2/data/minecraft/trim_material/netherite.json new file mode 100644 index 00000000..f787cde2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/netherite.json @@ -0,0 +1,10 @@ +{ + "asset_name": "netherite", + "description": { + "color": "#625859", + "translate": "trim_material.minecraft.netherite" + }, + "override_armor_assets": { + "minecraft:netherite": "netherite_darker" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/quartz.json b/data/generated/V26_2/data/minecraft/trim_material/quartz.json new file mode 100644 index 00000000..67588503 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/quartz.json @@ -0,0 +1,7 @@ +{ + "asset_name": "quartz", + "description": { + "color": "#E3D4C4", + "translate": "trim_material.minecraft.quartz" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/redstone.json b/data/generated/V26_2/data/minecraft/trim_material/redstone.json new file mode 100644 index 00000000..a2e7750b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/redstone.json @@ -0,0 +1,7 @@ +{ + "asset_name": "redstone", + "description": { + "color": "#971607", + "translate": "trim_material.minecraft.redstone" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_material/resin.json b/data/generated/V26_2/data/minecraft/trim_material/resin.json new file mode 100644 index 00000000..3798c0e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_material/resin.json @@ -0,0 +1,7 @@ +{ + "asset_name": "resin", + "description": { + "color": "#FC7812", + "translate": "trim_material.minecraft.resin" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/bolt.json b/data/generated/V26_2/data/minecraft/trim_pattern/bolt.json new file mode 100644 index 00000000..55989273 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/bolt.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:bolt", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.bolt" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/coast.json b/data/generated/V26_2/data/minecraft/trim_pattern/coast.json new file mode 100644 index 00000000..174e48e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/coast.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:coast", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.coast" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/dune.json b/data/generated/V26_2/data/minecraft/trim_pattern/dune.json new file mode 100644 index 00000000..09293865 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/dune.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:dune", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.dune" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/eye.json b/data/generated/V26_2/data/minecraft/trim_pattern/eye.json new file mode 100644 index 00000000..86265106 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/eye.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:eye", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/flow.json b/data/generated/V26_2/data/minecraft/trim_pattern/flow.json new file mode 100644 index 00000000..21ad7420 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/flow.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:flow", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.flow" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/host.json b/data/generated/V26_2/data/minecraft/trim_pattern/host.json new file mode 100644 index 00000000..b43cc5ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/host.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:host", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.host" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/raiser.json b/data/generated/V26_2/data/minecraft/trim_pattern/raiser.json new file mode 100644 index 00000000..448d93fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/raiser.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:raiser", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.raiser" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/rib.json b/data/generated/V26_2/data/minecraft/trim_pattern/rib.json new file mode 100644 index 00000000..0e77a83f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/rib.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:rib", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.rib" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/sentry.json b/data/generated/V26_2/data/minecraft/trim_pattern/sentry.json new file mode 100644 index 00000000..e32df2ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/sentry.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:sentry", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.sentry" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/shaper.json b/data/generated/V26_2/data/minecraft/trim_pattern/shaper.json new file mode 100644 index 00000000..9636aa24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/shaper.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:shaper", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.shaper" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/silence.json b/data/generated/V26_2/data/minecraft/trim_pattern/silence.json new file mode 100644 index 00000000..2c073608 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/silence.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:silence", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.silence" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/snout.json b/data/generated/V26_2/data/minecraft/trim_pattern/snout.json new file mode 100644 index 00000000..bf3686d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/snout.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:snout", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.snout" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/spire.json b/data/generated/V26_2/data/minecraft/trim_pattern/spire.json new file mode 100644 index 00000000..c57dc165 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/spire.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:spire", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.spire" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/tide.json b/data/generated/V26_2/data/minecraft/trim_pattern/tide.json new file mode 100644 index 00000000..9d6332dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/tide.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:tide", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.tide" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/vex.json b/data/generated/V26_2/data/minecraft/trim_pattern/vex.json new file mode 100644 index 00000000..231f7d36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/vex.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:vex", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.vex" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/ward.json b/data/generated/V26_2/data/minecraft/trim_pattern/ward.json new file mode 100644 index 00000000..bcdfcf77 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/ward.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:ward", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.ward" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/wayfinder.json b/data/generated/V26_2/data/minecraft/trim_pattern/wayfinder.json new file mode 100644 index 00000000..61838729 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/wayfinder.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:wayfinder", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.wayfinder" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/trim_pattern/wild.json b/data/generated/V26_2/data/minecraft/trim_pattern/wild.json new file mode 100644 index 00000000..18d392b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/trim_pattern/wild.json @@ -0,0 +1,7 @@ +{ + "asset_id": "minecraft:wild", + "decal": false, + "description": { + "translate": "trim_pattern.minecraft.wild" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json new file mode 100644 index 00000000..a2793937 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_boots.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json new file mode 100644 index 00000000..d352871b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_chestplate.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json new file mode 100644 index 00000000..914ede3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_helmet.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json new file mode 100644 index 00000000..8b5918d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/1/emerald_iron_leggings.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json new file mode 100644 index 00000000..7836697d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_boots.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:chainmail_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json new file mode 100644 index 00000000..24225f7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/2/emerald_chainmail_leggings.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:chainmail_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/diamond_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/diamond_emerald.json new file mode 100644 index 00000000..6f0216d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json new file mode 100644 index 00000000..d0b1dd2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_chestplate.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:chainmail_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json new file mode 100644 index 00000000..7c6dcc3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_chainmail_helmet.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:chainmail_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_shield.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_shield.json new file mode 100644 index 00000000..c8b0c927 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/emerald_shield.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:shield" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json new file mode 100644 index 00000000..0c322b2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/3/lava_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:lava_bucket" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json new file mode 100644 index 00000000..cef7ece5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_boots.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_boots", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_boots" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json new file mode 100644 index 00000000..06502a1d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/4/emerald_enchanted_diamond_leggings.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_leggings", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_leggings" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 14.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json new file mode 100644 index 00000000..4ef98538 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_chestplate.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_chestplate", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_chestplate" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 16.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json b/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json new file mode 100644 index 00000000..82365657 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/armorer/5/emerald_enchanted_diamond_helmet.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_helmet", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_helmet" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/chicken_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/chicken_emerald.json new file mode 100644 index 00000000..f971ccee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/chicken_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 14.0, + "id": "minecraft:chicken" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json new file mode 100644 index 00000000..c982c19c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/emerald_rabbit_stew.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:rabbit_stew" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json new file mode 100644 index 00000000..1eba7380 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/porkchop_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:porkchop" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json new file mode 100644 index 00000000..33bf8ded --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/1/rabbit_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:rabbit" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/coal_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/coal_emerald.json new file mode 100644 index 00000000..ffb1bdce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json new file mode 100644 index 00000000..7d222490 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_chicken.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:cooked_chicken" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json new file mode 100644 index 00000000..5aac709c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/2/emerald_cooked_porkchop.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 5, + "id": "minecraft:cooked_porkchop" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/beef_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/beef_emerald.json new file mode 100644 index 00000000..f4c52e82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/beef_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:beef" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/mutton_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/mutton_emerald.json new file mode 100644 index 00000000..5e743742 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/3/mutton_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:mutton" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json new file mode 100644 index 00000000..cd0100c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/4/dried_kelp_block_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:dried_kelp_block" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json new file mode 100644 index 00000000..0a805f53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/butcher/5/sweet_berries_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:sweet_berries" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/emerald_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/emerald_map.json new file mode 100644 index 00000000..e2736ef5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/emerald_map.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/paper_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/paper_emerald.json new file mode 100644 index 00000000..f586d1b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/1/paper_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:paper" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json new file mode 100644 index 00000000..56f8ed42 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_jungle_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:jungle_temple", + "destination": "minecraft:on_jungle_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.explorer_jungle" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:swamp", + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json new file mode 100644 index 00000000..430f62f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_explorer_swamp_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:swamp_hut", + "destination": "minecraft:on_swamp_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.explorer_swamp" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json new file mode 100644 index 00000000..73469b4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_desert_map.json @@ -0,0 +1,54 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_desert", + "destination": "minecraft:on_desert_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_desert" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:savanna", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json new file mode 100644 index 00000000..f55b1541 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_plains_map.json @@ -0,0 +1,56 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_plains", + "destination": "minecraft:on_plains_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_plains" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow", + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json new file mode 100644 index 00000000..8194d75e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_savanna_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_savanna", + "destination": "minecraft:on_savanna_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_savanna" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json new file mode 100644 index 00000000..e0c00167 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_snowy_map.json @@ -0,0 +1,54 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_snowy", + "destination": "minecraft:on_snowy_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_snowy" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json new file mode 100644 index 00000000..d233d9d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/emerald_and_compass_village_taiga_map.json @@ -0,0 +1,55 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:village_taiga", + "destination": "minecraft:on_taiga_village_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.village_taiga" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:swamp", + "minecraft:snow", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json new file mode 100644 index 00000000..fce059e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/2/glass_pane_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 11.0, + "id": "minecraft:glass_pane" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/compass_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/compass_emerald.json new file mode 100644 index 00000000..47a2ba5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/compass_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:compass" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json new file mode 100644 index 00000000..b504fbb8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_ocean_explorer_map.json @@ -0,0 +1,42 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:monument", + "destination": "minecraft:on_ocean_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.monument" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json new file mode 100644 index 00000000..afa8de87 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/3/emerald_and_compass_trial_chamber_map.json @@ -0,0 +1,42 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "decoration": "minecraft:trial_chambers", + "destination": "minecraft:on_trial_chambers_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.trial_chambers" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json new file mode 100644 index 00000000..416cf6e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_black_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:black_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json new file mode 100644 index 00000000..49bf28b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_blue_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:blue_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json new file mode 100644 index 00000000..447158ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_brown_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:brown_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json new file mode 100644 index 00000000..cc344f20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_cyan_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:cyan_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:snow" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json new file mode 100644 index 00000000..39f196d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_gray_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:gray_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:desert" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json new file mode 100644 index 00000000..488354c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_green_banner.json @@ -0,0 +1,25 @@ +{ + "gives": { + "id": "minecraft:green_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:savanna", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json new file mode 100644 index 00000000..20f19157 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_item_frame.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:item_frame" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json new file mode 100644 index 00000000..02264225 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_light_blue_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:light_blue_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json new file mode 100644 index 00000000..4b111a6f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_lime_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:lime_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:taiga" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json new file mode 100644 index 00000000..26a84f02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_magenta_banner.json @@ -0,0 +1,21 @@ +{ + "gives": { + "id": "minecraft:magenta_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json new file mode 100644 index 00000000..cf7c56a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_orange_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:orange_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:savanna", + "minecraft:desert" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json new file mode 100644 index 00000000..990415da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_pink_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:pink_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json new file mode 100644 index 00000000..9d55dae9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_purple_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:purple_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:swamp" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json new file mode 100644 index 00000000..5efd9b5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_red_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:red_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:savanna" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json new file mode 100644 index 00000000..871e5bfe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_white_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:white_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:snow", + "minecraft:plains" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json new file mode 100644 index 00000000..b58b34f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/4/emerald_yellow_banner.json @@ -0,0 +1,24 @@ +{ + "gives": { + "id": "minecraft:yellow_banner" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:plains", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json new file mode 100644 index 00000000..9d7691e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_and_compass_woodland_mansion_map.json @@ -0,0 +1,41 @@ +{ + "additional_wants": { + "id": "minecraft:compass" + }, + "given_item_modifiers": [ + { + "destination": "minecraft:on_woodland_explorer_maps", + "function": "minecraft:exploration_map", + "search_radius": 100 + }, + { + "function": "minecraft:set_name", + "name": { + "translate": "filled_map.mansion" + }, + "target": "item_name" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:filled_map", + "predicates": { + "minecraft:map_id": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:map" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 14.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json new file mode 100644 index 00000000..81a2f63a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cartographer/5/emerald_globe_banner_pattern.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:globe_banner_pattern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/emerald_redstone.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/emerald_redstone.json new file mode 100644 index 00000000..99677787 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/emerald_redstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:redstone" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json new file mode 100644 index 00000000..b00c74a4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/1/rotten_flesh_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 32.0, + "id": "minecraft:rotten_flesh" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json new file mode 100644 index 00000000..32bc421d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/emerald_lapis_lazuli.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lapis_lazuli" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json new file mode 100644 index 00000000..d33e290a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/2/gold_ingot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:gold_ingot" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json new file mode 100644 index 00000000..d52484ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/emerald_glowstone.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:glowstone" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json new file mode 100644 index 00000000..76d2260c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/3/rabbit_foot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:rabbit_foot" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json new file mode 100644 index 00000000..738ed342 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/emerald_ender_pearl.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:ender_pearl" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json new file mode 100644 index 00000000..4040e995 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/glass_bottle_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:glass_bottle" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json new file mode 100644 index 00000000..30d0363f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/4/turtle_scute_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:turtle_scute" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json new file mode 100644 index 00000000..b6062520 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/emerald_experience_bottle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:experience_bottle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json new file mode 100644 index 00000000..e315c118 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/cleric/5/nether_wart_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 22.0, + "id": "minecraft:nether_wart" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json new file mode 100644 index 00000000..13083fe2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/beetroot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:beetroot" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/carrot_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/carrot_emerald.json new file mode 100644 index 00000000..ed59e174 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/carrot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 22.0, + "id": "minecraft:carrot" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/emerald_bread.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/emerald_bread.json new file mode 100644 index 00000000..8395bb80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/emerald_bread.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 6, + "id": "minecraft:bread" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/potato_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/potato_emerald.json new file mode 100644 index 00000000..9408e32d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/potato_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:potato" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/wheat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/wheat_emerald.json new file mode 100644 index 00000000..7a44097b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/1/wheat_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:wheat" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_apple.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_apple.json new file mode 100644 index 00000000..7f706958 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_apple.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:apple" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json new file mode 100644 index 00000000..7214e5f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/emerald_pumpkin_pie.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:pumpkin_pie" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json new file mode 100644 index 00000000..a6f6f3c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/2/pumpkin_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:pumpkin" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/emerald_cookie.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/emerald_cookie.json new file mode 100644 index 00000000..f612c5c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/emerald_cookie.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 18, + "id": "minecraft:cookie" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/melon_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/melon_emerald.json new file mode 100644 index 00000000..4064ae99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/3/melon_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:melon" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_cake.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_cake.json new file mode 100644 index 00000000..f66dc47d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_cake.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cake" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json new file mode 100644 index 00000000..b2123ed8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/4/emerald_suspicious_stew.json @@ -0,0 +1,42 @@ +{ + "given_item_modifiers": [ + { + "effects": [ + { + "type": "minecraft:night_vision", + "duration": 5.0 + }, + { + "type": "minecraft:jump_boost", + "duration": 8.0 + }, + { + "type": "minecraft:weakness", + "duration": 7.0 + }, + { + "type": "minecraft:blindness", + "duration": 6.0 + }, + { + "type": "minecraft:poison", + "duration": 14.0 + }, + { + "type": "minecraft:saturation", + "duration": 7.0 + } + ], + "function": "minecraft:set_stew_effect" + } + ], + "gives": { + "id": "minecraft:suspicious_stew" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json new file mode 100644 index 00000000..0ed11265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_glistening_melon_slice.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:glistering_melon_slice" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json b/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json new file mode 100644 index 00000000..fdca11eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/farmer/5/emerald_golden_carrot.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:golden_carrot" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/coal_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/coal_emerald.json new file mode 100644 index 00000000..e4f062d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json new file mode 100644 index 00000000..7b2dfac4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/emerald_cod_bucket.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cod_bucket" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json new file mode 100644 index 00000000..057b31d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/raw_cod_and_emerald_cooked_cod.json @@ -0,0 +1,15 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 6, + "id": "minecraft:cooked_cod" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:cod" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/string_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/string_emerald.json new file mode 100644 index 00000000..2bf38270 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/1/string_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:string" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/cod_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/cod_emerald.json new file mode 100644 index 00000000..9016a127 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/cod_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:cod" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json new file mode 100644 index 00000000..519e5982 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/emerald_campfire.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:campfire" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json new file mode 100644 index 00000000..e90d6a43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/2/salmon_and_emerald_cooked_salmon.json @@ -0,0 +1,16 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 6, + "id": "minecraft:cooked_salmon" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:salmon" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json new file mode 100644 index 00000000..3c4e934e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/emerald_enchanted_fishing_rod.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:fishing_rod", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:fishing_rod" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json new file mode 100644 index 00000000..2cf93282 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/3/salmon_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 13.0, + "id": "minecraft:salmon" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json new file mode 100644 index 00000000..a7bf96de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/4/tropical_fish_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:tropical_fish" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json new file mode 100644 index 00000000..9c30c012 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/acacia_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:savanna" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:acacia_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json new file mode 100644 index 00000000..d30ad1d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/dark_oak_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:swamp" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:dark_oak_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json new file mode 100644 index 00000000..dc161565 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/jungle_boat_emerald.json @@ -0,0 +1,23 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:desert", + "minecraft:jungle" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:jungle_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json new file mode 100644 index 00000000..5f2c26fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/oak_boat_emerald.json @@ -0,0 +1,20 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": "minecraft:plains" + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:oak_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json new file mode 100644 index 00000000..16b9a767 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/pufferfish_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:pufferfish" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json new file mode 100644 index 00000000..5823218d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fisherman/5/spruce_boat_emerald.json @@ -0,0 +1,23 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "merchant_predicate": { + "condition": "minecraft:entity_properties", + "entity": "this", + "predicate": { + "minecraft:predicates": { + "minecraft:villager/variant": [ + "minecraft:taiga", + "minecraft:snow" + ] + } + } + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:spruce_boat" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json new file mode 100644 index 00000000..1e65462a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/emerald_arrow.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 16, + "id": "minecraft:arrow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json new file mode 100644 index 00000000..cb34e019 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/gravel_and_emerald_flint.json @@ -0,0 +1,15 @@ +{ + "additional_wants": { + "id": "minecraft:emerald" + }, + "gives": { + "count": 10, + "id": "minecraft:flint" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:gravel" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/stick_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/stick_emerald.json new file mode 100644 index 00000000..0b6a0116 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/1/stick_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 32.0, + "id": "minecraft:stick" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/emerald_bow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/emerald_bow.json new file mode 100644 index 00000000..f29f43ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/emerald_bow.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/flint_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/flint_emerald.json new file mode 100644 index 00000000..864252d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/2/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:flint" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json new file mode 100644 index 00000000..c2b288c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/emerald_crossbow.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:crossbow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/string_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/string_emerald.json new file mode 100644 index 00000000..cc46db4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/3/string_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 14.0, + "id": "minecraft:string" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json new file mode 100644 index 00000000..1c6636ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/emerald_enchanted_bow.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:bow", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:bow" + }, + "max_uses": 3.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/feather_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/feather_emerald.json new file mode 100644 index 00000000..4c51dc76 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/4/feather_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:feather" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json new file mode 100644 index 00000000..9990f631 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/arrow_and_emerald_tipped_arrow.json @@ -0,0 +1,23 @@ +{ + "additional_wants": { + "count": 5.0, + "id": "minecraft:arrow" + }, + "given_item_modifiers": [ + { + "function": "minecraft:set_random_potion", + "options": "#minecraft:tradeable" + } + ], + "gives": { + "count": 5, + "id": "minecraft:tipped_arrow" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json new file mode 100644 index 00000000..a438879a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/emerald_enchanted_crossbow.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:crossbow", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:crossbow" + }, + "max_uses": 3.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json new file mode 100644 index 00000000..268cbcee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/fletcher/5/tripwire_hook_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 8.0, + "id": "minecraft:tripwire_hook" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json new file mode 100644 index 00000000..947f746b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_chestplate.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_chestplate", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json new file mode 100644 index 00000000..8bb907ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/emerald_dyed_leather_leggings.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_leggings", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_leggings" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json new file mode 100644 index 00000000..1aeb91fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/1/leather_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:leather" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json new file mode 100644 index 00000000..7c59bdd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_boots.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_boots", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_boots" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json new file mode 100644 index 00000000..3a5dbcd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/emerald_dyed_leather_helmet.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_helmet", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json new file mode 100644 index 00000000..864252d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/2/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 26.0, + "id": "minecraft:flint" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json new file mode 100644 index 00000000..947f746b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/emerald_dyed_leather_chestplate.json @@ -0,0 +1,39 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_chestplate", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_chestplate" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 7.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json new file mode 100644 index 00000000..7147d26c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/3/rabbit_hide_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:rabbit_hide" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json new file mode 100644 index 00000000..75cc3c44 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/emerald_dyed_leather_horse_armor.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_horse_armor", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_horse_armor" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json new file mode 100644 index 00000000..30d0363f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/4/turtle_scute_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:turtle_scute" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json new file mode 100644 index 00000000..3a5dbcd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_dyed_leather_helmet.json @@ -0,0 +1,40 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_random_dyes", + "number_of_dyes": { + "type": "minecraft:sum", + "summands": [ + 1.0, + { + "type": "minecraft:binomial", + "n": 2.0, + "p": 0.75 + } + ] + } + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:leather_helmet", + "predicates": { + "minecraft:dyed_color": {} + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:leather_helmet" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json new file mode 100644 index 00000000..d2d98a3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/leatherworker/5/emerald_saddle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:saddle" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..bc36b321 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_and_book_enchanted_book.json @@ -0,0 +1,37 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json new file mode 100644 index 00000000..b39e637e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/emerald_bookshelf.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:bookshelf" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 9.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/paper_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/paper_emerald.json new file mode 100644 index 00000000..9cc409c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/1/paper_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:paper" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/book_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/book_emerald.json new file mode 100644 index 00000000..9df17f4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:book" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..7b9d522e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_and_book_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_lantern.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_lantern.json new file mode 100644 index 00000000..0b7fb1dc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/2/emerald_lantern.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lantern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json new file mode 100644 index 00000000..c221c3b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_and_book_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_glass.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_glass.json new file mode 100644 index 00000000..d9477418 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/emerald_glass.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:glass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json new file mode 100644 index 00000000..67ff59b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/3/ink_sac_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:ink_sac" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json new file mode 100644 index 00000000..a32d5599 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_book_and_enchanted_book.json @@ -0,0 +1,38 @@ +{ + "additional_wants": { + "id": "minecraft:book" + }, + "double_trade_price_enchantments": "#minecraft:double_trade_price", + "given_item_modifiers": [ + { + "function": "minecraft:enchant_randomly", + "include_additional_cost_component": true, + "only_compatible": false, + "options": "#minecraft:tradeable" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:enchanted_book", + "predicates": { + "minecraft:stored_enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:enchanted_book" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 0.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_clock.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_clock.json new file mode 100644 index 00000000..32b02901 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_clock.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:clock" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_compass.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_compass.json new file mode 100644 index 00000000..d1b0380a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/emerald_compass.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:compass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json new file mode 100644 index 00000000..c39aef6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/4/writable_book_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:writable_book" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json new file mode 100644 index 00000000..0fb86285 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_red_candle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_candle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json b/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json new file mode 100644 index 00000000..b965d61f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/librarian/5/emerald_yellow_candle.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_candle" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json new file mode 100644 index 00000000..bf58ea5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/1/clay_ball_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 10.0, + "id": "minecraft:clay_ball" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/1/emerald_brick.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/1/emerald_brick.json new file mode 100644 index 00000000..a62bc329 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/1/emerald_brick.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 10, + "id": "minecraft:brick" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json new file mode 100644 index 00000000..fe5a96b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/2/emerald_chiseled_stone_bricks.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:chiseled_stone_bricks" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/2/stone_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/2/stone_emerald.json new file mode 100644 index 00000000..501f55aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/2/stone_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 20.0, + "id": "minecraft:stone" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/andesite_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/andesite_emerald.json new file mode 100644 index 00000000..d6ab6180 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/andesite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:andesite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/diorite_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/diorite_emerald.json new file mode 100644 index 00000000..d151014d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/diorite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:diorite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json new file mode 100644 index 00000000..4a67db41 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_dripstone_block.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:dripstone_block" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json new file mode 100644 index 00000000..fb893d58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_andesite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_andesite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json new file mode 100644 index 00000000..5522757b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_diorite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_diorite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json new file mode 100644 index 00000000..dfb5f698 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/emerald_polished_granite.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:polished_granite" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/3/granite_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/granite_emerald.json new file mode 100644 index 00000000..3f3ebeee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/3/granite_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 16.0, + "id": "minecraft:granite" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json new file mode 100644 index 00000000..73e7808e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json new file mode 100644 index 00000000..21e5d8ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_black_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json new file mode 100644 index 00000000..51b8755b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json new file mode 100644 index 00000000..8963a785 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_blue_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json new file mode 100644 index 00000000..ec5562cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json new file mode 100644 index 00000000..1761cbee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_brown_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json new file mode 100644 index 00000000..500c1bef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json new file mode 100644 index 00000000..c5a3c185 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_cyan_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json new file mode 100644 index 00000000..71535611 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json new file mode 100644 index 00000000..bb3aa747 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_gray_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json new file mode 100644 index 00000000..85549bfe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json new file mode 100644 index 00000000..0057fab9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_green_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json new file mode 100644 index 00000000..515c7a82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json new file mode 100644 index 00000000..bae30da5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_blue_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json new file mode 100644 index 00000000..59a2a849 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json new file mode 100644 index 00000000..1f36015e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_light_gray_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json new file mode 100644 index 00000000..7ac50427 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json new file mode 100644 index 00000000..817e64d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_lime_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json new file mode 100644 index 00000000..75553ba6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json new file mode 100644 index 00000000..e757cd45 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_magenta_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json new file mode 100644 index 00000000..28fc0e9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json new file mode 100644 index 00000000..8a94d646 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_orange_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json new file mode 100644 index 00000000..43031869 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json new file mode 100644 index 00000000..fde8d544 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_pink_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json new file mode 100644 index 00000000..3c1f446e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json new file mode 100644 index 00000000..1ba4d032 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_purple_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json new file mode 100644 index 00000000..8505027e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json new file mode 100644 index 00000000..170e32a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_red_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json new file mode 100644 index 00000000..7745eda5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json new file mode 100644 index 00000000..415df2c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_white_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json new file mode 100644 index 00000000..8352557a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_glazed_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_glazed_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json new file mode 100644 index 00000000..3dcd50b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/emerald_yellow_terracotta.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_terracotta" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/4/quartz_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/quartz_emerald.json new file mode 100644 index 00000000..2efede53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/4/quartz_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:quartz" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json new file mode 100644 index 00000000..004ba79b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:quartz_block" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json b/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json new file mode 100644 index 00000000..bc96455f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/mason/5/emerald_quartz_pillar.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:quartz_pillar" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json new file mode 100644 index 00000000..4504aabe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/black_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:black_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json new file mode 100644 index 00000000..05ba1e99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/brown_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:brown_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/emerald_shears.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/emerald_shears.json new file mode 100644 index 00000000..b1a43e9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/emerald_shears.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:shears" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json new file mode 100644 index 00000000..9ac01f62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/gray_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:gray_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json new file mode 100644 index 00000000..5c720e27 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/1/white_wool_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 18.0, + "id": "minecraft:white_wool" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json new file mode 100644 index 00000000..31812ec8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/black_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:black_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json new file mode 100644 index 00000000..f35e7ceb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:black_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json new file mode 100644 index 00000000..aabda9e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_black_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:black_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json new file mode 100644 index 00000000..f2411b8e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:blue_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json new file mode 100644 index 00000000..f5e75b88 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_blue_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json new file mode 100644 index 00000000..922794e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:brown_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json new file mode 100644 index 00000000..864b84da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_brown_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brown_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json new file mode 100644 index 00000000..c04276ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:cyan_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json new file mode 100644 index 00000000..a98104d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_cyan_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cyan_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json new file mode 100644 index 00000000..f2e67e17 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:gray_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json new file mode 100644 index 00000000..39800d6c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_gray_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:gray_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json new file mode 100644 index 00000000..26af7fb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:green_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json new file mode 100644 index 00000000..6c9b7c52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_green_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:green_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json new file mode 100644 index 00000000..e53ee02a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:light_blue_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json new file mode 100644 index 00000000..5f015989 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_blue_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_blue_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json new file mode 100644 index 00000000..2da839f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:light_gray_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json new file mode 100644 index 00000000..35a962df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_light_gray_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:light_gray_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json new file mode 100644 index 00000000..e71c44ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:lime_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json new file mode 100644 index 00000000..4b436880 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_lime_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:lime_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json new file mode 100644 index 00000000..2a6bdee1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:magenta_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json new file mode 100644 index 00000000..216654be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_magenta_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:magenta_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json new file mode 100644 index 00000000..ed68f068 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:orange_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json new file mode 100644 index 00000000..e2798bf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_orange_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:orange_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json new file mode 100644 index 00000000..12ebc19a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:pink_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json new file mode 100644 index 00000000..0489a2e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_pink_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pink_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json new file mode 100644 index 00000000..18588940 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:purple_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json new file mode 100644 index 00000000..538934b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_purple_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:purple_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json new file mode 100644 index 00000000..36873d69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:red_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json new file mode 100644 index 00000000..40f55341 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_red_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:red_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json new file mode 100644 index 00000000..112b8252 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:white_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json new file mode 100644 index 00000000..cf151b21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_white_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:white_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json new file mode 100644 index 00000000..de13011a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_carpet.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:yellow_carpet" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json new file mode 100644 index 00000000..70f283d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/emerald_yellow_wool.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:yellow_wool" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json new file mode 100644 index 00000000..94df51ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/gray_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:gray_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json new file mode 100644 index 00000000..54840418 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/light_blue_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:light_blue_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json new file mode 100644 index 00000000..eab23690 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/lime_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:lime_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json new file mode 100644 index 00000000..e00f92e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/2/white_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:white_dye" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json new file mode 100644 index 00000000..119be50d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_black_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:black_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json new file mode 100644 index 00000000..7bb9acf1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_blue_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:blue_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json new file mode 100644 index 00000000..2fc8501f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_brown_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:brown_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json new file mode 100644 index 00000000..0febaff2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_cyan_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cyan_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json new file mode 100644 index 00000000..6013e9f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_gray_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:gray_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json new file mode 100644 index 00000000..a863d130 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_green_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:green_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json new file mode 100644 index 00000000..249b4eda --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_blue_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_blue_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json new file mode 100644 index 00000000..b898e610 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_light_gray_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_gray_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json new file mode 100644 index 00000000..92b7e333 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_lime_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:lime_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json new file mode 100644 index 00000000..86e71b05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_magenta_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:magenta_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json new file mode 100644 index 00000000..ed84abb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_orange_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:orange_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json new file mode 100644 index 00000000..8b6d25f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_pink_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:pink_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json new file mode 100644 index 00000000..7f94490b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_purple_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:purple_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json new file mode 100644 index 00000000..f47715a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_red_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json new file mode 100644 index 00000000..2c501ac8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_white_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:white_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json new file mode 100644 index 00000000..9b4ebacd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/emerald_yellow_bed.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_bed" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json new file mode 100644 index 00000000..2b316f8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/light_gray_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:light_gray_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json new file mode 100644 index 00000000..11b7f4c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/orange_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:orange_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json new file mode 100644 index 00000000..eb4ae654 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/pink_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:pink_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json new file mode 100644 index 00000000..6d188395 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/red_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:red_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json new file mode 100644 index 00000000..700b02d5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/3/yellow_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:yellow_dye" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json new file mode 100644 index 00000000..4672a43b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/blue_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:blue_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json new file mode 100644 index 00000000..721e83fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/brown_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:brown_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json new file mode 100644 index 00000000..79131b3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/cyan_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:cyan_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json new file mode 100644 index 00000000..30da9a07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_black_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:black_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json new file mode 100644 index 00000000..ef24b484 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_blue_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:blue_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json new file mode 100644 index 00000000..1f1d00ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_brown_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:brown_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json new file mode 100644 index 00000000..73d504e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_cyan_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:cyan_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json new file mode 100644 index 00000000..bf3e84a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_gray_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:gray_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json new file mode 100644 index 00000000..ac11236d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_green_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:green_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json new file mode 100644 index 00000000..758460d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_blue_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_blue_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json new file mode 100644 index 00000000..6135a66a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_light_gray_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:light_gray_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json new file mode 100644 index 00000000..09c3fe26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_lime_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:lime_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json new file mode 100644 index 00000000..5763aed3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_magenta_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:magenta_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json new file mode 100644 index 00000000..258c0302 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_orange_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:orange_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json new file mode 100644 index 00000000..a99bb284 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_pink_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:pink_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json new file mode 100644 index 00000000..4e371b8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_purple_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:purple_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json new file mode 100644 index 00000000..ba33447a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_red_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:red_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json new file mode 100644 index 00000000..486d9cb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_white_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:white_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json new file mode 100644 index 00000000..43264944 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/emerald_yellow_banner.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:yellow_banner" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json new file mode 100644 index 00000000..474019ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/green_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:green_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json new file mode 100644 index 00000000..3d0995e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/magenta_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:magenta_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json new file mode 100644 index 00000000..963b0fe2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/4/purple_dye_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 12.0, + "id": "minecraft:purple_dye" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/shepherd/5/emerald_painting.json b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/5/emerald_painting.json new file mode 100644 index 00000000..f328d265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/shepherd/5/emerald_painting.json @@ -0,0 +1,13 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:painting" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/smith/1/coal_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/smith/1/coal_emerald.json new file mode 100644 index 00000000..ffb1bdce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/smith/1/coal_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 16.0, + "reputation_discount": 0.05, + "wants": { + "count": 15.0, + "id": "minecraft:coal" + }, + "xp": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/smith/2/emerald_bell.json b/data/generated/V26_2/data/minecraft/villager_trade/smith/2/emerald_bell.json new file mode 100644 index 00000000..00193edd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/smith/2/emerald_bell.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:bell" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 36.0, + "id": "minecraft:emerald" + }, + "xp": 5.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json new file mode 100644 index 00000000..cb9d7dce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/smith/2/iron_ingot_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:iron_ingot" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json new file mode 100644 index 00000000..e1a4b5e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_axe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_axe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json new file mode 100644 index 00000000..bc2e2369 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_hoe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_hoe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json new file mode 100644 index 00000000..7e64af98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_pickaxe.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_pickaxe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json new file mode 100644 index 00000000..8fa8259e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/1/emerald_stone_shovel.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:stone_shovel" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json new file mode 100644 index 00000000..6ca42afa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_diamond_hoe.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:diamond_hoe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json new file mode 100644 index 00000000..c046ed6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_axe.json @@ -0,0 +1,37 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json new file mode 100644 index 00000000..40c85262 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_pickaxe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_pickaxe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json new file mode 100644 index 00000000..9384e2ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/emerald_enchanted_iron_shovel.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_shovel", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_shovel" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + }, + "xp": 10.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json new file mode 100644 index 00000000..b0484ea7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/3/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 30.0, + "id": "minecraft:flint" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json new file mode 100644 index 00000000..06030b60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json new file mode 100644 index 00000000..f44b278c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_axe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json new file mode 100644 index 00000000..15c8d677 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/4/emerald_enchanted_diamond_shovel.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_shovel", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_shovel" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json new file mode 100644 index 00000000..1b1fccd1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/toolsmith/5/emerald_enchanted_diamond_pickaxe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_pickaxe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 13.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json new file mode 100644 index 00000000..67e48e7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/baked_potato_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:baked_potato" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json new file mode 100644 index 00000000..8046c39d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:acacia_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json new file mode 100644 index 00000000..39a75f46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_acacia_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:acacia_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_allium.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_allium.json new file mode 100644 index 00000000..5b9fa723 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_allium.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:allium" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json new file mode 100644 index 00000000..032239c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_azure_bluet.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:azure_bluet" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json new file mode 100644 index 00000000..46193a94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_beetroot_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:beetroot_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json new file mode 100644 index 00000000..91e8f598 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:birch_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json new file mode 100644 index 00000000..639ab413 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_birch_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:birch_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json new file mode 100644 index 00000000..5fcb2a5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_black_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:black_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json new file mode 100644 index 00000000..b5e8cd19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:blue_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json new file mode 100644 index 00000000..cb889e02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_ice.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:blue_ice" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "count": 6.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json new file mode 100644 index 00000000..2b490f64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_blue_orchid.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:blue_orchid" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json new file mode 100644 index 00000000..f39aac30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brain_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:brain_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json new file mode 100644 index 00000000..38ede856 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:brown_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json new file mode 100644 index 00000000..d3dfe6ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_brown_mushroom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:brown_mushroom" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json new file mode 100644 index 00000000..f0969b02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_bubble_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:bubble_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json new file mode 100644 index 00000000..f1031026 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cactus.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cactus" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json new file mode 100644 index 00000000..f0199a5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:cherry_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json new file mode 100644 index 00000000..56625bf5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cherry_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:cherry_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json new file mode 100644 index 00000000..c22ad824 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cornflower.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:cornflower" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json new file mode 100644 index 00000000..ac993de7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_cyan_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:cyan_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json new file mode 100644 index 00000000..c0dc174f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dandelion.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:dandelion" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json new file mode 100644 index 00000000..d4f30fd4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:dark_oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json new file mode 100644 index 00000000..7ac83b43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dark_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:dark_oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json new file mode 100644 index 00000000..25ec2364 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_dry_tall_grass.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:tall_dry_grass" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json new file mode 100644 index 00000000..e3193a09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_enchanted_iron_pickaxe.json @@ -0,0 +1,36 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_pickaxe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_pickaxe" + }, + "max_uses": 1.0, + "reputation_discount": 0.2, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fern.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fern.json new file mode 100644 index 00000000..2c520485 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fern.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:fern" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json new file mode 100644 index 00000000..72b4e962 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fire_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:fire_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json new file mode 100644 index 00000000..f188db90 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_firefly_bush.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:firefly_bush" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json new file mode 100644 index 00000000..0fa71121 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_fish_bucket.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:tropical_fish_bucket" + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json new file mode 100644 index 00000000..ec087022 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_glowstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:glowstone" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json new file mode 100644 index 00000000..cc1ae68c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_golden_dandelion.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:golden_dandelion" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json new file mode 100644 index 00000000..36b7755e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gray_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:gray_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json new file mode 100644 index 00000000..594f80f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_green_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:green_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json new file mode 100644 index 00000000..c1516eed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_gunpowder.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:gunpowder" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json new file mode 100644 index 00000000..a119f4e9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_horn_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:horn_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json new file mode 100644 index 00000000..67436f82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:jungle_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json new file mode 100644 index 00000000..9ffd3863 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_jungle_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:jungle_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json new file mode 100644 index 00000000..582c1bed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_kelp.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:kelp" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json new file mode 100644 index 00000000..6ac79031 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_blue_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:light_blue_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json new file mode 100644 index 00000000..8ac1c63e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_light_gray_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:light_gray_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json new file mode 100644 index 00000000..6a9f0e1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_of_the_valley.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:lily_of_the_valley" + }, + "max_uses": 7.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json new file mode 100644 index 00000000..1ca91e55 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lily_pad.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 5, + "id": "minecraft:lily_pad" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json new file mode 100644 index 00000000..3583a16b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_lime_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:lime_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json new file mode 100644 index 00000000..9e3a1c7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_long_invisibility_potion.json @@ -0,0 +1,17 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:set_potion", + "id": "minecraft:long_invisibility" + } + ], + "gives": { + "id": "minecraft:potion" + }, + "max_uses": 1.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json new file mode 100644 index 00000000..373bfc3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_magenta_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:magenta_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json new file mode 100644 index 00000000..5c1499b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:mangrove_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json new file mode 100644 index 00000000..1dd8c399 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_mangrove_propagule.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:mangrove_propagule" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json new file mode 100644 index 00000000..c3f0b676 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_melon_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:melon_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json new file mode 100644 index 00000000..bc5f8e21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_moss_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:moss_block" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json new file mode 100644 index 00000000..bc1ed865 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_name_tag.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:name_tag" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json new file mode 100644 index 00000000..22bf7efd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_nautilus_shell.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:nautilus_shell" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json new file mode 100644 index 00000000..2c0c20c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json new file mode 100644 index 00000000..6f5b67cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json new file mode 100644 index 00000000..d0209a86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_open_eyeblossom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:open_eyeblossom" + }, + "max_uses": 7.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json new file mode 100644 index 00000000..9d341688 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:orange_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json new file mode 100644 index 00000000..76a8c6ab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_orange_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:orange_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json new file mode 100644 index 00000000..dd138f6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_oxeye_daisy.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:oxeye_daisy" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json new file mode 100644 index 00000000..2065c886 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_packed_ice.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:packed_ice" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json new file mode 100644 index 00000000..f3ae4bf8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_hanging_moss.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:pale_hanging_moss" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json new file mode 100644 index 00000000..ab836036 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_moss_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:pale_moss_block" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json new file mode 100644 index 00000000..bceeef69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:pale_oak_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json new file mode 100644 index 00000000..71e1e139 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pale_oak_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:pale_oak_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json new file mode 100644 index 00000000..79e5e616 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:pink_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json new file mode 100644 index 00000000..3840b561 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pink_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pink_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json new file mode 100644 index 00000000..e1585d16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_podzol.json @@ -0,0 +1,12 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:podzol" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json new file mode 100644 index 00000000..fdd6d311 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pointed_dripstone.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:pointed_dripstone" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json new file mode 100644 index 00000000..441099f4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_poppy.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:poppy" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json new file mode 100644 index 00000000..b9508a2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pufferfish_bucket.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pufferfish_bucket" + }, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json new file mode 100644 index 00000000..5a04fead --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin.json @@ -0,0 +1,9 @@ +{ + "gives": { + "id": "minecraft:pumpkin" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json new file mode 100644 index 00000000..ee876771 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_pumpkin_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:pumpkin_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json new file mode 100644 index 00000000..2650ba8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_purple_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:purple_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json new file mode 100644 index 00000000..33db326c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:red_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json new file mode 100644 index 00000000..16cf92a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_mushroom.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:red_mushroom" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json new file mode 100644 index 00000000..7a14dde6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_sand.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 4, + "id": "minecraft:red_sand" + }, + "max_uses": 6.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json new file mode 100644 index 00000000..a6c3067a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_red_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:red_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json new file mode 100644 index 00000000..478bc81c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_rooted_dirt.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:rooted_dirt" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sand.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sand.json new file mode 100644 index 00000000..e1b1f7e0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sand.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:sand" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json new file mode 100644 index 00000000..6c857a16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sea_pickle.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:sea_pickle" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json new file mode 100644 index 00000000..c236c938 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_slime_ball.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:slime_ball" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "count": 4.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json new file mode 100644 index 00000000..70bade20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_small_dripleaf.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:small_dripleaf" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json new file mode 100644 index 00000000..9d8e074d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_log.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 8, + "id": "minecraft:spruce_log" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json new file mode 100644 index 00000000..a398ed51 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_spruce_sapling.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:spruce_sapling" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 5.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json new file mode 100644 index 00000000..7acee07c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sugar_cane.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:sugar_cane" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sulfur_spike.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sulfur_spike.json new file mode 100644 index 00000000..49926c83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_sulfur_spike.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:sulfur_spike" + }, + "max_uses": 5.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json new file mode 100644 index 00000000..24129e85 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_tube_coral_block.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:tube_coral_block" + }, + "max_uses": 8.0, + "reputation_discount": 0.05, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_vine.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_vine.json new file mode 100644 index 00000000..61a5c9b0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_vine.json @@ -0,0 +1,10 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:vine" + }, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json new file mode 100644 index 00000000..94001c9f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wheat_seeds.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:wheat_seeds" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json new file mode 100644 index 00000000..b0a50900 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:white_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json new file mode 100644 index 00000000..b809839b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_white_tulip.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:white_tulip" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json new file mode 100644 index 00000000..5c59b338 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_wildflowers.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:wildflowers" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json new file mode 100644 index 00000000..aeab8a98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/emerald_yellow_dye.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:yellow_dye" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json new file mode 100644 index 00000000..7ab98272 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/fermented_spider_eye_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 3, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:fermented_spider_eye" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json new file mode 100644 index 00000000..ca02b17a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/hay_block_emerald.json @@ -0,0 +1,10 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:hay_block" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json new file mode 100644 index 00000000..f821d50a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/milk_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:milk_bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json new file mode 100644 index 00000000..2e87c3ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bottle_emerald.json @@ -0,0 +1,15 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "components": { + "minecraft:potion_contents": { + "potion": "minecraft:water" + } + }, + "id": "minecraft:potion" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json new file mode 100644 index 00000000..a29810cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/wandering_trader/water_bucket_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "count": 2, + "id": "minecraft:emerald" + }, + "max_uses": 2.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:water_bucket" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json new file mode 100644 index 00000000..917a5dd6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_enchanted_iron_sword.json @@ -0,0 +1,37 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:iron_sword", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:iron_sword" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 2.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json new file mode 100644 index 00000000..f10b1919 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/1/emerald_iron_axe.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:iron_axe" + }, + "max_uses": 12.0, + "reputation_discount": 0.2, + "wants": { + "count": 3.0, + "id": "minecraft:emerald" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json new file mode 100644 index 00000000..62249fc5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/3/flint_emerald.json @@ -0,0 +1,12 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "count": 24.0, + "id": "minecraft:flint" + }, + "xp": 20.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json new file mode 100644 index 00000000..06030b60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/diamond_emerald.json @@ -0,0 +1,11 @@ +{ + "gives": { + "id": "minecraft:emerald" + }, + "max_uses": 12.0, + "reputation_discount": 0.05, + "wants": { + "id": "minecraft:diamond" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json new file mode 100644 index 00000000..f44b278c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/4/emerald_enchanted_diamond_axe.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_axe", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_axe" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 12.0, + "id": "minecraft:emerald" + }, + "xp": 15.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json new file mode 100644 index 00000000..54f826aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/villager_trade/weaponsmith/5/emerald_enchanted_diamond_sword.json @@ -0,0 +1,38 @@ +{ + "given_item_modifiers": [ + { + "function": "minecraft:enchant_with_levels", + "include_additional_cost_component": true, + "levels": { + "type": "minecraft:uniform", + "max": 19.0, + "min": 5.0 + }, + "options": "#minecraft:on_traded_equipment" + }, + { + "function": "minecraft:filtered", + "item_filter": { + "items": "minecraft:diamond_sword", + "predicates": { + "minecraft:enchantments": [ + {} + ] + } + }, + "on_fail": { + "function": "minecraft:discard" + } + } + ], + "gives": { + "id": "minecraft:diamond_sword" + }, + "max_uses": 3.0, + "reputation_discount": 0.2, + "wants": { + "count": 8.0, + "id": "minecraft:emerald" + }, + "xp": 30.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/angry.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/angry.json new file mode 100644 index 00000000..d40f8e5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/angry.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_angry.ambient", + "death_sound": "minecraft:entity.wolf_angry.death", + "growl_sound": "minecraft:entity.wolf_angry.growl", + "hurt_sound": "minecraft:entity.wolf_angry.hurt", + "pant_sound": "minecraft:entity.wolf_angry.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_angry.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/big.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/big.json new file mode 100644 index 00000000..f351344b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/big.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_big.ambient", + "death_sound": "minecraft:entity.wolf_big.death", + "growl_sound": "minecraft:entity.wolf_big.growl", + "hurt_sound": "minecraft:entity.wolf_big.hurt", + "pant_sound": "minecraft:entity.wolf_big.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_big.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/classic.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/classic.json new file mode 100644 index 00000000..19722b5c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/classic.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf.ambient", + "death_sound": "minecraft:entity.wolf.death", + "growl_sound": "minecraft:entity.wolf.growl", + "hurt_sound": "minecraft:entity.wolf.hurt", + "pant_sound": "minecraft:entity.wolf.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/cute.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/cute.json new file mode 100644 index 00000000..6c70f5be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/cute.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_cute.ambient", + "death_sound": "minecraft:entity.wolf_cute.death", + "growl_sound": "minecraft:entity.wolf_cute.growl", + "hurt_sound": "minecraft:entity.wolf_cute.hurt", + "pant_sound": "minecraft:entity.wolf_cute.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_cute.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/grumpy.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/grumpy.json new file mode 100644 index 00000000..4defaebf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/grumpy.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_grumpy.ambient", + "death_sound": "minecraft:entity.wolf_grumpy.death", + "growl_sound": "minecraft:entity.wolf_grumpy.growl", + "hurt_sound": "minecraft:entity.wolf_grumpy.hurt", + "pant_sound": "minecraft:entity.wolf_grumpy.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_grumpy.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/puglin.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/puglin.json new file mode 100644 index 00000000..4fd06e7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/puglin.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_puglin.ambient", + "death_sound": "minecraft:entity.wolf_puglin.death", + "growl_sound": "minecraft:entity.wolf_puglin.growl", + "hurt_sound": "minecraft:entity.wolf_puglin.hurt", + "pant_sound": "minecraft:entity.wolf_puglin.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_puglin.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_sound_variant/sad.json b/data/generated/V26_2/data/minecraft/wolf_sound_variant/sad.json new file mode 100644 index 00000000..6ef04a4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_sound_variant/sad.json @@ -0,0 +1,20 @@ +{ + "adult_sounds": { + "ambient_sound": "minecraft:entity.wolf_sad.ambient", + "death_sound": "minecraft:entity.wolf_sad.death", + "growl_sound": "minecraft:entity.wolf_sad.growl", + "hurt_sound": "minecraft:entity.wolf_sad.hurt", + "pant_sound": "minecraft:entity.wolf_sad.pant", + "step_sound": "minecraft:entity.wolf.step", + "whine_sound": "minecraft:entity.wolf_sad.whine" + }, + "baby_sounds": { + "ambient_sound": "minecraft:entity.baby_wolf.ambient", + "death_sound": "minecraft:entity.baby_wolf.death", + "growl_sound": "minecraft:entity.baby_wolf.growl", + "hurt_sound": "minecraft:entity.baby_wolf.hurt", + "pant_sound": "minecraft:entity.baby_wolf.pant", + "step_sound": "minecraft:entity.baby_wolf.step", + "whine_sound": "minecraft:entity.baby_wolf.whine" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/ashen.json b/data/generated/V26_2/data/minecraft/wolf_variant/ashen.json new file mode 100644 index 00000000..de853047 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/ashen.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_ashen_angry", + "tame": "minecraft:entity/wolf/wolf_ashen_tame", + "wild": "minecraft:entity/wolf/wolf_ashen" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_ashen_angry_baby", + "tame": "minecraft:entity/wolf/wolf_ashen_tame_baby", + "wild": "minecraft:entity/wolf/wolf_ashen_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:snowy_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/black.json b/data/generated/V26_2/data/minecraft/wolf_variant/black.json new file mode 100644 index 00000000..7af1c3da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/black.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_black_angry", + "tame": "minecraft:entity/wolf/wolf_black_tame", + "wild": "minecraft:entity/wolf/wolf_black" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_black_angry_baby", + "tame": "minecraft:entity/wolf/wolf_black_tame_baby", + "wild": "minecraft:entity/wolf/wolf_black_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_pine_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/chestnut.json b/data/generated/V26_2/data/minecraft/wolf_variant/chestnut.json new file mode 100644 index 00000000..3a943e0e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/chestnut.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_chestnut_angry", + "tame": "minecraft:entity/wolf/wolf_chestnut_tame", + "wild": "minecraft:entity/wolf/wolf_chestnut" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_chestnut_angry_baby", + "tame": "minecraft:entity/wolf/wolf_chestnut_tame_baby", + "wild": "minecraft:entity/wolf/wolf_chestnut_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:old_growth_spruce_taiga" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/pale.json b/data/generated/V26_2/data/minecraft/wolf_variant/pale.json new file mode 100644 index 00000000..b288f6e7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/pale.json @@ -0,0 +1,17 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_angry", + "tame": "minecraft:entity/wolf/wolf_tame", + "wild": "minecraft:entity/wolf/wolf" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_angry_baby", + "tame": "minecraft:entity/wolf/wolf_tame_baby", + "wild": "minecraft:entity/wolf/wolf_baby" + }, + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/rusty.json b/data/generated/V26_2/data/minecraft/wolf_variant/rusty.json new file mode 100644 index 00000000..f67b6a6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/rusty.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_rusty_angry", + "tame": "minecraft:entity/wolf/wolf_rusty_tame", + "wild": "minecraft:entity/wolf/wolf_rusty" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_rusty_angry_baby", + "tame": "minecraft:entity/wolf/wolf_rusty_tame_baby", + "wild": "minecraft:entity/wolf/wolf_rusty_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_jungle" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/snowy.json b/data/generated/V26_2/data/minecraft/wolf_variant/snowy.json new file mode 100644 index 00000000..1e38d100 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/snowy.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_snowy_angry", + "tame": "minecraft:entity/wolf/wolf_snowy_tame", + "wild": "minecraft:entity/wolf/wolf_snowy" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_snowy_angry_baby", + "tame": "minecraft:entity/wolf/wolf_snowy_tame_baby", + "wild": "minecraft:entity/wolf/wolf_snowy_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:grove" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/spotted.json b/data/generated/V26_2/data/minecraft/wolf_variant/spotted.json new file mode 100644 index 00000000..3ac1ea47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/spotted.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_spotted_angry", + "tame": "minecraft:entity/wolf/wolf_spotted_tame", + "wild": "minecraft:entity/wolf/wolf_spotted" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_spotted_angry_baby", + "tame": "minecraft:entity/wolf/wolf_spotted_tame_baby", + "wild": "minecraft:entity/wolf/wolf_spotted_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_savanna" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/striped.json b/data/generated/V26_2/data/minecraft/wolf_variant/striped.json new file mode 100644 index 00000000..89e5fcbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/striped.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_striped_angry", + "tame": "minecraft:entity/wolf/wolf_striped_tame", + "wild": "minecraft:entity/wolf/wolf_striped" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_striped_angry_baby", + "tame": "minecraft:entity/wolf/wolf_striped_tame_baby", + "wild": "minecraft:entity/wolf/wolf_striped_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:is_badlands" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/wolf_variant/woods.json b/data/generated/V26_2/data/minecraft/wolf_variant/woods.json new file mode 100644 index 00000000..56d1912e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/wolf_variant/woods.json @@ -0,0 +1,21 @@ +{ + "assets": { + "angry": "minecraft:entity/wolf/wolf_woods_angry", + "tame": "minecraft:entity/wolf/wolf_woods_tame", + "wild": "minecraft:entity/wolf/wolf_woods" + }, + "baby_assets": { + "angry": "minecraft:entity/wolf/wolf_woods_angry_baby", + "tame": "minecraft:entity/wolf/wolf_woods_tame_baby", + "wild": "minecraft:entity/wolf/wolf_woods_baby" + }, + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "minecraft:forest" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/world_clock/overworld.json b/data/generated/V26_2/data/minecraft/world_clock/overworld.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/world_clock/overworld.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/world_clock/the_end.json b/data/generated/V26_2/data/minecraft/world_clock/the_end.json new file mode 100644 index 00000000..9e26dfee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/world_clock/the_end.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/badlands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/badlands.json new file mode 100644 index 00000000..01bcc37d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/badlands.json @@ -0,0 +1,200 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.03, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/bamboo_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/biome/bamboo_jungle.json new file mode 100644 index 00000000..c565de8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/bamboo_jungle.json @@ -0,0 +1,216 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.bamboo_jungle" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo", + "minecraft:bamboo_vegetation", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 80 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/basalt_deltas.json b/data/generated/V26_2/data/minecraft/worldgen/biome/basalt_deltas.json new file mode 100644 index 00000000..a589bbac --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/basalt_deltas.json @@ -0,0 +1,101 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.basalt_deltas.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.basalt_deltas.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.basalt_deltas.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.basalt_deltas" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:white_ash" + }, + "probability": 0.118093334 + } + ], + "minecraft:visual/fog_color": "#685f70" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:delta", + "minecraft:small_basalt_columns", + "minecraft:large_basalt_columns" + ], + [], + [], + [ + "minecraft:basalt_blobs", + "minecraft:blackstone_blobs", + "minecraft:spring_delta", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed_double", + "minecraft:ore_gold_deltas", + "minecraft:ore_quartz_deltas", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 1, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 5, + "minCount": 2, + "weight": 100 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/beach.json b/data/generated/V26_2/data/minecraft/worldgen/biome/beach.json new file mode 100644 index 00000000..4f8f40c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/beach.json @@ -0,0 +1,162 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:turtle", + "maxCount": 5, + "minCount": 2, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/birch_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/birch_forest.json new file mode 100644 index 00000000..6f9e21cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/birch_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#7aa5ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.6, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", + "minecraft:trees_birch", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/cherry_grove.json b/data/generated/V26_2/data/minecraft/worldgen/biome/cherry_grove.json new file mode 100644 index 00000000..0da8bec4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/cherry_grove.json @@ -0,0 +1,184 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.cherry_grove" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#5db7ef" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "foliage_color": "#b6db61", + "grass_color": "#b6db61", + "water_color": "#5db7ef" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_plain", + "minecraft:flower_cherry", + "minecraft:trees_cherry" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:pig", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/cold_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/cold_ocean.json new file mode 100644 index 00000000..d67da3bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/cold_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_cold", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/crimson_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/crimson_forest.json new file mode 100644 index 00000000..76322997 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/crimson_forest.json @@ -0,0 +1,109 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.crimson_forest.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.crimson_forest.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.crimson_forest.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.crimson_forest" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:crimson_spore" + }, + "probability": 0.025 + } + ], + "minecraft:visual/fog_color": "#330303" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:weeping_vines", + "minecraft:crimson_fungi", + "minecraft:crimson_forest_vegetation" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:hoglin", + "maxCount": 4, + "minCount": 3, + "weight": 9 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 3, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/dark_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/dark_forest.json new file mode 100644 index 00000000..6c2c775d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/dark_forest.json @@ -0,0 +1,192 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "dry_foliage_color": "#7b5334", + "grass_color_modifier": "dark_forest", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:dark_forest_vegetation", + "minecraft:forest_flowers", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_leaf_litter", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/deep_cold_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_cold_ocean.json new file mode 100644 index 00000000..156960d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_cold_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep_cold", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 3 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/deep_dark.json b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_dark.json new file mode 100644 index 00000000..6181520e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_dark.json @@ -0,0 +1,96 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.deep_dark" + } + }, + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:sculk_vein", + "minecraft:sculk_patch_deep_dark" + ], + [], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/deep_frozen_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_frozen_ocean.json new file mode 100644 index 00000000..89fbea8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_frozen_ocean.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5, + "temperature_modifier": "frozen" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json new file mode 100644 index 00000000..51c20569 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json @@ -0,0 +1,220 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041633" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#45adf2" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep_warm", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 8 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 8 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/deep_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_ocean.json new file mode 100644 index 00000000..3757b79b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/deep_ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_deep", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/desert.json b/data/generated/V26_2/data/minecraft/worldgen/biome/desert.json new file mode 100644 index 00000000..72d9f33e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/desert.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.desert" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:desert_well" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_desert", + "minecraft:patch_dead_bush_2", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_desert", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_desert" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 12 + }, + { + "type": "minecraft:camel", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 19 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:husk", + "maxCount": 4, + "minCount": 4, + "weight": 80 + }, + { + "type": "minecraft:parched", + "maxCount": 4, + "minCount": 4, + "weight": 50 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/dripstone_caves.json b/data/generated/V26_2/data/minecraft/worldgen/biome/dripstone_caves.json new file mode 100644 index 00000000..a699ca38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/dripstone_caves.json @@ -0,0 +1,172 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.dripstone_caves" + } + }, + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:large_dripstone" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper_large", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:dripstone_cluster", + "minecraft:pointed_dripstone" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 4, + "minCount": 4, + "weight": 95 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/end_barrens.json b/data/generated/V26_2/data/minecraft/worldgen/biome/end_barrens.json new file mode 100644 index 00000000..8d3af01e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/end_barrens.json @@ -0,0 +1,28 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/end_highlands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/end_highlands.json new file mode 100644 index 00000000..4097fe4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/end_highlands.json @@ -0,0 +1,43 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_gateway_return" + ], + [], + [], + [], + [], + [ + "minecraft:chorus_plant" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/end_midlands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/end_midlands.json new file mode 100644 index 00000000..8d3af01e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/end_midlands.json @@ -0,0 +1,28 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/eroded_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/eroded_badlands.json new file mode 100644 index 00000000..01bcc37d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/eroded_badlands.json @@ -0,0 +1,200 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.03, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/flower_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/flower_forest.json new file mode 100644 index 00000000..bf57d7b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/flower_forest.json @@ -0,0 +1,195 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.flower_forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_forest_flowers", + "minecraft:trees_flower_forest", + "minecraft:flower_flower_forest", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/forest.json new file mode 100644 index 00000000..16d5ea30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/forest.json @@ -0,0 +1,196 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#79a6ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:trees_birch_and_oak_leaf_litter", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_ocean.json new file mode 100644 index 00000000..b73c8396 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_ocean.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:iceberg_packed", + "minecraft:iceberg_blue", + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:blue_ice" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 15 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.0, + "temperature_modifier": "frozen" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_peaks.json b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_peaks.json new file mode 100644 index 00000000..ff35db62 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_peaks.json @@ -0,0 +1,167 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.frozen_peaks" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#859dff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_river.json b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_river.json new file mode 100644 index 00000000..f6c4ddb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/frozen_river.json @@ -0,0 +1,194 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3938c9" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/grove.json b/data/generated/V26_2/data/minecraft/worldgen/biome/grove.json new file mode 100644 index 00000000..6be35462 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/grove.json @@ -0,0 +1,180 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.grove" + } + }, + "minecraft:visual/sky_color": "#81a0ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_grove", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:wolf", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 8 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 4 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/ice_spikes.json b/data/generated/V26_2/data/minecraft/worldgen/biome/ice_spikes.json new file mode 100644 index 00000000..bf846421 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/ice_spikes.json @@ -0,0 +1,179 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.07, + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [ + "minecraft:ice_spike", + "minecraft:ice_patch" + ], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/jagged_peaks.json b/data/generated/V26_2/data/minecraft/worldgen/biome/jagged_peaks.json new file mode 100644 index 00000000..0f226949 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/jagged_peaks.json @@ -0,0 +1,167 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.jagged_peaks" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#859dff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/jungle.json b/data/generated/V26_2/data/minecraft/worldgen/biome/jungle.json new file mode 100644 index 00000000..0761ad5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/jungle.json @@ -0,0 +1,216 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.jungle" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:bamboo_light", + "minecraft:trees_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:parrot", + "maxCount": 2, + "minCount": 1, + "weight": 40 + }, + { + "type": "minecraft:panda", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:ocelot", + "maxCount": 3, + "minCount": 1, + "weight": 2 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/lukewarm_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/lukewarm_ocean.json new file mode 100644 index 00000000..b0975c73 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/lukewarm_ocean.json @@ -0,0 +1,220 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041633" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#45adf2" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_warm", + "minecraft:kelp_warm" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 15 + }, + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 2, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/lush_caves.json b/data/generated/V26_2/data/minecraft/worldgen/biome/lush_caves.json new file mode 100644 index 00000000..338de57e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/lush_caves.json @@ -0,0 +1,178 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.lush_caves" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_clay", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:lush_caves_ceiling_vegetation", + "minecraft:cave_vines", + "minecraft:lush_caves_clay", + "minecraft:lush_caves_vegetation", + "minecraft:rooted_azalea_tree", + "minecraft:spore_blossom", + "minecraft:classic_vines_cave_feature" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [ + { + "type": "minecraft:axolotl", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/mangrove_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/biome/mangrove_swamp.json new file mode 100644 index 00000000..9db5edfb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/mangrove_swamp.json @@ -0,0 +1,198 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.swamp" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/fog_color": "#c0d8ff", + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#4d7a60", + "minecraft:visual/water_fog_end_distance": { + "argument": 0.85, + "modifier": "multiply" + } + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "dry_foliage_color": "#7b5334", + "foliage_color": "#8db127", + "grass_color_modifier": "swamp", + "water_color": "#3a7a6a" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_grass", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_mangrove", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:seagrass_swamp", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 70 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:bogged", + "maxCount": 4, + "minCount": 4, + "weight": 30 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/meadow.json b/data/generated/V26_2/data/minecraft/worldgen/biome/meadow.json new file mode 100644 index 00000000..ef659111 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/meadow.json @@ -0,0 +1,182 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.meadow" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#0e4ecf" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_grass_meadow", + "minecraft:flower_meadow", + "minecraft:trees_meadow", + "minecraft:wildflowers_meadow" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:donkey", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:rabbit", + "maxCount": 6, + "minCount": 2, + "weight": 2 + }, + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 2, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/mushroom_fields.json b/data/generated/V26_2/data/minecraft/worldgen/biome/mushroom_fields.json new file mode 100644 index 00000000..d3a2118d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/mushroom_fields.json @@ -0,0 +1,113 @@ +{ + "attributes": { + "minecraft:gameplay/can_pillager_patrol_spawn": false, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 1.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:mushroom_island_vegetation", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:mooshroom", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.9 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/nether_wastes.json b/data/generated/V26_2/data/minecraft/worldgen/biome/nether_wastes.json new file mode 100644 index 00000000..cbdcf9fe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/nether_wastes.json @@ -0,0 +1,113 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.nether_wastes.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.nether_wastes.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.nether_wastes.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.nether_wastes" + } + }, + "minecraft:visual/fog_color": "#330808" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:brown_mushroom_nether", + "minecraft:red_mushroom_nether", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 2 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + }, + { + "type": "minecraft:piglin", + "maxCount": 4, + "minCount": 4, + "weight": 15 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/ocean.json new file mode 100644 index 00000000..d2cf1f52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/ocean.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_normal", + "minecraft:kelp_cold" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:cod", + "maxCount": 6, + "minCount": 3, + "weight": 10 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_birch_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_birch_forest.json new file mode 100644 index 00000000..9673f7c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_birch_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.forest" + } + }, + "minecraft:visual/sky_color": "#7aa5ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.6, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:forest_flowers", + "minecraft:wildflowers_birch_forest", + "minecraft:birch_tall", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_forest", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_pine_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_pine_taiga.json new file mode 100644 index 00000000..6a224a75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_pine_taiga.json @@ -0,0 +1,212 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.old_growth_taiga" + } + }, + "minecraft:visual/sky_color": "#7ca3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_pine_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 25 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json new file mode 100644 index 00000000..8fab75c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json @@ -0,0 +1,212 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.old_growth_taiga" + } + }, + "minecraft:visual/sky_color": "#7da3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode", + "minecraft:forest_rock" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_old_growth_spruce_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga", + "minecraft:patch_dead_bush", + "minecraft:brown_mushroom_old_growth", + "minecraft:red_mushroom_old_growth", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/pale_garden.json b/data/generated/V26_2/data/minecraft/worldgen/biome/pale_garden.json new file mode 100644 index 00000000..29a155d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/pale_garden.json @@ -0,0 +1,163 @@ +{ + "attributes": { + "minecraft:audio/background_music": {}, + "minecraft:audio/music_volume": 0.0, + "minecraft:visual/fog_color": "#817770", + "minecraft:visual/sky_color": "#b9b9b9", + "minecraft:visual/water_fog_color": "#556980" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "dry_foliage_color": "#a0a69c", + "foliage_color": "#878d76", + "grass_color": "#778272", + "water_color": "#76889d" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:pale_garden_vegetation", + "minecraft:pale_moss_patch", + "minecraft:pale_garden_flowers", + "minecraft:flower_pale_garden", + "minecraft:patch_grass_forest", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/plains.json b/data/generated/V26_2/data/minecraft/worldgen/biome/plains.json new file mode 100644 index 00000000..18d3838b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/plains.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_bush", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/river.json b/data/generated/V26_2/data/minecraft/worldgen/biome/river.json new file mode 100644 index 00000000..32bcd5a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/river.json @@ -0,0 +1,195 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:seagrass_river" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 100 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:salmon", + "maxCount": 5, + "minCount": 1, + "weight": 5 + } + ], + "water_creature": [ + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/savanna.json b/data/generated/V26_2/data/minecraft/worldgen/biome/savanna.json new file mode 100644 index 00000000..ff682a5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/savanna.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/savanna_plateau.json b/data/generated/V26_2/data/minecraft/worldgen/biome/savanna_plateau.json new file mode 100644 index 00000000..5d79d69a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/savanna_plateau.json @@ -0,0 +1,219 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass", + "minecraft:trees_savanna", + "minecraft:flower_warm", + "minecraft:patch_grass_savanna", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:llama", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/small_end_islands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/small_end_islands.json new file mode 100644 index 00000000..435c4fb4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/small_end_islands.json @@ -0,0 +1,32 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [ + "minecraft:end_island_decorated" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_beach.json b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_beach.json new file mode 100644 index 00000000..97e85854 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_beach.json @@ -0,0 +1,155 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.05 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_plains.json b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_plains.json new file mode 100644 index 00000000..a2739d4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_plains.json @@ -0,0 +1,182 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7fa1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.07, + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_snowy", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:polar_bear", + "maxCount": 2, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 20 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:stray", + "maxCount": 4, + "minCount": 4, + "weight": 80 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_slopes.json b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_slopes.json new file mode 100644 index 00000000..f6563814 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_slopes.json @@ -0,0 +1,174 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.snowy_slopes" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#829fff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava", + "minecraft:spring_lava_frozen" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_pumpkin" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:goat", + "maxCount": 3, + "minCount": 1, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_taiga.json new file mode 100644 index 00000000..94c7f5b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/snowy_taiga.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#839eff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3d57d6" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_rare" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": -0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/soul_sand_valley.json b/data/generated/V26_2/data/minecraft/worldgen/biome/soul_sand_valley.json new file mode 100644 index 00000000..b1426a14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/soul_sand_valley.json @@ -0,0 +1,126 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.soul_sand_valley.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.soul_sand_valley.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.soul_sand_valley.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.soul_sand_valley" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:ash" + }, + "probability": 0.00625 + } + ], + "minecraft:visual/fog_color": "#1b4745" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [ + "minecraft:basalt_pillar" + ], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:patch_crimson_roots", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_soul_sand", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "minecraft:enderman": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:ghast": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:skeleton": { + "charge": 0.7, + "energy_budget": 0.15 + }, + "minecraft:strider": { + "charge": 0.7, + "energy_budget": 0.15 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 20 + }, + { + "type": "minecraft:ghast", + "maxCount": 4, + "minCount": 4, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/sparse_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/biome/sparse_jungle.json new file mode 100644 index 00000000..73ed818f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/sparse_jungle.json @@ -0,0 +1,202 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.sparse_jungle" + } + }, + "minecraft:visual/sky_color": "#77a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_sparse_jungle", + "minecraft:flower_warm", + "minecraft:patch_grass_jungle", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:vines", + "minecraft:patch_melon_sparse" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.95 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/stony_peaks.json b/data/generated/V26_2/data/minecraft/worldgen/biome/stony_peaks.json new file mode 100644 index 00000000..d2d076ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/stony_peaks.json @@ -0,0 +1,158 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.stony_peaks" + } + }, + "minecraft:visual/sky_color": "#76a8ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 1.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/stony_shore.json b/data/generated/V26_2/data/minecraft/worldgen/biome/stony_shore.json new file mode 100644 index 00000000..522f3d60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/stony_shore.json @@ -0,0 +1,155 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/sulfur_caves.json b/data/generated/V26_2/data/minecraft/worldgen/biome/sulfur_caves.json new file mode 100644 index 00000000..9195fa7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/sulfur_caves.json @@ -0,0 +1,163 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.sulfur_caves" + } + }, + "minecraft:visual/fog_color": "#8cb831", + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#17543c" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "grass_color": "#aba64f", + "water_color": "#34bf89" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface", + "minecraft:rooted_sulfur_spring", + "minecraft:sulfur_pool" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [ + "minecraft:sulfur_spike_cluster", + "minecraft:sulfur_spike" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:sulfur_cube", + "maxCount": 4, + "minCount": 2, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:skeleton", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 25 + }, + { + "type": "minecraft:cave_spider", + "maxCount": 1, + "minCount": 1, + "weight": 20 + }, + { + "type": "minecraft:zombie", + "maxCount": 2, + "minCount": 2, + "weight": 50 + }, + { + "type": "minecraft:enderman", + "maxCount": 1, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/sunflower_plains.json b/data/generated/V26_2/data/minecraft/worldgen/biome/sunflower_plains.json new file mode 100644 index 00000000..a0d75fa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/sunflower_plains.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#78a7ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.4, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_tall_grass_2", + "minecraft:patch_sunflower", + "minecraft:trees_plains", + "minecraft:flower_plains", + "minecraft:patch_grass_plain", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 5 + }, + { + "type": "minecraft:donkey", + "maxCount": 3, + "minCount": 1, + "weight": 1 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/swamp.json b/data/generated/V26_2/data/minecraft/worldgen/biome/swamp.json new file mode 100644 index 00000000..69225880 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/swamp.json @@ -0,0 +1,221 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.swamp" + } + }, + "minecraft:gameplay/increased_fire_burnout": true, + "minecraft:visual/sky_color": "#78a7ff", + "minecraft:visual/water_fog_color": "#232317", + "minecraft:visual/water_fog_end_distance": { + "argument": 0.85, + "modifier": "multiply" + } + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.9, + "effects": { + "dry_foliage_color": "#7b5334", + "foliage_color": "#6a7039", + "grass_color_modifier": "swamp", + "water_color": "#617b64" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:fossil_upper", + "minecraft:fossil_lower", + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_clay" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_swamp", + "minecraft:flower_swamp", + "minecraft:patch_grass_normal", + "minecraft:patch_dead_bush", + "minecraft:patch_waterlily", + "minecraft:brown_mushroom_swamp", + "minecraft:red_mushroom_swamp", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_swamp", + "minecraft:patch_pumpkin", + "minecraft:patch_firefly_bush_swamp", + "minecraft:patch_firefly_bush_near_water_swamp", + "minecraft:seagrass_swamp" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:frog", + "maxCount": 5, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 70 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:slime", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:bogged", + "maxCount": 4, + "minCount": 4, + "weight": 30 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/taiga.json b/data/generated/V26_2/data/minecraft/worldgen/biome/taiga.json new file mode 100644 index 00000000..ebf9ff26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/taiga.json @@ -0,0 +1,201 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da3ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.8, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:patch_large_fern", + "minecraft:trees_taiga", + "minecraft:flower_default", + "minecraft:patch_grass_taiga_2", + "minecraft:brown_mushroom_taiga", + "minecraft:red_mushroom_taiga", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:patch_berry_common" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:wolf", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:rabbit", + "maxCount": 3, + "minCount": 2, + "weight": 4 + }, + { + "type": "minecraft:fox", + "maxCount": 4, + "minCount": 2, + "weight": 8 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/the_end.json b/data/generated/V26_2/data/minecraft/worldgen/biome/the_end.json new file mode 100644 index 00000000..8f82e277 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/the_end.json @@ -0,0 +1,44 @@ +{ + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [ + "minecraft:end_spike" + ], + [], + [], + [], + [], + [], + [ + "minecraft:end_platform" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 10 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/the_void.json b/data/generated/V26_2/data/minecraft/worldgen/biome/the_void.json new file mode 100644 index 00000000..9a3231c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/the_void.json @@ -0,0 +1,38 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7ba4ff" + }, + "carvers": [], + "downfall": 0.5, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:void_start_platform" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/warm_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/biome/warm_ocean.json new file mode 100644 index 00000000..4e3f2505 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/warm_ocean.json @@ -0,0 +1,215 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "creative": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.creative" + }, + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.game" + }, + "underwater": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.under_water" + } + }, + "minecraft:visual/sky_color": "#7ba4ff", + "minecraft:visual/water_fog_color": "#041f33" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.5, + "effects": { + "water_color": "#43d5ee" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_water", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water", + "minecraft:warm_ocean_vegetation", + "minecraft:seagrass_warm", + "minecraft:sea_pickle" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [], + "misc": [], + "monster": [ + { + "type": "minecraft:drowned", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [ + { + "type": "minecraft:pufferfish", + "maxCount": 3, + "minCount": 1, + "weight": 15 + }, + { + "type": "minecraft:tropical_fish", + "maxCount": 8, + "minCount": 8, + "weight": 25 + } + ], + "water_creature": [ + { + "type": "minecraft:nautilus", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:squid", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:dolphin", + "maxCount": 2, + "minCount": 1, + "weight": 2 + } + ] + }, + "temperature": 0.5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/warped_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/warped_forest.json new file mode 100644 index 00000000..f3972d0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/warped_forest.json @@ -0,0 +1,104 @@ +{ + "attributes": { + "minecraft:audio/ambient_sounds": { + "additions": { + "sound": "minecraft:ambient.warped_forest.additions", + "tick_chance": 0.0111 + }, + "loop": "minecraft:ambient.warped_forest.loop", + "mood": { + "block_search_extent": 8, + "offset": 2.0, + "sound": "minecraft:ambient.warped_forest.mood", + "tick_delay": 6000 + } + }, + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.nether.warped_forest" + } + }, + "minecraft:visual/ambient_particles": [ + { + "particle": { + "type": "minecraft:warped_spore" + }, + "probability": 0.01428 + } + ], + "minecraft:visual/fog_color": "#1a051a" + }, + "carvers": "minecraft:nether_cave", + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [], + [], + [], + [], + [], + [], + [ + "minecraft:spring_open", + "minecraft:patch_fire", + "minecraft:patch_soul_fire", + "minecraft:glowstone_extra", + "minecraft:glowstone", + "minecraft:ore_magma", + "minecraft:spring_closed", + "minecraft:ore_gravel_nether", + "minecraft:ore_blackstone", + "minecraft:ore_gold_nether", + "minecraft:ore_quartz_nether", + "minecraft:ore_ancient_debris_large", + "minecraft:ore_debris_small" + ], + [], + [ + "minecraft:spring_lava", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:warped_fungi", + "minecraft:warped_forest_vegetation", + "minecraft:nether_sprouts", + "minecraft:twisting_vines" + ] + ], + "has_precipitation": false, + "spawn_costs": { + "minecraft:enderman": { + "charge": 1.0, + "energy_budget": 0.12 + } + }, + "spawners": { + "ambient": [], + "axolotls": [], + "creature": [ + { + "type": "minecraft:strider", + "maxCount": 2, + "minCount": 1, + "weight": 60 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 4, + "weight": 1 + } + ], + "underground_water_creature": [], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_forest.json b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_forest.json new file mode 100644 index 00000000..09f1d06e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_forest.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_forest", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_gravelly_hills.json b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_gravelly_hills.json new file mode 100644 index 00000000..1228ab07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_gravelly_hills.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_hills.json b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_hills.json new file mode 100644 index 00000000..1228ab07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_hills.json @@ -0,0 +1,191 @@ +{ + "attributes": { + "minecraft:visual/sky_color": "#7da2ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.3, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel", + "minecraft:ore_emerald" + ], + [ + "minecraft:ore_infested" + ], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_hills", + "minecraft:patch_bush", + "minecraft:flower_default", + "minecraft:patch_grass_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": true, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:llama", + "maxCount": 6, + "minCount": 4, + "weight": 5 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 0.2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_savanna.json new file mode 100644 index 00000000..84ba7b26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/windswept_savanna.json @@ -0,0 +1,206 @@ +{ + "attributes": { + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "downfall": 0.0, + "effects": { + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_windswept_savanna", + "minecraft:flower_default", + "minecraft:patch_grass_normal", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_pumpkin", + "minecraft:patch_sugar_cane", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:horse", + "maxCount": 6, + "minCount": 2, + "weight": 1 + }, + { + "type": "minecraft:donkey", + "maxCount": 1, + "minCount": 1, + "weight": 1 + }, + { + "type": "minecraft:armadillo", + "maxCount": 3, + "minCount": 2, + "weight": 10 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 90 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:zombie_horse", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/biome/wooded_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/biome/wooded_badlands.json new file mode 100644 index 00000000..c61c41c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/biome/wooded_badlands.json @@ -0,0 +1,207 @@ +{ + "attributes": { + "minecraft:audio/background_music": { + "default": { + "max_delay": 24000, + "min_delay": 12000, + "sound": "minecraft:music.overworld.badlands" + } + }, + "minecraft:gameplay/snow_golem_melts": true, + "minecraft:visual/sky_color": "#6eb1ff" + }, + "carvers": [ + "minecraft:cave", + "minecraft:cave_extra_underground", + "minecraft:canyon" + ], + "creature_spawn_probability": 0.04, + "downfall": 0.0, + "effects": { + "foliage_color": "#9e814d", + "grass_color": "#90814d", + "water_color": "#3f76e4" + }, + "features": [ + [], + [ + "minecraft:lake_lava_underground", + "minecraft:lake_lava_surface" + ], + [ + "minecraft:amethyst_geode" + ], + [ + "minecraft:monster_room", + "minecraft:monster_room_deep" + ], + [], + [], + [ + "minecraft:ore_dirt", + "minecraft:ore_gravel", + "minecraft:ore_granite_upper", + "minecraft:ore_granite_lower", + "minecraft:ore_diorite_upper", + "minecraft:ore_diorite_lower", + "minecraft:ore_andesite_upper", + "minecraft:ore_andesite_lower", + "minecraft:ore_tuff", + "minecraft:ore_coal_upper", + "minecraft:ore_coal_lower", + "minecraft:ore_iron_upper", + "minecraft:ore_iron_middle", + "minecraft:ore_iron_small", + "minecraft:ore_gold", + "minecraft:ore_gold_lower", + "minecraft:ore_redstone", + "minecraft:ore_redstone_lower", + "minecraft:ore_diamond", + "minecraft:ore_diamond_medium", + "minecraft:ore_diamond_large", + "minecraft:ore_diamond_buried", + "minecraft:ore_lapis", + "minecraft:ore_lapis_buried", + "minecraft:ore_copper", + "minecraft:underwater_magma", + "minecraft:ore_gold_extra", + "minecraft:disk_sand", + "minecraft:disk_clay", + "minecraft:disk_gravel" + ], + [], + [ + "minecraft:spring_water", + "minecraft:spring_lava" + ], + [ + "minecraft:glow_lichen", + "minecraft:trees_badlands", + "minecraft:patch_grass_badlands", + "minecraft:patch_dry_grass_badlands", + "minecraft:patch_dead_bush_badlands", + "minecraft:brown_mushroom_normal", + "minecraft:red_mushroom_normal", + "minecraft:patch_sugar_cane_badlands", + "minecraft:patch_pumpkin", + "minecraft:patch_cactus_decorated", + "minecraft:patch_firefly_bush_near_water" + ], + [ + "minecraft:freeze_top_layer" + ] + ], + "has_precipitation": false, + "spawn_costs": {}, + "spawners": { + "ambient": [ + { + "type": "minecraft:bat", + "maxCount": 8, + "minCount": 8, + "weight": 10 + } + ], + "axolotls": [], + "creature": [ + { + "type": "minecraft:sheep", + "maxCount": 4, + "minCount": 4, + "weight": 12 + }, + { + "type": "minecraft:pig", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:chicken", + "maxCount": 4, + "minCount": 4, + "weight": 10 + }, + { + "type": "minecraft:cow", + "maxCount": 4, + "minCount": 4, + "weight": 8 + }, + { + "type": "minecraft:armadillo", + "maxCount": 2, + "minCount": 1, + "weight": 6 + }, + { + "type": "minecraft:wolf", + "maxCount": 8, + "minCount": 4, + "weight": 2 + } + ], + "misc": [], + "monster": [ + { + "type": "minecraft:spider", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:zombie", + "maxCount": 4, + "minCount": 4, + "weight": 95 + }, + { + "type": "minecraft:zombie_villager", + "maxCount": 1, + "minCount": 1, + "weight": 5 + }, + { + "type": "minecraft:skeleton", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:creeper", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:slime", + "maxCount": 4, + "minCount": 4, + "weight": 100 + }, + { + "type": "minecraft:enderman", + "maxCount": 4, + "minCount": 1, + "weight": 10 + }, + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 5 + } + ], + "underground_water_creature": [ + { + "type": "minecraft:glow_squid", + "maxCount": 6, + "minCount": 4, + "weight": 10 + } + ], + "water_ambient": [], + "water_creature": [] + }, + "temperature": 2.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_carver/canyon.json b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/canyon.json new file mode 100644 index 00000000..0e00c48d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/canyon.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:canyon", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:warped_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.01, + "replaceable": "#minecraft:overworld_carver_replaceables", + "shape": { + "distance_factor": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.75 + }, + "horizontal_radius_factor": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.75 + }, + "thickness": { + "type": "minecraft:trapezoid", + "max": 6.0, + "min": 0.0, + "plateau": 2.0 + }, + "vertical_radius_center_factor": 0.0, + "vertical_radius_default_factor": 1.0, + "width_smoothness": 3 + }, + "vertical_rotation": { + "type": "minecraft:uniform", + "max_exclusive": 0.125, + "min_inclusive": -0.125 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 67 + }, + "min_inclusive": { + "absolute": 10 + } + }, + "yScale": 3.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave.json b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave.json new file mode 100644 index 00000000..5beb3f63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:crimson_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "max_exclusive": -0.4, + "min_inclusive": -1.0 + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.4, + "min_inclusive": 0.7 + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.15, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.3, + "min_inclusive": 0.8 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 180 + }, + "min_inclusive": { + "above_bottom": 8 + } + }, + "yScale": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave_extra_underground.json b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave_extra_underground.json new file mode 100644 index 00000000..bc1ac71b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/cave_extra_underground.json @@ -0,0 +1,63 @@ +{ + "type": "minecraft:cave", + "config": { + "debug_settings": { + "air_state": { + "Name": "minecraft:oak_button", + "Properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + "barrier_state": { + "Name": "minecraft:glass" + }, + "lava_state": { + "Name": "minecraft:orange_stained_glass" + }, + "water_state": { + "Name": "minecraft:candle", + "Properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + } + }, + "floor_level": { + "type": "minecraft:uniform", + "max_exclusive": -0.4, + "min_inclusive": -1.0 + }, + "horizontal_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.4, + "min_inclusive": 0.7 + }, + "lava_level": { + "above_bottom": 8 + }, + "probability": 0.07, + "replaceable": "#minecraft:overworld_carver_replaceables", + "vertical_radius_multiplier": { + "type": "minecraft:uniform", + "max_exclusive": 1.3, + "min_inclusive": 0.8 + }, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 47 + }, + "min_inclusive": { + "above_bottom": 8 + } + }, + "yScale": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_carver/nether_cave.json b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/nether_cave.json new file mode 100644 index 00000000..5cd88ba5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_carver/nether_cave.json @@ -0,0 +1,23 @@ +{ + "type": "minecraft:nether_cave", + "config": { + "floor_level": -0.7, + "horizontal_radius_multiplier": 1.0, + "lava_level": { + "above_bottom": 10 + }, + "probability": 0.2, + "replaceable": "#minecraft:nether_carver_replaceables", + "vertical_radius_multiplier": 1.0, + "y": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 1 + }, + "min_inclusive": { + "absolute": 0 + } + }, + "yScale": 0.5 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/acacia.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/acacia.json new file mode 100644 index 00000000..18be5c96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/acacia.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:acacia_foliage_placer", + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:acacia_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:forking_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 2 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:acacia_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/amethyst_geode.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/amethyst_geode.json new file mode 100644 index 00000000..842f0ce6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/amethyst_geode.json @@ -0,0 +1,80 @@ +{ + "type": "minecraft:geode", + "config": { + "blocks": { + "alternate_inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:budding_amethyst" + } + }, + "cannot_replace": "#minecraft:features_cannot_replace", + "filling_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:air" + } + }, + "inner_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:amethyst_block" + } + }, + "inner_placements": [ + { + "Name": "minecraft:small_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:medium_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:large_amethyst_bud", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "Name": "minecraft:amethyst_cluster", + "Properties": { + "facing": "up", + "waterlogged": "false" + } + } + ], + "invalid_blocks": "#minecraft:geode_invalid_blocks", + "middle_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:calcite" + } + }, + "outer_layer_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:smooth_basalt" + } + } + }, + "crack": { + "generate_crack_chance": 0.95 + }, + "invalid_blocks_threshold": 1, + "layers": {}, + "outer_wall_distance": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 4 + }, + "use_alternate_layer0_chance": 0.083 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/azalea_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/azalea_tree.json new file mode 100644 index 00000000..6f5bfeab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/azalea_tree.json @@ -0,0 +1,71 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rooted_dirt" + } + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 50, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:azalea_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + }, + "weight": 3 + }, + { + "data": { + "Name": "minecraft:flowering_azalea_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + }, + "weight": 1 + } + ] + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:bending_trunk_placer", + "base_height": 4, + "bend_length": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + }, + "height_rand_a": 2, + "height_rand_b": 0, + "min_height_for_leaves": 3 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json new file mode 100644 index 00000000..5ac3632f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_no_podzol.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:bamboo", + "config": { + "probability": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json new file mode 100644 index 00000000..308ada01 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_some_podzol.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:bamboo", + "config": { + "probability": 0.2 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json new file mode 100644 index 00000000..32eae08f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bamboo_vegetation.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": { + "feature": "minecraft:grass_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:podzol", + "offset": [ + 0, + -1, + 0 + ] + } + } + ] + } + } + ] + }, + "features": [ + { + "chance": 0.05, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.15, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.7, + "feature": "minecraft:mega_jungle_tree_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_blobs.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_blobs.json new file mode 100644 index 00000000..593df33e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_blobs.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + }, + "target": { + "Name": "minecraft:netherrack" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_pillar.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_pillar.json new file mode 100644 index 00000000..f32f9a66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/basalt_pillar.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:basalt_pillar", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/berry_bush.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/berry_bush.json new file mode 100644 index 00000000..f98acb6d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/berry_bush.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sweet_berry_bush", + "Properties": { + "age": "3" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch.json new file mode 100644 index 00000000..86cdd700 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002.json new file mode 100644 index 00000000..685b5feb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json new file mode 100644 index 00000000..aba86297 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_0002_leaf_litter.json @@ -0,0 +1,368 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_002.json new file mode 100644 index 00000000..1ab758da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_002.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_005.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_005.json new file mode 100644 index 00000000..5d37a476 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_bees_005.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json new file mode 100644 index 00000000..c2694c03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_leaf_litter.json @@ -0,0 +1,364 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_tall.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_tall.json new file mode 100644 index 00000000..ee8d6377 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/birch_tall.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:birch_bees_0002", + "features": [ + { + "chance": 0.00625, + "feature": "minecraft:fallen_super_birch_tree" + }, + { + "chance": 0.5, + "feature": "minecraft:super_birch_bees_0002" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_birch_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blackstone_blobs.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blackstone_blobs.json new file mode 100644 index 00000000..99b2568f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blackstone_blobs.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:netherrack_replace_blobs", + "config": { + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "state": { + "Name": "minecraft:blackstone" + }, + "target": { + "Name": "minecraft:netherrack" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blue_ice.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blue_ice.json new file mode 100644 index 00000000..d26c9f5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/blue_ice.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:blue_ice", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bonus_chest.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bonus_chest.json new file mode 100644 index 00000000..2e409dd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bonus_chest.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:bonus_chest", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/brown_mushroom.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/brown_mushroom.json new file mode 100644 index 00000000..f33c2bab --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/brown_mushroom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:brown_mushroom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bush.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bush.json new file mode 100644 index 00000000..73d41379 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cactus.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cactus.json new file mode 100644 index 00000000..2e6ee195 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cactus.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 3, + "min_inclusive": 1 + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + }, + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 3 + }, + { + "data": 1, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cactus_flower" + } + } + } + ], + "prioritize_tip": false + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine.json new file mode 100644 index 00000000..53979ce5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine.json @@ -0,0 +1,104 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "weight": 3 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 0 + }, + "weight": 10 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "true" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json new file mode 100644 index 00000000..9a0218a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cave_vine_in_moss.json @@ -0,0 +1,96 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "down", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 0 + }, + "weight": 5 + }, + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 1 + }, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines_plant", + "Properties": { + "berries": "true" + } + }, + "weight": 1 + } + ] + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "false" + } + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:cave_vines", + "Properties": { + "age": "0", + "berries": "true" + } + }, + "weight": 1 + } + ] + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 25, + "min_inclusive": 23 + } + } + } + ], + "prioritize_tip": true + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry.json new file mode 100644 index 00000000..166ab348 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry.json @@ -0,0 +1,98 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:cherry_foliage_placer", + "corner_hole_chance": 0.25, + "hanging_leaves_chance": 0.16666667, + "hanging_leaves_extension_chance": 0.33333334, + "height": 5, + "offset": 0, + "radius": 4, + "wide_bottom_layer_hole_chance": 0.25 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:cherry_trunk_placer", + "base_height": 7, + "branch_count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 1 + }, + { + "data": 2, + "weight": 1 + }, + { + "data": 3, + "weight": 1 + } + ] + }, + "branch_end_offset_from_top": { + "type": "minecraft:uniform", + "max_inclusive": 0, + "min_inclusive": -1 + }, + "branch_horizontal_length": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "branch_start_offset_from_top": { + "max_inclusive": -3, + "min_inclusive": -4 + }, + "height_rand_a": 1, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry_bees_005.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry_bees_005.json new file mode 100644 index 00000000..652716a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/cherry_bees_005.json @@ -0,0 +1,103 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:cherry_foliage_placer", + "corner_hole_chance": 0.25, + "hanging_leaves_chance": 0.16666667, + "hanging_leaves_extension_chance": 0.33333334, + "height": 5, + "offset": 0, + "radius": 4, + "wide_bottom_layer_hole_chance": 0.25 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:cherry_trunk_placer", + "base_height": 7, + "branch_count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 1 + }, + { + "data": 2, + "weight": 1 + }, + { + "data": 3, + "weight": 1 + } + ] + }, + "branch_end_offset_from_top": { + "type": "minecraft:uniform", + "max_inclusive": 0, + "min_inclusive": -1 + }, + "branch_horizontal_length": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "branch_start_offset_from_top": { + "max_inclusive": -3, + "min_inclusive": -4 + }, + "height_rand_a": 1, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:cherry_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/chorus_plant.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/chorus_plant.json new file mode 100644 index 00000000..7c7b9e33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/chorus_plant.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:chorus_plant", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json new file mode 100644 index 00000000..db6f05ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_pool_with_dripleaves.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:waterlogged_vegetation_patch", + "config": { + "depth": 3, + "extra_bottom_block_chance": 0.8, + "extra_edge_column_chance": 0.7, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "replaceable": "#minecraft:lush_ground_replaceable", + "surface": "floor", + "vegetation_chance": 0.1, + "vegetation_feature": { + "feature": "minecraft:dripleaf", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json new file mode 100644 index 00000000..e0120c02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/clay_with_dripleaves.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 3, + "extra_bottom_block_chance": 0.8, + "extra_edge_column_chance": 0.7, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "replaceable": "#minecraft:lush_ground_replaceable", + "surface": "floor", + "vegetation_chance": 0.05, + "vegetation_feature": { + "feature": "minecraft:dripleaf", + "placement": [] + }, + "vertical_range": 2, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json new file mode 100644 index 00000000..d40be6a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 87 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 11 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json new file mode 100644 index 00000000..bc5bc1d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_forest_vegetation_bonemeal.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 87 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 11 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus.json new file mode 100644 index 00000000..558dcf36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus.json @@ -0,0 +1,84 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:nether_wart_block" + }, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:crimson_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:crimson_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json new file mode 100644 index 00000000..18a41976 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_fungus_planted.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:nether_wart_block" + }, + "planted": true, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:crimson_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:crimson_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_roots.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_roots.json new file mode 100644 index 00000000..4fa03a60 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/crimson_roots.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:crimson_roots" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json new file mode 100644 index 00000000..ba26b1be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_forest_vegetation.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_leaf_litter", + "features": [ + { + "chance": 0.025, + "feature": { + "feature": "minecraft:huge_brown_mushroom", + "placement": [] + } + }, + { + "chance": 0.05, + "feature": { + "feature": "minecraft:huge_red_mushroom", + "placement": [] + } + }, + { + "chance": 0.6666667, + "feature": "minecraft:dark_oak_leaf_litter" + }, + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_leaf_litter" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_leaf_litter" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak.json new file mode 100644 index 00000000..36f83834 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json new file mode 100644 index 00000000..05fde70a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dark_oak_leaf_litter.json @@ -0,0 +1,364 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dark_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dead_bush.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dead_bush.json new file mode 100644 index 00000000..a29a0603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dead_bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dead_bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/delta.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/delta.json new file mode 100644 index 00000000..18e97973 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/delta.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:delta_feature", + "config": { + "contents": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "rim": { + "Name": "minecraft:magma_block" + }, + "rim_size": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "size": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/desert_well.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/desert_well.json new file mode 100644 index 00000000..f0f1ba22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/desert_well.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:desert_well", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_clay.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_clay.json new file mode 100644 index 00000000..b9f2731f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_clay.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 1, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:clay" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:clay" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_grass.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_grass.json new file mode 100644 index 00000000..0b736220 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_grass.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:rule_based_state_provider", + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + }, + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:solid", + "offset": [ + 0, + 1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water", + "offset": [ + 0, + 1, + 0 + ] + } + ] + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + } + ] + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:mud" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_gravel.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_gravel.json new file mode 100644 index 00000000..b773c845 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_gravel.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:gravel" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_sand.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_sand.json new file mode 100644 index 00000000..d359ec34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/disk_sand.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 2, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:rule_based_state_provider", + "fallback": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sand" + } + }, + "rules": [ + { + "if_true": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:air", + "offset": [ + 0, + -1, + 0 + ] + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sandstone" + } + } + } + ] + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripleaf.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripleaf.json new file mode 100644 index 00000000..027310a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripleaf.json @@ -0,0 +1,336 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:small_dripleaf", + "Properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + "weight": 1 + } + ] + } + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "east", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "west", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "south", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + }, + "weight": 2 + }, + { + "data": 0, + "weight": 1 + } + ] + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf_stem", + "Properties": { + "facing": "north", + "waterlogged": "false" + } + } + } + }, + { + "height": 1, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:big_dripleaf", + "Properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + } + } + } + ], + "prioritize_tip": true + } + }, + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripstone_cluster.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripstone_cluster.json new file mode 100644 index 00000000..c4e398b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dripstone_cluster.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:speleothem_cluster", + "config": { + "base_block": { + "Name": "minecraft:dripstone_block" + }, + "chance_of_speleothem_at_max_distance_from_center": 0.1, + "density": { + "type": "minecraft:uniform", + "max_exclusive": 0.7, + "min_inclusive": 0.3 + }, + "floor_to_ceiling_search_range": 12, + "height": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 3 + }, + "height_deviation": 3, + "max_distance_from_center_affecting_height_bias": 8, + "max_distance_from_edge_affecting_chance_of_speleothem": 3, + "max_stalagmite_stalactite_height_diff": 1, + "pointed_block": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 8, + "min_inclusive": 2 + }, + "replaceable_blocks": "#minecraft:dripstone_replaceable_blocks", + "speleothem_block_layer_thickness": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "wetness": { + "type": "minecraft:clamped_normal", + "deviation": 0.3, + "max": 0.9, + "mean": 0.1, + "min": 0.1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dry_grass.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dry_grass.json new file mode 100644 index 00000000..2106a87e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/dry_grass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_dry_grass" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:tall_dry_grass" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json new file mode 100644 index 00000000..34e7d25f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_delayed.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:end_gateway", + "config": { + "exact": false + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_return.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_return.json new file mode 100644 index 00000000..664a6c1a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_gateway_return.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:end_gateway", + "config": { + "exact": true, + "exit": [ + 100, + 50, + 0 + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_island.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_island.json new file mode 100644 index 00000000..af26c1c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_island.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:end_island", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_platform.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_platform.json new file mode 100644 index 00000000..8a622fc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_platform.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:end_platform", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_spike.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_spike.json new file mode 100644 index 00000000..c82f6833 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/end_spike.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:end_spike", + "config": { + "spikes": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json new file mode 100644 index 00000000..1f95f2b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_birch_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 8, + "min_inclusive": 5 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json new file mode 100644 index 00000000..29cfe152 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_jungle_tree.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 11, + "min_inclusive": 4 + }, + "stump_decorators": [ + { + "type": "minecraft:trunk_vine" + } + ], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json new file mode 100644 index 00000000..59e49f03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_oak_tree.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + }, + "stump_decorators": [ + { + "type": "minecraft:trunk_vine" + } + ], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json new file mode 100644 index 00000000..30113ea3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_spruce_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 10, + "min_inclusive": 6 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json new file mode 100644 index 00000000..a189ea4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fallen_super_birch_tree.json @@ -0,0 +1,46 @@ +{ + "type": "minecraft:fallen_tree", + "config": { + "log_decorators": [ + { + "type": "minecraft:attached_to_logs", + "block_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:red_mushroom" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:brown_mushroom" + }, + "weight": 1 + } + ] + }, + "directions": [ + "up" + ], + "probability": 0.1 + } + ], + "log_length": { + "type": "minecraft:uniform", + "max_inclusive": 15, + "min_inclusive": 5 + }, + "stump_decorators": [], + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak.json new file mode 100644 index 00000000..7a237937 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak.json @@ -0,0 +1,65 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json new file mode 100644 index 00000000..9e5b6b7c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..de1a8482 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_0002_leaf_litter.json @@ -0,0 +1,371 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json new file mode 100644 index 00000000..5937994d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_002.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json new file mode 100644 index 00000000..00d896b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_bees_005.json @@ -0,0 +1,70 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json new file mode 100644 index 00000000..9be15bb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fancy_oak_leaf_litter.json @@ -0,0 +1,367 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:fancy_foliage_placer", + "height": 4, + "offset": 4, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "min_clipped_height": 4, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:fancy_trunk_placer", + "base_height": 3, + "height_rand_a": 11, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/firefly_bush.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/firefly_bush.json new file mode 100644 index 00000000..650524b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/firefly_bush.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:firefly_bush" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_cherry.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_cherry.json new file mode 100644 index 00000000..55427ee4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_cherry.json @@ -0,0 +1,170 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "north", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "east", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "south", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:pink_petals", + "Properties": { + "facing": "west", + "flower_amount": "4" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_default.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_default.json new file mode 100644 index 00000000..7b503c25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_default.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:poppy" + }, + "weight": 2 + }, + { + "data": { + "Name": "minecraft:dandelion" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_flower_forest.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_flower_forest.json new file mode 100644 index 00000000..e3fc9fd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_flower_forest.json @@ -0,0 +1,51 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:noise_provider", + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": 0 + }, + "scale": 0.020833334, + "seed": 2345, + "states": [ + { + "Name": "minecraft:dandelion" + }, + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:allium" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:red_tulip" + }, + { + "Name": "minecraft:orange_tulip" + }, + { + "Name": "minecraft:white_tulip" + }, + { + "Name": "minecraft:pink_tulip" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:cornflower" + }, + { + "Name": "minecraft:lily_of_the_valley" + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_meadow.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_meadow.json new file mode 100644 index 00000000..443b415a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_meadow.json @@ -0,0 +1,56 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:dual_noise_provider", + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 + }, + "scale": 1.0, + "seed": 2345, + "slow_noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": -10 + }, + "slow_scale": 1.0, + "states": [ + { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + { + "Name": "minecraft:allium" + }, + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:dandelion" + }, + { + "Name": "minecraft:cornflower" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:short_grass" + } + ], + "variety": [ + 1, + 3 + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_pale_garden.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_pale_garden.json new file mode 100644 index 00000000..77081953 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_pale_garden.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:simple_block", + "config": { + "schedule_tick": true, + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:closed_eyeblossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_plain.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_plain.json new file mode 100644 index 00000000..382e8f5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_plain.json @@ -0,0 +1,49 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:noise_threshold_provider", + "default_state": { + "Name": "minecraft:dandelion" + }, + "high_chance": 0.33333334, + "high_states": [ + { + "Name": "minecraft:poppy" + }, + { + "Name": "minecraft:azure_bluet" + }, + { + "Name": "minecraft:oxeye_daisy" + }, + { + "Name": "minecraft:cornflower" + } + ], + "low_states": [ + { + "Name": "minecraft:orange_tulip" + }, + { + "Name": "minecraft:red_tulip" + }, + { + "Name": "minecraft:pink_tulip" + }, + { + "Name": "minecraft:white_tulip" + } + ], + "noise": { + "amplitudes": [ + 1.0 + ], + "firstOctave": 0 + }, + "scale": 0.005, + "seed": 2345, + "threshold": -0.8 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_swamp.json new file mode 100644 index 00000000..aa64b528 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/flower_swamp.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:blue_orchid" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_flowers.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_flowers.json new file mode 100644 index 00000000..96a67ba0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_flowers.json @@ -0,0 +1,180 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lilac", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rose_bush", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:peony", + "Properties": { + "half": "lower" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lily_of_the_valley" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_rock.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_rock.json new file mode 100644 index 00000000..663b935c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/forest_rock.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:block_blob", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:forest_rock_can_place_on" + }, + "state": { + "Name": "minecraft:mossy_cobblestone" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_coal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_coal.json new file mode 100644 index 00000000..829b5dbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_coal.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:fossil", + "config": { + "fossil_processors": "minecraft:fossil_rot", + "fossil_structures": [ + "minecraft:fossil/spine_1", + "minecraft:fossil/spine_2", + "minecraft:fossil/spine_3", + "minecraft:fossil/spine_4", + "minecraft:fossil/skull_1", + "minecraft:fossil/skull_2", + "minecraft:fossil/skull_3", + "minecraft:fossil/skull_4" + ], + "max_empty_corners_allowed": 4, + "overlay_processors": "minecraft:fossil_coal", + "overlay_structures": [ + "minecraft:fossil/spine_1_coal", + "minecraft:fossil/spine_2_coal", + "minecraft:fossil/spine_3_coal", + "minecraft:fossil/spine_4_coal", + "minecraft:fossil/skull_1_coal", + "minecraft:fossil/skull_2_coal", + "minecraft:fossil/skull_3_coal", + "minecraft:fossil/skull_4_coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_diamonds.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_diamonds.json new file mode 100644 index 00000000..36530950 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/fossil_diamonds.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:fossil", + "config": { + "fossil_processors": "minecraft:fossil_rot", + "fossil_structures": [ + "minecraft:fossil/spine_1", + "minecraft:fossil/spine_2", + "minecraft:fossil/spine_3", + "minecraft:fossil/spine_4", + "minecraft:fossil/skull_1", + "minecraft:fossil/skull_2", + "minecraft:fossil/skull_3", + "minecraft:fossil/skull_4" + ], + "max_empty_corners_allowed": 4, + "overlay_processors": "minecraft:fossil_diamonds", + "overlay_structures": [ + "minecraft:fossil/spine_1_coal", + "minecraft:fossil/spine_2_coal", + "minecraft:fossil/spine_3_coal", + "minecraft:fossil/spine_4_coal", + "minecraft:fossil/skull_1_coal", + "minecraft:fossil/skull_2_coal", + "minecraft:fossil/skull_3_coal", + "minecraft:fossil/skull_4_coal" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/freeze_top_layer.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/freeze_top_layer.json new file mode 100644 index 00000000..3b684589 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/freeze_top_layer.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:freeze_top_layer", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glow_lichen.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glow_lichen.json new file mode 100644 index 00000000..c060d123 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glow_lichen.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:multiface_growth", + "config": { + "block": "minecraft:glow_lichen", + "can_be_placed_on": [ + "minecraft:stone", + "minecraft:andesite", + "minecraft:diorite", + "minecraft:granite", + "minecraft:dripstone_block", + "minecraft:calcite", + "minecraft:tuff", + "minecraft:deepslate", + "minecraft:sulfur", + "minecraft:cinnabar" + ], + "can_place_on_ceiling": true, + "can_place_on_wall": true, + "search_range": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glowstone_extra.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glowstone_extra.json new file mode 100644 index 00000000..a1a14276 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/glowstone_extra.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:glowstone_blob", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass.json new file mode 100644 index 00000000..7539bcec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:short_grass" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass_jungle.json new file mode 100644 index 00000000..22c7b2f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/grass_jungle.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 3 + }, + { + "data": { + "Name": "minecraft:fern" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json new file mode 100644 index 00000000..4a283b00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_brown_mushroom.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:huge_brown_mushroom", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:huge_brown_mushroom_can_place_on" + }, + "cap_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:brown_mushroom_block", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + "foliage_radius": 3, + "stem_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mushroom_stem", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json new file mode 100644 index 00000000..2325777b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/huge_red_mushroom.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:huge_red_mushroom", + "config": { + "can_place_on": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:huge_red_mushroom_can_place_on" + }, + "cap_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:red_mushroom_block", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + } + }, + "stem_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mushroom_stem", + "Properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_patch.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_patch.json new file mode 100644 index 00000000..b76c07dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_patch.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:disk", + "config": { + "half_height": 1, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:packed_ice" + } + }, + "target": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:dirt", + "minecraft:grass_block", + "minecraft:podzol", + "minecraft:coarse_dirt", + "minecraft:mycelium", + "minecraft:snow_block", + "minecraft:ice" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_spike.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_spike.json new file mode 100644 index 00000000..38f9889e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ice_spike.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:spike", + "config": { + "can_place_on": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:snow_block" + }, + "can_replace": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:ice_spike_replaceable" + }, + "state": { + "Name": "minecraft:packed_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_blue.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_blue.json new file mode 100644 index 00000000..27ed8fe5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_blue.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:iceberg", + "config": { + "state": { + "Name": "minecraft:blue_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_packed.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_packed.json new file mode 100644 index 00000000..2f777514 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/iceberg_packed.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:iceberg", + "config": { + "state": { + "Name": "minecraft:packed_ice" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_bush.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_bush.json new file mode 100644 index 00000000..b0ba0777 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_bush.json @@ -0,0 +1,64 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:bush_foliage_placer", + "height": 2, + "offset": 1, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 0, + "upper_size": 0 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 1, + "height_rand_a": 0, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree.json new file mode 100644 index 00000000..fabb906e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree.json @@ -0,0 +1,74 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:cocoa", + "probability": 0.2 + }, + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 8, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json new file mode 100644 index 00000000..aec355fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/jungle_tree_no_vine.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 8, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/kelp.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/kelp.json new file mode 100644 index 00000000..c07640df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/kelp.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:kelp", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lake_lava.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lake_lava.json new file mode 100644 index 00000000..bf457e34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lake_lava.json @@ -0,0 +1,37 @@ +{ + "type": "minecraft:lake", + "config": { + "barrier": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:stone" + } + }, + "can_place_feature": { + "type": "minecraft:true" + }, + "can_replace_with_air_or_fluid": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:features_cannot_replace" + } + }, + "can_replace_with_barrier": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:lava_pool_stone_cannot_replace" + } + }, + "fluid": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_basalt_columns.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_basalt_columns.json new file mode 100644 index 00000000..6ae5eda6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_basalt_columns.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "max_inclusive": 10, + "min_inclusive": 5 + }, + "reach": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_dripstone.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_dripstone.json new file mode 100644 index 00000000..48da3681 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_dripstone.json @@ -0,0 +1,39 @@ +{ + "type": "minecraft:large_dripstone", + "config": { + "column_radius": { + "type": "minecraft:clamped", + "max_inclusive": 16, + "min_inclusive": 3, + "source": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 3 + } + }, + "height_scale": { + "type": "minecraft:uniform", + "max_exclusive": 2.0, + "min_inclusive": 0.4 + }, + "max_column_radius_to_cave_height_ratio": 0.33, + "min_bluntness_for_wind": 0.6, + "min_radius_for_wind": 4, + "replaceable_blocks": "#minecraft:dripstone_replaceable_blocks", + "stalactite_bluntness": { + "type": "minecraft:uniform", + "max_exclusive": 0.9, + "min_inclusive": 0.3 + }, + "stalagmite_bluntness": { + "type": "minecraft:uniform", + "max_exclusive": 1.0, + "min_inclusive": 0.4 + }, + "wind_speed": { + "type": "minecraft:uniform", + "max_exclusive": 0.3, + "min_inclusive": 0.0 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_fern.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_fern.json new file mode 100644 index 00000000..99a5c2b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/large_fern.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:large_fern", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/leaf_litter.json new file mode 100644 index 00000000..73f02e0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/leaf_litter.json @@ -0,0 +1,130 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lush_caves_clay.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lush_caves_clay.json new file mode 100644 index 00000000..e4d495f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/lush_caves_clay.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:random_boolean_selector", + "config": { + "feature_false": { + "feature": "minecraft:clay_pool_with_dripleaves", + "placement": [] + }, + "feature_true": { + "feature": "minecraft:clay_with_dripleaves", + "placement": [] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove.json new file mode 100644 index 00000000..2ac16911 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove.json @@ -0,0 +1,162 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.125 + }, + { + "type": "minecraft:attached_to_leaves", + "block_provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + } + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + "directions": [ + "down" + ], + "exclusion_radius_xz": 1, + "exclusion_radius_y": 0, + "probability": 0.14, + "required_empty_blocks": 2 + }, + { + "type": "minecraft:beehive", + "probability": 0.01 + } + ], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 70, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "upper_size": 2 + }, + "root_placer": { + "type": "minecraft:mangrove_root_placer", + "above_root_placement": { + "above_root_placement_chance": 0.5, + "above_root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_carpet" + } + } + }, + "mangrove_root_placement": { + "can_grow_through": "#minecraft:mangrove_roots_can_grow_through", + "max_root_length": 15, + "max_root_width": 8, + "muddy_roots_in": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ], + "muddy_roots_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:muddy_mangrove_roots", + "Properties": { + "axis": "y" + } + } + }, + "random_skew_chance": 0.2 + }, + "root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "trunk_offset_y": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 1 + } + }, + "trunk_placer": { + "type": "minecraft:upwards_branching_trunk_placer", + "base_height": 2, + "can_grow_through": "#minecraft:mangrove_logs_can_grow_through", + "extra_branch_length": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "extra_branch_steps": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 1 + }, + "height_rand_a": 1, + "height_rand_b": 4, + "place_branch_per_log_probability": 0.5 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json new file mode 100644 index 00000000..b92fb402 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mangrove_vegetation.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:mangrove_checked", + "features": [ + { + "chance": 0.85, + "feature": "minecraft:tall_mangrove_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/meadow_trees.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/meadow_trees.json new file mode 100644 index 00000000..293ae6d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/meadow_trees.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:super_birch_bees", + "features": [ + { + "chance": 0.5, + "feature": "minecraft:fancy_oak_bees" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json new file mode 100644 index 00000000..612bb50b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_jungle_tree.json @@ -0,0 +1,72 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:trunk_vine" + }, + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:jungle_foliage_placer", + "height": 2, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:mega_jungle_trunk_placer", + "base_height": 10, + "height_rand_a": 2, + "height_rand_b": 19 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:jungle_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_pine.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_pine.json new file mode 100644 index 00000000..713b7ea3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_pine.json @@ -0,0 +1,92 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:alter_ground", + "provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:beneath_tree_podzol_replaceable" + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + } + ], + "foliage_placer": { + "type": "minecraft:mega_pine_foliage_placer", + "crown_height": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 13, + "height_rand_a": 2, + "height_rand_b": 14 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_spruce.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_spruce.json new file mode 100644 index 00000000..3fdbb5cb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mega_spruce.json @@ -0,0 +1,92 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:alter_ground", + "provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:beneath_tree_podzol_replaceable" + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + } + ], + "foliage_placer": { + "type": "minecraft:mega_pine_foliage_placer", + "crown_height": { + "type": "minecraft:uniform", + "max_inclusive": 17, + "min_inclusive": 13 + }, + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "lower_size": 1, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:giant_trunk_placer", + "base_height": 13, + "height_rand_a": 2, + "height_rand_b": 14 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/melon.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/melon.json new file mode 100644 index 00000000..f4701503 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/melon.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:melon" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/monster_room.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/monster_room.json new file mode 100644 index 00000000..f8aaf027 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/monster_room.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:monster_room", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch.json new file mode 100644 index 00000000..4a66f746 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.3, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.8, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json new file mode 100644 index 00000000..a9f8b319 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_bonemeal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.6, + "vegetation_feature": { + "feature": "minecraft:moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json new file mode 100644 index 00000000..f03ce33c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_patch_ceiling.json @@ -0,0 +1,31 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + }, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.3, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "ceiling", + "vegetation_chance": 0.08, + "vegetation_feature": { + "feature": "minecraft:cave_vine_in_moss", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 4 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_vegetation.json new file mode 100644 index 00000000..9e199688 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/moss_vegetation.json @@ -0,0 +1,43 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:flowering_azalea" + }, + "weight": 4 + }, + { + "data": { + "Name": "minecraft:azalea" + }, + "weight": 7 + }, + { + "data": { + "Name": "minecraft:moss_carpet" + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 50 + }, + { + "data": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json new file mode 100644 index 00000000..a61a8d03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/mushroom_island_vegetation.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:random_boolean_selector", + "config": { + "feature_false": { + "feature": "minecraft:huge_brown_mushroom", + "placement": [] + }, + "feature_true": { + "feature": "minecraft:huge_red_mushroom", + "placement": [] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts.json new file mode 100644 index 00000000..a7fd952f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:nether_sprouts" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json new file mode 100644 index 00000000..bd829b10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/nether_sprouts_bonemeal.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:nether_sprouts" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak.json new file mode 100644 index 00000000..902a621e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..e7417dbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_0002_leaf_litter.json @@ -0,0 +1,368 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_002.json new file mode 100644 index 00000000..6e3fb384 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_002.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.02 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_005.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_005.json new file mode 100644 index 00000000..9631f44a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_bees_005.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.05 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json new file mode 100644 index 00000000..dfa913c0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/oak_leaf_litter.json @@ -0,0 +1,364 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "radius": 4, + "tries": 96 + }, + { + "type": "minecraft:place_on_ground", + "block_state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "north", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "east", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "south", + "segment_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:leaf_litter", + "Properties": { + "facing": "west", + "segment_amount": "4" + } + }, + "weight": 1 + } + ] + }, + "height": 2, + "tries": 150 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 4, + "height_rand_a": 2, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json new file mode 100644 index 00000000..dd844579 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_large.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:scattered_ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 3, + "targets": [ + { + "state": { + "Name": "minecraft:ancient_debris" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_nether" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json new file mode 100644 index 00000000..207fb6ee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_ancient_debris_small.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:scattered_ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 2, + "targets": [ + { + "state": { + "Name": "minecraft:ancient_debris" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_nether" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_andesite.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_andesite.json new file mode 100644 index 00000000..b73561f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_andesite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:andesite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_blackstone.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_blackstone.json new file mode 100644 index 00000000..bb05bf05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_blackstone.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:blackstone" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_clay.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_clay.json new file mode 100644 index 00000000..88fd2f8f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_clay.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:clay" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal.json new file mode 100644 index 00000000..50ecedc9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 17, + "targets": [ + { + "state": { + "Name": "minecraft:coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal_buried.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal_buried.json new file mode 100644 index 00000000..b35e6b32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_coal_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 17, + "targets": [ + { + "state": { + "Name": "minecraft:coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_coal_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_large.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_large.json new file mode 100644 index 00000000..d3657159 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_large.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 20, + "targets": [ + { + "state": { + "Name": "minecraft:copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_small.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_small.json new file mode 100644 index 00000000..b9809375 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_copper_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 10, + "targets": [ + { + "state": { + "Name": "minecraft:copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_copper_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json new file mode 100644 index 00000000..8f529fe4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_large.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_large.json new file mode 100644 index 00000000..501925ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_large.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.7, + "size": 12, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json new file mode 100644 index 00000000..aa20fc8b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_medium.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_small.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_small.json new file mode 100644 index 00000000..cddd59e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diamond_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 4, + "targets": [ + { + "state": { + "Name": "minecraft:diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_diamond_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diorite.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diorite.json new file mode 100644 index 00000000..4249f867 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_diorite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:diorite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_dirt.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_dirt.json new file mode 100644 index 00000000..e6c140f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_dirt.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:dirt" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_emerald.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_emerald.json new file mode 100644 index 00000000..fc68e2d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_emerald.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 3, + "targets": [ + { + "state": { + "Name": "minecraft:emerald_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_emerald_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold.json new file mode 100644 index 00000000..cba3856d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold_buried.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold_buried.json new file mode 100644 index 00000000..9a85c4a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gold_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.5, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_gold_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_granite.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_granite.json new file mode 100644 index 00000000..32ea76f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_granite.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:granite" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel.json new file mode 100644 index 00000000..6497dc69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:gravel" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json new file mode 100644 index 00000000..f58621a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_gravel_nether.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:gravel" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_infested.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_infested.json new file mode 100644 index 00000000..46fd07cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_infested.json @@ -0,0 +1,30 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:infested_stone" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:infested_deepslate", + "Properties": { + "axis": "y" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron.json new file mode 100644 index 00000000..acd256a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 9, + "targets": [ + { + "state": { + "Name": "minecraft:iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron_small.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron_small.json new file mode 100644 index 00000000..edb954b2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_iron_small.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 4, + "targets": [ + { + "state": { + "Name": "minecraft:iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_iron_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis.json new file mode 100644 index 00000000..aa191fe5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 7, + "targets": [ + { + "state": { + "Name": "minecraft:lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json new file mode 100644 index 00000000..c6429558 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_lapis_buried.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 1.0, + "size": 7, + "targets": [ + { + "state": { + "Name": "minecraft:lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_lapis_ore" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_magma.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_magma.json new file mode 100644 index 00000000..a983f464 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_magma.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 33, + "targets": [ + { + "state": { + "Name": "minecraft:magma_block" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_nether_gold.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_nether_gold.json new file mode 100644 index 00000000..2010286a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_nether_gold.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 10, + "targets": [ + { + "state": { + "Name": "minecraft:nether_gold_ore" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_quartz.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_quartz.json new file mode 100644 index 00000000..39fe03ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_quartz.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 14, + "targets": [ + { + "state": { + "Name": "minecraft:nether_quartz_ore" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_redstone.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_redstone.json new file mode 100644 index 00000000..66c042d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_redstone.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 8, + "targets": [ + { + "state": { + "Name": "minecraft:redstone_ore", + "Properties": { + "lit": "false" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:stone_ore_replaceables" + } + }, + { + "state": { + "Name": "minecraft:deepslate_redstone_ore", + "Properties": { + "lit": "false" + } + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:deepslate_ore_replaceables" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_soul_sand.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_soul_sand.json new file mode 100644 index 00000000..96f80cb0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_soul_sand.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 12, + "targets": [ + { + "state": { + "Name": "minecraft:soul_sand" + }, + "target": { + "block": "minecraft:netherrack", + "predicate_type": "minecraft:block_match" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_tuff.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_tuff.json new file mode 100644 index 00000000..39a405dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/ore_tuff.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ore", + "config": { + "discard_chance_on_air_exposure": 0.0, + "size": 64, + "targets": [ + { + "state": { + "Name": "minecraft:tuff" + }, + "target": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:base_stone_overworld" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_forest_flower.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_forest_flower.json new file mode 100644 index 00000000..77081953 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_forest_flower.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:simple_block", + "config": { + "schedule_tick": true, + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:closed_eyeblossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json new file mode 100644 index 00000000..d0d5fb36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_garden_vegetation.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:pale_oak_checked", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:pale_oak_creaking_checked" + }, + { + "chance": 0.9, + "feature": "minecraft:pale_oak_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch.json new file mode 100644 index 00000000..ed4aea4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.3, + "vegetation_feature": { + "feature": "minecraft:pale_moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json new file mode 100644 index 00000000..7cc05b58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_patch_bonemeal.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:vegetation_patch", + "config": { + "depth": 1, + "extra_bottom_block_chance": 0.0, + "extra_edge_column_chance": 0.75, + "ground_state": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_moss_block" + } + }, + "replaceable": "#minecraft:moss_replaceable", + "surface": "floor", + "vegetation_chance": 0.6, + "vegetation_feature": { + "feature": "minecraft:pale_moss_vegetation", + "placement": [] + }, + "vertical_range": 5, + "xz_radius": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json new file mode 100644 index 00000000..31c8110c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_moss_vegetation.json @@ -0,0 +1,38 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pale_moss_carpet", + "Properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 25 + }, + { + "data": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + }, + "weight": 10 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak.json new file mode 100644 index 00000000..1817aba7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak.json @@ -0,0 +1,69 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:pale_moss", + "ground_probability": 0.8, + "leaves_probability": 0.15, + "trunk_probability": 0.4 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json new file mode 100644 index 00000000..3ac4ee2b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_bonemeal.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json new file mode 100644 index 00000000..cf29e100 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pale_oak_creaking.json @@ -0,0 +1,73 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:pale_moss", + "ground_probability": 0.8, + "leaves_probability": 0.15, + "trunk_probability": 0.4 + }, + { + "type": "minecraft:creaking_heart", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:dark_oak_foliage_placer", + "offset": 0, + "radius": 0 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:three_layers_feature_size", + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:dark_oak_trunk_placer", + "base_height": 6, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pale_oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_fire.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_fire.json new file mode 100644 index 00000000..135261b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_fire.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:fire", + "Properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_soul_fire.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_soul_fire.json new file mode 100644 index 00000000..8c2292f6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/patch_soul_fire.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:soul_fire" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_hay.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_hay.json new file mode 100644 index 00000000..b54eb444 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_hay.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:rotated_block_provider", + "state": { + "Name": "minecraft:hay_block", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_ice.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_ice.json new file mode 100644 index 00000000..5fc9f198 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_ice.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:blue_ice" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:packed_ice" + }, + "weight": 5 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_melon.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_melon.json new file mode 100644 index 00000000..2b1e8526 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_melon.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:melon" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_pumpkin.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_pumpkin.json new file mode 100644 index 00000000..3ab3e710 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_pumpkin.json @@ -0,0 +1,25 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:pumpkin" + }, + "weight": 19 + }, + { + "data": { + "Name": "minecraft:jack_o_lantern", + "Properties": { + "facing": "north" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_snow.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_snow.json new file mode 100644 index 00000000..80545386 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pile_snow.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:block_pile", + "config": { + "state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:snow", + "Properties": { + "layers": "1" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pine.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pine.json new file mode 100644 index 00000000..d2e7fb05 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pine.json @@ -0,0 +1,68 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:pine_foliage_placer", + "height": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 3 + }, + "offset": 1, + "radius": 1 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 6, + "height_rand_a": 4, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pointed_dripstone.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pointed_dripstone.json new file mode 100644 index 00000000..5ce2afb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pointed_dripstone.json @@ -0,0 +1,101 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:speleothem", + "config": { + "base_block": { + "Name": "minecraft:dripstone_block" + }, + "pointed_block": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "replaceable_blocks": "#minecraft:dripstone_replaceable_blocks" + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] + }, + { + "feature": { + "type": "minecraft:speleothem", + "config": { + "base_block": { + "Name": "minecraft:dripstone_block" + }, + "pointed_block": { + "Name": "minecraft:pointed_dripstone", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "replaceable_blocks": "#minecraft:dripstone_replaceable_blocks" + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pumpkin.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pumpkin.json new file mode 100644 index 00000000..ac7c2c58 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/pumpkin.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:pumpkin" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/red_mushroom.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/red_mushroom.json new file mode 100644 index 00000000..e9a9ed7b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/red_mushroom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:red_mushroom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json new file mode 100644 index 00000000..930e4b52 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_azalea_tree.json @@ -0,0 +1,62 @@ +{ + "type": "minecraft:root_system", + "config": { + "allowed_tree_position": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:replaceable_by_trees" + } + ] + }, + { + "type": "minecraft:matching_block_tag", + "offset": [ + 0, + -1, + 0 + ], + "tag": "minecraft:azalea_grows_on" + } + ] + }, + "allowed_vertical_water_for_tree": 2, + "feature": { + "feature": "minecraft:azalea_tree", + "placement": [] + }, + "hanging_root_placement_attempts": 20, + "hanging_root_radius": 3, + "hanging_root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:hanging_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "hanging_roots_vertical_span": 2, + "level_test_distance": 0, + "max_level_deviation": 0, + "required_vertical_space_for_tree": 3, + "root_column_max_height": 100, + "root_placement_attempts": 20, + "root_radius": 3, + "root_replaceable": "#minecraft:azalea_root_replaceable", + "root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:rooted_dirt" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_sulfur_spring.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_sulfur_spring.json new file mode 100644 index 00000000..2d654ac4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/rooted_sulfur_spring.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:root_system", + "config": { + "allowed_tree_position": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "allowed_vertical_water_for_tree": 1, + "feature": { + "feature": "minecraft:sulfur_spring", + "placement": [] + }, + "hanging_root_placement_attempts": 1, + "hanging_root_radius": 1, + "hanging_root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sulfur" + } + }, + "hanging_roots_vertical_span": 1, + "level_test_distance": 8, + "max_level_deviation": 2, + "required_vertical_space_for_tree": 5, + "root_column_max_height": 184, + "root_placement_attempts": 20, + "root_radius": 3, + "root_replaceable": "#minecraft:azalea_root_replaceable", + "root_state_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sulfur" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json new file mode 100644 index 00000000..2e87f425 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_ancient_city.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:sculk_patch", + "config": { + "amount_per_charge": 32, + "catalyst_chance": 0.5, + "charge_count": 10, + "extra_rare_growths": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 1 + }, + "growth_rounds": 0, + "spread_attempts": 64, + "spread_rounds": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json new file mode 100644 index 00000000..95147b72 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_patch_deep_dark.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:sculk_patch", + "config": { + "amount_per_charge": 32, + "catalyst_chance": 0.5, + "charge_count": 10, + "extra_rare_growths": 0, + "growth_rounds": 0, + "spread_attempts": 64, + "spread_rounds": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_vein.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_vein.json new file mode 100644 index 00000000..8539e3ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sculk_vein.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:multiface_growth", + "config": { + "block": "minecraft:sculk_vein", + "can_be_placed_on": [ + "minecraft:stone", + "minecraft:andesite", + "minecraft:diorite", + "minecraft:granite", + "minecraft:dripstone_block", + "minecraft:calcite", + "minecraft:tuff", + "minecraft:deepslate" + ], + "can_place_on_ceiling": true, + "can_place_on_floor": true, + "can_place_on_wall": true, + "chance_of_spreading": 1.0, + "search_range": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sea_pickle.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sea_pickle.json new file mode 100644 index 00000000..2d7b08a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sea_pickle.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:sea_pickle", + "config": { + "count": 20 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_mid.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_mid.json new file mode 100644 index 00000000..88941d5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_mid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.6 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_short.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_short.json new file mode 100644 index 00000000..0bf9b0f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_short.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.3 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json new file mode 100644 index 00000000..7ddd77de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_slightly_less_short.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.4 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_tall.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_tall.json new file mode 100644 index 00000000..3647eb84 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/seagrass_tall.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:seagrass", + "config": { + "probability": 0.8 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/small_basalt_columns.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/small_basalt_columns.json new file mode 100644 index 00000000..1cdb0745 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/small_basalt_columns.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:basalt_columns", + "config": { + "height": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 1 + }, + "reach": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spore_blossom.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spore_blossom.json new file mode 100644 index 00000000..41a28b48 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spore_blossom.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spore_blossom" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json new file mode 100644 index 00000000..a334736d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_frozen.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow", + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_nether.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_nether.json new file mode 100644 index 00000000..1413bed4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_nether.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:netherrack", + "minecraft:soul_sand", + "minecraft:gravel", + "minecraft:magma_block", + "minecraft:blackstone" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json new file mode 100644 index 00000000..cb549947 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_lava_overworld.json @@ -0,0 +1,21 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:deepslate", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:dirt" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_closed.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_closed.json new file mode 100644 index 00000000..a0ee2912 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_closed.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "hole_count": 0, + "requires_block_below": false, + "rock_count": 5, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": "minecraft:netherrack" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_open.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_open.json new file mode 100644 index 00000000..cf4e1344 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_nether_open.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "requires_block_below": false, + "state": { + "Name": "minecraft:lava", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": "minecraft:netherrack" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_water.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_water.json new file mode 100644 index 00000000..c8cefea7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spring_water.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:spring_feature", + "config": { + "state": { + "Name": "minecraft:water", + "Properties": { + "falling": "true" + } + }, + "valid_blocks": [ + "minecraft:stone", + "minecraft:granite", + "minecraft:diorite", + "minecraft:andesite", + "minecraft:deepslate", + "minecraft:tuff", + "minecraft:calcite", + "minecraft:dirt", + "minecraft:snow_block", + "minecraft:powder_snow", + "minecraft:packed_ice" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spruce.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spruce.json new file mode 100644 index 00000000..0876e7b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/spruce.json @@ -0,0 +1,76 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [], + "foliage_placer": { + "type": "minecraft:spruce_foliage_placer", + "offset": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": 2 + }, + "trunk_height": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 2, + "upper_size": 2 + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 1 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:spruce_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sugar_cane.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sugar_cane.json new file mode 100644 index 00000000..a76123f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sugar_cane.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:block_column", + "config": { + "allowed_placement": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction": "up", + "layers": [ + { + "height": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + } + } + ], + "prioritize_tip": false + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_pool.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_pool.json new file mode 100644 index 00000000..ce583603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_pool.json @@ -0,0 +1,91 @@ +{ + "type": "minecraft:sequence", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:lake", + "config": { + "barrier": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sulfur" + } + }, + "can_place_feature": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:sulfur_spike" + } + }, + "can_replace_with_air_or_fluid": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:features_cannot_replace" + } + }, + "can_replace_with_barrier": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:lava_pool_stone_cannot_replace" + } + }, + "fluid": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:potent_sulfur", + "Properties": { + "potent_sulfur_state": "wet" + } + } + } + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 4, + "target_condition": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:solid" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water", + "offset": [ + 0, + 1, + 0 + ] + } + ] + } + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike.json new file mode 100644 index 00000000..dd5736fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike.json @@ -0,0 +1,101 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:speleothem", + "config": { + "base_block": { + "Name": "minecraft:sulfur" + }, + "pointed_block": { + "Name": "minecraft:sulfur_spike", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "replaceable_blocks": "#minecraft:sulfur_spike_replaceable_blocks" + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + } + ] + }, + { + "feature": { + "type": "minecraft:speleothem", + "config": { + "base_block": { + "Name": "minecraft:sulfur" + }, + "pointed_block": { + "Name": "minecraft:sulfur_spike", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "replaceable_blocks": "#minecraft:sulfur_spike_replaceable_blocks" + } + }, + "placement": [ + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:water" + } + ] + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + } + ] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike_cluster.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike_cluster.json new file mode 100644 index 00000000..879e232d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spike_cluster.json @@ -0,0 +1,44 @@ +{ + "type": "minecraft:speleothem_cluster", + "config": { + "base_block": { + "Name": "minecraft:sulfur" + }, + "chance_of_speleothem_at_max_distance_from_center": 0.1, + "density": { + "type": "minecraft:uniform", + "max_exclusive": 0.7, + "min_inclusive": 0.3 + }, + "floor_to_ceiling_search_range": 12, + "height": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 1 + }, + "height_deviation": 3, + "max_distance_from_center_affecting_height_bias": 8, + "max_distance_from_edge_affecting_chance_of_speleothem": 3, + "max_stalagmite_stalactite_height_diff": 1, + "pointed_block": { + "Name": "minecraft:sulfur_spike", + "Properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + "radius": { + "type": "minecraft:uniform", + "max_inclusive": 8, + "min_inclusive": 2 + }, + "replaceable_blocks": "#minecraft:sulfur_spike_replaceable_blocks", + "speleothem_block_layer_thickness": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 2 + }, + "wetness": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spring.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spring.json new file mode 100644 index 00000000..65b107e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sulfur_spring.json @@ -0,0 +1,375 @@ +{ + "type": "minecraft:weighted_random_selector", + "config": { + "features": [ + { + "data": { + "feature": { + "type": "minecraft:sequence", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tuff" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 4, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:solid" + } + } + ] + }, + { + "feature": { + "type": "minecraft:template", + "config": { + "templates": [ + { + "data": { + "id": "minecraft:spring/sulfur_spring_small_1" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_small_2" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_small_3" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_small_4" + }, + "weight": 1 + } + ] + } + }, + "placement": [ + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -7 + } + ] + } + ] + } + }, + "placement": [] + }, + "weight": 200 + }, + { + "data": { + "feature": { + "type": "minecraft:sequence", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tuff" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 80 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 8, + "min": -8, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 4, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:solid" + } + } + ] + }, + { + "feature": { + "type": "minecraft:template", + "config": { + "templates": [ + { + "data": { + "id": "minecraft:spring/sulfur_spring_medium_1" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_medium_2" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_medium_3" + }, + "weight": 1 + } + ] + } + }, + "placement": [ + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -7 + } + ] + } + ] + } + }, + "placement": [] + }, + "weight": 90 + }, + { + "data": { + "feature": { + "type": "minecraft:sequence", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tuff" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 9, + "min": -9, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 4, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:solid" + } + } + ] + }, + { + "feature": { + "type": "minecraft:template", + "config": { + "templates": [ + { + "data": { + "id": "minecraft:spring/sulfur_spring_large_1" + }, + "weight": 1 + }, + { + "data": { + "id": "minecraft:spring/sulfur_spring_large_2" + }, + "weight": 1 + } + ] + } + }, + "placement": [ + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -7 + } + ] + } + ] + } + }, + "placement": [] + }, + "weight": 20 + }, + { + "data": { + "feature": { + "type": "minecraft:sequence", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tuff" + } + } + } + }, + "placement": [ + { + "type": "minecraft:count", + "count": 128 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 10, + "min": -10, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 4, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:solid" + } + } + ] + }, + { + "feature": { + "type": "minecraft:template", + "config": { + "templates": [ + { + "data": { + "id": "minecraft:spring/sulfur_spring_extra_large_1" + }, + "weight": 1 + } + ] + } + }, + "placement": [ + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -7 + } + ] + } + ] + } + }, + "placement": [] + }, + "weight": 5 + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sunflower.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sunflower.json new file mode 100644 index 00000000..a69492c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/sunflower.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:sunflower", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees.json new file mode 100644 index 00000000..8ff8edc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 1.0 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 6 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json new file mode 100644 index 00000000..5c9ed1e4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/super_birch_bees_0002.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:beehive", + "probability": 0.002 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 2 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 2, + "height_rand_b": 6 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:birch_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/swamp_oak.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/swamp_oak.json new file mode 100644 index 00000000..fce046ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/swamp_oak.json @@ -0,0 +1,67 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.25 + } + ], + "foliage_placer": { + "type": "minecraft:blob_foliage_placer", + "height": 3, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": false, + "minimum_size": { + "type": "minecraft:two_layers_feature_size" + }, + "trunk_placer": { + "type": "minecraft:straight_trunk_placer", + "base_height": 5, + "height_rand_a": 3, + "height_rand_b": 0 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:oak_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/taiga_grass.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/taiga_grass.json new file mode 100644 index 00000000..273eca10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/taiga_grass.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:short_grass" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:fern" + }, + "weight": 4 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_grass.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_grass.json new file mode 100644 index 00000000..09040bfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_grass.json @@ -0,0 +1,14 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:tall_grass", + "Properties": { + "half": "lower" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_mangrove.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_mangrove.json new file mode 100644 index 00000000..18a2584c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/tall_mangrove.json @@ -0,0 +1,162 @@ +{ + "type": "minecraft:tree", + "config": { + "below_trunk_provider": { + "type": "minecraft:rule_based_state_provider", + "rules": [ + { + "if_true": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:cannot_replace_below_tree_trunk" + } + }, + "then": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:dirt" + } + } + } + ] + }, + "decorators": [ + { + "type": "minecraft:leave_vine", + "probability": 0.125 + }, + { + "type": "minecraft:attached_to_leaves", + "block_provider": { + "type": "minecraft:randomized_int_state_provider", + "property": "age", + "source": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + } + }, + "values": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + "directions": [ + "down" + ], + "exclusion_radius_xz": 1, + "exclusion_radius_y": 0, + "probability": 0.14, + "required_empty_blocks": 2 + }, + { + "type": "minecraft:beehive", + "probability": 0.01 + } + ], + "foliage_placer": { + "type": "minecraft:random_spread_foliage_placer", + "foliage_height": 2, + "leaf_placement_attempts": 70, + "offset": 0, + "radius": 3 + }, + "foliage_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_leaves", + "Properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + }, + "ignore_vines": true, + "minimum_size": { + "type": "minecraft:two_layers_feature_size", + "limit": 3, + "upper_size": 2 + }, + "root_placer": { + "type": "minecraft:mangrove_root_placer", + "above_root_placement": { + "above_root_placement_chance": 0.5, + "above_root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:moss_carpet" + } + } + }, + "mangrove_root_placement": { + "can_grow_through": "#minecraft:mangrove_roots_can_grow_through", + "max_root_length": 15, + "max_root_width": 8, + "muddy_roots_in": [ + "minecraft:mud", + "minecraft:muddy_mangrove_roots" + ], + "muddy_roots_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:muddy_mangrove_roots", + "Properties": { + "axis": "y" + } + } + }, + "random_skew_chance": 0.2 + }, + "root_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_roots", + "Properties": { + "waterlogged": "false" + } + } + }, + "trunk_offset_y": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + } + }, + "trunk_placer": { + "type": "minecraft:upwards_branching_trunk_placer", + "base_height": 4, + "can_grow_through": "#minecraft:mangrove_logs_can_grow_through", + "extra_branch_length": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "extra_branch_steps": { + "type": "minecraft:uniform", + "max_inclusive": 6, + "min_inclusive": 1 + }, + "height_rand_a": 1, + "height_rand_b": 9, + "place_branch_per_log_probability": 0.5 + }, + "trunk_provider": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:mangrove_log", + "Properties": { + "axis": "y" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_badlands.json new file mode 100644 index 00000000..661d28ae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_badlands.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_leaf_litter", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch.json new file mode 100644 index 00000000..6d309c01 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:birch_bees_0002", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_birch_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json new file mode 100644 index 00000000..179fdbec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_birch_and_oak_leaf_litter.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_bees_0002_leaf_litter", + "features": [ + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_bees_0002_leaf_litter" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_bees_0002_leaf_litter" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_flower_forest.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_flower_forest.json new file mode 100644 index 00000000..ecdadd9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_flower_forest.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_bees_002", + "features": [ + { + "chance": 0.0025, + "feature": "minecraft:fallen_birch_tree" + }, + { + "chance": 0.2, + "feature": "minecraft:birch_bees_002" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_bees_002" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_grove.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_grove.json new file mode 100644 index 00000000..7c6afd66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_grove.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_on_snow", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:pine_on_snow" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_jungle.json new file mode 100644 index 00000000..98a5c862 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_jungle.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:jungle_tree", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.5, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.33333334, + "feature": "minecraft:mega_jungle_tree_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_jungle_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json new file mode 100644 index 00000000..162d5d2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_pine_taiga.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.025641026, + "feature": "minecraft:mega_spruce_checked" + }, + { + "chance": 0.30769232, + "feature": "minecraft:mega_pine_checked" + }, + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json new file mode 100644 index 00000000..343c030c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_old_growth_spruce_taiga.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:mega_spruce_checked" + }, + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_plains.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_plains.json new file mode 100644 index 00000000..99468ece --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_plains.json @@ -0,0 +1,22 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": { + "feature": "minecraft:oak_bees_005", + "placement": [] + }, + "features": [ + { + "chance": 0.33333334, + "feature": { + "feature": "minecraft:fancy_oak_bees_005", + "placement": [] + } + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_savanna.json new file mode 100644 index 00000000..27f9535b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_savanna.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.8, + "feature": "minecraft:acacia_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_snowy.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_snowy.json new file mode 100644 index 00000000..b919971f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_snowy.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json new file mode 100644 index 00000000..6ab500eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_sparse_jungle.json @@ -0,0 +1,20 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:jungle_tree", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.5, + "feature": "minecraft:jungle_bush" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_jungle_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_taiga.json new file mode 100644 index 00000000..f101351f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_taiga.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:spruce_checked", + "features": [ + { + "chance": 0.33333334, + "feature": "minecraft:pine_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_spruce_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_water.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_water.json new file mode 100644 index 00000000..b98ce95e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_water.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json new file mode 100644 index 00000000..8a3da4be --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/trees_windswept_hills.json @@ -0,0 +1,24 @@ +{ + "type": "minecraft:random_selector", + "config": { + "default": "minecraft:oak_checked", + "features": [ + { + "chance": 0.008325, + "feature": "minecraft:fallen_spruce_tree" + }, + { + "chance": 0.666, + "feature": "minecraft:spruce_checked" + }, + { + "chance": 0.1, + "feature": "minecraft:fancy_oak_checked" + }, + { + "chance": 0.0125, + "feature": "minecraft:fallen_oak_tree" + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines.json new file mode 100644 index 00000000..b7f42b23 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:twisting_vines", + "config": { + "max_height": 8, + "spread_height": 4, + "spread_width": 8 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json new file mode 100644 index 00000000..e3cea5ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/twisting_vines_bonemeal.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:twisting_vines", + "config": { + "max_height": 2, + "spread_height": 1, + "spread_width": 3 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/underwater_magma.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/underwater_magma.json new file mode 100644 index 00000000..6800a78b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/underwater_magma.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:underwater_magma", + "config": { + "floor_search_range": 5, + "placement_probability_per_valid_position": 0.5, + "placement_radius_around_floor": 1 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/vines.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/vines.json new file mode 100644 index 00000000..9d2db213 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/vines.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:vines", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/void_start_platform.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/void_start_platform.json new file mode 100644 index 00000000..d6249646 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/void_start_platform.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:void_start_platform", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json new file mode 100644 index 00000000..89fc9075 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warm_ocean_vegetation.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:simple_random_selector", + "config": { + "features": [ + { + "feature": { + "type": "minecraft:coral_tree", + "config": {} + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:coral_claw", + "config": {} + }, + "placement": [] + }, + { + "feature": { + "type": "minecraft:coral_mushroom", + "config": {} + }, + "placement": [] + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json new file mode 100644 index 00000000..7aa937dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 4, + "spread_width": 8, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:warped_roots" + }, + "weight": 85 + }, + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 13 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json new file mode 100644 index 00000000..3508b719 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_forest_vegetation_bonemeal.json @@ -0,0 +1,36 @@ +{ + "type": "minecraft:nether_forest_vegetation", + "config": { + "spread_height": 1, + "spread_width": 3, + "state_provider": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:warped_roots" + }, + "weight": 85 + }, + { + "data": { + "Name": "minecraft:crimson_roots" + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:warped_fungus" + }, + "weight": 13 + }, + { + "data": { + "Name": "minecraft:crimson_fungus" + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus.json new file mode 100644 index 00000000..71a81cbd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus.json @@ -0,0 +1,84 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:warped_wart_block" + }, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:warped_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:warped_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json new file mode 100644 index 00000000..6136f9d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/warped_fungus_planted.json @@ -0,0 +1,85 @@ +{ + "type": "minecraft:huge_fungus", + "config": { + "decor_state": { + "Name": "minecraft:shroomlight" + }, + "hat_state": { + "Name": "minecraft:warped_wart_block" + }, + "planted": true, + "replaceable_blocks": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:oak_sapling", + "minecraft:spruce_sapling", + "minecraft:birch_sapling", + "minecraft:jungle_sapling", + "minecraft:acacia_sapling", + "minecraft:cherry_sapling", + "minecraft:dark_oak_sapling", + "minecraft:pale_oak_sapling", + "minecraft:mangrove_propagule", + "minecraft:dandelion", + "minecraft:torchflower", + "minecraft:poppy", + "minecraft:blue_orchid", + "minecraft:allium", + "minecraft:azure_bluet", + "minecraft:red_tulip", + "minecraft:orange_tulip", + "minecraft:white_tulip", + "minecraft:pink_tulip", + "minecraft:oxeye_daisy", + "minecraft:cornflower", + "minecraft:wither_rose", + "minecraft:lily_of_the_valley", + "minecraft:brown_mushroom", + "minecraft:red_mushroom", + "minecraft:wheat", + "minecraft:sugar_cane", + "minecraft:attached_pumpkin_stem", + "minecraft:attached_melon_stem", + "minecraft:pumpkin_stem", + "minecraft:melon_stem", + "minecraft:lily_pad", + "minecraft:nether_wart", + "minecraft:cocoa", + "minecraft:carrots", + "minecraft:potatoes", + "minecraft:chorus_plant", + "minecraft:chorus_flower", + "minecraft:torchflower_crop", + "minecraft:pitcher_crop", + "minecraft:beetroots", + "minecraft:sweet_berry_bush", + "minecraft:warped_fungus", + "minecraft:crimson_fungus", + "minecraft:weeping_vines", + "minecraft:weeping_vines_plant", + "minecraft:twisting_vines", + "minecraft:twisting_vines_plant", + "minecraft:cave_vines", + "minecraft:cave_vines_plant", + "minecraft:spore_blossom", + "minecraft:azalea", + "minecraft:flowering_azalea", + "minecraft:moss_carpet", + "minecraft:pink_petals", + "minecraft:wildflowers", + "minecraft:big_dripleaf", + "minecraft:big_dripleaf_stem", + "minecraft:small_dripleaf" + ] + }, + "stem_state": { + "Name": "minecraft:warped_stem", + "Properties": { + "axis": "y" + } + }, + "valid_base_block": { + "Name": "minecraft:warped_nylium" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/waterlily.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/waterlily.json new file mode 100644 index 00000000..ccd03bae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/waterlily.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:simple_state_provider", + "state": { + "Name": "minecraft:lily_pad" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/weeping_vines.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/weeping_vines.json new file mode 100644 index 00000000..c914f4a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/weeping_vines.json @@ -0,0 +1,4 @@ +{ + "type": "minecraft:weeping_vines", + "config": {} +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/configured_feature/wildflower.json b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/wildflower.json new file mode 100644 index 00000000..228e3a53 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/configured_feature/wildflower.json @@ -0,0 +1,170 @@ +{ + "type": "minecraft:simple_block", + "config": { + "to_place": { + "type": "minecraft:weighted_state_provider", + "entries": [ + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "1" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "2" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "3" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "north", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "east", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "south", + "flower_amount": "4" + } + }, + "weight": 1 + }, + { + "data": { + "Name": "minecraft:wildflowers", + "Properties": { + "facing": "west", + "flower_amount": "4" + } + }, + "weight": 1 + } + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/end/base_3d_noise.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/end/base_3d_noise.json new file mode 100644 index 00000000..42ce3b80 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/end/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 4.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.25 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/end/sloped_cheese.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/end/sloped_cheese.json new file mode 100644 index 00000000..52cf0ac0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/end/sloped_cheese.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:end_islands" + }, + "argument2": "minecraft:end/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/nether/base_3d_noise.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/nether/base_3d_noise.json new file mode 100644 index 00000000..f4f9874e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/nether/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 60.0, + "y_scale": 0.375 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json new file mode 100644 index 00000000..ed5a2d9c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/base_3d_noise.json @@ -0,0 +1,8 @@ +{ + "type": "minecraft:old_blended_noise", + "smear_scale_multiplier": 8.0, + "xz_factor": 80.0, + "xz_scale": 0.25, + "y_factor": 160.0, + "y_scale": 0.125 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/entrances.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/entrances.json new file mode 100644 index 00000000..2edac342 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/entrances.json @@ -0,0 +1,179 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:add", + "argument1": 0.37, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_entrance", + "xz_scale": 0.75, + "y_scale": 0.5 + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.3, + "from_y": -10, + "to_value": 0.0, + "to_y": 30 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_roughness_function", + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interval_select", + "functions": [ + { + "type": "minecraft:mul", + "argument1": 0.75, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_1", + "xz_scale": 1.3333333333333333, + "y_scale": 1.3333333333333333 + } + }, + { + "type": "minecraft:mul", + "argument1": 1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_1", + "xz_scale": 1.0, + "y_scale": 1.0 + } + }, + { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_1", + "xz_scale": 0.6666666666666666, + "y_scale": 0.6666666666666666 + } + }, + { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_1", + "xz_scale": 0.5, + "y_scale": 0.5 + } + } + ], + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "thresholds": [ + -0.5, + 0.0, + 0.5 + ] + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interval_select", + "functions": [ + { + "type": "minecraft:mul", + "argument1": 0.75, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 1.3333333333333333, + "y_scale": 1.3333333333333333 + } + }, + { + "type": "minecraft:mul", + "argument1": 1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 1.0, + "y_scale": 1.0 + } + }, + { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 0.6666666666666666, + "y_scale": 0.6666666666666666 + } + }, + { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_2", + "xz_scale": 0.5, + "y_scale": 0.5 + } + } + ], + "input": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_rarity", + "xz_scale": 2.0, + "y_scale": 1.0 + } + }, + "thresholds": [ + -0.5, + 0.0, + 0.5 + ] + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0765, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.011499999999999996, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_3d_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "max": 1.0, + "min": -1.0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/noodle.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/noodle.json new file mode 100644 index 00000000..b5566b10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/noodle.json @@ -0,0 +1,94 @@ +{ + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "when_out_of_range": -1.0 + } + }, + "max_exclusive": 0.0, + "min_inclusive": -1000000.0, + "when_in_range": 64.0, + "when_out_of_range": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:add", + "argument1": -0.07500000000000001, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.025, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "when_out_of_range": 0.0 + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 1.5, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_a", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 321.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:noodle_ridge_b", + "xz_scale": 2.6666666666666665, + "y_scale": 2.6666666666666665 + }, + "when_out_of_range": 0.0 + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/pillars.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/pillars.json new file mode 100644 index 00000000..ef84930e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/pillars.json @@ -0,0 +1,50 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar", + "xz_scale": 25.0, + "y_scale": 0.3 + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_rareness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": 0.55, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.55, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:pillar_thickness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json new file mode 100644 index 00000000..0ccb655f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d.json @@ -0,0 +1,123 @@ +{ + "type": "minecraft:clamp", + "input": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interval_select", + "functions": [ + { + "type": "minecraft:mul", + "argument1": 0.5, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d", + "xz_scale": 2.0, + "y_scale": 2.0 + } + }, + { + "type": "minecraft:mul", + "argument1": 0.75, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d", + "xz_scale": 1.3333333333333333, + "y_scale": 1.3333333333333333 + } + }, + { + "type": "minecraft:mul", + "argument1": 1.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d", + "xz_scale": 1.0, + "y_scale": 1.0 + } + }, + { + "type": "minecraft:mul", + "argument1": 2.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d", + "xz_scale": 0.5, + "y_scale": 0.5 + } + }, + { + "type": "minecraft:mul", + "argument1": 3.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d", + "xz_scale": 0.3333333333333333, + "y_scale": 0.3333333333333333 + } + } + ], + "input": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_modulator", + "xz_scale": 2.0, + "y_scale": 1.0 + }, + "thresholds": [ + -0.75, + -0.5, + 0.5, + 0.75 + ] + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 0.083, + "argument2": "minecraft:overworld/caves/spaghetti_2d_thickness_modulator" + } + }, + "argument2": { + "type": "minecraft:cube", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": 8.0, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_elevation", + "xz_scale": 1.0, + "y_scale": 0.0 + } + } + } + }, + "argument2": { + "type": "minecraft:y_clamped_gradient", + "from_value": 8.0, + "from_y": -64, + "to_value": -40.0, + "to_y": 320 + } + } + }, + "argument2": "minecraft:overworld/caves/spaghetti_2d_thickness_modulator" + } + } + }, + "max": 1.0, + "min": -1.0 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json new file mode 100644 index 00000000..be136655 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_2d_thickness_modulator.json @@ -0,0 +1,17 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:add", + "argument1": -0.95, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.35000000000000003, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_2d_thickness", + "xz_scale": 2.0, + "y_scale": 1.0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json new file mode 100644 index 00000000..549344e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/caves/spaghetti_roughness_function.json @@ -0,0 +1,33 @@ +{ + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.05, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.05, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness_modulator", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:spaghetti_roughness", + "xz_scale": 1.0, + "y_scale": 1.0 + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/continents.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/continents.json new file mode 100644 index 00000000..321b6f03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/continents.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/depth.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/depth.json new file mode 100644 index 00000000..23944893 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld/offset" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/erosion.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/erosion.json new file mode 100644 index 00000000..fff06598 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/factor.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/factor.json new file mode 100644 index 00000000..3a5de1fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/jaggedness.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/jaggedness.json new file mode 100644 index 00000000..70216d6e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/offset.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/offset.json new file mode 100644 index 00000000..61ef46d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges.json new file mode 100644 index 00000000..f4d6b4a5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:ridge", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges_folded.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges_folded.json new file mode 100644 index 00000000..e4d81cde --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/ridges_folded.json @@ -0,0 +1,19 @@ +{ + "type": "minecraft:mul", + "argument1": -3.0, + "argument2": { + "type": "minecraft:add", + "argument1": -0.3333333333333333, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:add", + "argument1": -0.6666666666666666, + "argument2": { + "type": "minecraft:abs", + "argument": "minecraft:overworld/ridges" + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json new file mode 100644 index 00000000..9731e9e8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld/sloped_cheese.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/depth", + "argument2": { + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + } + }, + "argument2": "minecraft:overworld/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/depth.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/depth.json new file mode 100644 index 00000000..b6a3b0d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld_amplified/offset" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/factor.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/factor.json new file mode 100644 index 00000000..4dd87e3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6530563 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 0.6530563 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 0.6299603 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.13888884 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 0.6299603 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.4351369 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 0.4351369 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 0.6969027 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 0.2972561 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 0.2972561 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 0.2688383 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 0.6969027 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 0.6050052 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 0.2688383 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 0.6050052 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json new file mode 100644 index 00000000..fcfe2f08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 1.26 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.6 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/offset.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/offset.json new file mode 100644 index 00000000..646d88f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.088 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 1.3800001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 1.2800002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 5.9604645E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.20000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.1 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.002 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.006 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.1 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.120000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.40470043 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 1.4323502 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 2.46 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.8936405 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 1.76 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.6165899 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 1.4000001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.7 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.7 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.84000003 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0139999995 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.042 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.7 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.84000003 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.6958525 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 1.8479263 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 3.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 1.078341 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 2.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.4 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 1.078341 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 2.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 1.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 1.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 1.0 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.06 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 1.0 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 1.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.34 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.02 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.02 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.06 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.2 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json new file mode 100644 index 00000000..0c8067db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_amplified/sloped_cheese.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld_amplified/depth", + "argument2": { + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld_amplified/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + } + }, + "argument2": "minecraft:overworld_amplified/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json new file mode 100644 index 00000000..c86ba3a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/continents.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:continentalness_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json new file mode 100644 index 00000000..95783517 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/depth.json @@ -0,0 +1,11 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": "minecraft:overworld_large_biomes/offset" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json new file mode 100644 index 00000000..4447cd98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/erosion.json @@ -0,0 +1,12 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:erosion_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json new file mode 100644 index 00000000..aed6a45f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/factor.json @@ -0,0 +1,890 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 10.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -10.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.19, + "value": 3.95 + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 6.25 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 6.25 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.47 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.47 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.35, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.9, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": -0.69, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": 0.0, + "value": 5.08 + }, + { + "derivative": 0.0, + "location": 0.1, + "value": 0.625 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.62, + "value": 5.08 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.06, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.6, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 2.67 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.25, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.05, + "value": 2.67 + }, + { + "derivative": 0.0, + "location": 0.05, + "value": 6.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.05, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": 1.56 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.2, + "value": 6.3 + }, + { + "derivative": 0.0, + "location": 0.2, + "value": 4.69 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": 1.37 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": 4.69 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json new file mode 100644 index 00000000..2e202d03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/jaggedness.json @@ -0,0 +1,303 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": 0.0, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_alpha" + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.0, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -0.11, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.03, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.315 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.15 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.65, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.78, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.5775, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": 0.19999999, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.44999996, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld/ridges", + "points": [ + { + "derivative": 0.0, + "location": -0.01, + "value": 0.63 + }, + { + "derivative": 0.0, + "location": 0.01, + "value": 0.3 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.375, + "value": 0.0 + } + ] + } + } + ] + } + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json new file mode 100644 index 00000000..7e8a3b63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/offset.json @@ -0,0 +1,1523 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:blend_offset" + }, + "argument2": { + "type": "minecraft:add", + "argument1": 1.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": -0.5037500262260437, + "argument2": { + "type": "minecraft:spline", + "spline": { + "coordinate": "minecraft:overworld_large_biomes/continents", + "points": [ + { + "derivative": 0.0, + "location": -1.1, + "value": 0.044 + }, + { + "derivative": 0.0, + "location": -1.02, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.51, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.44, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.18, + "value": -0.12 + }, + { + "derivative": 0.0, + "location": -0.16, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.15, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.3 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.1, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.15 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.06, + "location": 0.4, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 1.0, + "value": 0.0 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.38940096, + "location": -1.0, + "value": -0.08880186 + }, + { + "derivative": 0.38940096, + "location": 1.0, + "value": 0.69000006 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.37788022, + "location": -1.0, + "value": -0.115760356 + }, + { + "derivative": 0.37788022, + "location": 1.0, + "value": 0.6400001 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.75, + "value": -0.2222 + }, + { + "derivative": 0.0, + "location": -0.65, + "value": 0.0 + }, + { + "derivative": 0.0, + "location": 0.5954547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 0.6054547, + "value": 2.9802322E-8 + }, + { + "derivative": 0.2534563, + "location": 1.0, + "value": 0.100000024 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.05 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.01, + "location": -0.4, + "value": 0.001 + }, + { + "derivative": 0.01, + "location": 0.0, + "value": 0.003 + }, + { + "derivative": 0.094000004, + "location": 0.4, + "value": 0.05 + }, + { + "derivative": 0.007000001, + "location": 1.0, + "value": 0.060000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.25, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.20235021 + }, + { + "derivative": 0.5138249, + "location": 0.0, + "value": 0.7161751 + }, + { + "derivative": 0.5138249, + "location": 1.0, + "value": 1.23 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.43317974, + "location": 0.0, + "value": 0.44682026 + }, + { + "derivative": 0.43317974, + "location": 1.0, + "value": 0.88 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.3917051, + "location": 0.0, + "value": 0.30829495 + }, + { + "derivative": 0.3917051, + "location": 1.0, + "value": 0.70000005 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.25 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.35 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.07, + "location": -0.4, + "value": 0.0069999998 + }, + { + "derivative": 0.07, + "location": 0.0, + "value": 0.021 + }, + { + "derivative": 0.658, + "location": 0.4, + "value": 0.35 + }, + { + "derivative": 0.049000014, + "location": 1.0, + "value": 0.42000002 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.1 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": -0.03 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": -0.03 + }, + { + "derivative": 0.12, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + }, + { + "derivative": 0.0, + "location": 1.0, + "value": { + "coordinate": "minecraft:overworld_large_biomes/erosion", + "points": [ + { + "derivative": 0.0, + "location": -0.85, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.34792626 + }, + { + "derivative": 0.5760369, + "location": 0.0, + "value": 0.9239631 + }, + { + "derivative": 0.5760369, + "location": 1.0, + "value": 1.5 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": 0.2 + }, + { + "derivative": 0.4608295, + "location": 0.0, + "value": 0.5391705 + }, + { + "derivative": 0.4608295, + "location": 1.0, + "value": 1.0 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.35, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.2 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.5 + }, + { + "derivative": 0.0, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": -0.1, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.099999994, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.099999994, + "location": 0.0, + "value": 0.03 + }, + { + "derivative": 0.94, + "location": 0.4, + "value": 0.5 + }, + { + "derivative": 0.070000015, + "location": 1.0, + "value": 0.6 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.2, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.45, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.55, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.0, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.17 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.58, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.5, + "location": -1.0, + "value": -0.05 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + }, + { + "derivative": 0.0, + "location": 0.7, + "value": { + "coordinate": "minecraft:overworld/ridges_folded", + "points": [ + { + "derivative": 0.015, + "location": -1.0, + "value": -0.02 + }, + { + "derivative": 0.0, + "location": -0.4, + "value": 0.01 + }, + { + "derivative": 0.0, + "location": 0.0, + "value": 0.01 + }, + { + "derivative": 0.04, + "location": 0.4, + "value": 0.03 + }, + { + "derivative": 0.049, + "location": 1.0, + "value": 0.1 + } + ] + } + } + ] + } + } + ] + } + } + }, + "argument2": { + "type": "minecraft:cache_once", + "argument": { + "type": "minecraft:blend_alpha" + } + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json new file mode 100644 index 00000000..5eb0f356 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/overworld_large_biomes/sloped_cheese.json @@ -0,0 +1,35 @@ +{ + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": "minecraft:overworld_large_biomes/depth", + "argument2": { + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:mul", + "argument1": "minecraft:overworld_large_biomes/jaggedness", + "argument2": { + "type": "minecraft:half_negative", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:jagged", + "xz_scale": 1500.0, + "y_scale": 0.0 + } + } + } + } + }, + "argument2": "minecraft:overworld_large_biomes/factor" + } + } + }, + "argument2": "minecraft:overworld/base_3d_noise" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_x.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_x.json new file mode 100644 index 00000000..7c212483 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_x.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:shift_a", + "argument": "minecraft:offset" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_z.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_z.json new file mode 100644 index 00000000..263c1129 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/shift_z.json @@ -0,0 +1,10 @@ +{ + "type": "minecraft:flat_cache", + "argument": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:shift_b", + "argument": "minecraft:offset" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/y.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/y.json new file mode 100644 index 00000000..4d21495f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/y.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:y_clamped_gradient", + "from_value": -4064.0, + "from_y": -4064, + "to_value": 4062.0, + "to_y": 4062 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/density_function/zero.json b/data/generated/V26_2/data/minecraft/worldgen/density_function/zero.json new file mode 100644 index 00000000..171538eb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/density_function/zero.json @@ -0,0 +1 @@ +0.0 \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json new file mode 100644 index 00000000..93134c03 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/bottomless_pit.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:feather", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:cobblestone", + "height": 2 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": "minecraft:villages" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json new file mode 100644 index 00000000..0f4a33e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/classic_flat.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:grass_block", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:dirt", + "height": 2 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": "minecraft:villages" + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/desert.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/desert.json new file mode 100644 index 00000000..e8686430 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/desert.json @@ -0,0 +1,32 @@ +{ + "display": "minecraft:sand", + "settings": { + "biome": "minecraft:desert", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 3 + }, + { + "block": "minecraft:sandstone", + "height": 52 + }, + { + "block": "minecraft:sand", + "height": 8 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:desert_pyramids", + "minecraft:mineshafts", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/overworld.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/overworld.json new file mode 100644 index 00000000..981ed494 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/overworld.json @@ -0,0 +1,33 @@ +{ + "display": "minecraft:short_grass", + "settings": { + "biome": "minecraft:plains", + "features": true, + "lakes": true, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 59 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:mineshafts", + "minecraft:pillager_outposts", + "minecraft:ruined_portals", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json new file mode 100644 index 00000000..7d960592 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/redstone_ready.json @@ -0,0 +1,23 @@ +{ + "display": "minecraft:redstone", + "settings": { + "biome": "minecraft:desert", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 3 + }, + { + "block": "minecraft:sandstone", + "height": 116 + } + ], + "structure_overrides": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json new file mode 100644 index 00000000..6f4df895 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/snowy_kingdom.json @@ -0,0 +1,34 @@ +{ + "display": "minecraft:snow", + "settings": { + "biome": "minecraft:snowy_plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 59 + }, + { + "block": "minecraft:dirt", + "height": 3 + }, + { + "block": "minecraft:grass_block", + "height": 1 + }, + { + "block": "minecraft:snow", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:villages", + "minecraft:igloos" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/the_void.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/the_void.json new file mode 100644 index 00000000..6de56e38 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/the_void.json @@ -0,0 +1,15 @@ +{ + "display": "minecraft:barrier", + "settings": { + "biome": "minecraft:the_void", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:air", + "height": 1 + } + ], + "structure_overrides": [] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json new file mode 100644 index 00000000..d3b8a8ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/tunnelers_dream.json @@ -0,0 +1,30 @@ +{ + "display": "minecraft:stone", + "settings": { + "biome": "minecraft:windswept_hills", + "features": true, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:stone", + "height": 230 + }, + { + "block": "minecraft:dirt", + "height": 5 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:mineshafts", + "minecraft:strongholds" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/water_world.json b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/water_world.json new file mode 100644 index 00000000..cc84af5f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/flat_level_generator_preset/water_world.json @@ -0,0 +1,39 @@ +{ + "display": "minecraft:water_bucket", + "settings": { + "biome": "minecraft:deep_ocean", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:deepslate", + "height": 64 + }, + { + "block": "minecraft:stone", + "height": 5 + }, + { + "block": "minecraft:dirt", + "height": 5 + }, + { + "block": "minecraft:gravel", + "height": 5 + }, + { + "block": "minecraft:water", + "height": 90 + } + ], + "structure_overrides": [ + "minecraft:ocean_ruins", + "minecraft:shipwrecks", + "minecraft:ocean_monuments" + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json b/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json new file mode 100644 index 00000000..69ae9ebf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/nether.json @@ -0,0 +1,3 @@ +{ + "preset": "minecraft:nether" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json b/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json new file mode 100644 index 00000000..4dd59007 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/multi_noise_biome_source_parameter_list/overworld.json @@ -0,0 +1,3 @@ +{ + "preset": "minecraft:overworld" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_barrier.json b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_barrier.json new file mode 100644 index 00000000..24271d2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_barrier.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_floodedness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_fluid_level_spread.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_lava.json b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_lava.json new file mode 100644 index 00000000..5eba7707 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/aquifer_lava.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -1 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar.json b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar.json new file mode 100644 index 00000000..44eea82a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar_roof.json b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar_roof.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_pillar_roof.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_surface.json b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/badlands_surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/calcite.json b/data/generated/V26_2/data/minecraft/worldgen/noise/calcite.json new file mode 100644 index 00000000..d0ae5c0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/calcite.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/cave_cheese.json b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_cheese.json new file mode 100644 index 00000000..76e3564a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_cheese.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 0.5, + 1.0, + 2.0, + 1.0, + 2.0, + 1.0, + 0.0, + 2.0, + 0.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/cave_entrance.json b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_entrance.json new file mode 100644 index 00000000..b03b4dd6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_entrance.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 0.4, + 0.5, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/cave_layer.json b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_layer.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/cave_layer.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/clay_bands_offset.json b/data/generated/V26_2/data/minecraft/worldgen/noise/clay_bands_offset.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/clay_bands_offset.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness.json new file mode 100644 index 00000000..974cce70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 2.0, + 2.0, + 2.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness_large.json b/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness_large.json new file mode 100644 index 00000000..1a966482 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/continentalness_large.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 2.0, + 2.0, + 2.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/erosion.json b/data/generated/V26_2/data/minecraft/worldgen/noise/erosion.json new file mode 100644 index 00000000..5cb78233 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/erosion.json @@ -0,0 +1,10 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0, + 1.0 + ], + "firstOctave": -9 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/erosion_large.json b/data/generated/V26_2/data/minecraft/worldgen/noise/erosion_large.json new file mode 100644 index 00000000..9d22d239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/erosion_large.json @@ -0,0 +1,10 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0, + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/gravel.json b/data/generated/V26_2/data/minecraft/worldgen/noise/gravel.json new file mode 100644 index 00000000..77668018 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/gravel.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/gravel_layer.json b/data/generated/V26_2/data/minecraft/worldgen/noise/gravel_layer.json new file mode 100644 index 00000000..64adfc30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/gravel_layer.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ice.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ice.json new file mode 100644 index 00000000..93c50c69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ice.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar.json b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar.json new file mode 100644 index 00000000..b51be97c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar_roof.json b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar_roof.json new file mode 100644 index 00000000..24271d2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_pillar_roof.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_surface.json b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/iceberg_surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/jagged.json b/data/generated/V26_2/data/minecraft/worldgen/noise/jagged.json new file mode 100644 index 00000000..75d6175f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/jagged.json @@ -0,0 +1,21 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -16 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/nether/temperature.json b/data/generated/V26_2/data/minecraft/worldgen/noise/nether/temperature.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/nether/temperature.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/nether/vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/noise/nether/vegetation.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/nether/vegetation.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/nether_state_selector.json b/data/generated/V26_2/data/minecraft/worldgen/noise/nether_state_selector.json new file mode 100644 index 00000000..964556b3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/nether_state_selector.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -4 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/nether_wart.json b/data/generated/V26_2/data/minecraft/worldgen/noise/nether_wart.json new file mode 100644 index 00000000..4ecd087f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/nether_wart.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.9 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/netherrack.json b/data/generated/V26_2/data/minecraft/worldgen/noise/netherrack.json new file mode 100644 index 00000000..afceca13 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/netherrack.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.35 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/noodle.json b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_a.json b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_a.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_a.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_b.json b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_b.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_ridge_b.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_thickness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/noodle_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/offset.json b/data/generated/V26_2/data/minecraft/worldgen/noise/offset.json new file mode 100644 index 00000000..db285f39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/offset.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 0.0 + ], + "firstOctave": -3 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ore_gap.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_gap.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_gap.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_a.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_a.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_a.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_b.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_b.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_vein_b.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ore_veininess.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_veininess.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ore_veininess.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/packed_ice.json b/data/generated/V26_2/data/minecraft/worldgen/noise/packed_ice.json new file mode 100644 index 00000000..97249698 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/packed_ice.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/patch.json b/data/generated/V26_2/data/minecraft/worldgen/noise/patch.json new file mode 100644 index 00000000..b73af3ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/patch.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/pillar.json b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar.json new file mode 100644 index 00000000..15e00691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar.json @@ -0,0 +1,7 @@ +{ + "amplitudes": [ + 1.0, + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_rareness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_rareness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_rareness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_thickness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/pillar_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/powder_snow.json b/data/generated/V26_2/data/minecraft/worldgen/noise/powder_snow.json new file mode 100644 index 00000000..b51be97c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/powder_snow.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/ridge.json b/data/generated/V26_2/data/minecraft/worldgen/noise/ridge.json new file mode 100644 index 00000000..c935aa7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/ridge.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 2.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/soul_sand_layer.json b/data/generated/V26_2/data/minecraft/worldgen/noise/soul_sand_layer.json new file mode 100644 index 00000000..64adfc30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/soul_sand_layer.json @@ -0,0 +1,14 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0, + 0.013333333333333334 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_elevation.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_modulator.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_2d_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_1.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_1.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_1.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_2.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_2.json new file mode 100644 index 00000000..0701b239 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_2.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -7 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json new file mode 100644 index 00000000..90d5f80b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_rarity.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -11 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_3d_thickness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness.json new file mode 100644 index 00000000..9968798a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json new file mode 100644 index 00000000..897544f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/spaghetti_roughness_modulator.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/sulfur_cave_gradient.json b/data/generated/V26_2/data/minecraft/worldgen/noise/sulfur_cave_gradient.json new file mode 100644 index 00000000..a0c08cea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/sulfur_cave_gradient.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 0.0, + 1.0 + ], + "firstOctave": -5 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/surface.json b/data/generated/V26_2/data/minecraft/worldgen/noise/surface.json new file mode 100644 index 00000000..492e6c81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/surface.json @@ -0,0 +1,8 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/surface_secondary.json b/data/generated/V26_2/data/minecraft/worldgen/noise/surface_secondary.json new file mode 100644 index 00000000..71bbea94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/surface_secondary.json @@ -0,0 +1,9 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 1.0 + ], + "firstOctave": -6 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/surface_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/noise/surface_swamp.json new file mode 100644 index 00000000..d6da1547 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/surface_swamp.json @@ -0,0 +1,6 @@ +{ + "amplitudes": [ + 1.0 + ], + "firstOctave": -2 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/temperature.json b/data/generated/V26_2/data/minecraft/worldgen/noise/temperature.json new file mode 100644 index 00000000..ddcab842 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/temperature.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.5, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/temperature_large.json b/data/generated/V26_2/data/minecraft/worldgen/noise/temperature_large.json new file mode 100644 index 00000000..184e5899 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/temperature_large.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.5, + 0.0, + 1.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -12 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation.json new file mode 100644 index 00000000..320e418e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -8 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation_large.json b/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation_large.json new file mode 100644 index 00000000..1f4daef0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise/vegetation_large.json @@ -0,0 +1,11 @@ +{ + "amplitudes": [ + 1.0, + 1.0, + 0.0, + 0.0, + 0.0, + 0.0 + ], + "firstOctave": -10 +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/amplified.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/amplified.json new file mode 100644 index 00000000..ec275059 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/amplified.json @@ -0,0 +1,2750 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld/continents", + "depth": "minecraft:overworld_amplified/depth", + "erosion": "minecraft:overworld/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 304, + "to_value": 0.0, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_amplified/sloped_cheese" + }, + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_amplified/sloped_cheese" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_amplified/sloped_cheese" + } + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.4, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.4, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 304, + "to_value": 0.0, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_amplified/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:wooded_badlands" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:ice_spikes" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mushroom_fields" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/caves.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/caves.json new file mode 100644 index 00000000..eefc66bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/caves.json @@ -0,0 +1,2403 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 192, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 2.5, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -72, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2.5, + "argument2": { + "type": "minecraft:add", + "argument1": 0.9375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 104, + "to_value": 0.0, + "to_y": 128 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.9375, + "argument2": "minecraft:nether/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 32, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "below_top": 0 + }, + "random_name": "minecraft:bedrock_roof", + "true_at_and_below": { + "below_top": 5 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:wooded_badlands" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:ice_spikes" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mushroom_fields" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/end.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/end.json new file mode 100644 index 00000000..910b48ad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/end.json @@ -0,0 +1,97 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:end_stone" + }, + "default_fluid": { + "Name": "minecraft:air" + }, + "disable_mob_generation": true, + "legacy_random_source": true, + "noise": { + "height": 128, + "min_y": 0, + "size_horizontal": 2, + "size_vertical": 1 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": { + "type": "minecraft:cache_2d", + "argument": { + "type": "minecraft:end_islands" + } + }, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": -0.234375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": 4, + "to_value": 1.0, + "to_y": 32 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.234375, + "argument2": { + "type": "minecraft:add", + "argument1": -23.4375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 56, + "to_value": 0.0, + "to_y": 312 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 23.4375, + "argument2": "minecraft:end/sloped_cheese" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 0, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:end_stone" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/floating_islands.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/floating_islands.json new file mode 100644 index 00000000..66185cfe --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/floating_islands.json @@ -0,0 +1,2362 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 256, + "min_y": 0, + "size_horizontal": 2, + "size_vertical": 1 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": -0.234375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": 4, + "to_value": 1.0, + "to_y": 32 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.234375, + "argument2": { + "type": "minecraft:add", + "argument1": -23.4375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 184, + "to_value": 0.0, + "to_y": 440 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 23.4375, + "argument2": "minecraft:end/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": 0.0, + "vegetation": 0.0, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": -64, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:wooded_badlands" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:ice_spikes" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mushroom_fields" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/large_biomes.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/large_biomes.json new file mode 100644 index 00000000..d0493fe0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/large_biomes.json @@ -0,0 +1,2750 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld_large_biomes/continents", + "depth": "minecraft:overworld_large_biomes/depth", + "erosion": "minecraft:overworld_large_biomes/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_large_biomes/sloped_cheese" + }, + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_large_biomes/sloped_cheese" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld_large_biomes/sloped_cheese" + } + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld_large_biomes/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation_large", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:wooded_badlands" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:ice_spikes" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mushroom_fields" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/nether.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/nether.json new file mode 100644 index 00000000..0e2c966c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/nether.json @@ -0,0 +1,727 @@ +{ + "aquifers_enabled": false, + "default_block": { + "Name": "minecraft:netherrack" + }, + "default_fluid": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": true, + "noise": { + "height": 128, + "min_y": 0, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": 0.0, + "continents": 0.0, + "depth": 0.0, + "erosion": 0.0, + "final_density": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 2.5, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -8, + "to_value": 1.0, + "to_y": 24 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -2.5, + "argument2": { + "type": "minecraft:add", + "argument1": 0.9375, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 104, + "to_value": 0.0, + "to_y": 128 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.9375, + "argument2": "minecraft:nether/base_3d_noise" + } + } + } + } + } + } + } + } + } + }, + "fluid_level_floodedness": 0.0, + "fluid_level_spread": 0.0, + "lava": 0.0, + "preliminary_surface_level": 0.0, + "ridges": 0.0, + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:nether/temperature", + "shift_x": 0.0, + "shift_y": 0.0, + "shift_z": 0.0, + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:nether/vegetation", + "shift_x": 0.0, + "shift_y": 0.0, + "shift_z": 0.0, + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": 0.0, + "vein_ridged": 0.0, + "vein_toggle": 0.0 + }, + "ore_veins_enabled": false, + "sea_level": 32, + "spawn_target": [], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "below_top": 0 + }, + "random_name": "minecraft:bedrock_roof", + "true_at_and_below": { + "below_top": 5 + } + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "below_top": 5 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:basalt_deltas" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:patch" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:basalt", + "Properties": { + "axis": "y" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:soul_sand_valley" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_soil" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:patch" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:nether_state_selector" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_soil" + } + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 32 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:lava", + "Properties": { + "level": "0" + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:warped_forest" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.54, + "noise": "minecraft:netherrack" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 1.17, + "noise": "minecraft:nether_wart" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:warped_wart_block" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:warped_nylium" + } + } + ] + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:crimson_forest" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.54, + "noise": "minecraft:netherrack" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 1.17, + "noise": "minecraft:nether_wart" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:nether_wart_block" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:crimson_nylium" + } + } + ] + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:nether_wastes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:soul_sand_layer" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 30 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:soul_sand" + } + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 31 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 35 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.012, + "noise": "minecraft:gravel_layer" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 32 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + } + ] + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:netherrack" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/noise_settings/overworld.json b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/overworld.json new file mode 100644 index 00000000..c0f23154 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/noise_settings/overworld.json @@ -0,0 +1,2750 @@ +{ + "aquifers_enabled": true, + "default_block": { + "Name": "minecraft:stone" + }, + "default_fluid": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + }, + "disable_mob_generation": false, + "legacy_random_source": false, + "noise": { + "height": 384, + "min_y": -64, + "size_horizontal": 1, + "size_vertical": 2 + }, + "noise_router": { + "barrier": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_barrier", + "xz_scale": 1.0, + "y_scale": 0.5 + }, + "continents": "minecraft:overworld/continents", + "depth": "minecraft:overworld/depth", + "erosion": "minecraft:overworld/erosion", + "final_density": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:squeeze", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:mul", + "argument1": 0.64, + "argument2": { + "type": "minecraft:blend_density", + "argument": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:range_choice", + "input": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld/sloped_cheese" + }, + "max_exclusive": 1.5625, + "min_inclusive": -1000000.0, + "when_in_range": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld/sloped_cheese" + }, + "argument2": { + "type": "minecraft:mul", + "argument1": 5.0, + "argument2": "minecraft:overworld/caves/entrances" + } + }, + "when_out_of_range": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:min", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:square", + "argument": { + "type": "minecraft:noise", + "noise": "minecraft:cave_layer", + "xz_scale": 1.0, + "y_scale": 8.0 + } + } + }, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 0.27, + "argument2": { + "type": "minecraft:noise", + "noise": "minecraft:cave_cheese", + "xz_scale": 1.0, + "y_scale": 0.6666666666666666 + } + }, + "max": 1.0, + "min": -1.0 + }, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 1.5, + "argument2": { + "type": "minecraft:mul", + "argument1": -0.64, + "argument2": { + "type": "minecraft:cache_once", + "argument": "minecraft:overworld/sloped_cheese" + } + } + }, + "max": 0.5, + "min": 0.0 + } + } + }, + "argument2": "minecraft:overworld/caves/entrances" + }, + "argument2": { + "type": "minecraft:add", + "argument1": "minecraft:overworld/caves/spaghetti_2d", + "argument2": "minecraft:overworld/caves/spaghetti_roughness_function" + } + }, + "argument2": { + "type": "minecraft:range_choice", + "input": "minecraft:overworld/caves/pillars", + "max_exclusive": 0.03, + "min_inclusive": -1000000.0, + "when_in_range": -1000000.0, + "when_out_of_range": "minecraft:overworld/caves/pillars" + } + } + } + } + } + } + } + } + } + } + } + } + }, + "argument2": "minecraft:overworld/caves/noodle" + }, + "fluid_level_floodedness": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_floodedness", + "xz_scale": 1.0, + "y_scale": 0.67 + }, + "fluid_level_spread": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_fluid_level_spread", + "xz_scale": 1.0, + "y_scale": 0.7142857142857143 + }, + "lava": { + "type": "minecraft:noise", + "noise": "minecraft:aquifer_lava", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "preliminary_surface_level": { + "type": "minecraft:find_top_surface", + "cell_height": 8, + "density": { + "type": "minecraft:add", + "argument1": -0.390625, + "argument2": { + "type": "minecraft:add", + "argument1": 0.1171875, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 0.0, + "from_y": -64, + "to_value": 1.0, + "to_y": -40 + }, + "argument2": { + "type": "minecraft:add", + "argument1": -0.1171875, + "argument2": { + "type": "minecraft:add", + "argument1": -0.078125, + "argument2": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.0, + "from_y": 240, + "to_value": 0.0, + "to_y": 256 + }, + "argument2": { + "type": "minecraft:add", + "argument1": 0.078125, + "argument2": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": -0.703125, + "argument2": { + "type": "minecraft:mul", + "argument1": 4.0, + "argument2": { + "type": "minecraft:quarter_negative", + "argument": { + "type": "minecraft:mul", + "argument1": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:y_clamped_gradient", + "from_value": 1.5, + "from_y": -64, + "to_value": -1.5, + "to_y": 320 + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/offset" + } + }, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + } + } + }, + "max": 64.0, + "min": -64.0 + } + } + } + } + } + } + } + }, + "lower_bound": -64, + "upper_bound": { + "type": "minecraft:clamp", + "input": { + "type": "minecraft:add", + "argument1": 128.0, + "argument2": { + "type": "minecraft:mul", + "argument1": -128.0, + "argument2": { + "type": "minecraft:add", + "argument1": { + "type": "minecraft:mul", + "argument1": 0.2734375, + "argument2": { + "type": "minecraft:invert", + "argument": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/factor" + } + } + }, + "argument2": { + "type": "minecraft:mul", + "argument1": -1.0, + "argument2": { + "type": "minecraft:cache_2d", + "argument": "minecraft:overworld/offset" + } + } + } + } + }, + "max": 320.0, + "min": -40.0 + } + }, + "ridges": "minecraft:overworld/ridges", + "temperature": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:temperature", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vegetation": { + "type": "minecraft:shifted_noise", + "noise": "minecraft:vegetation", + "shift_x": "minecraft:shift_x", + "shift_y": 0.0, + "shift_z": "minecraft:shift_z", + "xz_scale": 0.25, + "y_scale": 0.0 + }, + "vein_gap": { + "type": "minecraft:noise", + "noise": "minecraft:ore_gap", + "xz_scale": 1.0, + "y_scale": 1.0 + }, + "vein_ridged": { + "type": "minecraft:add", + "argument1": -0.07999999821186066, + "argument2": { + "type": "minecraft:max", + "argument1": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_a", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + }, + "argument2": { + "type": "minecraft:abs", + "argument": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_vein_b", + "xz_scale": 4.0, + "y_scale": 4.0 + }, + "when_out_of_range": 0.0 + } + } + } + } + }, + "vein_toggle": { + "type": "minecraft:interpolated", + "argument": { + "type": "minecraft:range_choice", + "input": "minecraft:y", + "max_exclusive": 51.0, + "min_inclusive": -60.0, + "when_in_range": { + "type": "minecraft:noise", + "noise": "minecraft:ore_veininess", + "xz_scale": 1.5, + "y_scale": 1.5 + }, + "when_out_of_range": 0.0 + } + } + }, + "ore_veins_enabled": true, + "sea_level": 63, + "spawn_target": [ + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.16 + ] + }, + { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.16, + 1.0 + ] + } + ], + "surface_rule": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "above_bottom": 5 + }, + "random_name": "minecraft:bedrock_floor", + "true_at_and_below": { + "above_bottom": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:bedrock" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:above_preliminary_surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:wooded_badlands" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 97 + }, + "surface_depth_multiplier": 2 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 62 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 60 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + } + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.0, + "noise": "minecraft:surface_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:badlands", + "minecraft:eroded_badlands", + "minecraft:wooded_badlands" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 256 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": -0.5454, + "min_threshold": -0.909, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.1818, + "min_threshold": -0.1818, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.909, + "min_threshold": 0.5454, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:terracotta" + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:red_sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:hole" + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:y_above", + "add_stone_depth": false, + "anchor": { + "absolute": 63 + }, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:not", + "invert": { + "type": "minecraft:y_above", + "add_stone_depth": true, + "anchor": { + "absolute": 74 + }, + "surface_depth_multiplier": 1 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:orange_terracotta" + } + } + } + }, + { + "type": "minecraft:bandlands" + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:white_terracotta" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": -1, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:air" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:temperature" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": 0.0, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": 0.0, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.6, + "min_threshold": 0.35, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.06060606060606061, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:old_growth_pine_taiga", + "minecraft:old_growth_spruce_taiga" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:coarse_dirt" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.11515151515151514, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:podzol", + "Properties": { + "snowy": "false" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:ice_spikes" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mushroom_fields" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mycelium", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + ] + } + ] + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": true, + "offset": -6, + "surface_depth_multiplier": -1 + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_ocean", + "minecraft:deep_frozen_ocean" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:hole" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:frozen_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.2, + "min_threshold": -0.5, + "noise": "minecraft:packed_ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:packed_ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.025, + "min_threshold": -0.0625, + "noise": "minecraft:ice" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:ice" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:snowy_slopes" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:steep" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:snow_block" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:jagged_peaks" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:grove" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.58, + "min_threshold": 0.45, + "noise": "minecraft:powder_snow" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:water", + "add_stone_depth": false, + "offset": 0, + "surface_depth_multiplier": 0 + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:powder_snow" + } + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_peaks" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.0125, + "min_threshold": -0.0125, + "noise": "minecraft:calcite" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:calcite" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:stony_shore" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 0.05, + "min_threshold": -0.05, + "noise": "minecraft:gravel" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_hills" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:dripstone_caves" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + ] + } + } + ] + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_savanna" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.21212121212121213, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:windswept_gravelly_hills" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.24242424242424243, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "max_threshold": 1.7976931348623157E308, + "min_threshold": -0.12121212121212122, + "noise": "minecraft:surface" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:mangrove_swamp" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:mud" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:dirt" + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:beach", + "minecraft:snowy_beach" + ] + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 6, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:desert" + }, + "then_run": { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": true, + "offset": 0, + "secondary_depth_range": 30, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "floor" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:frozen_peaks", + "minecraft:jagged_peaks" + ] + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": [ + "minecraft:warm_ocean", + "minecraft:lukewarm_ocean", + "minecraft:deep_lukewarm_ocean" + ] + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sandstone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sand" + } + } + ] + } + }, + { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:stone_depth", + "add_surface_depth": false, + "offset": 0, + "secondary_depth_range": 0, + "surface_type": "ceiling" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:stone" + } + } + }, + { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:gravel" + } + } + ] + } + ] + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:biome", + "biome_is": "minecraft:sulfur_caves" + }, + "then_run": { + "type": "minecraft:sequence", + "sequence": [ + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": -0.10000000149011612, + "min_threshold": -0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 0.4000000059604645, + "min_threshold": 0.0, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:sulfur" + } + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:noise_threshold", + "is_3d": true, + "max_threshold": 1.7976931348623157E308, + "min_threshold": 0.4000000059604645, + "noise": "minecraft:sulfur_cave_gradient" + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:cinnabar" + } + } + } + ] + } + }, + { + "type": "minecraft:condition", + "if_true": { + "type": "minecraft:vertical_gradient", + "false_at_and_above": { + "absolute": 8 + }, + "random_name": "minecraft:deepslate", + "true_at_and_below": { + "absolute": 0 + } + }, + "then_run": { + "type": "minecraft:block", + "result_state": { + "Name": "minecraft:deepslate", + "Properties": { + "axis": "y" + } + } + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia.json new file mode 100644 index 00000000..ee4d0d43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:acacia", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:acacia_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia_checked.json new file mode 100644 index 00000000..ee4d0d43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/acacia_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:acacia", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:acacia_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/amethyst_geode.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/amethyst_geode.json new file mode 100644 index 00000000..3a21bb47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/amethyst_geode.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:amethyst_geode", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 24 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 30 + }, + "min_inclusive": { + "above_bottom": 6 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo.json new file mode 100644 index 00000000..65e79c18 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo.json @@ -0,0 +1,21 @@ +{ + "feature": "minecraft:bamboo_some_podzol", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_offset": 0.3, + "noise_to_count_ratio": 160 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_light.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_light.json new file mode 100644 index 00000000..e827cc28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_light.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:bamboo_no_podzol", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json new file mode 100644 index 00000000..9da04ec6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/bamboo_vegetation.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:bamboo_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 30, + "weight": 9 + }, + { + "data": 31, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_blobs.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_blobs.json new file mode 100644 index 00000000..369daf31 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_blobs.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_blobs", + "placement": [ + { + "type": "minecraft:count", + "count": 75 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_pillar.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_pillar.json new file mode 100644 index 00000000..9505c449 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/basalt_pillar.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:basalt_pillar", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002.json new file mode 100644 index 00000000..fafa3b47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_0002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json new file mode 100644 index 00000000..4d983284 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_002.json new file mode 100644 index 00000000..92cbaffb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_checked.json new file mode 100644 index 00000000..4171ea91 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json new file mode 100644 index 00000000..5f64be20 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:birch_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_tall.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_tall.json new file mode 100644 index 00000000..498eecc4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/birch_tall.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:birch_tall", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blackstone_blobs.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blackstone_blobs.json new file mode 100644 index 00000000..352f73b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blackstone_blobs.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:blackstone_blobs", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blue_ice.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blue_ice.json new file mode 100644 index 00000000..b2901812 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/blue_ice.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:blue_ice", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 19, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 61 + }, + "min_inclusive": { + "absolute": 30 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json new file mode 100644 index 00000000..047eccb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_nether.json @@ -0,0 +1,53 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json new file mode 100644 index 00000000..02c84d30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json new file mode 100644 index 00000000..d14c680b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_old_growth.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json new file mode 100644 index 00000000..7e3e3c30 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json new file mode 100644 index 00000000..846bdf63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/brown_mushroom_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:brown_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cave_vines.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cave_vines.json new file mode 100644 index 00000000..b22c0aa8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cave_vines.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:cave_vine", + "placement": [ + { + "type": "minecraft:count", + "count": 188 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:has_sturdy_face", + "direction": "down" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_bees_005.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_bees_005.json new file mode 100644 index 00000000..1939ba11 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_bees_005.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:cherry_bees_005", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_checked.json new file mode 100644 index 00000000..36d0536a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/cherry_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:cherry", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/chorus_plant.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/chorus_plant.json new file mode 100644 index 00000000..e6971203 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/chorus_plant.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:chorus_plant", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 4, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json new file mode 100644 index 00000000..77af5731 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/classic_vines_cave_feature.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:vines", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json new file mode 100644 index 00000000..2b2bd018 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_forest_vegetation.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:crimson_forest_vegetation", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 6 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_fungi.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_fungi.json new file mode 100644 index 00000000..c805ba3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/crimson_fungi.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:crimson_fungus", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json new file mode 100644 index 00000000..1a69bc57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_forest_vegetation.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:dark_forest_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_checked.json new file mode 100644 index 00000000..bbfac2a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:dark_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:dark_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json new file mode 100644 index 00000000..b46e1728 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dark_oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:dark_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:dark_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/delta.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/delta.json new file mode 100644 index 00000000..b483f400 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/delta.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:delta", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 40 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/desert_well.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/desert_well.json new file mode 100644 index 00000000..972623c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/desert_well.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:desert_well", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 1000 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_clay.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_clay.json new file mode 100644 index 00000000..7bb5f696 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_clay.json @@ -0,0 +1,22 @@ +{ + "feature": "minecraft:disk_clay", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_grass.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_grass.json new file mode 100644 index 00000000..df6d29a8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_grass.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:disk_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:mud" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_gravel.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_gravel.json new file mode 100644 index 00000000..f6448e5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_gravel.json @@ -0,0 +1,22 @@ +{ + "feature": "minecraft:disk_gravel", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_sand.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_sand.json new file mode 100644 index 00000000..88df19ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/disk_sand.json @@ -0,0 +1,26 @@ +{ + "feature": "minecraft:disk_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:water" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dripstone_cluster.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dripstone_cluster.json new file mode 100644 index 00000000..b13083bb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/dripstone_cluster.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:dripstone_cluster", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 96, + "min_inclusive": 48 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_gateway_return.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_gateway_return.json new file mode 100644 index 00000000..d0c7c6c4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_gateway_return.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:end_gateway_return", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 700 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": { + "type": "minecraft:uniform", + "max_inclusive": 9, + "min_inclusive": 3 + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_island_decorated.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_island_decorated.json new file mode 100644 index 00000000..453397dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_island_decorated.json @@ -0,0 +1,43 @@ +{ + "feature": "minecraft:end_island", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 14 + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 3 + }, + { + "data": 2, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 70 + }, + "min_inclusive": { + "absolute": 55 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_platform.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_platform.json new file mode 100644 index 00000000..77cbe112 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_platform.json @@ -0,0 +1,18 @@ +{ + "feature": "minecraft:end_platform", + "placement": [ + { + "type": "minecraft:fixed_placement", + "positions": [ + [ + 100, + 49, + 0 + ] + ] + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_spike.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_spike.json new file mode 100644 index 00000000..8140240a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/end_spike.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:end_spike", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json new file mode 100644 index 00000000..f6dc2939 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_birch_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_birch_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json new file mode 100644 index 00000000..1a17826b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_jungle_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json new file mode 100644 index 00000000..e6aac160 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_oak_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_oak_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json new file mode 100644 index 00000000..ab56e627 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_spruce_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_spruce_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json new file mode 100644 index 00000000..4af5ed15 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fallen_super_birch_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fallen_super_birch_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json new file mode 100644 index 00000000..952dcadc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..7a9bd273 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json new file mode 100644 index 00000000..4e4defd7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json new file mode 100644 index 00000000..b13ef1d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json new file mode 100644 index 00000000..96b13592 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fancy_oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:fancy_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_cherry.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_cherry.json new file mode 100644 index 00000000..834f8a2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_cherry.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:flower_cherry", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_default.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_default.json new file mode 100644 index 00000000..6a3ba161 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_default.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:flower_default", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_flower_forest.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_flower_forest.json new file mode 100644 index 00000000..62bb6f40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_flower_forest.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:flower_flower_forest", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json new file mode 100644 index 00000000..3c62153b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_forest_flowers.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:forest_flowers", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:clamped", + "max_inclusive": 3, + "min_inclusive": 0, + "source": { + "type": "minecraft:uniform", + "max_inclusive": 3, + "min_inclusive": -1 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_meadow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_meadow.json new file mode 100644 index 00000000..67fb4156 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_meadow.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:flower_meadow", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_pale_garden.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_pale_garden.json new file mode 100644 index 00000000..4ca303c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_pale_garden.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:flower_pale_garden", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plain.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plain.json new file mode 100644 index 00000000..6534cc02 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plain.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:flower_plain", + "placement": [ + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plains.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plains.json new file mode 100644 index 00000000..e69d6790 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_plains.json @@ -0,0 +1,51 @@ +{ + "feature": "minecraft:flower_plain", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 4, + "below_noise": 15, + "noise_level": -0.8 + }, + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_swamp.json new file mode 100644 index 00000000..e95bfd57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:flower_swamp", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_warm.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_warm.json new file mode 100644 index 00000000..1e13bcb1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/flower_warm.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:flower_default", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_flowers.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_flowers.json new file mode 100644 index 00000000..7d5d4df8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_flowers.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:forest_flowers", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:clamped", + "max_inclusive": 1, + "min_inclusive": 0, + "source": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": -3 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_rock.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_rock.json new file mode 100644 index 00000000..db95ee2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/forest_rock.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:forest_rock", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_lower.json new file mode 100644 index 00000000..d1c7d385 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:fossil_diamonds", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_upper.json new file mode 100644 index 00000000..d6f4a4f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/fossil_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:fossil_coal", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/freeze_top_layer.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/freeze_top_layer.json new file mode 100644 index 00000000..d95d87df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/freeze_top_layer.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:freeze_top_layer", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glow_lichen.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glow_lichen.json new file mode 100644 index 00000000..292b0645 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glow_lichen.json @@ -0,0 +1,36 @@ +{ + "feature": "minecraft:glow_lichen", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 157, + "min_inclusive": 104 + } + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -13 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone.json new file mode 100644 index 00000000..560063db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:glowstone_extra", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone_extra.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone_extra.json new file mode 100644 index 00000000..ba2d4f40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/glowstone_extra.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:glowstone_extra", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:biased_to_bottom", + "max_inclusive": 9, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/grass_bonemeal.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/grass_bonemeal.json new file mode 100644 index 00000000..a8e523bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/grass_bonemeal.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_patch.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_patch.json new file mode 100644 index 00000000..322a6430 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_patch.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:ice_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:snow_block" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_spike.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_spike.json new file mode 100644 index 00000000..a545382e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ice_spike.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:ice_spike", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_blue.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_blue.json new file mode 100644 index 00000000..465f52f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_blue.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:iceberg_blue", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_packed.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_packed.json new file mode 100644 index 00000000..df686ce8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/iceberg_packed.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:iceberg_packed", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_bush.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_bush.json new file mode 100644 index 00000000..30e24a6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_bush.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:jungle_bush", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_tree.json new file mode 100644 index 00000000..c64fa96d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/jungle_tree.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_cold.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_cold.json new file mode 100644 index 00000000..e0a7fbf7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_cold.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:kelp", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_to_count_ratio": 120 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_warm.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_warm.json new file mode 100644 index 00000000..8d18622a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/kelp_warm.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:kelp", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 80.0, + "noise_to_count_ratio": 80 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_surface.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_surface.json new file mode 100644 index 00000000..72722131 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_surface.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:lake_lava", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 200 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_underground.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_underground.json new file mode 100644 index 00000000..a74a1c64 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lake_lava_underground.json @@ -0,0 +1,57 @@ +{ + "feature": "minecraft:lake_lava", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 9 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "down", + "max_steps": 32, + "target_condition": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + }, + { + "type": "minecraft:inside_world_bounds", + "offset": [ + 0, + -5, + 0 + ] + } + ] + } + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -5 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_basalt_columns.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_basalt_columns.json new file mode 100644 index 00000000..ea240cfd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_basalt_columns.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:large_basalt_columns", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 2 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_dripstone.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_dripstone.json new file mode 100644 index 00000000..df40c063 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/large_dripstone.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:large_dripstone", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 48, + "min_inclusive": 10 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json new file mode 100644 index 00000000..ca83901b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_ceiling_vegetation.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:moss_patch_ceiling", + "placement": [ + { + "type": "minecraft:count", + "count": 125 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_clay.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_clay.json new file mode 100644 index 00000000..8ec6d652 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_clay.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:lush_caves_clay", + "placement": [ + { + "type": "minecraft:count", + "count": 62 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json new file mode 100644 index 00000000..a6d74bae --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/lush_caves_vegetation.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:moss_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 125 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "down", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": 1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mangrove_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mangrove_checked.json new file mode 100644 index 00000000..b1b987fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mangrove_checked.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:mangrove", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json new file mode 100644 index 00000000..f0583154 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_jungle_tree_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_jungle_tree", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:jungle_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_pine_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_pine_checked.json new file mode 100644 index 00000000..3eea8e24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_pine_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json new file mode 100644 index 00000000..67c91906 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mega_spruce_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:mega_spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room.json new file mode 100644 index 00000000..eeec57fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:monster_room", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room_deep.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room_deep.json new file mode 100644 index 00000000..d4c380b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/monster_room_deep.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:monster_room", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -1 + }, + "min_inclusive": { + "above_bottom": 6 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json new file mode 100644 index 00000000..8079ef75 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/mushroom_island_vegetation.json @@ -0,0 +1,15 @@ +{ + "feature": "minecraft:mushroom_island_vegetation", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/nether_sprouts.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/nether_sprouts.json new file mode 100644 index 00000000..718616fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/nether_sprouts.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:nether_sprouts", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 4 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak.json new file mode 100644 index 00000000..219b753d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json new file mode 100644 index 00000000..de58b9f7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_0002_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_bees_0002_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_002.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_002.json new file mode 100644 index 00000000..25e38943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_bees_002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_bees_002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_checked.json new file mode 100644 index 00000000..219b753d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json new file mode 100644 index 00000000..3cbaadaa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/oak_leaf_litter.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:oak_leaf_litter", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json new file mode 100644 index 00000000..d0719a2f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_ancient_debris_large.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:ore_ancient_debris_large", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 24 + }, + "min_inclusive": { + "absolute": 8 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json new file mode 100644 index 00000000..782687df --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_andesite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json new file mode 100644 index 00000000..4ea278c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_andesite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_andesite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_blackstone.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_blackstone.json new file mode 100644 index 00000000..751fc75c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_blackstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_blackstone", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 31 + }, + "min_inclusive": { + "absolute": 5 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_clay.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_clay.json new file mode 100644 index 00000000..7bcecead --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_clay.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_clay", + "placement": [ + { + "type": "minecraft:count", + "count": 46 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_lower.json new file mode 100644 index 00000000..2469dd96 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_coal_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 192 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_upper.json new file mode 100644 index 00000000..973c39b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_coal_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_coal", + "placement": [ + { + "type": "minecraft:count", + "count": 30 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "absolute": 136 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper.json new file mode 100644 index 00000000..de894cfa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_copper_small", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 112 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper_large.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper_large.json new file mode 100644 index 00000000..9df99eb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_copper_large.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_copper_large", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 112 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_debris_small.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_debris_small.json new file mode 100644 index 00000000..1065910f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_debris_small.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:ore_ancient_debris_small", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 8 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond.json new file mode 100644 index 00000000..e24c6c9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_small", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json new file mode 100644 index 00000000..b9cfbaaa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_buried.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_large.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_large.json new file mode 100644 index 00000000..0a8a0f93 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_large.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_large", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 9 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 80 + }, + "min_inclusive": { + "above_bottom": -80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json new file mode 100644 index 00000000..cc88d4cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diamond_medium.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diamond_medium", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -4 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json new file mode 100644 index 00000000..7aabf8de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diorite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json new file mode 100644 index 00000000..404a8082 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_diorite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_diorite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_dirt.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_dirt.json new file mode 100644 index 00000000..bcce4c19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_dirt.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_dirt", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 160 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_emerald.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_emerald.json new file mode 100644 index 00000000..09d5a406 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_emerald.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_emerald", + "placement": [ + { + "type": "minecraft:count", + "count": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 480 + }, + "min_inclusive": { + "absolute": -16 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold.json new file mode 100644 index 00000000..004acb81 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 32 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json new file mode 100644 index 00000000..55072eb3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_deltas.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_nether_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_extra.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_extra.json new file mode 100644 index 00000000..c3cb1052 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_extra.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 50 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "absolute": 32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_lower.json new file mode 100644 index 00000000..5ab44009 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_lower.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:ore_gold_buried", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -48 + }, + "min_inclusive": { + "absolute": -64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_nether.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_nether.json new file mode 100644 index 00000000..1a3c6613 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gold_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_nether_gold", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_lower.json new file mode 100644 index 00000000..ab721172 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_granite", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 60 + }, + "min_inclusive": { + "absolute": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_upper.json new file mode 100644 index 00000000..c5787158 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_granite_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_granite", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 128 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel.json new file mode 100644 index 00000000..1dc3077b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gravel", + "placement": [ + { + "type": "minecraft:count", + "count": 14 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json new file mode 100644 index 00000000..7b2518e6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_gravel_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_gravel_nether", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 41 + }, + "min_inclusive": { + "absolute": 5 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_infested.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_infested.json new file mode 100644 index 00000000..b6615bb5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_infested.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_infested", + "placement": [ + { + "type": "minecraft:count", + "count": 14 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 63 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_middle.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_middle.json new file mode 100644 index 00000000..6f10b77c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_middle.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 56 + }, + "min_inclusive": { + "absolute": -24 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_small.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_small.json new file mode 100644 index 00000000..c21289de --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_small.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron_small", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 72 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_upper.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_upper.json new file mode 100644 index 00000000..e096548e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_iron_upper.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_iron", + "placement": [ + { + "type": "minecraft:count", + "count": 90 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 384 + }, + "min_inclusive": { + "absolute": 80 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis.json new file mode 100644 index 00000000..4f1d8737 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_lapis", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "absolute": 32 + }, + "min_inclusive": { + "absolute": -32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json new file mode 100644 index 00000000..e90a95e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_lapis_buried.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_lapis_buried", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 64 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_magma.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_magma.json new file mode 100644 index 00000000..4512bae5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_magma.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_magma", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 36 + }, + "min_inclusive": { + "absolute": 27 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json new file mode 100644 index 00000000..c1e9a491 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_deltas.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_quartz", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json new file mode 100644 index 00000000..fb9746f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_quartz_nether.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_quartz", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone.json new file mode 100644 index 00000000..d23d800d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_redstone", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 15 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json new file mode 100644 index 00000000..ce1d41cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_redstone_lower.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_redstone", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:trapezoid", + "max_inclusive": { + "above_bottom": 32 + }, + "min_inclusive": { + "above_bottom": -32 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_soul_sand.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_soul_sand.json new file mode 100644 index 00000000..28b86977 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_soul_sand.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_soul_sand", + "placement": [ + { + "type": "minecraft:count", + "count": 12 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 31 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_tuff.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_tuff.json new file mode 100644 index 00000000..b5e55e1f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/ore_tuff.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:ore_tuff", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json new file mode 100644 index 00000000..8e5766d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_flowers.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:pale_forest_flower", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json new file mode 100644 index 00000000..9542b328 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_garden_vegetation.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:pale_garden_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_moss_patch.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_moss_patch.json new file mode 100644 index 00000000..c7da9c32 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_moss_patch.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:pale_moss_patch", + "placement": [ + { + "type": "minecraft:count", + "count": 1 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_checked.json new file mode 100644 index 00000000..5cfab029 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pale_oak", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:pale_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json new file mode 100644 index 00000000..32422f5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pale_oak_creaking_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pale_oak_creaking", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:pale_oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_bush.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_bush.json new file mode 100644 index 00000000..2b8463c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_bush.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_common.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_common.json new file mode 100644 index 00000000..4aeaaa7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_common.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_rare.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_rare.json new file mode 100644 index 00000000..9d7ca729 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_berry_rare.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:berry_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 384 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_bush.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_bush.json new file mode 100644 index 00000000..007024a1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_bush.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 24 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 5, + "min": -5, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus.json new file mode 100644 index 00000000..a5149bd2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json new file mode 100644 index 00000000..a45d088d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_decorated.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 13 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json new file mode 100644 index 00000000..d784d1bc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_cactus_desert.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:cactus", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cactus", + "Properties": { + "age": "0" + } + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json new file mode 100644 index 00000000..440c99b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_crimson_roots.json @@ -0,0 +1,46 @@ +{ + "feature": "minecraft:crimson_roots", + "placement": [ + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush.json new file mode 100644 index 00000000..120e3b69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json new file mode 100644 index 00000000..2bdf8715 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_2.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json new file mode 100644 index 00000000..321dbfbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dead_bush_badlands.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dead_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json new file mode 100644 index 00000000..cb1fbc4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_badlands.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dry_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json new file mode 100644 index 00000000..888c7ad8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_dry_grass_desert.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:dry_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_fire.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_fire.json new file mode 100644 index 00000000..669dcdfc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_fire.json @@ -0,0 +1,71 @@ +{ + "feature": "minecraft:patch_fire", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:netherrack", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json new file mode 100644 index 00000000..25200ae4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water.json @@ -0,0 +1,116 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING_NO_LEAVES" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:firefly_bush" + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json new file mode 100644 index 00000000..27c0b2db --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_near_water_swamp.json @@ -0,0 +1,116 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:firefly_bush" + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json new file mode 100644 index 00000000..02c4f6ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_firefly_bush_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:firefly_bush", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json new file mode 100644 index 00000000..afa0fbed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_badlands.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_forest.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_forest.json new file mode 100644 index 00000000..0bf67a2d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_forest.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json new file mode 100644 index 00000000..f0b343da --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_jungle.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:grass_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:podzol", + "offset": [ + 0, + -1, + 0 + ] + } + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json new file mode 100644 index 00000000..28c486b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_meadow.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_normal.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_normal.json new file mode 100644 index 00000000..5e704943 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_plain.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_plain.json new file mode 100644 index 00000000..6a910c10 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_plain.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json new file mode 100644 index 00000000..c02fc8c3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_savanna.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:grass", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json new file mode 100644 index 00000000..cdaed444 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 7 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json new file mode 100644 index 00000000..99e97a82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_grass_taiga_2.json @@ -0,0 +1,41 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_large_fern.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_large_fern.json new file mode 100644 index 00000000..0b32bbd3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_large_fern.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:large_fern", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json new file mode 100644 index 00000000..2c69bccc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_leaf_litter.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:leaf_litter", + "placement": [ + { + "type": "minecraft:count", + "count": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon.json new file mode 100644 index 00000000..a685cdbc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:melon", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:empty" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json new file mode 100644 index 00000000..9b3e0f70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_melon_sparse.json @@ -0,0 +1,62 @@ +{ + "feature": "minecraft:melon", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:replaceable" + }, + { + "type": "minecraft:matching_fluids", + "fluids": "minecraft:empty" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_pumpkin.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_pumpkin.json new file mode 100644 index 00000000..dd9048f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_pumpkin.json @@ -0,0 +1,59 @@ +{ + "feature": "minecraft:pumpkin", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 300 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:grass_block", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_soul_fire.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_soul_fire.json new file mode 100644 index 00000000..3e1fd4f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_soul_fire.json @@ -0,0 +1,71 @@ +{ + "feature": "minecraft:patch_soul_fire", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 0 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:soul_soil", + "offset": [ + 0, + -1, + 0 + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json new file mode 100644 index 00000000..4924b342 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 6 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json new file mode 100644 index 00000000..b0d5a0b6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_badlands.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json new file mode 100644 index 00000000..d92c6b26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_desert.json @@ -0,0 +1,108 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json new file mode 100644 index 00000000..f7505464 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sugar_cane_swamp.json @@ -0,0 +1,112 @@ +{ + "feature": "minecraft:sugar_cane", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 4, + "min": -4, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 0, + "min": 0, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:all_of", + "predicates": [ + { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:sugar_cane", + "Properties": { + "age": "0" + } + } + }, + { + "type": "minecraft:any_of", + "predicates": [ + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + -1, + -1, + 0 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + 1 + ] + }, + { + "type": "minecraft:matching_fluids", + "fluids": [ + "minecraft:water", + "minecraft:flowing_water" + ], + "offset": [ + 0, + -1, + -1 + ] + } + ] + } + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sunflower.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sunflower.json new file mode 100644 index 00000000..d7b63d66 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_sunflower.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:sunflower", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 3 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json new file mode 100644 index 00000000..75e782aa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_taiga_grass.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:taiga_grass", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass.json new file mode 100644 index 00000000..c5005e3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:tall_grass", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 5 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json new file mode 100644 index 00000000..58651c24 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_tall_grass_2.json @@ -0,0 +1,51 @@ +{ + "feature": "minecraft:tall_grass", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 7, + "below_noise": 0, + "noise_level": -0.8 + }, + { + "type": "minecraft:rarity_filter", + "chance": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_waterlily.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_waterlily.json new file mode 100644 index 00000000..c0009e83 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/patch_waterlily.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:waterlily", + "placement": [ + { + "type": "minecraft:count", + "count": 4 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "WORLD_SURFACE_WG" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_hay.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_hay.json new file mode 100644 index 00000000..7036d4ce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_hay.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_hay", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_ice.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_ice.json new file mode 100644 index 00000000..d778000a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_ice.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_ice", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_melon.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_melon.json new file mode 100644 index 00000000..915d5735 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_melon.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_melon", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_pumpkin.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_pumpkin.json new file mode 100644 index 00000000..397f3260 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_pumpkin.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_pumpkin", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_snow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_snow.json new file mode 100644 index 00000000..07bb3bc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pile_snow.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:pile_snow", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine.json new file mode 100644 index 00000000..303bcaf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_checked.json new file mode 100644 index 00000000..303bcaf4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_on_snow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_on_snow.json new file mode 100644 index 00000000..797cf813 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pine_on_snow.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:pine", + "placement": [ + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 8, + "target_condition": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:powder_snow" + } + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow" + ], + "offset": [ + 0, + -1, + 0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pointed_dripstone.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pointed_dripstone.json new file mode 100644 index 00000000..ee384e85 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/pointed_dripstone.json @@ -0,0 +1,56 @@ +{ + "feature": "minecraft:pointed_dripstone", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 256, + "min_inclusive": 192 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:clamped_normal", + "deviation": 3.0, + "max_inclusive": 10, + "mean": 0.0, + "min_inclusive": -10 + }, + "y_spread": { + "type": "minecraft:clamped_normal", + "deviation": 0.6, + "max_inclusive": 2, + "mean": 0.0, + "min_inclusive": -2 + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json new file mode 100644 index 00000000..32d2a2c7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_nether.json @@ -0,0 +1,53 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json new file mode 100644 index 00000000..d6317875 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_normal.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 512 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json new file mode 100644 index 00000000..e5fdd465 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_old_growth.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 171 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json new file mode 100644 index 00000000..a3560332 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_swamp.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 64 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json new file mode 100644 index 00000000..d719c059 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/red_mushroom_taiga.json @@ -0,0 +1,45 @@ +{ + "feature": "minecraft:red_mushroom", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 96 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 7, + "min": -7, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 3, + "min": -3, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json new file mode 100644 index 00000000..ec079e22 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_azalea_tree.json @@ -0,0 +1,48 @@ +{ + "feature": "minecraft:rooted_azalea_tree", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_sulfur_spring.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_sulfur_spring.json new file mode 100644 index 00000000..e2260bce --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/rooted_sulfur_spring.json @@ -0,0 +1,48 @@ +{ + "feature": "minecraft:rooted_sulfur_spring", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json new file mode 100644 index 00000000..9d9a5c4a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_ancient_city.json @@ -0,0 +1,4 @@ +{ + "feature": "minecraft:sculk_patch_ancient_city", + "placement": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json new file mode 100644 index 00000000..f7339687 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_patch_deep_dark.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:sculk_patch_deep_dark", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_vein.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_vein.json new file mode 100644 index 00000000..5f16b749 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sculk_vein.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:sculk_vein", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 250, + "min_inclusive": 204 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sea_pickle.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sea_pickle.json new file mode 100644 index 00000000..80175bbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sea_pickle.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:sea_pickle", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_cold.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_cold.json new file mode 100644 index 00000000..419adcc6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_cold.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep.json new file mode 100644 index 00000000..306b9182 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json new file mode 100644 index 00000000..b8a8b28f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_cold.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 40 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json new file mode 100644 index 00000000..6015530c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_deep_warm.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_tall", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 80 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_normal.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_normal.json new file mode 100644 index 00000000..1cc1627b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_normal.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_river.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_river.json new file mode 100644 index 00000000..ea722425 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_river.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_slightly_less_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 48 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_swamp.json new file mode 100644 index 00000000..52b3f359 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_swamp.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_mid", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_warm.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_warm.json new file mode 100644 index 00000000..3d973788 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/seagrass_warm.json @@ -0,0 +1,19 @@ +{ + "feature": "minecraft:seagrass_short", + "placement": [ + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:count", + "count": 80 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/small_basalt_columns.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/small_basalt_columns.json new file mode 100644 index 00000000..13d368a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/small_basalt_columns.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:small_basalt_columns", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 4 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spore_blossom.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spore_blossom.json new file mode 100644 index 00000000..e66a65bf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spore_blossom.json @@ -0,0 +1,44 @@ +{ + "feature": "minecraft:spore_blossom", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:environment_scan", + "allowed_search_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + }, + "direction_of_search": "up", + "max_steps": 12, + "target_condition": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed.json new file mode 100644 index 00000000..c90abc33 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_closed", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed_double.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed_double.json new file mode 100644 index 00000000..98b3e91c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_closed_double.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_closed", + "placement": [ + { + "type": "minecraft:count", + "count": 32 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 10 + }, + "min_inclusive": { + "above_bottom": 10 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_delta.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_delta.json new file mode 100644 index 00000000..b680210e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_delta.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_lava_nether", + "placement": [ + { + "type": "minecraft:count", + "count": 16 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava.json new file mode 100644 index 00000000..4a799ff5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:spring_lava_overworld", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:very_biased_to_bottom", + "inner": 8, + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json new file mode 100644 index 00000000..6d02d4f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_lava_frozen.json @@ -0,0 +1,28 @@ +{ + "feature": "minecraft:spring_lava_frozen", + "placement": [ + { + "type": "minecraft:count", + "count": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:very_biased_to_bottom", + "inner": 8, + "max_inclusive": { + "below_top": 8 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_open.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_open.json new file mode 100644 index 00000000..173f6447 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_open.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_nether_open", + "placement": [ + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 4 + }, + "min_inclusive": { + "above_bottom": 4 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_water.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_water.json new file mode 100644 index 00000000..61a88588 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spring_water.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:spring_water", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 192 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce.json new file mode 100644 index 00000000..097a470b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_checked.json new file mode 100644 index 00000000..097a470b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_checked.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_on_snow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_on_snow.json new file mode 100644 index 00000000..2eb5ea21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/spruce_on_snow.json @@ -0,0 +1,32 @@ +{ + "feature": "minecraft:spruce", + "placement": [ + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 8, + "target_condition": { + "type": "minecraft:not", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:powder_snow" + } + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": [ + "minecraft:snow_block", + "minecraft:powder_snow" + ], + "offset": [ + 0, + -1, + 0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_pool.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_pool.json new file mode 100644 index 00000000..6f50e0d3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_pool.json @@ -0,0 +1,54 @@ +{ + "feature": "minecraft:sulfur_pool", + "placement": [ + { + "type": "minecraft:count", + "count": 256 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:solid" + } + }, + { + "type": "minecraft:environment_scan", + "direction_of_search": "up", + "max_steps": 32, + "target_condition": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": 0, + "y_spread": -1 + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_blocks", + "blocks": "minecraft:sulfur" + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike.json new file mode 100644 index 00000000..bb46bfad --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike.json @@ -0,0 +1,56 @@ +{ + "feature": "minecraft:sulfur_spike", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 256, + "min_inclusive": 192 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 1 + } + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:clamped_normal", + "deviation": 3.0, + "max_inclusive": 10, + "mean": 0.0, + "min_inclusive": -10 + }, + "y_spread": { + "type": "minecraft:clamped_normal", + "deviation": 0.6, + "max_inclusive": 2, + "mean": 0.0, + "min_inclusive": -2 + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike_cluster.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike_cluster.json new file mode 100644 index 00000000..9326d12c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/sulfur_spike_cluster.json @@ -0,0 +1,31 @@ +{ + "feature": "minecraft:sulfur_spike_cluster", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 96, + "min_inclusive": 48 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees.json new file mode 100644 index 00000000..85bcfe9e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:super_birch_bees", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json new file mode 100644 index 00000000..647e3038 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/super_birch_bees_0002.json @@ -0,0 +1,17 @@ +{ + "feature": "minecraft:super_birch_bees_0002", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json new file mode 100644 index 00000000..5d29165f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/tall_mangrove_checked.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:tall_mangrove", + "placement": [ + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:mangrove_propagule", + "Properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_badlands.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_badlands.json new file mode 100644 index 00000000..b0bae882 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_badlands.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_badlands", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 5, + "weight": 9 + }, + { + "data": 6, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch.json new file mode 100644 index 00000000..96e1dbd0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_birch", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:birch_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json new file mode 100644 index 00000000..1751dd2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_birch_and_oak_leaf_litter.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_birch_and_oak_leaf_litter", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_cherry.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_cherry.json new file mode 100644 index 00000000..bb63f871 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_cherry.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:cherry_bees_005", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:cherry_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_flower_forest.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_flower_forest.json new file mode 100644 index 00000000..29553d4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_flower_forest.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_flower_forest", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 6, + "weight": 9 + }, + { + "data": 7, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_grove.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_grove.json new file mode 100644 index 00000000..b09ef9cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_grove.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_grove", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_jungle.json new file mode 100644 index 00000000..8d746a5a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_jungle.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 50, + "weight": 9 + }, + { + "data": 51, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_mangrove.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_mangrove.json new file mode 100644 index 00000000..178dba98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_mangrove.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:mangrove_vegetation", + "placement": [ + { + "type": "minecraft:count", + "count": 25 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 5 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_meadow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_meadow.json new file mode 100644 index 00000000..903e9ea8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_meadow.json @@ -0,0 +1,23 @@ +{ + "feature": "minecraft:meadow_trees", + "placement": [ + { + "type": "minecraft:rarity_filter", + "chance": 100 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json new file mode 100644 index 00000000..835d8466 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_pine_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_old_growth_pine_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json new file mode 100644 index 00000000..88be4c70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_old_growth_spruce_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_old_growth_spruce_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_plains.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_plains.json new file mode 100644 index 00000000..68a61ddf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_plains.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_plains", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 19 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_savanna.json new file mode 100644 index 00000000..5c0dd227 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_savanna.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_savanna", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 1, + "weight": 9 + }, + { + "data": 2, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_snowy.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_snowy.json new file mode 100644 index 00000000..524337a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_snowy.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:trees_snowy", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:spruce_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json new file mode 100644 index 00000000..a585bbe0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_sparse_jungle.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_sparse_jungle", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_swamp.json new file mode 100644 index 00000000..5db3e482 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_swamp.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:swamp_oak", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 2 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:would_survive", + "state": { + "Name": "minecraft:oak_sapling", + "Properties": { + "stage": "0" + } + } + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_taiga.json new file mode 100644 index 00000000..835090a6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_taiga.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_taiga", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 10, + "weight": 9 + }, + { + "data": 11, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_water.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_water.json new file mode 100644 index 00000000..997128fc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_water.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_water", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json new file mode 100644 index 00000000..8bce669f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_forest.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_windswept_hills", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 3, + "weight": 9 + }, + { + "data": 4, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json new file mode 100644 index 00000000..8be56da5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_hills.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_windswept_hills", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 0, + "weight": 9 + }, + { + "data": 1, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json new file mode 100644 index 00000000..4fa16756 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/trees_windswept_savanna.json @@ -0,0 +1,35 @@ +{ + "feature": "minecraft:trees_savanna", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:weighted_list", + "distribution": [ + { + "data": 2, + "weight": 9 + }, + { + "data": 3, + "weight": 1 + } + ] + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:surface_water_depth_filter", + "max_water_depth": 0 + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/twisting_vines.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/twisting_vines.json new file mode 100644 index 00000000..52640f09 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/twisting_vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:twisting_vines", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/underwater_magma.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/underwater_magma.json new file mode 100644 index 00000000..ba5c116d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/underwater_magma.json @@ -0,0 +1,36 @@ +{ + "feature": "minecraft:underwater_magma", + "placement": [ + { + "type": "minecraft:count", + "count": { + "type": "minecraft:uniform", + "max_inclusive": 52, + "min_inclusive": 44 + } + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 256 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:surface_relative_threshold_filter", + "heightmap": "OCEAN_FLOOR_WG", + "max_inclusive": -2 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/vines.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/vines.json new file mode 100644 index 00000000..682c6aa4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:vines", + "placement": [ + { + "type": "minecraft:count", + "count": 127 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": 100 + }, + "min_inclusive": { + "absolute": 64 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/void_start_platform.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/void_start_platform.json new file mode 100644 index 00000000..9027738e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/void_start_platform.json @@ -0,0 +1,8 @@ +{ + "feature": "minecraft:void_start_platform", + "placement": [ + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json new file mode 100644 index 00000000..c13a69dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warm_ocean_vegetation.json @@ -0,0 +1,20 @@ +{ + "feature": "minecraft:warm_ocean_vegetation", + "placement": [ + { + "type": "minecraft:noise_based_count", + "noise_factor": 400.0, + "noise_to_count_ratio": 20 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "OCEAN_FLOOR_WG" + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json new file mode 100644 index 00000000..10e5ed5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_forest_vegetation.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:warped_forest_vegetation", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 5 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_fungi.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_fungi.json new file mode 100644 index 00000000..5c6a1482 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/warped_fungi.json @@ -0,0 +1,12 @@ +{ + "feature": "minecraft:warped_fungus", + "placement": [ + { + "type": "minecraft:count_on_every_layer", + "count": 8 + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/weeping_vines.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/weeping_vines.json new file mode 100644 index 00000000..f189eb69 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/weeping_vines.json @@ -0,0 +1,27 @@ +{ + "feature": "minecraft:weeping_vines", + "placement": [ + { + "type": "minecraft:count", + "count": 10 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:height_range", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 0 + }, + "min_inclusive": { + "above_bottom": 0 + } + } + }, + { + "type": "minecraft:biome" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json new file mode 100644 index 00000000..79455ee9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_birch_forest.json @@ -0,0 +1,49 @@ +{ + "feature": "minecraft:wildflower", + "placement": [ + { + "type": "minecraft:count", + "count": 3 + }, + { + "type": "minecraft:rarity_filter", + "chance": 2 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 64 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json new file mode 100644 index 00000000..b0ad3318 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/placed_feature/wildflowers_meadow.json @@ -0,0 +1,47 @@ +{ + "feature": "minecraft:wildflower", + "placement": [ + { + "type": "minecraft:noise_threshold_count", + "above_noise": 10, + "below_noise": 5, + "noise_level": -0.8 + }, + { + "type": "minecraft:in_square" + }, + { + "type": "minecraft:heightmap", + "heightmap": "MOTION_BLOCKING" + }, + { + "type": "minecraft:biome" + }, + { + "type": "minecraft:count", + "count": 8 + }, + { + "type": "minecraft:random_offset", + "xz_spread": { + "type": "minecraft:trapezoid", + "max": 6, + "min": -6, + "plateau": 0 + }, + "y_spread": { + "type": "minecraft:trapezoid", + "max": 2, + "min": -2, + "plateau": 0 + } + }, + { + "type": "minecraft:block_predicate_filter", + "predicate": { + "type": "minecraft:matching_block_tag", + "tag": "minecraft:air" + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json new file mode 100644 index 00000000..384eeecc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_generic_degradation.json @@ -0,0 +1,57 @@ +{ + "processors": [ + { + "integrity": 0.95, + "processor_type": "minecraft:block_rot", + "rottable_blocks": "#minecraft:ancient_city_replaceable" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json new file mode 100644 index 00000000..2807a8cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_start_degradation.json @@ -0,0 +1,52 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json new file mode 100644 index 00000000..ea7d74f9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/ancient_city_walls_degradation.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "integrity": 0.95, + "processor_type": "minecraft:block_rot", + "rottable_blocks": "#minecraft:ancient_city_replaceable" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:deepslate_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tiles", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_deepslate_tiles" + } + }, + { + "input_predicate": { + "block": "minecraft:deepslate_tile_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:soul_lantern", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json new file mode 100644 index 00000000..e78711ea --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bastion_generic_degradation.json @@ -0,0 +1,74 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/bottom_rampart.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bottom_rampart.json new file mode 100644 index 00000000..9712f5cf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bottom_rampart.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:magma_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.75 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:cracked_polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/bridge.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bridge.json new file mode 100644 index 00000000..a91ac156 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/bridge.json @@ -0,0 +1,35 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/empty.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/empty.json new file mode 100644 index 00000000..06b65ef0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/empty.json @@ -0,0 +1,3 @@ +{ + "processors": [] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/entrance_replacement.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/entrance_replacement.json new file mode 100644 index 00000000..f6884353 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/entrance_replacement.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.6 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_desert.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_desert.json new file mode 100644 index 00000000..6b6bef0f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_desert.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_plains.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_plains.json new file mode 100644 index 00000000..68ba02a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_plains.json @@ -0,0 +1,57 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_savanna.json new file mode 100644 index 00000000..1be4851d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_savanna.json @@ -0,0 +1,25 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_snowy.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_snowy.json new file mode 100644 index 00000000..d7c61b46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_snowy.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_taiga.json new file mode 100644 index 00000000..a361bb46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/farm_taiga.json @@ -0,0 +1,41 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:pumpkin_stem", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_coal.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_coal.json new file mode 100644 index 00000000..ae7a6011 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_coal.json @@ -0,0 +1,12 @@ +{ + "processors": [ + { + "integrity": 0.1, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_diamonds.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_diamonds.json new file mode 100644 index 00000000..2181c32b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_diamonds.json @@ -0,0 +1,29 @@ +{ + "processors": [ + { + "integrity": 0.1, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:coal_ore", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:deepslate_diamond_ore" + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_rot.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_rot.json new file mode 100644 index 00000000..9295d08f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/fossil_rot.json @@ -0,0 +1,12 @@ +{ + "processors": [ + { + "integrity": 0.9, + "processor_type": "minecraft:block_rot" + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_rampart.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_rampart.json new file mode 100644 index 00000000..14ff30d2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_rampart.json @@ -0,0 +1,51 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:always_true" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + }, + "position_predicate": { + "max_chance": 0.05, + "max_dist": 100, + "predicate_type": "minecraft:axis_aligned_linear_pos" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_wall.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_wall.json new file mode 100644 index 00000000..413a7925 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/high_wall.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/housing.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/housing.json new file mode 100644 index 00000000..166d1246 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/housing.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_10_percent.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_10_percent.json new file mode 100644 index 00000000..f518c509 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_10_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_20_percent.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_20_percent.json new file mode 100644 index 00000000..c3a45e28 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_20_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_70_percent.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_70_percent.json new file mode 100644 index 00000000..7b14dbdf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/mossify_70_percent.json @@ -0,0 +1,22 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.7 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/outpost_rot.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/outpost_rot.json new file mode 100644 index 00000000..65991b4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/outpost_rot.json @@ -0,0 +1,8 @@ +{ + "processors": [ + { + "integrity": 0.05, + "processor_type": "minecraft:block_rot" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/rampart_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/rampart_degradation.json new file mode 100644 index 00000000..b18c5ba6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/rampart_degradation.json @@ -0,0 +1,100 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/roof.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/roof.json new file mode 100644 index 00000000..2f0f4c26 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/roof.json @@ -0,0 +1,48 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.15 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/side_wall_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/side_wall_degradation.json new file mode 100644 index 00000000..6b33ec25 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/side_wall_degradation.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gold_block", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/stable_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/stable_degradation.json new file mode 100644 index 00000000..ada3a945 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/stable_degradation.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 1.0E-4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_plains.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_plains.json new file mode 100644 index 00000000..098c0868 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_plains.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:oak_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_savanna.json new file mode 100644 index 00000000..ad90f636 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_savanna.json @@ -0,0 +1,70 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:acacia_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json new file mode 100644 index 00000000..21fc3017 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/street_snowy_or_taiga.json @@ -0,0 +1,83 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:spruce_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:ice", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:spruce_planks" + } + }, + { + "input_predicate": { + "block": "minecraft:dirt_path", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:grass_block", + "Properties": { + "snowy": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:grass_block", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:dirt", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "block": "minecraft:water", + "predicate_type": "minecraft:block_match" + }, + "output_state": { + "Name": "minecraft:water", + "Properties": { + "level": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json new file mode 100644 index 00000000..2d6a7fa6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_houses_archaeology.json @@ -0,0 +1,104 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:coarse_dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:mud_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:packed_mud" + } + } + ] + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 6, + "processor_type": "minecraft:capped" + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_rare" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 3, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json new file mode 100644 index 00000000..8a76493b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_roads_archaeology.json @@ -0,0 +1,76 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:gravel", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:coarse_dirt" + } + }, + { + "input_predicate": { + "block": "minecraft:mud_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:packed_mud" + } + } + ] + }, + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 2, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json new file mode 100644 index 00000000..1658d1c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trail_ruins_tower_top_archaeology.json @@ -0,0 +1,32 @@ +{ + "processors": [ + { + "delegate": { + "processor_type": "minecraft:rule", + "rules": [ + { + "block_entity_modifier": { + "type": "minecraft:append_loot", + "loot_table": "minecraft:archaeology/trail_ruins_common" + }, + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:trail_ruins_replaceable" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:suspicious_gravel", + "Properties": { + "dusted": "0" + } + } + } + ] + }, + "limit": 2, + "processor_type": "minecraft:capped" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/treasure_rooms.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/treasure_rooms.json new file mode 100644 index 00000000..5ab17822 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/treasure_rooms.json @@ -0,0 +1,61 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:polished_blackstone_bricks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.35 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:chiseled_polished_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cracked_polished_blackstone_bricks" + } + }, + { + "input_predicate": { + "block": "minecraft:gilded_blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:blackstone" + } + }, + { + "input_predicate": { + "block": "minecraft:blackstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.01 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:gilded_blackstone" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json new file mode 100644 index 00000000..d5debb6b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/trial_chambers_copper_bulb_degradation.json @@ -0,0 +1,64 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_oxidized_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.33333334 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_weathered_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:waxed_copper_bulb", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:waxed_exposed_copper_bulb", + "Properties": { + "lit": "true", + "powered": "false" + } + } + } + ] + }, + { + "processor_type": "minecraft:protected_blocks", + "value": "#minecraft:features_cannot_replace" + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_desert.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_desert.json new file mode 100644 index 00000000..8846384a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_desert.json @@ -0,0 +1,142 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:cut_sandstone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:smooth_sandstone_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_plains.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_plains.json new file mode 100644 index 00000000..e85d5a3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_plains.json @@ -0,0 +1,266 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:mossy_cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:white_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.07 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:oak_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_oak_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.02 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:beetroots", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_savanna.json new file mode 100644 index 00000000..d6a0354d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_savanna.json @@ -0,0 +1,221 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_stairs", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:acacia_wood", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:orange_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:yellow_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:red_terracotta", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:melon_stem", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_snowy.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_snowy.json new file mode 100644 index 00000000..9464bd14 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_snowy.json @@ -0,0 +1,210 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:lantern", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_planks", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_slab", + "predicate_type": "minecraft:random_block_match", + "probability": 0.4 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_spruce_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:stripped_spruce_wood", + "predicate_type": "minecraft:random_block_match", + "probability": 0.05 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.1 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:carrots", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_taiga.json new file mode 100644 index 00000000..bd94491d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/processor_list/zombie_taiga.json @@ -0,0 +1,203 @@ +{ + "processors": [ + { + "processor_type": "minecraft:rule", + "rules": [ + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.8 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:mossy_cobblestone" + } + }, + { + "input_predicate": { + "predicate_type": "minecraft:tag_match", + "tag": "minecraft:doors" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:wall_torch", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:air" + } + }, + { + "input_predicate": { + "block": "minecraft:campfire", + "predicate_type": "minecraft:block_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:campfire", + "Properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + }, + { + "input_predicate": { + "block": "minecraft:cobblestone", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:spruce_log", + "predicate_type": "minecraft:random_block_match", + "probability": 0.08 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block": "minecraft:glass_pane", + "predicate_type": "minecraft:random_block_match", + "probability": 0.5 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:cobweb" + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + } + }, + { + "input_predicate": { + "block_state": { + "Name": "minecraft:glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + "predicate_type": "minecraft:blockstate_match" + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:brown_stained_glass_pane", + "Properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.3 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:pumpkin_stem", + "Properties": { + "age": "0" + } + } + }, + { + "input_predicate": { + "block": "minecraft:wheat", + "predicate_type": "minecraft:random_block_match", + "probability": 0.2 + }, + "location_predicate": { + "predicate_type": "minecraft:always_true" + }, + "output_state": { + "Name": "minecraft:potatoes", + "Properties": { + "age": "0" + } + } + } + ] + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ancient_city.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ancient_city.json new file mode 100644 index 00000000..d7582a0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ancient_city.json @@ -0,0 +1,48 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/ancient_city", + "max_distance_from_center": 116, + "size": 7, + "spawn_overrides": { + "ambient": { + "bounding_box": "full", + "spawns": [] + }, + "axolotls": { + "bounding_box": "full", + "spawns": [] + }, + "creature": { + "bounding_box": "full", + "spawns": [] + }, + "misc": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [] + }, + "underground_water_creature": { + "bounding_box": "full", + "spawns": [] + }, + "water_ambient": { + "bounding_box": "full", + "spawns": [] + }, + "water_creature": { + "bounding_box": "full", + "spawns": [] + } + }, + "start_height": { + "absolute": -27 + }, + "start_jigsaw_name": "minecraft:city_anchor", + "start_pool": "minecraft:ancient_city/city_center", + "step": "underground_decoration", + "terrain_adaptation": "beard_box", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/bastion_remnant.json b/data/generated/V26_2/data/minecraft/worldgen/structure/bastion_remnant.json new file mode 100644 index 00000000..105d6db0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/bastion_remnant.json @@ -0,0 +1,13 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/bastion_remnant", + "max_distance_from_center": 80, + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 33 + }, + "start_pool": "minecraft:bastion/starts", + "step": "surface_structures", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/buried_treasure.json b/data/generated/V26_2/data/minecraft/worldgen/structure/buried_treasure.json new file mode 100644 index 00000000..0ecc1c97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/buried_treasure.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:buried_treasure", + "biomes": "#minecraft:has_structure/buried_treasure", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/desert_pyramid.json b/data/generated/V26_2/data/minecraft/worldgen/structure/desert_pyramid.json new file mode 100644 index 00000000..a11436ba --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/desert_pyramid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:desert_pyramid", + "biomes": "#minecraft:has_structure/desert_pyramid", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/end_city.json b/data/generated/V26_2/data/minecraft/worldgen/structure/end_city.json new file mode 100644 index 00000000..022ffaec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/end_city.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:end_city", + "biomes": "#minecraft:has_structure/end_city", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/fortress.json b/data/generated/V26_2/data/minecraft/worldgen/structure/fortress.json new file mode 100644 index 00000000..e310f12d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/fortress.json @@ -0,0 +1,42 @@ +{ + "type": "minecraft:fortress", + "biomes": "#minecraft:has_structure/nether_fortress", + "spawn_overrides": { + "monster": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:blaze", + "maxCount": 3, + "minCount": 2, + "weight": 10 + }, + { + "type": "minecraft:zombified_piglin", + "maxCount": 4, + "minCount": 4, + "weight": 5 + }, + { + "type": "minecraft:wither_skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 8 + }, + { + "type": "minecraft:skeleton", + "maxCount": 5, + "minCount": 5, + "weight": 2 + }, + { + "type": "minecraft:magma_cube", + "maxCount": 4, + "minCount": 4, + "weight": 3 + } + ] + } + }, + "step": "underground_decoration" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/igloo.json b/data/generated/V26_2/data/minecraft/worldgen/structure/igloo.json new file mode 100644 index 00000000..6e46cb68 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/igloo.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:igloo", + "biomes": "#minecraft:has_structure/igloo", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/jungle_pyramid.json b/data/generated/V26_2/data/minecraft/worldgen/structure/jungle_pyramid.json new file mode 100644 index 00000000..66c88010 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/jungle_pyramid.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:jungle_temple", + "biomes": "#minecraft:has_structure/jungle_temple", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/mansion.json b/data/generated/V26_2/data/minecraft/worldgen/structure/mansion.json new file mode 100644 index 00000000..25ccc3e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/mansion.json @@ -0,0 +1,6 @@ +{ + "type": "minecraft:woodland_mansion", + "biomes": "#minecraft:has_structure/woodland_mansion", + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft.json b/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft.json new file mode 100644 index 00000000..973a9575 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:mineshaft", + "biomes": "#minecraft:has_structure/mineshaft", + "mineshaft_type": "normal", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft_mesa.json b/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft_mesa.json new file mode 100644 index 00000000..5c163780 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/mineshaft_mesa.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:mineshaft", + "biomes": "#minecraft:has_structure/mineshaft_mesa", + "mineshaft_type": "mesa", + "spawn_overrides": {}, + "step": "underground_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/monument.json b/data/generated/V26_2/data/minecraft/worldgen/structure/monument.json new file mode 100644 index 00000000..e4aa008e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/monument.json @@ -0,0 +1,26 @@ +{ + "type": "minecraft:ocean_monument", + "biomes": "#minecraft:has_structure/ocean_monument", + "spawn_overrides": { + "axolotls": { + "bounding_box": "full", + "spawns": [] + }, + "monster": { + "bounding_box": "full", + "spawns": [ + { + "type": "minecraft:guardian", + "maxCount": 4, + "minCount": 2, + "weight": 1 + } + ] + }, + "underground_water_creature": { + "bounding_box": "full", + "spawns": [] + } + }, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/nether_fossil.json b/data/generated/V26_2/data/minecraft/worldgen/structure/nether_fossil.json new file mode 100644 index 00000000..d040f3e2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/nether_fossil.json @@ -0,0 +1,16 @@ +{ + "type": "minecraft:nether_fossil", + "biomes": "#minecraft:has_structure/nether_fossil", + "height": { + "type": "minecraft:uniform", + "max_inclusive": { + "below_top": 2 + }, + "min_inclusive": { + "absolute": 32 + } + }, + "spawn_overrides": {}, + "step": "underground_decoration", + "terrain_adaptation": "beard_thin" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_cold.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_cold.json new file mode 100644 index 00000000..552a31fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_cold.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:ocean_ruin", + "biome_temp": "cold", + "biomes": "#minecraft:has_structure/ocean_ruin_cold", + "cluster_probability": 0.9, + "large_probability": 0.3, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_warm.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_warm.json new file mode 100644 index 00000000..8620fa9d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ocean_ruin_warm.json @@ -0,0 +1,9 @@ +{ + "type": "minecraft:ocean_ruin", + "biome_temp": "warm", + "biomes": "#minecraft:has_structure/ocean_ruin_warm", + "cluster_probability": 0.9, + "large_probability": 0.3, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/pillager_outpost.json b/data/generated/V26_2/data/minecraft/worldgen/structure/pillager_outpost.json new file mode 100644 index 00000000..a11ced2a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/pillager_outpost.json @@ -0,0 +1,27 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/pillager_outpost", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 7, + "spawn_overrides": { + "monster": { + "bounding_box": "full", + "spawns": [ + { + "type": "minecraft:pillager", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + } + }, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:pillager_outpost/base_plates", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal.json new file mode 100644 index 00000000..5c8ae1b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_standard", + "setups": [ + { + "air_pocket_probability": 1.0, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "underground", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + }, + { + "air_pocket_probability": 0.5, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_desert.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_desert.json new file mode 100644 index 00000000..489b9c86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_desert.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_desert", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": false, + "mossiness": 0.0, + "overgrown": false, + "placement": "partly_buried", + "replace_with_blackstone": false, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_jungle.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_jungle.json new file mode 100644 index 00000000..da747a8a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_jungle.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_jungle", + "setups": [ + { + "air_pocket_probability": 0.5, + "can_be_cold": false, + "mossiness": 0.8, + "overgrown": true, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": true, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_mountain.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_mountain.json new file mode 100644 index 00000000..67e3d22c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_mountain.json @@ -0,0 +1,28 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_mountain", + "setups": [ + { + "air_pocket_probability": 1.0, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "in_mountain", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + }, + { + "air_pocket_probability": 0.5, + "can_be_cold": true, + "mossiness": 0.2, + "overgrown": false, + "placement": "on_land_surface", + "replace_with_blackstone": false, + "vines": false, + "weight": 0.5 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_nether.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_nether.json new file mode 100644 index 00000000..ddf2069c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_nether.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_nether", + "setups": [ + { + "air_pocket_probability": 0.5, + "can_be_cold": false, + "mossiness": 0.0, + "overgrown": false, + "placement": "in_nether", + "replace_with_blackstone": true, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_ocean.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_ocean.json new file mode 100644 index 00000000..e473d153 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_ocean.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_ocean", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": true, + "mossiness": 0.8, + "overgrown": false, + "placement": "on_ocean_floor", + "replace_with_blackstone": false, + "vines": false, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_swamp.json b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_swamp.json new file mode 100644 index 00000000..ac0898b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/ruined_portal_swamp.json @@ -0,0 +1,18 @@ +{ + "type": "minecraft:ruined_portal", + "biomes": "#minecraft:has_structure/ruined_portal_swamp", + "setups": [ + { + "air_pocket_probability": 0.0, + "can_be_cold": false, + "mossiness": 0.5, + "overgrown": false, + "placement": "on_ocean_floor", + "replace_with_blackstone": false, + "vines": true, + "weight": 1.0 + } + ], + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck.json b/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck.json new file mode 100644 index 00000000..57e0f941 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:shipwreck", + "biomes": "#minecraft:has_structure/shipwreck", + "is_beached": false, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck_beached.json b/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck_beached.json new file mode 100644 index 00000000..8debacbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/shipwreck_beached.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:shipwreck", + "biomes": "#minecraft:has_structure/shipwreck_beached", + "is_beached": true, + "spawn_overrides": {}, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/stronghold.json b/data/generated/V26_2/data/minecraft/worldgen/structure/stronghold.json new file mode 100644 index 00000000..53edaf89 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/stronghold.json @@ -0,0 +1,7 @@ +{ + "type": "minecraft:stronghold", + "biomes": "#minecraft:has_structure/stronghold", + "spawn_overrides": {}, + "step": "surface_structures", + "terrain_adaptation": "bury" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/swamp_hut.json b/data/generated/V26_2/data/minecraft/worldgen/structure/swamp_hut.json new file mode 100644 index 00000000..21c5c467 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/swamp_hut.json @@ -0,0 +1,29 @@ +{ + "type": "minecraft:swamp_hut", + "biomes": "#minecraft:has_structure/swamp_hut", + "spawn_overrides": { + "creature": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:cat", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + }, + "monster": { + "bounding_box": "piece", + "spawns": [ + { + "type": "minecraft:witch", + "maxCount": 1, + "minCount": 1, + "weight": 1 + } + ] + } + }, + "step": "surface_structures" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/trail_ruins.json b/data/generated/V26_2/data/minecraft/worldgen/structure/trail_ruins.json new file mode 100644 index 00000000..eead38e3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/trail_ruins.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/trail_ruins", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 7, + "spawn_overrides": {}, + "start_height": { + "absolute": -15 + }, + "start_pool": "minecraft:trail_ruins/tower", + "step": "underground_structures", + "terrain_adaptation": "bury", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/trial_chambers.json b/data/generated/V26_2/data/minecraft/worldgen/structure/trial_chambers.json new file mode 100644 index 00000000..1debb918 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/trial_chambers.json @@ -0,0 +1,147 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/trial_chambers", + "dimension_padding": 10, + "liquid_settings": "ignore_waterlogging", + "max_distance_from_center": 116, + "pool_aliases": [ + { + "type": "minecraft:random_group", + "groups": [ + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/skeleton" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/skeleton" + } + ], + "weight": 1 + }, + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/stray" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/stray" + } + ], + "weight": 1 + }, + { + "data": [ + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/ranged", + "target": "minecraft:trial_chambers/spawner/ranged/poison_skeleton" + }, + { + "type": "minecraft:direct", + "alias": "minecraft:trial_chambers/spawner/contents/slow_ranged", + "target": "minecraft:trial_chambers/spawner/slow_ranged/poison_skeleton" + } + ], + "weight": 1 + } + ] + }, + { + "type": "minecraft:random", + "alias": "minecraft:trial_chambers/spawner/contents/melee", + "targets": [ + { + "data": "minecraft:trial_chambers/spawner/melee/zombie", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/melee/husk", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/melee/spider", + "weight": 1 + } + ] + }, + { + "type": "minecraft:random", + "alias": "minecraft:trial_chambers/spawner/contents/small_melee", + "targets": [ + { + "data": "minecraft:trial_chambers/spawner/small_melee/slime", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/cave_spider", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/silverfish", + "weight": 1 + }, + { + "data": "minecraft:trial_chambers/spawner/small_melee/baby_zombie", + "weight": 1 + } + ] + } + ], + "size": 20, + "spawn_overrides": { + "ambient": { + "bounding_box": "piece", + "spawns": [] + }, + "axolotls": { + "bounding_box": "piece", + "spawns": [] + }, + "creature": { + "bounding_box": "piece", + "spawns": [] + }, + "misc": { + "bounding_box": "piece", + "spawns": [] + }, + "monster": { + "bounding_box": "piece", + "spawns": [] + }, + "underground_water_creature": { + "bounding_box": "piece", + "spawns": [] + }, + "water_ambient": { + "bounding_box": "piece", + "spawns": [] + }, + "water_creature": { + "bounding_box": "piece", + "spawns": [] + } + }, + "start_height": { + "type": "minecraft:uniform", + "max_inclusive": { + "absolute": -20 + }, + "min_inclusive": { + "absolute": -40 + } + }, + "start_pool": "minecraft:trial_chambers/chamber/end", + "step": "underground_structures", + "terrain_adaptation": "encapsulate", + "use_expansion_hack": false +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/village_desert.json b/data/generated/V26_2/data/minecraft/worldgen/structure/village_desert.json new file mode 100644 index 00000000..8e140ee3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/village_desert.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_desert", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/desert/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/village_plains.json b/data/generated/V26_2/data/minecraft/worldgen/structure/village_plains.json new file mode 100644 index 00000000..5aa6d1a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/village_plains.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_plains", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/plains/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/village_savanna.json b/data/generated/V26_2/data/minecraft/worldgen/structure/village_savanna.json new file mode 100644 index 00000000..0281f6a7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/village_savanna.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_savanna", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/savanna/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/village_snowy.json b/data/generated/V26_2/data/minecraft/worldgen/structure/village_snowy.json new file mode 100644 index 00000000..cca57933 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/village_snowy.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_snowy", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/snowy/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure/village_taiga.json b/data/generated/V26_2/data/minecraft/worldgen/structure/village_taiga.json new file mode 100644 index 00000000..8a88cdd8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure/village_taiga.json @@ -0,0 +1,15 @@ +{ + "type": "minecraft:jigsaw", + "biomes": "#minecraft:has_structure/village_taiga", + "max_distance_from_center": 80, + "project_start_to_heightmap": "WORLD_SURFACE_WG", + "size": 6, + "spawn_overrides": {}, + "start_height": { + "absolute": 0 + }, + "start_pool": "minecraft:village/taiga/town_centers", + "step": "surface_structures", + "terrain_adaptation": "beard_thin", + "use_expansion_hack": true +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/ancient_cities.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ancient_cities.json new file mode 100644 index 00000000..decca0b9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ancient_cities.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 20083232, + "separation": 8, + "spacing": 24 + }, + "structures": [ + { + "structure": "minecraft:ancient_city", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/buried_treasures.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/buried_treasures.json new file mode 100644 index 00000000..fe9483fd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/buried_treasures.json @@ -0,0 +1,21 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "frequency": 0.01, + "frequency_reduction_method": "legacy_type_2", + "locate_offset": [ + 9, + 0, + 9 + ], + "salt": 0, + "separation": 0, + "spacing": 1 + }, + "structures": [ + { + "structure": "minecraft:buried_treasure", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/desert_pyramids.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/desert_pyramids.json new file mode 100644 index 00000000..99f26c3a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/desert_pyramids.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357617, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:desert_pyramid", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/end_cities.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/end_cities.json new file mode 100644 index 00000000..8e7b3bb7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/end_cities.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387313, + "separation": 11, + "spacing": 20, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:end_city", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/igloos.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/igloos.json new file mode 100644 index 00000000..f2e610fb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/igloos.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357618, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:igloo", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/jungle_temples.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/jungle_temples.json new file mode 100644 index 00000000..e792548f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/jungle_temples.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357619, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:jungle_pyramid", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/mineshafts.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/mineshafts.json new file mode 100644 index 00000000..e4fc85a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/mineshafts.json @@ -0,0 +1,20 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "frequency": 0.004, + "frequency_reduction_method": "legacy_type_3", + "salt": 0, + "separation": 0, + "spacing": 1 + }, + "structures": [ + { + "structure": "minecraft:mineshaft", + "weight": 1 + }, + { + "structure": "minecraft:mineshaft_mesa", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_complexes.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_complexes.json new file mode 100644 index 00000000..3f2d8e00 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_complexes.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 30084232, + "separation": 4, + "spacing": 27 + }, + "structures": [ + { + "structure": "minecraft:fortress", + "weight": 2 + }, + { + "structure": "minecraft:bastion_remnant", + "weight": 3 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_fossils.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_fossils.json new file mode 100644 index 00000000..571a28f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/nether_fossils.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357921, + "separation": 1, + "spacing": 2 + }, + "structures": [ + { + "structure": "minecraft:nether_fossil", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_monuments.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_monuments.json new file mode 100644 index 00000000..0a0157d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_monuments.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387313, + "separation": 5, + "spacing": 32, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:monument", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_ruins.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_ruins.json new file mode 100644 index 00000000..9a8b6e5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ocean_ruins.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357621, + "separation": 8, + "spacing": 20 + }, + "structures": [ + { + "structure": "minecraft:ocean_ruin_cold", + "weight": 1 + }, + { + "structure": "minecraft:ocean_ruin_warm", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/pillager_outposts.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/pillager_outposts.json new file mode 100644 index 00000000..ad635a47 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/pillager_outposts.json @@ -0,0 +1,20 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "exclusion_zone": { + "chunk_count": 10, + "other_set": "minecraft:villages" + }, + "frequency": 0.2, + "frequency_reduction_method": "legacy_type_1", + "salt": 165745296, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:pillager_outpost", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/ruined_portals.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ruined_portals.json new file mode 100644 index 00000000..60c2e972 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/ruined_portals.json @@ -0,0 +1,38 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 34222645, + "separation": 15, + "spacing": 40 + }, + "structures": [ + { + "structure": "minecraft:ruined_portal", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_desert", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_jungle", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_swamp", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_mountain", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_ocean", + "weight": 1 + }, + { + "structure": "minecraft:ruined_portal_nether", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/shipwrecks.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/shipwrecks.json new file mode 100644 index 00000000..7b403b4c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/shipwrecks.json @@ -0,0 +1,18 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 165745295, + "separation": 4, + "spacing": 24 + }, + "structures": [ + { + "structure": "minecraft:shipwreck", + "weight": 1 + }, + { + "structure": "minecraft:shipwreck_beached", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/strongholds.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/strongholds.json new file mode 100644 index 00000000..c3f6005e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/strongholds.json @@ -0,0 +1,16 @@ +{ + "placement": { + "type": "minecraft:concentric_rings", + "count": 128, + "distance": 32, + "preferred_biomes": "#minecraft:stronghold_biased_to", + "salt": 0, + "spread": 3 + }, + "structures": [ + { + "structure": "minecraft:stronghold", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/swamp_huts.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/swamp_huts.json new file mode 100644 index 00000000..0fe01b4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/swamp_huts.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 14357620, + "separation": 8, + "spacing": 32 + }, + "structures": [ + { + "structure": "minecraft:swamp_hut", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/trail_ruins.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/trail_ruins.json new file mode 100644 index 00000000..9a9ac814 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/trail_ruins.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 83469867, + "separation": 8, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:trail_ruins", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/trial_chambers.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/trial_chambers.json new file mode 100644 index 00000000..9989d05a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/trial_chambers.json @@ -0,0 +1,14 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 94251327, + "separation": 12, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:trial_chambers", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/villages.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/villages.json new file mode 100644 index 00000000..a9a148ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/villages.json @@ -0,0 +1,30 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387312, + "separation": 8, + "spacing": 34 + }, + "structures": [ + { + "structure": "minecraft:village_plains", + "weight": 1 + }, + { + "structure": "minecraft:village_desert", + "weight": 1 + }, + { + "structure": "minecraft:village_savanna", + "weight": 1 + }, + { + "structure": "minecraft:village_snowy", + "weight": 1 + }, + { + "structure": "minecraft:village_taiga", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/structure_set/woodland_mansions.json b/data/generated/V26_2/data/minecraft/worldgen/structure_set/woodland_mansions.json new file mode 100644 index 00000000..d0a685ff --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/structure_set/woodland_mansions.json @@ -0,0 +1,15 @@ +{ + "placement": { + "type": "minecraft:random_spread", + "salt": 10387319, + "separation": 20, + "spacing": 80, + "spread_type": "triangular" + }, + "structures": [ + { + "structure": "minecraft:mansion", + "weight": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json new file mode 100644 index 00000000..f91e5db4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city/entrance.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_connector", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_4", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city/entrance/entrance_path_5", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center.json new file mode 100644 index 00000000..f9baf9b7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_1", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_2", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/city_center_3", + "processors": "minecraft:ancient_city_start_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json new file mode 100644 index 00000000..ddb5fbbb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/city_center/walls.json @@ -0,0 +1,95 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_left_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_right_corner_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/bottom_right_corner_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/left", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/right", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top_right_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/city_center/walls/top_left_corner", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/sculk.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/sculk.json new file mode 100644 index 00000000..a05c861e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/sculk.json @@ -0,0 +1,19 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:sculk_patch_ancient_city", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/structures.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/structures.json new file mode 100644 index 00000000..6350bed2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/structures.json @@ -0,0 +1,208 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/barracks", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/chamber_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/sauna_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_statue", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/large_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/tall_ruin_4", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/camp_3", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_ruin_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/small_ruin_2", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/large_pillar_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/medium_pillar_1", + "processors": "minecraft:ancient_city_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/structures/ice_box_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls.json new file mode 100644 index 00000000..2f17eb21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_corner_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_intersection_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_lshape_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_passage_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_corner_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_corner_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/ruined_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json new file mode 100644 index 00000000..380a33e1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/ancient_city/walls/no_corners.json @@ -0,0 +1,77 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_1", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_2", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_3", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_4", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_stairs_5", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:ancient_city/walls/intact_horizontal_wall_bridge", + "processors": "minecraft:ancient_city_walls_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json new file mode 100644 index 00000000..c5c17289 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/blocks/gold.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/blocks/air", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/blocks/gold", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json new file mode 100644 index 00000000..536479c9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/bridge_pieces.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/bridge_pieces/bridge", + "processors": "minecraft:bridge", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json new file mode 100644 index 00000000..dfbfc5d4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/connectors.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/connectors/back_bridge_top", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/connectors/back_bridge_bottom", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json new file mode 100644 index 00000000..1545bb86 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/legs.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/legs/leg_0", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/legs/leg_1", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json new file mode 100644 index 00000000..fa6aa7cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/rampart_plates/plate_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json new file mode 100644 index 00000000..8d64dd16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/ramparts.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/ramparts/rampart_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/ramparts/rampart_1", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json new file mode 100644 index 00000000..95e67ee9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/starting_pieces.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance", + "processors": "minecraft:entrance_replacement", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance_face", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json new file mode 100644 index 00000000..519f747b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/bridge/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/walls/wall_base_0", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/walls/wall_base_1", + "processors": "minecraft:rampart_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json new file mode 100644 index 00000000..b9141a07 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/connectors.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/connectors/end_post_connector", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json new file mode 100644 index 00000000..d5f6db4f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/inner.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/inner_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json new file mode 100644 index 00000000..7e7f4644 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/large_stables/outer.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/large_stables/outer_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json new file mode 100644 index 00000000..fe684790 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/mirrored_starting_pieces.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_0_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_1_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_2_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_3_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/stairs_4_mirrored", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json new file mode 100644 index 00000000..72be6944 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/posts.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/posts/stair_post", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/posts/end_post", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json new file mode 100644 index 00000000..2c5e9d16 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/rampart_plates/rampart_plate_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json new file mode 100644 index 00000000..866b742d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/ramparts.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/ramparts/ramparts_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json new file mode 100644 index 00000000..f49b3d65 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/inner.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/inner_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json new file mode 100644 index 00000000..c6876191 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/small_stables/outer.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/small_stables/outer_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json new file mode 100644 index 00000000..dffa6294 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/stairs.json @@ -0,0 +1,140 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_1_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_2_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/stairs/stairs_3_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json new file mode 100644 index 00000000..fe42d672 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/starting_pieces.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_0", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_1", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_2", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_3", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/starting_pieces/starting_stairs_4", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json new file mode 100644 index 00000000..857e2f57 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/wall_bases.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/wall_base", + "processors": "minecraft:stable_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json new file mode 100644 index 00000000..d72cfc99 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/hoglin_stable/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/side_wall_0", + "processors": "minecraft:side_wall_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/walls/side_wall_1", + "processors": "minecraft:side_wall_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json new file mode 100644 index 00000000..80262c74 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/hoglin.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/hoglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/empty", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json new file mode 100644 index 00000000..49881414 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/sword_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/crossbow_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/empty", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json new file mode 100644 index 00000000..57e8b443 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/mobs/piglin_melee.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin_always", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/melee_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/mobs/sword_piglin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/starts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/starts.json new file mode 100644 index 00000000..268da0d8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/starts.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/air_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/hoglin_stable/air_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/big_air_full", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/bridge/starting_pieces/entrance_base", + "processors": "minecraft:bastion_generic_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json new file mode 100644 index 00000000..2407bb50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/lava_basin", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json new file mode 100644 index 00000000..37494415 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/bases/centers.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/bases/centers/center_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json new file mode 100644 index 00000000..0424a1a2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/brains.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/brains/center_brain", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json new file mode 100644 index 00000000..ee5f8435 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/connectors.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_middle", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_top", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/connectors/center_to_wall_top_entrance", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json new file mode 100644 index 00000000..3151ea3b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/bottom.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/bottom/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/bottom/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json new file mode 100644 index 00000000..38aaef5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/edges.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/bottom", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/middle", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/edges/top", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json new file mode 100644 index 00000000..26ce379c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/middle.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/middle/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/middle/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json new file mode 100644 index 00000000..654639fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/corners/top.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/top/corner_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/corners/top/corner_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json new file mode 100644 index 00000000..efebb4cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/entrances.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/entrances/entrance_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json new file mode 100644 index 00000000..c7a4e02d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/houses.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/house_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/house_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json new file mode 100644 index 00000000..abb8c232 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/large_pool.json @@ -0,0 +1,86 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/fire_room", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/large_bridge_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/roofed_bridge", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json new file mode 100644 index 00000000..e69a1f97 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/extensions/small_pool.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/fire_room", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/empty", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/extensions/small_bridge_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json new file mode 100644 index 00000000..b36db2c6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/ramparts.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/mid_wall_main", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/mid_wall_side", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/bottom_wall_0", + "processors": "minecraft:bottom_rampart", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/top_wall", + "processors": "minecraft:high_rampart", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/lava_basin_side", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/ramparts/lava_basin_main", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json new file mode 100644 index 00000000..2a5ca133 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/roofs.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/wall_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/corner_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/roofs/center_roof", + "processors": "minecraft:roof", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json new file mode 100644 index 00000000..d3cc0b98 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/stairs.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/stairs/lower_stairs", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json new file mode 100644 index 00000000..2f0e66a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/lava_wall", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/entrance_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json new file mode 100644 index 00000000..7657ab9a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/bottom.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/bottom/wall_3", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json new file mode 100644 index 00000000..ad94c72d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/mid.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/mid/wall_2", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json new file mode 100644 index 00000000..51723b0b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/outer.json @@ -0,0 +1,59 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/top_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/mid_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/bottom_corner", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/medium_outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/outer/tall_outer_wall", + "processors": "minecraft:high_wall", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json new file mode 100644 index 00000000..d2e25690 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/treasure/walls/top.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/main_entrance", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/wall_0", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/treasure/walls/top/wall_1", + "processors": "minecraft:treasure_rooms", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json new file mode 100644 index 00000000..22407c36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/center_pieces.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/center_pieces/center_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json new file mode 100644 index 00000000..e9d3d785 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edge_wall_units.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/wall_units/edge_0_large", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edges.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edges.json new file mode 100644 index 00000000..86941f70 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/edges.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/edges/edge_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json new file mode 100644 index 00000000..51a65e94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/fillers/stage_0.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/fillers/stage_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json new file mode 100644 index 00000000..371c1e9b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/large_ramparts.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/pathways.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/pathways.json new file mode 100644 index 00000000..e9dee7dd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/pathways.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/pathways/pathway_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/pathways/pathway_wall_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json new file mode 100644 index 00000000..c90df3d6 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/rampart_plates.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/rampart_plates/plate_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json new file mode 100644 index 00000000..37f3ea6a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/ramparts.json @@ -0,0 +1,32 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/ramparts/ramparts_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json new file mode 100644 index 00000000..384e94d1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/rot/stage_1.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/rot/stage_1_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json new file mode 100644 index 00000000..7f7b2389 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_0.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_0_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json new file mode 100644 index 00000000..f21b16fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_1.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_1_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json new file mode 100644 index 00000000..8f35045a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_2.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_2_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_2_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json new file mode 100644 index 00000000..03ab4efb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/stages/stage_3.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_1", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_2", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/stages/stage_3_3", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json new file mode 100644 index 00000000..c373888f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/wall_units.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/wall_units/unit_0", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json new file mode 100644 index 00000000..262a0275 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/bastion/units/walls/wall_bases.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/walls/wall_base", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:bastion/units/walls/connected_wall", + "processors": "minecraft:housing", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/empty.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/empty.json new file mode 100644 index 00000000..6bae5ad7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/empty.json @@ -0,0 +1,4 @@ +{ + "elements": [], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json new file mode 100644 index 00000000..9f7c180b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/base_plates.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/base_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json new file mode 100644 index 00000000..58540017 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/feature_plates.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_plate", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/features.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/features.json new file mode 100644 index 00000000..bc1d5a5e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/features.json @@ -0,0 +1,88 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_cage_with_allays", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_logs", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_tent1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_tent2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/feature_targets", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json new file mode 100644 index 00000000..0900d795 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/pillager_outpost/towers.json @@ -0,0 +1,28 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:list_pool_element", + "elements": [ + { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/watchtower", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:pillager_outpost/watchtower_overgrown", + "processors": "minecraft:outpost_rot", + "projection": "rigid" + } + ], + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json new file mode 100644 index 00000000..f8ad2e63 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings.json @@ -0,0 +1,140 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/large_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/one_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json new file mode 100644 index 00000000..ac3742b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/buildings/grouped.json @@ -0,0 +1,185 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_full_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_lower_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_upper_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/buildings/group_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/decor.json new file mode 100644 index 00000000..0e653984 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/decor.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_6", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/decor/decor_7", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/roads.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/roads.json new file mode 100644 index 00000000..78e08201 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/roads.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/long_road_end", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_end_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_2", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_3", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_section_4", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/roads/road_spacer_1", + "processors": "minecraft:trail_ruins_roads_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower.json new file mode 100644 index 00000000..a6616ddb --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json new file mode 100644 index 00000000..d2cb61c5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/additions.json @@ -0,0 +1,230 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/large_hall_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/one_room_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/platform_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_1", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_2", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_3", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_4", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/stable_5", + "processors": "minecraft:trail_ruins_houses_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json new file mode 100644 index 00000000..1557d5f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trail_ruins/tower/tower_top.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_1", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_2", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_3", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_4", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trail_ruins/tower/tower_top_5", + "processors": "minecraft:trail_ruins_tower_top_archaeology", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json new file mode 100644 index 00000000..48435ede --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/atrium.json @@ -0,0 +1,82 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/bogged_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/breeze_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/spiral_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/spider_relief", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium/grand_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json new file mode 100644 index 00000000..3a169623 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/addon.json @@ -0,0 +1,115 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_stacked_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_stacked_walkway_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/full_corner_column", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/grate_bridge", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/hanging_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/short_grate_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/short_platform", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/lower_staircase_down", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/walkway_with_bridge_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/addon/c1_breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json new file mode 100644 index 00000000..466e2c8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/assembly.json @@ -0,0 +1,236 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/full_column", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/cover_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/platform_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/spawner_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/hanging_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/left_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly/right_staircase_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json new file mode 100644 index 00000000..8f1e1944 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/end.json @@ -0,0 +1,23 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/end_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/end_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json new file mode 100644 index 00000000..74f5ca94 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/entrance_cap.json @@ -0,0 +1,14 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/entrance_cap", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json new file mode 100644 index 00000000..c566f87c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/eruption.json @@ -0,0 +1,115 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/center_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/breeze_slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/slice_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption/quadrant_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json new file mode 100644 index 00000000..c08313b8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/pedestal.json @@ -0,0 +1,159 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/center_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/slice_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/ominous_slice_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json new file mode 100644 index 00000000..c1ebb836 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chamber/slanted.json @@ -0,0 +1,148 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/center", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/hallway_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/quadrant_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ramp_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted/ominous_upper_arm_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json new file mode 100644 index 00000000..8a3f6c0a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chambers/end.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:trial_chambers/hallway/fallback" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json new file mode 100644 index 00000000..a903fe67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/contents/supply.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chests/supply", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json new file mode 100644 index 00000000..1f4a5c7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/chests/supply.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chests/connectors/supply", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json new file mode 100644 index 00000000..3bc1aa08 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor.json @@ -0,0 +1,90 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/second_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/intersection/intersection_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/first_plate", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/atrium_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/entrance_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json new file mode 100644 index 00000000..33d952a0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridor/slices.json @@ -0,0 +1,77 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_5", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_6", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_7", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/straight_8", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json new file mode 100644 index 00000000..21b4c2b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/lower.json @@ -0,0 +1,66 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 8 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/staircase", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/wall", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/ladder_to_middle", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/arrow_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/bridge_lower", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json new file mode 100644 index 00000000..80bab521 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle.json @@ -0,0 +1,33 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 8 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/open_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/walled_walkway", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json new file mode 100644 index 00000000..b2b6f3d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/corridors/addon/middle_upper.json @@ -0,0 +1,66 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/open_walkway_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/chandelier_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/decoration_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/head_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/reward_upper", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor.json new file mode 100644 index 00000000..ba102020 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor.json @@ -0,0 +1,132 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 22 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/empty_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/dead_bush_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/undecorated_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/flow_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/guster_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/scrape_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/candle_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/barrel", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json new file mode 100644 index 00000000..0e705777 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/bed.json @@ -0,0 +1,181 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/white_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/light_gray_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/gray_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/black_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/brown_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/red_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/orange_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/yellow_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/lime_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/green_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/cyan_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/light_blue_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/blue_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/purple_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/magenta_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/pink_bed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json new file mode 100644 index 00000000..7b84f825 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/chamber.json @@ -0,0 +1,22 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/undecorated_pot", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json new file mode 100644 index 00000000..aeb21958 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/decor/disposal.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/decor/disposal", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json new file mode 100644 index 00000000..08309169 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/dispensers/chamber.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/chamber", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/wall_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/dispensers/floor_dispenser", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json new file mode 100644 index 00000000..3f44df4d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/entrance.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/corridor/addon/display_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json new file mode 100644 index 00000000..75f08818 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway.json @@ -0,0 +1,279 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corridor_connector_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/upper_hallway_connector", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/lower_hallway_connector", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/chamber_8", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/assembly", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/eruption", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/slanted", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/chamber/pedestal", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber_thin", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/cache_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/left_corner", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/right_corner", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corner_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/corner_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/long_straight_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/long_straight_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/straight_staircase_down", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/trapped_staircase", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_1", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_2", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_3", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_4", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/encounter_5", + "processors": "minecraft:trial_chambers_copper_bulb_degradation", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:trial_chambers/hallway/fallback" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json new file mode 100644 index 00000000..06c5bf39 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/hallway/fallback.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_thin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/hallway/rubble_chamber_thin", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json new file mode 100644 index 00000000..7466e265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/all.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json new file mode 100644 index 00000000..7466e265 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/contents/default.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json new file mode 100644 index 00000000..6b69ee3f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/reward/ominous_vault.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/reward/ominous_vault", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json new file mode 100644 index 00000000..23e4652c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/all.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/small_melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json new file mode 100644 index 00000000..39b8230b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/breeze.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json new file mode 100644 index 00000000..11a5dadf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/contents/breeze.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/breeze/breeze", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json new file mode 100644 index 00000000..c9f06db3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json new file mode 100644 index 00000000..38f6ec36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/husk.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/husk", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json new file mode 100644 index 00000000..bba81938 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/spider.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/spider", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json new file mode 100644 index 00000000..11e70e3e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/melee/zombie.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/melee/zombie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json new file mode 100644 index 00000000..a4b4c4d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json new file mode 100644 index 00000000..e80b3f19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/poison_skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/poison_skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json new file mode 100644 index 00000000..495e8616 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json new file mode 100644 index 00000000..324b6c34 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/ranged/stray.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/ranged/stray", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json new file mode 100644 index 00000000..a0cab514 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/slow_ranged", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json new file mode 100644 index 00000000..202bd0ed --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/poison_skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/poison_skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json new file mode 100644 index 00000000..626a1339 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/skeleton.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/skeleton", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json new file mode 100644 index 00000000..9a8a6c43 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/slow_ranged/stray.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/slow_ranged/stray", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json new file mode 100644 index 00000000..f57f8f0d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/connectors/small_melee", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json new file mode 100644 index 00000000..d7d40458 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/baby_zombie.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/baby_zombie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json new file mode 100644 index 00000000..8f109513 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/cave_spider.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/cave_spider", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json new file mode 100644 index 00000000..5ce375cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/silverfish.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/silverfish", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json new file mode 100644 index 00000000..d68fae82 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/trial_chambers/spawner/small_melee/slime.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:single_pool_element", + "location": "minecraft:trial_chambers/spawner/small_melee/slime", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/animals.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/animals.json new file mode 100644 index 00000000..81aa432b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/animals.json @@ -0,0 +1,110 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cows_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/pigs_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/horses_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json new file mode 100644 index 00000000..c68baef8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/butcher_animals.json @@ -0,0 +1,49 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cows_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/pigs_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/cats.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/cats.json new file mode 100644 index 00000000..e92f19c2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/cats.json @@ -0,0 +1,121 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_black", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_british", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_calico", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_persian", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_ragdoll", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_red", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_siamese", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_tabby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_white", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/cat_jellie", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/iron_golem.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/iron_golem.json new file mode 100644 index 00000000..7b57cfbc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/iron_golem.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/iron_golem", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/sheep.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/sheep.json new file mode 100644 index 00000000..357e70c1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/sheep.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/animals/sheep_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json new file mode 100644 index 00000000..aaddc3f1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/common/well_bottoms.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/common/well_bottom", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/camel.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/camel.json new file mode 100644 index 00000000..c0521486 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/camel.json @@ -0,0 +1,16 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/camel_spawn", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/decor.json new file mode 100644 index 00000000..2176243c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/decor.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/desert_lamp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_cactus", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/houses.json new file mode 100644 index 00000000..ccd54e7e --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/houses.json @@ -0,0 +1,313 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_butcher_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_shepherd_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_armorer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fisher_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_cartographer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_mason_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_weaponsmith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_large_farm_1", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 11 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_1", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_2", + "processors": "minecraft:farm_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/desert/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/streets.json new file mode 100644 index 00000000..18900da4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/streets.json @@ -0,0 +1,126 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/corner_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/corner_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/straight_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/crossroad_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/square_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/square_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/streets/turn_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/desert/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/terminators.json new file mode 100644 index 00000000..080901ca --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/terminators.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/town_centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/town_centers.json new file mode 100644 index 00000000..ee435a4b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/town_centers.json @@ -0,0 +1,65 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 98 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 98 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/town_centers/desert_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/town_centers/desert_meeting_point_3", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/villagers.json new file mode 100644 index 00000000..19f21603 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json new file mode 100644 index 00000000..87b9b755 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/decor.json @@ -0,0 +1,36 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/desert_lamp_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_cactus", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json new file mode 100644 index 00000000..b1b8913d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/houses.json @@ -0,0 +1,263 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_3", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_4", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_5", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_6", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_7", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_small_house_8", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_medium_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/houses/desert_medium_house_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_butcher_shop_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tool_smith_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fletcher_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_shepherd_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_armorer_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_fisher_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_tannery_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_cartographer_house_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_library_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_mason_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_weaponsmith_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_temple_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_large_farm_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_farm_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_1", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/houses/desert_animal_pen_2", + "processors": "minecraft:zombie_desert", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/desert/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json new file mode 100644 index 00000000..6005b0a3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/streets.json @@ -0,0 +1,126 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/corner_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/corner_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/straight_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/crossroad_03", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/square_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/square_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/streets/turn_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/desert/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json new file mode 100644 index 00000000..5c416edc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/terminators.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/terminators/terminator_01", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/terminators/terminator_02", + "processors": { + "processors": [] + }, + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json new file mode 100644 index 00000000..3b4a1254 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/desert/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/desert/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/decor.json new file mode 100644 index 00000000..2ef26d19 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/decor.json @@ -0,0 +1,46 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/plains_lamp_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:flower_plain", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/houses.json new file mode 100644 index 00000000..583f595f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/houses.json @@ -0,0 +1,349 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_5", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_6", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_7", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_house_8", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_medium_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_medium_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_big_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tool_smith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fletcher_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_shepherds_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_armorer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fisher_cottage_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tannery_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_cartographer_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_masons_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_weaponsmith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_large_farm_1", + "processors": "minecraft:farm_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_farm_1", + "processors": "minecraft:farm_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_accessory_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_meeting_point_4", + "processors": "minecraft:mossify_70_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_meeting_point_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/streets.json new file mode 100644 index 00000000..9cc0d999 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/corner_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/straight_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/crossroad_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/streets/turn_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/terminators.json new file mode 100644 index 00000000..d633b01f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/town_centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/town_centers.json new file mode 100644 index 00000000..ae1f33b4 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/town_centers.json @@ -0,0 +1,79 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_fountain_01", + "processors": "minecraft:mossify_20_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_1", + "processors": "minecraft:mossify_20_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/town_centers/plains_meeting_point_3", + "processors": "minecraft:mossify_70_percent", + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_fountain_01", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/town_centers/plains_meeting_point_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/trees.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/trees.json new file mode 100644 index 00000000..ef13b73b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/villagers.json new file mode 100644 index 00000000..aba2e1a9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json new file mode 100644 index 00000000..0d027fc7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/decor.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/plains_lamp_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:oak", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:flower_plain", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 2 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json new file mode 100644 index 00000000..7c3bc8cc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/houses.json @@ -0,0 +1,326 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_5", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_6", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_7", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_small_house_8", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_medium_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_medium_house_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_big_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_butcher_shop_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_butcher_shop_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tool_smith_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_fletcher_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_shepherds_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_armorer_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_fisher_cottage_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_tannery_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_cartographer_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_library_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_masons_house_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_weaponsmith_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_temple_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_stable_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_stable_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_large_farm_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_small_farm_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_1", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/houses/plains_animal_pen_2", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_animal_pen_3", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 5 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_meeting_point_4", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/houses/plains_meeting_point_5", + "processors": "minecraft:zombie_plains", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 10 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json new file mode 100644 index 00000000..ec79de21 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/corner_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/straight_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_02", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_03", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_04", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_05", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/crossroad_06", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/streets/turn_01", + "processors": "minecraft:street_plains", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/plains/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json new file mode 100644 index 00000000..07dbae1b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/plains/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/decor.json new file mode 100644 index 00000000..d7a351f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/decor.json @@ -0,0 +1,46 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/savanna_lamp_post_01", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_melon", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/houses.json new file mode 100644 index 00000000..994666ef --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/houses.json @@ -0,0 +1,346 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_shepherd_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_armorer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fisher_cottage_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_cartographer_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_mason_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_1", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_2", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_farm", + "processors": "minecraft:farm_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/savanna/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/streets.json new file mode 100644 index 00000000..16eb8094 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/streets.json @@ -0,0 +1,176 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/corner_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/corner_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_08", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_09", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_10", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/straight_11", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/crossroad_07", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/split_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/split_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/streets/turn_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/savanna/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/terminators.json new file mode 100644 index 00000000..96569d5d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/terminators.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/terminators/terminator_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json new file mode 100644 index 00000000..98319745 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/town_centers.json @@ -0,0 +1,85 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 100 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/town_centers/savanna_meeting_point_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/town_centers/savanna_meeting_point_4", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/trees.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/trees.json new file mode 100644 index 00000000..11dc7fa0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/villagers.json new file mode 100644 index 00000000..022306b5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json new file mode 100644 index 00000000..28310694 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/decor.json @@ -0,0 +1,44 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/savanna_lamp_post_01", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:acacia", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_hay", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_melon", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json new file mode 100644 index 00000000..bb0ea1f0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/houses.json @@ -0,0 +1,290 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_4", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_5", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_6", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_7", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_small_house_8", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_medium_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_medium_house_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_butchers_shop_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tool_smith_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fletcher_house_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_shepherd_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_armorer_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_fisher_cottage_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_tannery_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_cartographer_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_library_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_mason_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_weaponsmith_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_temple_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_large_farm_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_large_farm_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_small_farm", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/houses/savanna_animal_pen_1", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_animal_pen_2", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/houses/savanna_animal_pen_3", + "processors": "minecraft:zombie_savanna", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 5 + } + ], + "fallback": "minecraft:village/savanna/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json new file mode 100644 index 00000000..cd7e2812 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/streets.json @@ -0,0 +1,176 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/corner_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/corner_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_08", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_09", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_10", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/straight_11", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_06", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/crossroad_07", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/split_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/split_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/streets/turn_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/savanna/zombie/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json new file mode 100644 index 00000000..ca8b1d5b --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/terminators.json @@ -0,0 +1,50 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/terminators/terminator_05", + "processors": "minecraft:street_savanna", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json new file mode 100644 index 00000000..c8c3a5ec --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/savanna/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/savanna/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/decor.json new file mode 100644 index 00000000..3ea5c2cd --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/decor.json @@ -0,0 +1,68 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_01", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_02", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_03", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_snow", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_ice", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 9 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/houses.json new file mode 100644 index 00000000..a6063d67 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/houses.json @@ -0,0 +1,337 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_7", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_small_house_8", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_medium_house_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tool_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fletcher_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_shepherds_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fisher_cottage", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tannery_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_cartographer_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_library_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_weapon_smith_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_temple_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_1", + "processors": "minecraft:farm_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_2", + "processors": "minecraft:farm_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/streets.json new file mode 100644 index 00000000..85215a8c --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/square_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/straight_08", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/terminators.json new file mode 100644 index 00000000..9421bd7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json new file mode 100644 index 00000000..4768a893 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/town_centers.json @@ -0,0 +1,71 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 100 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 50 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/town_centers/snowy_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 150 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/town_centers/snowy_meeting_point_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 3 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/trees.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/trees.json new file mode 100644 index 00000000..e2d30848 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/trees.json @@ -0,0 +1,13 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/villagers.json new file mode 100644 index 00000000..695d2c40 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json new file mode 100644 index 00000000..89f2ab46 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/decor.json @@ -0,0 +1,62 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_01", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_02", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/snowy_lamp_post_03", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_snow", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_ice", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 7 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json new file mode 100644 index 00000000..339c80d7 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/houses.json @@ -0,0 +1,281 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_3", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_4", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_5", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_6", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_7", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_small_house_8", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/houses/snowy_medium_house_3", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_butchers_shop_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tool_smith_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fletcher_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_shepherds_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_armorer_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_fisher_cottage", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_tannery_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_cartographer_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_library_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_masons_house_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_weapon_smith_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_temple_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_farm_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_1", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/houses/snowy_animal_pen_2", + "processors": "minecraft:zombie_snowy", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json new file mode 100644 index 00000000..c96006f8 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/square_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/straight_08", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/snowy/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json new file mode 100644 index 00000000..f89b780d --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/snowy/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/snowy/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/decor.json new file mode 100644 index 00000000..36fa2e36 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/decor.json @@ -0,0 +1,128 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_lamp_post_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_5", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_6", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pine", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_pumpkin", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_taiga_grass", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_berry_bush", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/houses.json new file mode 100644 index 00000000..008c6eee --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/houses.json @@ -0,0 +1,254 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_house_5", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_3", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_medium_house_4", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_butcher_shop_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tool_smith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fletcher_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_shepherds_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fisher_cottage_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 3 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tannery_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_cartographer_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_library_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_masons_house_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_temple_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_1", + "processors": "minecraft:farm_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_2", + "processors": "minecraft:farm_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_farm_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_animal_pen_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/streets.json new file mode 100644 index 00000000..937ea9b1 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/terminators.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/terminators.json new file mode 100644 index 00000000..9421bd7f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/terminators.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/plains/terminators/terminator_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json new file mode 100644 index 00000000..3a510bbf --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/town_centers.json @@ -0,0 +1,41 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/town_centers/taiga_meeting_point_1", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/town_centers/taiga_meeting_point_2", + "processors": "minecraft:mossify_10_percent", + "projection": "rigid" + }, + "weight": 49 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/town_centers/taiga_meeting_point_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/town_centers/taiga_meeting_point_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/villagers.json new file mode 100644 index 00000000..50cff359 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/villagers.json @@ -0,0 +1,38 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/baby", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json new file mode 100644 index 00000000..ae913165 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/decor.json @@ -0,0 +1,95 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_1", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_2", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_3", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/taiga_decoration_4", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:spruce", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pine", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:pile_pumpkin", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_taiga_grass", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:feature_pool_element", + "feature": "minecraft:patch_berry_bush", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 4 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json new file mode 100644 index 00000000..0d953314 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/houses.json @@ -0,0 +1,245 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_3", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_4", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_small_house_5", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_3", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_medium_house_4", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_butcher_shop_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_tool_smith_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_fletcher_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_shepherds_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_armorer_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_fisher_cottage_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_tannery_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_cartographer_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_library_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_masons_house_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_weaponsmith_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_weaponsmith_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_temple_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_large_farm_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/houses/taiga_large_farm_2", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 6 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_small_farm_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/houses/taiga_animal_pen_1", + "processors": "minecraft:zombie_taiga", + "projection": "rigid" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:empty_pool_element" + }, + "weight": 6 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json new file mode 100644 index 00000000..0bd0fbcc --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/streets.json @@ -0,0 +1,149 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/corner_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 7 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/straight_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 4 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_02", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_03", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_04", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_05", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/crossroad_06", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 2 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/streets/turn_01", + "processors": "minecraft:street_snowy_or_taiga", + "projection": "terrain_matching" + }, + "weight": 3 + } + ], + "fallback": "minecraft:village/taiga/terminators" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json new file mode 100644 index 00000000..f8f144fa --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/template_pool/village/taiga/zombie/villagers.json @@ -0,0 +1,27 @@ +{ + "elements": [ + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/villagers/nitwit", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 1 + }, + { + "element": { + "element_type": "minecraft:legacy_single_pool_element", + "location": "minecraft:village/taiga/zombie/villagers/unemployed", + "processors": { + "processors": [] + }, + "projection": "rigid" + }, + "weight": 10 + } + ], + "fallback": "minecraft:empty" +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/amplified.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/amplified.json new file mode 100644 index 00000000..949d42f3 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/amplified.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:amplified" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/debug_all_block_states.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/debug_all_block_states.json new file mode 100644 index 00000000..fc2f42e5 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/debug_all_block_states.json @@ -0,0 +1,31 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:debug" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat.json new file mode 100644 index 00000000..a0a96fd9 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat.json @@ -0,0 +1,54 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:flat", + "settings": { + "biome": "minecraft:plains", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:dirt", + "height": 2 + }, + { + "block": "minecraft:grass_block", + "height": 1 + } + ], + "structure_overrides": [ + "minecraft:strongholds", + "minecraft:villages" + ] + } + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat_all_dimensions.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat_all_dimensions.json new file mode 100644 index 00000000..fb0be6d0 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/flat_all_dimensions.json @@ -0,0 +1,67 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:flat", + "settings": { + "biome": "minecraft:desert", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:sandstone", + "height": 67 + } + ] + } + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:flat", + "settings": { + "biome": "minecraft:the_end", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:end_stone", + "height": 3 + } + ] + } + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:flat", + "settings": { + "biome": "minecraft:basalt_deltas", + "features": false, + "lakes": false, + "layers": [ + { + "block": "minecraft:bedrock", + "height": 1 + }, + { + "block": "minecraft:basalt", + "height": 3 + } + ] + } + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/large_biomes.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/large_biomes.json new file mode 100644 index 00000000..261f020f --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/large_biomes.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:large_biomes" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/normal.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/normal.json new file mode 100644 index 00000000..8087f56a --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/normal.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:overworld" + }, + "settings": "minecraft:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/worldgen/world_preset/single_biome_surface.json b/data/generated/V26_2/data/minecraft/worldgen/world_preset/single_biome_surface.json new file mode 100644 index 00000000..ff20e691 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/worldgen/world_preset/single_biome_surface.json @@ -0,0 +1,36 @@ +{ + "dimensions": { + "minecraft:overworld": { + "type": "minecraft:overworld", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:fixed", + "biome": "minecraft:plains" + }, + "settings": "minecraft:overworld" + } + }, + "minecraft:the_end": { + "type": "minecraft:the_end", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:the_end" + }, + "settings": "minecraft:end" + } + }, + "minecraft:the_nether": { + "type": "minecraft:the_nether", + "generator": { + "type": "minecraft:noise", + "biome_source": { + "type": "minecraft:multi_noise", + "preset": "minecraft:nether" + }, + "settings": "minecraft:nether" + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/temperate.json b/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/temperate.json new file mode 100644 index 00000000..e15e1f50 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/temperate.json @@ -0,0 +1,8 @@ +{ + "asset_id": "minecraft:entity/nautilus/zombie_nautilus", + "spawn_conditions": [ + { + "priority": 0 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/warm.json b/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/warm.json new file mode 100644 index 00000000..af97a0f2 --- /dev/null +++ b/data/generated/V26_2/data/minecraft/zombie_nautilus_variant/warm.json @@ -0,0 +1,13 @@ +{ + "asset_id": "minecraft:entity/nautilus/zombie_nautilus_coral", + "model": "warm", + "spawn_conditions": [ + { + "condition": { + "type": "minecraft:biome", + "biomes": "#minecraft:spawns_coral_variant_zombie_nautilus" + }, + "priority": 1 + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/biome_parameters/minecraft/nether.json b/data/generated/V26_2/reports/biome_parameters/minecraft/nether.json new file mode 100644 index 00000000..a4f48ed0 --- /dev/null +++ b/data/generated/V26_2/reports/biome_parameters/minecraft/nether.json @@ -0,0 +1,64 @@ +{ + "biomes": [ + { + "biome": "minecraft:nether_wastes", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.0, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:soul_sand_valley", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": -0.5, + "offset": 0.0, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:crimson_forest", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.0, + "temperature": 0.4, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:warped_forest", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.5, + "offset": 0.375, + "temperature": 0.0, + "weirdness": 0.0 + } + }, + { + "biome": "minecraft:basalt_deltas", + "parameters": { + "continentalness": 0.0, + "depth": 0.0, + "erosion": 0.0, + "humidity": 0.0, + "offset": 0.175, + "temperature": -0.5, + "weirdness": 0.0 + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/biome_parameters/minecraft/overworld.json b/data/generated/V26_2/reports/biome_parameters/minecraft/overworld.json new file mode 100644 index 00000000..154366de --- /dev/null +++ b/data/generated/V26_2/reports/biome_parameters/minecraft/overworld.json @@ -0,0 +1,205051 @@ +{ + "biomes": [ + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:mushroom_fields", + "parameters": { + "continentalness": [ + -1.2, + -1.05 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_frozen_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:frozen_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_cold_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:cold_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:deep_lukewarm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lukewarm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -1.05, + -0.455 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 0.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:warm_ocean", + "parameters": { + "continentalness": [ + -0.455, + -0.19 + ], + "depth": 1.0, + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -1.0, + -0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.9333, + -0.7666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.7666, + -0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jagged_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.5666, + -0.4 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.4, + -0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_spruce_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:flower_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.2666, + -0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.55 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:river", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:frozen_river", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + -0.05, + 0.05 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:snowy_beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:beach", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.05, + 0.2666 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.2666, + 0.4 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.4, + 0.5666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.5666, + 0.7666 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:frozen_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_peaks", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.7666, + 0.9333 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:stony_shore", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.2225 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:mangrove_swamp", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:ice_spikes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_plains", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + -0.45 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_gravelly_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:meadow", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_pine_taiga", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.45, + -0.15 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sunflower_plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:snowy_slopes", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:cherry_grove", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_hills", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:birch_forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:old_growth_birch_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:grove", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:pale_garden", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_forest", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dark_forest", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -0.15, + 0.2 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna_plateau", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:plains", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:forest", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:sparse_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:jungle", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:bamboo_jungle", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.2, + 0.55 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -1.0, + -0.35 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:eroded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.35, + -0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + -0.1, + 0.1 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:windswept_savanna", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.1, + 0.3 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -1.0, + -0.7799 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + -0.11, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.7799, + -0.375 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 0.3 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.3, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.375, + -0.2225 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 0.03 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:wooded_badlands", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + -0.2225, + 0.05 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.05, + 0.45 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.11, + 0.03 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 0.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + 0.03, + 1.0 + ], + "depth": 1.0, + "erosion": [ + 0.45, + 0.55 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 0.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:desert", + "parameters": { + "continentalness": [ + -0.19, + -0.11 + ], + "depth": 1.0, + "erosion": [ + 0.55, + 1.0 + ], + "humidity": [ + 0.3, + 1.0 + ], + "offset": 0.0, + "temperature": [ + 0.55, + 1.0 + ], + "weirdness": [ + 0.9333, + 1.0 + ] + } + }, + { + "biome": "minecraft:dripstone_caves", + "parameters": { + "continentalness": [ + 0.8, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:lush_caves", + "parameters": { + "continentalness": [ + -1.0, + 1.0 + ], + "depth": [ + 0.2, + 0.9 + ], + "erosion": [ + -1.0, + 1.0 + ], + "humidity": [ + 0.7, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + }, + { + "biome": "minecraft:sulfur_caves", + "parameters": { + "continentalness": [ + -0.19, + 0.55 + ], + "depth": [ + 0.2, + 0.9 + ], + "erosion": [ + 0.45, + 1.0 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.1, + -0.85 + ] + } + }, + { + "biome": "minecraft:deep_dark", + "parameters": { + "continentalness": [ + -1.0, + 1.0 + ], + "depth": 1.1, + "erosion": [ + -1.0, + -0.375 + ], + "humidity": [ + -1.0, + 1.0 + ], + "offset": 0.0, + "temperature": [ + -1.0, + 1.0 + ], + "weirdness": [ + -1.0, + 1.0 + ] + } + } + ] +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/blocks.json b/data/generated/V26_2/reports/blocks.json new file mode 100644 index 00000000..a810ff77 --- /dev/null +++ b/data/generated/V26_2/reports/blocks.json @@ -0,0 +1,330648 @@ +{ + "minecraft:acacia_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "acacia", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10771, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10772, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10773, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10774, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10775, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10776, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10777, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10778, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10779, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10780, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10781, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10782, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10783, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10784, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10785, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10786, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10787, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10788, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10789, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10790, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10791, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10792, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10793, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10794, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14252, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14253, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14254, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14255, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14256, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14257, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14258, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14259, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14260, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14261, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14262, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14263, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14264, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14265, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14266, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14267, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14268, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14269, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14270, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14271, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14272, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14273, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14274, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14275, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14276, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14277, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14278, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14279, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14280, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14281, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14282, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14283, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14284, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14285, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14286, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14287, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14288, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14289, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14290, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14291, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14292, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14293, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14294, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14295, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14296, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14297, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14298, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14299, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14300, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14301, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14302, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14303, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14304, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14305, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14306, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14307, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14308, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14309, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14310, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14311, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14312, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14313, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14314, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14315, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13868, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13869, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13870, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13871, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13872, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13873, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13874, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13875, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13876, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13877, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13878, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13879, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13880, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13881, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13882, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13883, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13884, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13885, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13886, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13887, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13888, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13889, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13890, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13891, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13892, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13893, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13894, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13895, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13896, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13897, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13898, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13899, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:acacia_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13580, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13581, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13582, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13583, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13584, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13585, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13586, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13587, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13588, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13589, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13590, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13591, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13592, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13593, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13594, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13595, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13596, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13597, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13598, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13599, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13600, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13601, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13602, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13603, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13604, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13605, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13606, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13607, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13608, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13609, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13610, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13611, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:acacia_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6099, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6100, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6101, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6102, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6103, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6104, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6105, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6106, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6107, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6108, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6109, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6110, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6111, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6112, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6113, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6114, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6115, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6116, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6117, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6118, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6119, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6120, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6121, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6122, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6123, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6124, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6125, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6126, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6127, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6128, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6129, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6130, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6131, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6132, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6133, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6134, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6135, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6136, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6137, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6138, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6139, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6140, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6141, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6142, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6143, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6144, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6145, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6146, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6147, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6148, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6149, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6150, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6151, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6152, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6153, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6154, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6155, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6156, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6157, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6158, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6159, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6160, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6161, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6162, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 364, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 365, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 366, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 367, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 368, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 369, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 370, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 371, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 372, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 373, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 374, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 375, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 376, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 377, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 378, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 379, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 380, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 381, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 382, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 383, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 384, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 385, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 386, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 387, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 388, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 389, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 390, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 391, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 148, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 149, + "properties": { + "axis": "y" + } + }, + { + "id": 150, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:acacia_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 19 + } + ] + }, + "minecraft:acacia_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6869, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6870, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:acacia_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "acacia" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 37, + "properties": { + "stage": "0" + } + }, + { + "id": 38, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:acacia_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2600, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2601, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2602, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2603, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2604, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2605, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2606, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2607, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2608, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2609, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2610, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2611, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2612, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2613, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2614, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2615, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2616, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2617, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2618, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2619, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2620, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2621, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2622, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2623, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2624, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2625, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2626, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2627, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2628, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2629, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2630, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2631, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2632, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2633, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2634, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2635, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2636, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2637, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2638, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2639, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2640, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2641, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2642, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2643, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2644, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2645, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2646, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2647, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2648, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2649, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2650, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2651, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2652, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2653, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2654, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2655, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2656, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2657, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2658, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2659, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2660, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2661, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2662, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2663, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5431, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5432, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5433, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5434, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5435, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5436, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5437, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5438, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5439, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5440, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5441, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5442, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5443, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5444, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5445, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5446, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5447, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5448, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5449, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5450, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5451, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5452, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5453, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5454, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5455, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5456, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5457, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5458, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5459, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5460, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5461, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5462, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13354, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13355, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13356, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13357, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13358, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13359, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:acacia_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11972, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11973, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11974, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11975, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11976, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11977, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11978, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11979, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11980, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11981, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11984, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11985, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11986, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11987, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11988, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11989, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11990, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11991, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11992, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11993, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11994, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11995, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11996, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11997, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11998, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11999, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12000, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12001, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12004, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12005, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12006, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12007, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12008, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12009, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12010, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12011, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12012, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12013, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12014, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12015, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12016, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12017, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12018, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12019, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12020, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12021, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12024, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12025, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12026, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12027, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12028, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12029, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12030, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12031, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12032, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12033, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12034, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12035, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12036, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12037, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12038, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12039, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12040, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12041, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12044, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12045, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12046, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12047, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12048, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12049, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12050, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12051, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "acacia", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7370, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7371, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7372, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7373, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7374, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7375, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7376, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7377, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7378, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7379, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7380, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7381, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7382, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7383, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7384, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7385, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7386, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7387, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7388, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7389, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7390, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7391, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7392, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7393, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7394, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7395, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7396, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7397, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7398, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7399, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7400, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7401, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7402, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7403, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7404, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7405, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7406, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7407, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7408, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7409, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7410, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7411, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7412, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7413, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7414, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7415, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7416, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7417, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7418, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7419, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7420, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7421, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7422, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7423, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7424, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7425, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7426, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7427, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7428, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7429, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7430, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7431, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7432, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7433, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6699, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6700, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6701, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6702, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6703, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6704, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6705, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6706, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "acacia" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5851, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5852, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5853, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5854, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5855, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5856, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5857, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5858, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 213, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 214, + "properties": { + "axis": "y" + } + }, + { + "id": 215, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:activator_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11408, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 11409, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 11410, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 11411, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 11412, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 11413, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 11414, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 11415, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 11416, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 11417, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 11418, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 11419, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 11420, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11421, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 11422, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 11423, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 11424, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 11425, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 11426, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 11427, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 11428, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 11429, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 11430, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 11431, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 0 + } + ] + }, + "minecraft:allium": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 60, + "id": "minecraft:fire_resistance" + } + ] + }, + "states": [ + { + "default": true, + "id": 2326 + } + ] + }, + "minecraft:amethyst_block": { + "definition": { + "type": "minecraft:amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23402 + } + ] + }, + "minecraft:amethyst_cluster": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 7.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23404, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23405, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23406, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23407, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23408, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23409, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23410, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23411, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23412, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23413, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23414, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23415, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ancient_debris": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21819 + } + ] + }, + "minecraft:andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6 + } + ] + }, + "minecraft:andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16470, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16471, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16472, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16473, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16474, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16475, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16096, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16097, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16098, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16099, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16100, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16101, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16102, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16103, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16104, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16105, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16106, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16107, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16108, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16109, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16110, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16111, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16112, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16113, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16114, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16115, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16116, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16117, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16118, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16119, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16120, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16121, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16122, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16123, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16124, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16125, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16126, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16127, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16128, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16129, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16130, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16131, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16132, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16133, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16134, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16135, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16136, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16137, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16138, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16139, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16140, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16141, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16142, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16143, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16144, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16145, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16146, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16147, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16148, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16149, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16150, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16151, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16152, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16153, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16154, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16155, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16156, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16157, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16158, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16159, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16160, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16161, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16162, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16163, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16164, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16165, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16166, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16167, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16168, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16169, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16170, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16171, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16172, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16173, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16174, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16175, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:andesite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19086, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19087, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19088, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19089, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19090, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19091, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19092, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19093, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19094, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19095, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19096, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19097, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19098, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19099, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19100, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19101, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19102, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19103, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19104, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19105, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19106, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19107, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19108, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19109, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19110, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19111, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19112, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19113, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19114, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19115, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19116, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19117, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19118, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19119, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19120, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19121, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19122, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19123, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19124, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19125, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19126, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19127, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19128, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19129, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19130, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19131, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19132, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19133, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19134, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19135, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19136, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19137, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19138, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19139, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19140, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19141, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19142, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19143, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19144, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19145, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19146, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19147, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19148, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19149, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19150, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19151, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19152, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19153, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19154, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19155, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19156, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19157, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19158, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19159, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19160, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19161, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19162, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19163, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19164, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19165, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19166, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19167, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19168, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19169, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19170, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19171, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19172, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19173, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19174, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19175, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19176, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19177, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19178, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19179, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19180, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19181, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19182, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19183, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19184, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19185, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19186, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19187, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19188, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19189, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19190, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19191, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19192, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19193, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19194, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19195, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19196, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19197, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19198, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19199, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19200, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19201, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19202, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19203, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19204, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19205, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19206, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19207, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19208, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19209, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19210, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19211, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19212, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19213, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19214, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19215, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19216, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19217, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19218, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19219, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19220, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19221, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19222, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19223, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19224, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19225, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19226, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19227, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19228, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19229, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19230, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19231, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19232, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19233, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19234, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19235, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19236, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19237, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19238, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19239, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19240, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19241, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19242, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19243, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19244, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19245, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19246, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19247, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19248, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19249, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19250, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19251, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19252, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19253, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19254, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19255, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19256, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19257, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19258, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19259, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19260, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19261, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19262, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19263, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19264, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19265, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19266, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19267, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19268, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19269, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19270, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19271, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19272, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19273, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19274, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19275, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19276, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19277, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19278, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19279, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19280, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19281, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19282, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19283, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19284, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19285, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19286, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19287, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19288, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19289, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19290, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19291, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19292, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19293, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19294, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19295, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19296, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19297, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19298, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19299, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19300, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19301, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19302, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19303, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19304, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19305, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19306, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19307, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19308, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19309, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19310, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19311, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19312, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19313, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19314, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19315, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19316, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19317, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19318, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19319, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19320, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19321, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19322, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19323, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19324, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19325, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19326, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19327, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19328, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19329, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19330, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19331, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19332, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19333, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19334, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19335, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19336, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19337, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19338, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19339, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19340, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19341, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19342, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19343, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19344, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19345, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19346, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19347, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19348, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19349, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19350, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19351, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19352, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19353, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19354, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19355, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19356, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19357, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19358, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19359, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19360, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19361, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19362, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19363, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19364, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19365, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19366, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19367, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19368, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19369, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19370, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19371, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19372, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19373, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19374, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19375, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19376, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19377, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19378, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19379, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19380, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19381, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19382, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19383, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19384, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19385, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19386, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19387, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19388, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19389, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19390, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19391, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19392, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19393, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19394, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19395, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19396, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19397, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19398, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19399, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19400, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19401, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19402, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19403, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19404, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19405, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19406, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19407, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19408, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19409, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11195, + "properties": { + "facing": "north" + } + }, + { + "id": 11196, + "properties": { + "facing": "south" + } + }, + { + "id": 11197, + "properties": { + "facing": "west" + } + }, + { + "id": 11198, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_melon_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:melon", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem": "minecraft:melon_stem", + "support_blocks": "minecraft:supports_melon_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8338, + "properties": { + "facing": "north" + } + }, + { + "id": 8339, + "properties": { + "facing": "south" + } + }, + { + "id": 8340, + "properties": { + "facing": "west" + } + }, + { + "id": 8341, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:attached_pumpkin_stem": { + "definition": { + "type": "minecraft:attached_stem", + "fruit": "minecraft:pumpkin", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem": "minecraft:pumpkin_stem", + "support_blocks": "minecraft:supports_pumpkin_stem" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 8334, + "properties": { + "facing": "north" + } + }, + { + "id": 8335, + "properties": { + "facing": "south" + } + }, + { + "id": 8336, + "properties": { + "facing": "west" + } + }, + { + "id": 8337, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30304 + } + ] + }, + "minecraft:azalea_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 504, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 505, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 506, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 507, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 508, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 509, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 510, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 511, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 512, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 513, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 514, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 515, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 516, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 517, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 518, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 519, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 520, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 521, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 522, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 523, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 524, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 525, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 526, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 527, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 528, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 529, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 530, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 531, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:azure_bluet": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:blindness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2327 + } + ] + }, + "minecraft:bamboo": { + "definition": { + "type": "minecraft:bamboo_stalk", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ], + "leaves": [ + "none", + "small", + "large" + ], + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 15279, + "properties": { + "age": "0", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 15280, + "properties": { + "age": "0", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 15281, + "properties": { + "age": "0", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 15282, + "properties": { + "age": "0", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 15283, + "properties": { + "age": "0", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 15284, + "properties": { + "age": "0", + "leaves": "large", + "stage": "1" + } + }, + { + "id": 15285, + "properties": { + "age": "1", + "leaves": "none", + "stage": "0" + } + }, + { + "id": 15286, + "properties": { + "age": "1", + "leaves": "none", + "stage": "1" + } + }, + { + "id": 15287, + "properties": { + "age": "1", + "leaves": "small", + "stage": "0" + } + }, + { + "id": 15288, + "properties": { + "age": "1", + "leaves": "small", + "stage": "1" + } + }, + { + "id": 15289, + "properties": { + "age": "1", + "leaves": "large", + "stage": "0" + } + }, + { + "id": 15290, + "properties": { + "age": "1", + "leaves": "large", + "stage": "1" + } + } + ] + }, + "minecraft:bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 168, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 169, + "properties": { + "axis": "y" + } + }, + { + "id": 170, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bamboo_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "bamboo", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10891, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10892, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10893, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10894, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10895, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10896, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10897, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10898, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10899, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10900, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10901, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10902, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10903, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10904, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10905, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10906, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10907, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10908, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10909, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10910, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10911, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10912, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10913, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10914, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14572, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14573, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14574, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14575, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14576, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14577, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14578, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14579, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14580, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14581, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14582, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14583, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14584, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14585, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14586, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14587, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14588, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14589, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14590, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14591, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14592, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14593, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14594, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14595, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14596, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14597, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14598, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14599, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14600, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14601, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14602, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14603, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14604, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14605, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14606, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14607, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14608, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14609, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14610, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14611, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14612, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14613, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14614, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14615, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14616, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14617, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14618, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14619, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14620, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14621, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14622, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14623, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14624, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14625, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14626, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14627, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14628, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14629, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14630, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14631, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14632, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14633, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14634, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14635, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14028, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14029, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14030, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14031, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14032, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14033, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14034, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14035, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14036, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14037, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14038, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14039, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14040, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14041, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14042, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14043, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14044, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14045, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14046, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14047, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14048, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14049, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14050, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14051, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14052, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14053, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14054, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14055, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14056, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14057, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14058, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14059, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:bamboo_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13740, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13741, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13742, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13743, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13744, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13745, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13746, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13747, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13748, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13749, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13750, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13751, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13752, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13753, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13754, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13755, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13756, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13757, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13758, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13759, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13760, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13761, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13762, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13763, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13764, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13765, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13766, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13767, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13768, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13769, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13770, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13771, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6611, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6612, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6613, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6614, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6615, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6616, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6617, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6618, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6619, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6620, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6621, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6622, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6623, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6624, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6625, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6626, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6627, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6628, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6629, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6630, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6631, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6632, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6633, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6634, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6635, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6636, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6637, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6638, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6639, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6640, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6641, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6642, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6643, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6644, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6645, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6646, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6647, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6648, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6649, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6650, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6651, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6652, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6653, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6654, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6655, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6656, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6657, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6658, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6659, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6660, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6661, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6662, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6663, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6664, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6665, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6666, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6667, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6668, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6669, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6670, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6671, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6672, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6673, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6674, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 28 + } + ] + }, + "minecraft:bamboo_mosaic_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13390, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13391, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13392, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13393, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13394, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13395, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_mosaic_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_mosaic" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12452, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12453, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12454, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12455, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12456, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12457, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12458, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12459, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12460, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12461, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12462, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12463, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12464, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12465, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12466, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12467, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12468, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12472, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12473, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12474, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12475, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12476, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12477, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12478, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12479, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12480, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12481, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12482, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12483, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12484, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12485, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12486, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12487, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12488, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12492, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12493, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12494, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12495, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12496, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12497, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12498, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12499, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12500, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12501, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12502, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12503, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12504, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12505, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12506, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12507, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12508, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12512, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12513, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12514, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12515, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12516, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12517, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12518, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12519, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12520, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12521, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12522, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12523, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12524, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12525, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27 + } + ] + }, + "minecraft:bamboo_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6879, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6880, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:bamboo_sapling": { + "definition": { + "type": "minecraft:bamboo_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15278 + } + ] + }, + "minecraft:bamboo_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2664, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2665, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2666, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2667, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2668, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2669, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2670, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2671, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2672, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2673, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2674, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2675, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2676, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2677, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2678, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2679, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2680, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2681, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2682, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2683, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2684, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2685, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2686, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2687, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2688, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2689, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2690, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2691, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2692, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2693, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2694, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2695, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2696, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2697, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2698, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2699, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2700, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2701, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2702, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2703, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2704, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2705, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2706, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2707, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2708, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2709, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2710, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2711, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2712, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2713, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2714, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2715, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2716, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2717, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2718, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2719, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2720, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2721, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2722, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2723, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2724, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2725, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2726, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2727, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5623, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5624, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5625, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5626, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5627, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5628, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5629, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5630, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5631, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5632, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5633, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5634, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5635, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5636, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5637, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5638, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5639, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5640, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5641, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5642, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5643, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5644, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5645, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5646, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5647, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5648, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5649, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5650, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5651, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5652, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5653, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5654, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13384, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13385, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13386, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13387, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13388, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13389, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bamboo_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12372, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12373, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12374, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12375, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12376, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12377, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12378, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12379, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12380, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12381, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12382, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12383, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12384, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12385, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12387, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12388, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12389, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12390, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12391, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12392, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12393, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12394, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12395, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12396, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12397, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12398, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12399, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12400, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12401, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12402, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12403, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12404, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12405, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12407, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12408, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12409, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12410, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12412, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12413, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12414, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12415, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12416, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12417, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12418, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12419, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12420, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12421, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12422, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12423, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12424, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12425, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12427, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12428, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12429, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12430, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12431, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12432, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12433, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12434, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12435, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12436, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12437, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12438, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12439, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12440, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12441, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12442, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12443, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12444, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12445, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12447, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12448, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12449, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12450, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12451, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "bamboo", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7690, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7691, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7692, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7693, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7694, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7695, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7696, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7697, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7698, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7699, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7700, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7701, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7702, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7703, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7704, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7705, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7706, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7707, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7708, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7709, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7710, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7711, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7712, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7713, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7714, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7715, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7716, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7717, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7718, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7719, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7720, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7721, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7722, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7723, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7724, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7725, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7726, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7727, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7728, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7729, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7730, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7731, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7732, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7733, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7734, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7735, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7736, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7737, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7738, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7739, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7740, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7741, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7742, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7743, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7744, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7745, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7746, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7747, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7748, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7749, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7750, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7751, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7752, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7753, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6763, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6764, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6765, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6766, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6767, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6768, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6769, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6770, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:bamboo_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "bamboo" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5899, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5900, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5901, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5902, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5903, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5904, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5905, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5906, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:barrel": { + "definition": { + "type": "minecraft:barrel", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "open": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20742, + "properties": { + "facing": "north", + "open": "true" + } + }, + { + "default": true, + "id": 20743, + "properties": { + "facing": "north", + "open": "false" + } + }, + { + "id": 20744, + "properties": { + "facing": "east", + "open": "true" + } + }, + { + "id": 20745, + "properties": { + "facing": "east", + "open": "false" + } + }, + { + "id": 20746, + "properties": { + "facing": "south", + "open": "true" + } + }, + { + "id": 20747, + "properties": { + "facing": "south", + "open": "false" + } + }, + { + "id": 20748, + "properties": { + "facing": "west", + "open": "true" + } + }, + { + "id": 20749, + "properties": { + "facing": "west", + "open": "false" + } + }, + { + "id": 20750, + "properties": { + "facing": "up", + "open": "true" + } + }, + { + "id": 20751, + "properties": { + "facing": "up", + "open": "false" + } + }, + { + "id": 20752, + "properties": { + "facing": "down", + "open": "true" + } + }, + { + "id": 20753, + "properties": { + "facing": "down", + "open": "false" + } + } + ] + }, + "minecraft:barrier": { + "definition": { + "type": "minecraft:barrier", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12533, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12534, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 7000, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 7001, + "properties": { + "axis": "y" + } + }, + { + "id": 7002, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:beacon": { + "definition": { + "type": "minecraft:beacon", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9980 + } + ] + }, + "minecraft:bedrock": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 85 + } + ] + }, + "minecraft:bee_nest": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 21768, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 21769, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 21770, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 21771, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 21772, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 21773, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 21774, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 21775, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 21776, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 21777, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 21778, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 21779, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 21780, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 21781, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 21782, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 21783, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 21784, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 21785, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 21786, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 21787, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 21788, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 21789, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 21790, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 21791, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beehive": { + "definition": { + "type": "minecraft:beehive", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "honey_level": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 21792, + "properties": { + "facing": "north", + "honey_level": "0" + } + }, + { + "id": 21793, + "properties": { + "facing": "north", + "honey_level": "1" + } + }, + { + "id": 21794, + "properties": { + "facing": "north", + "honey_level": "2" + } + }, + { + "id": 21795, + "properties": { + "facing": "north", + "honey_level": "3" + } + }, + { + "id": 21796, + "properties": { + "facing": "north", + "honey_level": "4" + } + }, + { + "id": 21797, + "properties": { + "facing": "north", + "honey_level": "5" + } + }, + { + "id": 21798, + "properties": { + "facing": "south", + "honey_level": "0" + } + }, + { + "id": 21799, + "properties": { + "facing": "south", + "honey_level": "1" + } + }, + { + "id": 21800, + "properties": { + "facing": "south", + "honey_level": "2" + } + }, + { + "id": 21801, + "properties": { + "facing": "south", + "honey_level": "3" + } + }, + { + "id": 21802, + "properties": { + "facing": "south", + "honey_level": "4" + } + }, + { + "id": 21803, + "properties": { + "facing": "south", + "honey_level": "5" + } + }, + { + "id": 21804, + "properties": { + "facing": "west", + "honey_level": "0" + } + }, + { + "id": 21805, + "properties": { + "facing": "west", + "honey_level": "1" + } + }, + { + "id": 21806, + "properties": { + "facing": "west", + "honey_level": "2" + } + }, + { + "id": 21807, + "properties": { + "facing": "west", + "honey_level": "3" + } + }, + { + "id": 21808, + "properties": { + "facing": "west", + "honey_level": "4" + } + }, + { + "id": 21809, + "properties": { + "facing": "west", + "honey_level": "5" + } + }, + { + "id": 21810, + "properties": { + "facing": "east", + "honey_level": "0" + } + }, + { + "id": 21811, + "properties": { + "facing": "east", + "honey_level": "1" + } + }, + { + "id": 21812, + "properties": { + "facing": "east", + "honey_level": "2" + } + }, + { + "id": 21813, + "properties": { + "facing": "east", + "honey_level": "3" + } + }, + { + "id": 21814, + "properties": { + "facing": "east", + "honey_level": "4" + } + }, + { + "id": 21815, + "properties": { + "facing": "east", + "honey_level": "5" + } + } + ] + }, + "minecraft:beetroots": { + "definition": { + "type": "minecraft:beetroot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 14811, + "properties": { + "age": "0" + } + }, + { + "id": 14812, + "properties": { + "age": "1" + } + }, + { + "id": 14813, + "properties": { + "age": "2" + } + }, + { + "id": 14814, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:bell": { + "definition": { + "type": "minecraft:bell", + "properties": {} + }, + "properties": { + "attachment": [ + "floor", + "ceiling", + "single_wall", + "double_wall" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20805, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 20806, + "properties": { + "attachment": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20807, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20808, + "properties": { + "attachment": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20809, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20810, + "properties": { + "attachment": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20811, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20812, + "properties": { + "attachment": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20813, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20814, + "properties": { + "attachment": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20815, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20816, + "properties": { + "attachment": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20817, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20818, + "properties": { + "attachment": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20819, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20820, + "properties": { + "attachment": "ceiling", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20821, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20822, + "properties": { + "attachment": "single_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20823, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20824, + "properties": { + "attachment": "single_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20825, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20826, + "properties": { + "attachment": "single_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20827, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20828, + "properties": { + "attachment": "single_wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 20829, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "true" + } + }, + { + "id": 20830, + "properties": { + "attachment": "double_wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 20831, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 20832, + "properties": { + "attachment": "double_wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 20833, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 20834, + "properties": { + "attachment": "double_wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 20835, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 20836, + "properties": { + "attachment": "double_wall", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:big_dripleaf": { + "definition": { + "type": "minecraft:big_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "tilt": [ + "none", + "unstable", + "partial", + "full" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30356, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30357, + "properties": { + "facing": "north", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 30358, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 30359, + "properties": { + "facing": "north", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 30360, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 30361, + "properties": { + "facing": "north", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 30362, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 30363, + "properties": { + "facing": "north", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 30364, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 30365, + "properties": { + "facing": "south", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 30366, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 30367, + "properties": { + "facing": "south", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 30368, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 30369, + "properties": { + "facing": "south", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 30370, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 30371, + "properties": { + "facing": "south", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 30372, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 30373, + "properties": { + "facing": "west", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 30374, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 30375, + "properties": { + "facing": "west", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 30376, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 30377, + "properties": { + "facing": "west", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 30378, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 30379, + "properties": { + "facing": "west", + "tilt": "full", + "waterlogged": "false" + } + }, + { + "id": 30380, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "true" + } + }, + { + "id": 30381, + "properties": { + "facing": "east", + "tilt": "none", + "waterlogged": "false" + } + }, + { + "id": 30382, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "true" + } + }, + { + "id": 30383, + "properties": { + "facing": "east", + "tilt": "unstable", + "waterlogged": "false" + } + }, + { + "id": 30384, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "true" + } + }, + { + "id": 30385, + "properties": { + "facing": "east", + "tilt": "partial", + "waterlogged": "false" + } + }, + { + "id": 30386, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "true" + } + }, + { + "id": 30387, + "properties": { + "facing": "east", + "tilt": "full", + "waterlogged": "false" + } + } + ] + }, + "minecraft:big_dripleaf_stem": { + "definition": { + "type": "minecraft:big_dripleaf_stem", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30388, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30389, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 30390, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 30391, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 30392, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 30393, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 30394, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 30395, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "birch", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10723, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10724, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10725, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10726, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10727, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10728, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10729, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10730, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10731, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10732, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10733, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10734, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10735, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10736, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10737, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10738, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10739, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10740, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10741, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10742, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10743, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10744, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10745, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10746, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:birch_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14124, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14125, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14126, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14127, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14128, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14129, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14130, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14131, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14132, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14133, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14134, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14135, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14136, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14137, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14138, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14139, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14140, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14141, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14142, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14143, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14144, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14145, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14146, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14147, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14148, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14149, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14150, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14151, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14152, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14153, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14154, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14155, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14156, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14157, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14158, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14159, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14160, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14161, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14162, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14163, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14164, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14165, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14166, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14167, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14168, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14169, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14170, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14171, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14172, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14173, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14174, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14175, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14176, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14177, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14178, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14179, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14180, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14181, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14182, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14183, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14184, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14185, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14186, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14187, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13804, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13805, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13806, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13807, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13808, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13809, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13810, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13811, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13812, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13813, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13814, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13815, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13816, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13817, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13818, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13819, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13820, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13821, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13822, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13823, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13824, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13825, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13826, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13827, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13828, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13829, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13830, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13831, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13832, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13833, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13834, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13835, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:birch_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13516, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13517, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13518, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13519, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13520, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13521, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13522, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13523, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13524, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13525, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13526, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13527, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13528, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13529, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13530, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13531, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13532, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13533, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13534, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13535, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13536, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13537, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13538, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13539, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13540, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13541, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13542, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13543, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13544, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13545, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13546, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13547, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:birch_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6035, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6036, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6037, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6038, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6039, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6040, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6041, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6042, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6043, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6044, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6045, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6046, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6047, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6048, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6049, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6050, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6051, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6052, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6053, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6054, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6055, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6056, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6057, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6058, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6059, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6060, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6061, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6062, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6063, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6064, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6065, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6066, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6067, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6068, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6069, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6070, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6071, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6072, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6073, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6074, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6075, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6076, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6077, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6078, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6079, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6080, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6081, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6082, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6083, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6084, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6085, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6086, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6087, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6088, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6089, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6090, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6091, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6092, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6093, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6094, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6095, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6096, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6097, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6098, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 308, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 309, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 310, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 311, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 312, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 313, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 314, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 315, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 316, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 317, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 318, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 319, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 320, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 321, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 322, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 323, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 324, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 325, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 326, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 327, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 328, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 329, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 330, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 331, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 332, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 333, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 334, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 335, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 142, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 143, + "properties": { + "axis": "y" + } + }, + { + "id": 144, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:birch_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 17 + } + ] + }, + "minecraft:birch_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6865, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6866, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:birch_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "birch" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 33, + "properties": { + "stage": "0" + } + }, + { + "id": 34, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:birch_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2728, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2729, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2730, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2731, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2732, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2733, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2734, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2735, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2736, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2737, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2738, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2739, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2740, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2741, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2742, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2743, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2744, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2745, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2746, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2747, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2748, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2749, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2750, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2751, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2752, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2753, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2754, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2755, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2756, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2757, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2758, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2759, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2760, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2761, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2762, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2763, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2764, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2765, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2766, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2767, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2768, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2769, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2770, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2771, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2772, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2773, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2774, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2775, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2776, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2777, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2778, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2779, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2780, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2781, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2782, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2783, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2784, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2785, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2786, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2787, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2788, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2789, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2790, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2791, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5399, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5400, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5401, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5402, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5403, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5404, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5405, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5406, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5407, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5408, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5409, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5410, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5411, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5412, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5413, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5414, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5415, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5416, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5417, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5418, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5419, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5420, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5421, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5422, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5423, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5424, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5425, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5426, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5427, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5428, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5429, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5430, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13342, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13343, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13344, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13345, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13346, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13347, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:birch_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9808, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9809, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9810, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9811, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9812, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9813, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9814, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9815, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9816, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9817, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9818, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9819, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9820, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9821, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9822, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9823, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9824, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9825, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9826, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9827, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9828, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9829, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9830, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9831, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9832, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9833, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9834, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9835, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9836, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9837, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9838, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9839, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9840, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9841, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9842, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9843, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9844, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9845, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9846, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9847, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9848, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9849, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9850, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9851, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9852, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9853, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9854, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9855, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9856, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9857, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9858, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9859, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9860, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9861, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9862, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9863, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9864, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9865, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9866, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9867, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9868, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9869, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9870, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9871, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9872, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9873, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9874, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9875, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9876, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9877, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9878, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9879, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9880, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9881, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9882, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9883, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9884, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9885, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9886, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9887, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "birch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7242, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7243, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7244, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7245, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7246, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7247, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7248, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7249, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7250, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7251, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7252, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7253, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7254, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7255, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7256, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7257, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7258, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7259, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7260, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7261, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7262, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7263, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7264, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7265, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7266, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7267, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7268, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7269, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7270, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7271, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7272, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7273, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7274, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7275, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7276, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7277, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7278, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7279, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7280, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7281, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7282, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7283, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7284, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7285, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7286, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7287, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7288, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7289, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7290, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7291, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7292, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7293, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7294, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7295, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7296, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7297, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7298, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7299, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7300, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7301, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7302, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7303, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7304, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7305, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6691, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6692, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6693, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6694, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6695, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6696, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6697, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6698, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "birch" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5843, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5844, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5845, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5846, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5847, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5848, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5849, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5850, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 207, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 208, + "properties": { + "axis": "y" + } + }, + { + "id": 209, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:black_banner": { + "definition": { + "type": "minecraft:banner", + "color": "black", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13167, + "properties": { + "rotation": "0" + } + }, + { + "id": 13168, + "properties": { + "rotation": "1" + } + }, + { + "id": 13169, + "properties": { + "rotation": "2" + } + }, + { + "id": 13170, + "properties": { + "rotation": "3" + } + }, + { + "id": 13171, + "properties": { + "rotation": "4" + } + }, + { + "id": 13172, + "properties": { + "rotation": "5" + } + }, + { + "id": 13173, + "properties": { + "rotation": "6" + } + }, + { + "id": 13174, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13175, + "properties": { + "rotation": "8" + } + }, + { + "id": 13176, + "properties": { + "rotation": "9" + } + }, + { + "id": 13177, + "properties": { + "rotation": "10" + } + }, + { + "id": 13178, + "properties": { + "rotation": "11" + } + }, + { + "id": 13179, + "properties": { + "rotation": "12" + } + }, + { + "id": 13180, + "properties": { + "rotation": "13" + } + }, + { + "id": 13181, + "properties": { + "rotation": "14" + } + }, + { + "id": 13182, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:black_bed": { + "definition": { + "type": "minecraft:bed", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2171, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2172, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2173, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2174, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2175, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2176, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2177, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2178, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2179, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2180, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2181, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2182, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2183, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2184, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2185, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2186, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:black_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23352, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23353, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23354, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23355, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23356, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23357, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23358, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23359, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23360, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23361, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23362, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23363, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23364, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23365, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23366, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23367, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:black_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:black_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23400, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23401, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:black_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12911 + } + ] + }, + "minecraft:black_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15045 + } + ] + }, + "minecraft:black_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:black_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15061 + } + ] + }, + "minecraft:black_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15026, + "properties": { + "facing": "north" + } + }, + { + "id": 15027, + "properties": { + "facing": "south" + } + }, + { + "id": 15028, + "properties": { + "facing": "west" + } + }, + { + "id": 15029, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14960, + "properties": { + "facing": "north" + } + }, + { + "id": 14961, + "properties": { + "facing": "east" + } + }, + { + "id": 14962, + "properties": { + "facing": "south" + } + }, + { + "id": 14963, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14964, + "properties": { + "facing": "up" + } + }, + { + "id": 14965, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:black_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "black", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7113 + } + ] + }, + "minecraft:black_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "black", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11940, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11941, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11942, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11943, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11944, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11945, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11946, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11947, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11948, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11949, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11950, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11951, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11952, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11953, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11954, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11955, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11956, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11957, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11958, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11959, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11960, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11961, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11962, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11963, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11964, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11965, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11966, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11967, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11968, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11969, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11970, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11971, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:black_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11459 + } + ] + }, + "minecraft:black_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "black", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13243, + "properties": { + "facing": "north" + } + }, + { + "id": 13244, + "properties": { + "facing": "south" + } + }, + { + "id": 13245, + "properties": { + "facing": "west" + } + }, + { + "id": 13246, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:black_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2308 + } + ] + }, + "minecraft:blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21831 + } + ] + }, + "minecraft:blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22236, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22237, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22238, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22239, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22240, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22241, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21832, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21833, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21834, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21835, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21836, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21837, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21838, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21839, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21840, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21841, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21844, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21845, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21846, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21847, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21848, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21851, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21852, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21853, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21854, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21855, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21856, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21857, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21858, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21859, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21860, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21861, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21864, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21865, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21866, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21867, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21868, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21871, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21872, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21873, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21874, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21875, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21876, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21877, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21878, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21879, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21880, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21881, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21884, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21885, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21886, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21887, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21888, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21891, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21892, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21893, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21894, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21895, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21896, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21897, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21898, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21899, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21900, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21901, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21905, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21906, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21907, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21908, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21911, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 21912, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21913, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21914, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 21915, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21916, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21917, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21918, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21924, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21925, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21926, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21927, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21928, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21929, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21930, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21936, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21937, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21938, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21939, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21940, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21941, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21942, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21948, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21949, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21950, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21951, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21952, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21953, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21954, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21960, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21961, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21962, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21963, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21964, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21965, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21966, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21972, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21973, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21974, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21975, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21976, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21977, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21978, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21984, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21985, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21986, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21987, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21988, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21989, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21990, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 21994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 21995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 21996, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 21997, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 21998, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 21999, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22000, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22001, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22002, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22008, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22009, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22010, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22011, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22012, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22013, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22014, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22020, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22021, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22022, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22023, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22024, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22025, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22026, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22032, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22033, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22034, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22035, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22036, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22037, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22038, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22044, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22045, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22046, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22047, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22048, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22049, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22050, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22056, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22057, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22058, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22059, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22060, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22061, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22062, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22068, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22069, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22070, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22071, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22072, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22073, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22074, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22080, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22081, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22082, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22083, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22084, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22085, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22086, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22092, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22093, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22094, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22095, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22096, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22097, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22098, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22104, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22105, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22106, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22107, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22108, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22109, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22110, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22116, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22117, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22118, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22119, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22120, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22121, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22122, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22128, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22129, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22130, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22131, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22132, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22133, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22134, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22140, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22141, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22142, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22143, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22144, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22145, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22146, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22152, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22153, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22154, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22155, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22156, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22157, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22158, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22164, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22165, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22166, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22167, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22168, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22169, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22170, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22176, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22177, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22178, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22179, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22180, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22181, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22182, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22188, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22189, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22190, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22191, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22192, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22193, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22194, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22200, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22201, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22202, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22203, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22204, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22205, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22206, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22212, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22213, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22214, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22215, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22216, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22217, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22218, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22224, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22225, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22226, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22227, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22228, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22229, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22230, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:blast_furnace": { + "definition": { + "type": "minecraft:blast_furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20762, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 20763, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 20764, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 20765, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 20766, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 20767, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 20768, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 20769, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13103, + "properties": { + "rotation": "0" + } + }, + { + "id": 13104, + "properties": { + "rotation": "1" + } + }, + { + "id": 13105, + "properties": { + "rotation": "2" + } + }, + { + "id": 13106, + "properties": { + "rotation": "3" + } + }, + { + "id": 13107, + "properties": { + "rotation": "4" + } + }, + { + "id": 13108, + "properties": { + "rotation": "5" + } + }, + { + "id": 13109, + "properties": { + "rotation": "6" + } + }, + { + "id": 13110, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13111, + "properties": { + "rotation": "8" + } + }, + { + "id": 13112, + "properties": { + "rotation": "9" + } + }, + { + "id": 13113, + "properties": { + "rotation": "10" + } + }, + { + "id": 13114, + "properties": { + "rotation": "11" + } + }, + { + "id": 13115, + "properties": { + "rotation": "12" + } + }, + { + "id": 13116, + "properties": { + "rotation": "13" + } + }, + { + "id": 13117, + "properties": { + "rotation": "14" + } + }, + { + "id": 13118, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2107, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2108, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2109, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2110, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2111, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2112, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2113, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2114, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2115, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2116, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2117, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2118, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2119, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2120, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2121, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2122, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23288, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23289, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23290, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23291, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23292, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23293, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23294, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23295, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23296, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23297, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23298, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23299, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23300, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23301, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23302, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23303, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23392, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23393, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12907 + } + ] + }, + "minecraft:blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15041 + } + ] + }, + "minecraft:blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15057 + } + ] + }, + "minecraft:blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15010, + "properties": { + "facing": "north" + } + }, + { + "id": 15011, + "properties": { + "facing": "south" + } + }, + { + "id": 15012, + "properties": { + "facing": "west" + } + }, + { + "id": 15013, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_ice": { + "definition": { + "type": "minecraft:half_transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15275 + } + ] + }, + "minecraft:blue_orchid": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2325 + } + ] + }, + "minecraft:blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14936, + "properties": { + "facing": "north" + } + }, + { + "id": 14937, + "properties": { + "facing": "east" + } + }, + { + "id": 14938, + "properties": { + "facing": "south" + } + }, + { + "id": 14939, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14940, + "properties": { + "facing": "up" + } + }, + { + "id": 14941, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7109 + } + ] + }, + "minecraft:blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11812, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11813, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11814, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11815, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11816, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11817, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11818, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11819, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11820, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11821, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11822, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11823, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11824, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11825, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11826, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11827, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11828, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11829, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11830, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11831, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11832, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11833, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11834, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11835, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11836, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11837, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11838, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11839, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11840, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11841, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11842, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11843, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11455 + } + ] + }, + "minecraft:blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13227, + "properties": { + "facing": "north" + } + }, + { + "id": 13228, + "properties": { + "facing": "south" + } + }, + { + "id": 13229, + "properties": { + "facing": "west" + } + }, + { + "id": 13230, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2304 + } + ] + }, + "minecraft:bone_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 14848, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 14849, + "properties": { + "axis": "y" + } + }, + { + "id": 14850, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:bookshelf": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2343 + } + ] + }, + "minecraft:brain_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_brain_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15159, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15160, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_brain_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15143 + } + ] + }, + "minecraft:brain_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_brain_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15179, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15180, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:brain_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_brain_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15235, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15236, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15237, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15238, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15239, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15240, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15241, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15242, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brewing_stand": { + "definition": { + "type": "minecraft:brewing_stand", + "properties": {} + }, + "properties": { + "has_bottle_0": [ + "true", + "false" + ], + "has_bottle_1": [ + "true", + "false" + ], + "has_bottle_2": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9452, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 9453, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 9454, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "id": 9455, + "properties": { + "has_bottle_0": "true", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + }, + { + "id": 9456, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "true" + } + }, + { + "id": 9457, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "true", + "has_bottle_2": "false" + } + }, + { + "id": 9458, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "true" + } + }, + { + "default": true, + "id": 9459, + "properties": { + "has_bottle_0": "false", + "has_bottle_1": "false", + "has_bottle_2": "false" + } + } + ] + }, + "minecraft:brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13432, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13433, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13434, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13435, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13436, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13437, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8678, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8679, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8680, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8681, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8682, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8683, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8684, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8685, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8686, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8687, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8688, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8689, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8690, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8691, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8692, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8693, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8694, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8695, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8696, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8697, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8698, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8699, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8700, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8701, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8702, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8703, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8704, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8705, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8706, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8707, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8708, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8709, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8710, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8711, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8712, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8713, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8714, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8715, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8716, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8717, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8718, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8719, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8720, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8721, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8722, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8723, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8724, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8725, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8726, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8727, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8728, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8729, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8730, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8731, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8732, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8733, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8734, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8735, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8736, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8737, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8738, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8739, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8740, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8741, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8742, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8743, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8744, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8745, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8746, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8747, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8748, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8749, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8750, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8751, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8752, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8753, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8754, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8755, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8756, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8757, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16494, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16495, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16496, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16497, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16498, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16499, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16500, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16501, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16502, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16503, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16504, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16505, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16506, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16507, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16508, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16509, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16510, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16511, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16512, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16513, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16514, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16515, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16516, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16517, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16518, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16519, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16520, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16521, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16522, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16523, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16524, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16525, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16526, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16527, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16528, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16529, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16530, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16531, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16532, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16533, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16534, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16535, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16536, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16537, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16538, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16539, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16540, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16541, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16542, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16543, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16544, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16545, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16546, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16547, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16548, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16549, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16550, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16551, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16552, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16553, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16554, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16555, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16556, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16557, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16558, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16559, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16560, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16561, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16562, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16563, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16564, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16565, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16566, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16567, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16568, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16569, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16570, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16571, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16572, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16573, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16574, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16575, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16576, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16577, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16578, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16579, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16580, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16581, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16582, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16583, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16584, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16585, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16586, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16587, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16588, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16589, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16590, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16591, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16592, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16593, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16594, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16595, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16596, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16597, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16598, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16599, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16600, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16601, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16602, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16603, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16604, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16605, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16606, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16607, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16608, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16609, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16610, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16611, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16612, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16613, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16614, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16615, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16616, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16617, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16618, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16619, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16620, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16621, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16622, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16623, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16624, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16625, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16626, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16627, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16628, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16629, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16630, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16631, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16632, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16633, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16634, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16635, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16636, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16637, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16638, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16639, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16640, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16641, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16642, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16643, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16644, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16645, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16646, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16647, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16648, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16649, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16650, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16651, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16652, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16653, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16654, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16655, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16656, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16657, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16658, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16659, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16660, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16661, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16662, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16663, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16664, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16665, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16666, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16667, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16668, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16669, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16670, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16671, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16672, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16673, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16674, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16675, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16676, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16677, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16678, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16679, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16680, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16681, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16682, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16683, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16684, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16685, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16686, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16687, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16688, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16689, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16690, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16691, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16692, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16693, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16694, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16695, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16696, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16697, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16698, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16699, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16700, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16701, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16702, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16703, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16704, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16705, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16706, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16707, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16708, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16709, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16710, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16711, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16712, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16713, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16714, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16715, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16716, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16717, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16718, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16719, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16720, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16721, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16722, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16723, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16724, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16725, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16726, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16727, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16728, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16729, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16730, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16731, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16732, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16733, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16734, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16735, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16736, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16737, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16738, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16739, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16740, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16741, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16742, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16743, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16744, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16745, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16746, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16747, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16748, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16749, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16750, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16751, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16752, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16753, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16754, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16755, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16756, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16757, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16758, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16759, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16760, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16761, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16762, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16763, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16764, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16765, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16766, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16767, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16768, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16769, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16770, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16771, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16772, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16773, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16774, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16775, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16776, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16777, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16778, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16779, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16780, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16781, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16782, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16783, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16784, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16785, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16786, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16787, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16788, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16789, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16790, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16791, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16792, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16793, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16794, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16795, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16796, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16797, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16798, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16799, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16800, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16801, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16802, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16803, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16804, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16805, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16806, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16807, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16808, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16809, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16810, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16811, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16812, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16813, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16814, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16815, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16816, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16817, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2340 + } + ] + }, + "minecraft:brown_banner": { + "definition": { + "type": "minecraft:banner", + "color": "brown", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13119, + "properties": { + "rotation": "0" + } + }, + { + "id": 13120, + "properties": { + "rotation": "1" + } + }, + { + "id": 13121, + "properties": { + "rotation": "2" + } + }, + { + "id": 13122, + "properties": { + "rotation": "3" + } + }, + { + "id": 13123, + "properties": { + "rotation": "4" + } + }, + { + "id": 13124, + "properties": { + "rotation": "5" + } + }, + { + "id": 13125, + "properties": { + "rotation": "6" + } + }, + { + "id": 13126, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13127, + "properties": { + "rotation": "8" + } + }, + { + "id": 13128, + "properties": { + "rotation": "9" + } + }, + { + "id": 13129, + "properties": { + "rotation": "10" + } + }, + { + "id": 13130, + "properties": { + "rotation": "11" + } + }, + { + "id": 13131, + "properties": { + "rotation": "12" + } + }, + { + "id": 13132, + "properties": { + "rotation": "13" + } + }, + { + "id": 13133, + "properties": { + "rotation": "14" + } + }, + { + "id": 13134, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:brown_bed": { + "definition": { + "type": "minecraft:bed", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2123, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2124, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2125, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2126, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2127, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2128, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2129, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2130, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2131, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2132, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2133, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2134, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2135, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2136, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2137, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2138, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:brown_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23304, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23305, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23306, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23307, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23308, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23309, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23310, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23311, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23312, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23313, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23314, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23315, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23316, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23317, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23318, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23319, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:brown_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:brown_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23394, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23395, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:brown_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12908 + } + ] + }, + "minecraft:brown_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15042 + } + ] + }, + "minecraft:brown_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:brown_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15058 + } + ] + }, + "minecraft:brown_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15014, + "properties": { + "facing": "north" + } + }, + { + "id": 15015, + "properties": { + "facing": "south" + } + }, + { + "id": 15016, + "properties": { + "facing": "west" + } + }, + { + "id": 15017, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2336 + } + ] + }, + "minecraft:brown_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7766, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7767, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7768, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7769, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7770, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7771, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7772, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7773, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7774, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7775, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7776, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7777, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7778, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7779, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7780, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7781, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7782, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7783, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7784, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7785, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7786, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7787, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7788, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7789, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7790, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7791, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7792, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7793, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7794, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7795, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7796, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7797, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7798, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7799, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7800, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7801, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7802, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7803, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7804, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7805, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7806, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7807, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7808, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7809, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7810, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7811, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7812, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7813, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7814, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7815, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7816, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7817, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7818, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7819, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7820, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7821, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7822, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7823, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7824, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7825, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7826, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7827, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7828, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7829, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14942, + "properties": { + "facing": "north" + } + }, + { + "id": 14943, + "properties": { + "facing": "east" + } + }, + { + "id": 14944, + "properties": { + "facing": "south" + } + }, + { + "id": 14945, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14946, + "properties": { + "facing": "up" + } + }, + { + "id": 14947, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:brown_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "brown", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7110 + } + ] + }, + "minecraft:brown_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "brown", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11844, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11845, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11846, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11847, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11848, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11849, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11850, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11851, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11852, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11853, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11854, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11855, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11856, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11857, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11858, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11859, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11860, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11861, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11862, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11863, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11864, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11865, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11866, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11867, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11868, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11869, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11870, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11871, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11872, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11873, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11874, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11875, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:brown_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11456 + } + ] + }, + "minecraft:brown_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "brown", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13231, + "properties": { + "facing": "north" + } + }, + { + "id": 13232, + "properties": { + "facing": "south" + } + }, + { + "id": 13233, + "properties": { + "facing": "west" + } + }, + { + "id": 13234, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:brown_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2305 + } + ] + }, + "minecraft:bubble_column": { + "definition": { + "type": "minecraft:bubble_column", + "properties": {} + }, + "properties": { + "drag": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15294, + "properties": { + "drag": "true" + } + }, + { + "id": 15295, + "properties": { + "drag": "false" + } + } + ] + }, + "minecraft:bubble_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_bubble_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15161, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15162, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_bubble_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15144 + } + ] + }, + "minecraft:bubble_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_bubble_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15181, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15182, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_bubble_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15243, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15244, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15245, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15246, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15247, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15248, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15249, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15250, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:budding_amethyst": { + "definition": { + "type": "minecraft:budding_amethyst", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23403 + } + ] + }, + "minecraft:bush": { + "definition": { + "type": "minecraft:bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2251 + } + ] + }, + "minecraft:cactus": { + "definition": { + "type": "minecraft:cactus", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 6929, + "properties": { + "age": "0" + } + }, + { + "id": 6930, + "properties": { + "age": "1" + } + }, + { + "id": 6931, + "properties": { + "age": "2" + } + }, + { + "id": 6932, + "properties": { + "age": "3" + } + }, + { + "id": 6933, + "properties": { + "age": "4" + } + }, + { + "id": 6934, + "properties": { + "age": "5" + } + }, + { + "id": 6935, + "properties": { + "age": "6" + } + }, + { + "id": 6936, + "properties": { + "age": "7" + } + }, + { + "id": 6937, + "properties": { + "age": "8" + } + }, + { + "id": 6938, + "properties": { + "age": "9" + } + }, + { + "id": 6939, + "properties": { + "age": "10" + } + }, + { + "id": 6940, + "properties": { + "age": "11" + } + }, + { + "id": 6941, + "properties": { + "age": "12" + } + }, + { + "id": 6942, + "properties": { + "age": "13" + } + }, + { + "id": 6943, + "properties": { + "age": "14" + } + }, + { + "id": 6944, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:cactus_flower": { + "definition": { + "type": "minecraft:cactus_flower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6945 + } + ] + }, + "minecraft:cake": { + "definition": { + "type": "minecraft:cake", + "properties": {} + }, + "properties": { + "bites": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6" + ] + }, + "states": [ + { + "default": true, + "id": 7027, + "properties": { + "bites": "0" + } + }, + { + "id": 7028, + "properties": { + "bites": "1" + } + }, + { + "id": 7029, + "properties": { + "bites": "2" + } + }, + { + "id": 7030, + "properties": { + "bites": "3" + } + }, + { + "id": 7031, + "properties": { + "bites": "4" + } + }, + { + "id": 7032, + "properties": { + "bites": "5" + } + }, + { + "id": 7033, + "properties": { + "bites": "6" + } + } + ] + }, + "minecraft:calcite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27160 + } + ] + }, + "minecraft:calibrated_sculk_sensor": { + "definition": { + "type": "minecraft:calibrated_sculk_sensor", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27259, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27260, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27261, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27262, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27263, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27264, + "properties": { + "facing": "north", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27265, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27266, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27267, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27268, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27269, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27270, + "properties": { + "facing": "north", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27271, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27272, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27273, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27274, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27275, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27276, + "properties": { + "facing": "north", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27277, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27278, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27279, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27280, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27281, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27282, + "properties": { + "facing": "north", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27283, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27284, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27285, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27286, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27287, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27288, + "properties": { + "facing": "north", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27289, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27290, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27291, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27292, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27293, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27294, + "properties": { + "facing": "north", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27295, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27296, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27297, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27298, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27299, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27300, + "properties": { + "facing": "north", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27301, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27302, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27303, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27304, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27305, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27306, + "properties": { + "facing": "north", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27307, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27308, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27309, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27310, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27311, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27312, + "properties": { + "facing": "north", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27313, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27314, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27315, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27316, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27317, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27318, + "properties": { + "facing": "north", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27319, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27320, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27321, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27322, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27323, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27324, + "properties": { + "facing": "north", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27325, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27326, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27327, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27328, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27329, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27330, + "properties": { + "facing": "north", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27331, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27332, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27333, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27334, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27335, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27336, + "properties": { + "facing": "north", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27337, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27338, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27339, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27340, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27341, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27342, + "properties": { + "facing": "north", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27343, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27344, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27345, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27346, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27347, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27348, + "properties": { + "facing": "north", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27349, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27350, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27351, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27352, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27353, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27354, + "properties": { + "facing": "north", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27355, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27356, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27357, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27358, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27359, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27360, + "properties": { + "facing": "south", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27361, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27362, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27363, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27364, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27365, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27366, + "properties": { + "facing": "south", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27367, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27368, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27369, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27370, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27371, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27372, + "properties": { + "facing": "south", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27373, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27374, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27375, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27376, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27377, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27378, + "properties": { + "facing": "south", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27379, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27380, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27381, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27382, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27383, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27384, + "properties": { + "facing": "south", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27385, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27386, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27387, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27388, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27389, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27390, + "properties": { + "facing": "south", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27391, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27392, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27393, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27394, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27395, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27396, + "properties": { + "facing": "south", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27397, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27398, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27399, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27400, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27401, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27402, + "properties": { + "facing": "south", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27403, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27404, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27405, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27406, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27407, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27408, + "properties": { + "facing": "south", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27409, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27410, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27411, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27412, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27413, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27414, + "properties": { + "facing": "south", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27415, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27416, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27417, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27418, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27419, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27420, + "properties": { + "facing": "south", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27421, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27422, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27423, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27424, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27425, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27426, + "properties": { + "facing": "south", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27427, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27428, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27429, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27430, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27431, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27432, + "properties": { + "facing": "south", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27433, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27434, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27435, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27436, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27437, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27438, + "properties": { + "facing": "south", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27439, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27440, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27441, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27442, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27443, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27444, + "properties": { + "facing": "south", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27445, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27446, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27447, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27448, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27449, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27450, + "properties": { + "facing": "south", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27451, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27452, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27453, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27454, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27455, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27456, + "properties": { + "facing": "west", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27457, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27458, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27459, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27460, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27461, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27462, + "properties": { + "facing": "west", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27463, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27464, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27465, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27466, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27467, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27468, + "properties": { + "facing": "west", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27469, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27470, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27471, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27472, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27473, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27474, + "properties": { + "facing": "west", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27475, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27476, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27477, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27478, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27479, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27480, + "properties": { + "facing": "west", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27481, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27482, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27483, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27484, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27485, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27486, + "properties": { + "facing": "west", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27487, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27488, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27489, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27490, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27491, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27492, + "properties": { + "facing": "west", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27493, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27494, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27495, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27496, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27497, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27498, + "properties": { + "facing": "west", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27499, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27500, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27501, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27502, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27503, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27504, + "properties": { + "facing": "west", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27505, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27506, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27507, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27508, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27509, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27510, + "properties": { + "facing": "west", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27511, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27512, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27513, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27514, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27515, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27516, + "properties": { + "facing": "west", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27517, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27518, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27519, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27520, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27521, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27522, + "properties": { + "facing": "west", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27523, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27524, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27525, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27526, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27527, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27528, + "properties": { + "facing": "west", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27529, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27530, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27531, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27532, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27533, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27534, + "properties": { + "facing": "west", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27535, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27536, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27537, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27538, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27539, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27540, + "properties": { + "facing": "west", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27541, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27542, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27543, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27544, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27545, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27546, + "properties": { + "facing": "west", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27547, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27548, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27549, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27550, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27551, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27552, + "properties": { + "facing": "east", + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27553, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27554, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27555, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27556, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27557, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27558, + "properties": { + "facing": "east", + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27559, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27560, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27561, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27562, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27563, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27564, + "properties": { + "facing": "east", + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27565, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27566, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27567, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27568, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27569, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27570, + "properties": { + "facing": "east", + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27571, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27572, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27573, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27574, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27575, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27576, + "properties": { + "facing": "east", + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27577, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27578, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27579, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27580, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27581, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27582, + "properties": { + "facing": "east", + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27583, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27584, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27585, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27586, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27587, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27588, + "properties": { + "facing": "east", + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27589, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27590, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27591, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27592, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27593, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27594, + "properties": { + "facing": "east", + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27595, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27596, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27597, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27598, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27599, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27600, + "properties": { + "facing": "east", + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27601, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27602, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27603, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27604, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27605, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27606, + "properties": { + "facing": "east", + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27607, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27608, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27609, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27610, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27611, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27612, + "properties": { + "facing": "east", + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27613, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27614, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27615, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27616, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27617, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27618, + "properties": { + "facing": "east", + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27619, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27620, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27621, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27622, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27623, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27624, + "properties": { + "facing": "east", + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27625, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27626, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27627, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27628, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27629, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27630, + "properties": { + "facing": "east", + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27631, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27632, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27633, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27634, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27635, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27636, + "properties": { + "facing": "east", + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27637, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27638, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27639, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27640, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27641, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27642, + "properties": { + "facing": "east", + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 1, + "properties": {}, + "spawn_particles": true + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20877, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20878, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20879, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20880, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20881, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20882, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20883, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20884, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20885, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20886, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20887, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20888, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20889, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20890, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20891, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20892, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20893, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20894, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20895, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20896, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20897, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20898, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20899, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20900, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20901, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20902, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20903, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20904, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20905, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20906, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20907, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20908, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23096, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23097, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23098, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23099, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23100, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23101, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23102, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23103, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23104, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23105, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23106, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23107, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23108, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23109, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23110, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23111, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23368, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23369, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:carrots": { + "definition": { + "type": "minecraft:carrot", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 10659, + "properties": { + "age": "0" + } + }, + { + "id": 10660, + "properties": { + "age": "1" + } + }, + { + "id": 10661, + "properties": { + "age": "2" + } + }, + { + "id": 10662, + "properties": { + "age": "3" + } + }, + { + "id": 10663, + "properties": { + "age": "4" + } + }, + { + "id": 10664, + "properties": { + "age": "5" + } + }, + { + "id": 10665, + "properties": { + "age": "6" + } + }, + { + "id": 10666, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:cartography_table": { + "definition": { + "type": "minecraft:cartography_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20770 + } + ] + }, + "minecraft:carved_pumpkin": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7019, + "properties": { + "facing": "north" + } + }, + { + "id": 7020, + "properties": { + "facing": "south" + } + }, + { + "id": 7021, + "properties": { + "facing": "west" + } + }, + { + "id": 7022, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cauldron": { + "definition": { + "type": "minecraft:cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9460 + } + ] + }, + "minecraft:cave_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15293 + } + ] + }, + "minecraft:cave_vines": { + "definition": { + "type": "minecraft:cave_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ], + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30249, + "properties": { + "age": "0", + "berries": "true" + } + }, + { + "default": true, + "id": 30250, + "properties": { + "age": "0", + "berries": "false" + } + }, + { + "id": 30251, + "properties": { + "age": "1", + "berries": "true" + } + }, + { + "id": 30252, + "properties": { + "age": "1", + "berries": "false" + } + }, + { + "id": 30253, + "properties": { + "age": "2", + "berries": "true" + } + }, + { + "id": 30254, + "properties": { + "age": "2", + "berries": "false" + } + }, + { + "id": 30255, + "properties": { + "age": "3", + "berries": "true" + } + }, + { + "id": 30256, + "properties": { + "age": "3", + "berries": "false" + } + }, + { + "id": 30257, + "properties": { + "age": "4", + "berries": "true" + } + }, + { + "id": 30258, + "properties": { + "age": "4", + "berries": "false" + } + }, + { + "id": 30259, + "properties": { + "age": "5", + "berries": "true" + } + }, + { + "id": 30260, + "properties": { + "age": "5", + "berries": "false" + } + }, + { + "id": 30261, + "properties": { + "age": "6", + "berries": "true" + } + }, + { + "id": 30262, + "properties": { + "age": "6", + "berries": "false" + } + }, + { + "id": 30263, + "properties": { + "age": "7", + "berries": "true" + } + }, + { + "id": 30264, + "properties": { + "age": "7", + "berries": "false" + } + }, + { + "id": 30265, + "properties": { + "age": "8", + "berries": "true" + } + }, + { + "id": 30266, + "properties": { + "age": "8", + "berries": "false" + } + }, + { + "id": 30267, + "properties": { + "age": "9", + "berries": "true" + } + }, + { + "id": 30268, + "properties": { + "age": "9", + "berries": "false" + } + }, + { + "id": 30269, + "properties": { + "age": "10", + "berries": "true" + } + }, + { + "id": 30270, + "properties": { + "age": "10", + "berries": "false" + } + }, + { + "id": 30271, + "properties": { + "age": "11", + "berries": "true" + } + }, + { + "id": 30272, + "properties": { + "age": "11", + "berries": "false" + } + }, + { + "id": 30273, + "properties": { + "age": "12", + "berries": "true" + } + }, + { + "id": 30274, + "properties": { + "age": "12", + "berries": "false" + } + }, + { + "id": 30275, + "properties": { + "age": "13", + "berries": "true" + } + }, + { + "id": 30276, + "properties": { + "age": "13", + "berries": "false" + } + }, + { + "id": 30277, + "properties": { + "age": "14", + "berries": "true" + } + }, + { + "id": 30278, + "properties": { + "age": "14", + "berries": "false" + } + }, + { + "id": 30279, + "properties": { + "age": "15", + "berries": "true" + } + }, + { + "id": 30280, + "properties": { + "age": "15", + "berries": "false" + } + }, + { + "id": 30281, + "properties": { + "age": "16", + "berries": "true" + } + }, + { + "id": 30282, + "properties": { + "age": "16", + "berries": "false" + } + }, + { + "id": 30283, + "properties": { + "age": "17", + "berries": "true" + } + }, + { + "id": 30284, + "properties": { + "age": "17", + "berries": "false" + } + }, + { + "id": 30285, + "properties": { + "age": "18", + "berries": "true" + } + }, + { + "id": 30286, + "properties": { + "age": "18", + "berries": "false" + } + }, + { + "id": 30287, + "properties": { + "age": "19", + "berries": "true" + } + }, + { + "id": 30288, + "properties": { + "age": "19", + "berries": "false" + } + }, + { + "id": 30289, + "properties": { + "age": "20", + "berries": "true" + } + }, + { + "id": 30290, + "properties": { + "age": "20", + "berries": "false" + } + }, + { + "id": 30291, + "properties": { + "age": "21", + "berries": "true" + } + }, + { + "id": 30292, + "properties": { + "age": "21", + "berries": "false" + } + }, + { + "id": 30293, + "properties": { + "age": "22", + "berries": "true" + } + }, + { + "id": 30294, + "properties": { + "age": "22", + "berries": "false" + } + }, + { + "id": 30295, + "properties": { + "age": "23", + "berries": "true" + } + }, + { + "id": 30296, + "properties": { + "age": "23", + "berries": "false" + } + }, + { + "id": 30297, + "properties": { + "age": "24", + "berries": "true" + } + }, + { + "id": 30298, + "properties": { + "age": "24", + "berries": "false" + } + }, + { + "id": 30299, + "properties": { + "age": "25", + "berries": "true" + } + }, + { + "id": 30300, + "properties": { + "age": "25", + "berries": "false" + } + } + ] + }, + "minecraft:cave_vines_plant": { + "definition": { + "type": "minecraft:cave_vines_plant", + "properties": {} + }, + "properties": { + "berries": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30301, + "properties": { + "berries": "true" + } + }, + { + "default": true, + "id": 30302, + "properties": { + "berries": "false" + } + } + ] + }, + "minecraft:chain_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": true, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14829, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 14830, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 14831, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 14832, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 14833, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 14834, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 14835, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 14836, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 14837, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 14838, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 14839, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 14840, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:cherry_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "cherry", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10795, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10796, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10797, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10798, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10799, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10800, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10801, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10802, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10803, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10804, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10805, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10806, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10807, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10808, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10809, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10810, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10811, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10812, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10813, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10814, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10815, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10816, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10817, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10818, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14316, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14317, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14318, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14319, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14320, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14321, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14322, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14323, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14324, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14325, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14326, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14327, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14328, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14329, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14330, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14331, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14332, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14333, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14334, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14335, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14336, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14337, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14338, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14339, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14340, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14341, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14342, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14343, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14344, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14345, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14346, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14347, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14348, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14349, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14350, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14351, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14352, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14353, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14354, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14355, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14356, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14357, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14358, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14359, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14360, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14361, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14362, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14363, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14364, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14365, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14366, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14367, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14368, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14369, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14370, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14371, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14372, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14373, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14374, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14375, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14376, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14377, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14378, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14379, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13900, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13901, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13902, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13903, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13904, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13905, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13906, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13907, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13908, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13909, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13910, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13911, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13912, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13913, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13914, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13915, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13916, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13917, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13918, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13919, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13920, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13921, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13922, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13923, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13924, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13925, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13926, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13927, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13928, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13929, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13930, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13931, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cherry_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13612, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13613, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13614, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13615, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13616, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13617, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13618, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13619, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13620, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13621, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13622, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13623, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13624, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13625, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13626, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13627, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13628, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13629, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13630, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13631, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13632, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13633, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13634, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13635, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13636, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13637, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13638, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13639, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13640, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13641, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13642, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13643, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:cherry_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6163, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6164, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6165, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6166, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6167, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6168, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6169, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6170, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6171, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6172, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6173, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6174, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6175, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6176, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6177, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6178, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6179, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6180, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6181, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6182, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6183, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6184, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6185, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6186, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6187, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6188, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6189, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6190, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6191, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6192, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6193, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6194, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6195, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6196, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6197, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6198, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6199, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6200, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6201, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6202, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6203, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6204, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6205, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6206, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6207, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6208, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6209, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6210, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6211, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6212, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6213, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6214, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6215, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6216, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6217, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6218, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6219, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6220, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6221, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6222, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6223, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6224, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6225, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6226, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:cherry_leaves" + }, + "leaf_particle_chance": 0.1, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 392, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 393, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 394, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 395, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 396, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 397, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 398, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 399, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 400, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 401, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 402, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 403, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 404, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 405, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 406, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 407, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 408, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 409, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 410, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 411, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 412, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 413, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 414, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 415, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 416, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 417, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 418, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 419, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 151, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 152, + "properties": { + "axis": "y" + } + }, + { + "id": 153, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:cherry_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20 + } + ] + }, + "minecraft:cherry_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6871, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6872, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:cherry_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "cherry" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 39, + "properties": { + "stage": "0" + } + }, + { + "id": 40, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:cherry_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2792, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2793, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2794, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2795, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2796, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2797, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2798, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2799, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2800, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2801, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2802, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2803, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2804, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2805, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2806, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2807, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2808, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2809, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2810, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2811, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2812, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2813, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2814, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2815, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2816, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2817, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2818, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2819, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2820, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2821, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2822, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2823, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2824, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2825, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2826, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2827, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2828, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2829, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2830, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2831, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2832, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2833, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2834, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2835, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2836, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2837, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2838, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2839, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2840, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2841, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2842, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2843, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2844, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2845, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2846, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2847, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2848, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2849, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2850, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2851, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2852, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2853, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2854, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2855, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5463, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5464, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5465, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5466, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5467, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5468, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5469, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5470, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5471, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5472, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5473, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5474, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5475, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5476, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5477, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5478, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5479, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5480, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5481, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5482, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5483, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5484, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5485, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5486, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5487, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5488, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5489, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5490, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5491, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5492, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5493, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5494, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13360, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13361, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13362, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13363, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13364, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13365, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cherry_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12052, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12053, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12054, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12055, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12056, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12057, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12058, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12059, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12060, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12061, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12064, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12065, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12066, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12067, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12068, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12069, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12070, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12071, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12072, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12073, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12074, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12075, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12076, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12077, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12078, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12079, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12080, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12081, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12084, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12085, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12086, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12087, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12088, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12089, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12090, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12091, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12092, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12093, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12094, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12095, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12096, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12097, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12098, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12099, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12100, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12101, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12104, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12105, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12106, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12107, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12108, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12109, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12110, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12111, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12112, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12113, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12114, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12115, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12116, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12117, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12118, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12119, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12120, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12121, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12124, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12125, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12126, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12127, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12128, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12129, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12130, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12131, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "cherry", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7434, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7435, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7436, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7437, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7438, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7439, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7440, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7441, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7442, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7443, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7444, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7445, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7446, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7447, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7448, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7449, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7450, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7451, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7452, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7453, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7454, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7455, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7456, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7457, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7458, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7459, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7460, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7461, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7462, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7463, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7464, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7465, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7466, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7467, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7468, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7469, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7470, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7471, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7472, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7473, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7474, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7475, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7476, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7477, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7478, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7479, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7480, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7481, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7482, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7483, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7484, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7485, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7486, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7487, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7488, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7489, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7490, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7491, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7492, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7493, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7494, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7495, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7496, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7497, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6707, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6708, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6709, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6710, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6711, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6712, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6713, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6714, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "cherry" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5859, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5860, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5861, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5862, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5863, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5864, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5865, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5866, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 216, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 217, + "properties": { + "axis": "y" + } + }, + { + "id": 218, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:chest": { + "definition": { + "type": "minecraft:chest", + "close_sound": "minecraft:block.chest.close", + "open_sound": "minecraft:block.chest.open", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3987, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3988, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3989, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3990, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3991, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 3992, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 3993, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3994, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3995, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3996, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3997, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 3998, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 3999, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4000, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4001, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4002, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4003, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 4004, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 4005, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4006, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 4007, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4008, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 4009, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 4010, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:chipped_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11199, + "properties": { + "facing": "north" + } + }, + { + "id": 11200, + "properties": { + "facing": "south" + } + }, + { + "id": 11201, + "properties": { + "facing": "west" + } + }, + { + "id": 11202, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:chiseled_bookshelf": { + "definition": { + "type": "minecraft:chiseled_book_shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "slot_0_occupied": [ + "true", + "false" + ], + "slot_1_occupied": [ + "true", + "false" + ], + "slot_2_occupied": [ + "true", + "false" + ], + "slot_3_occupied": [ + "true", + "false" + ], + "slot_4_occupied": [ + "true", + "false" + ], + "slot_5_occupied": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2344, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2345, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2346, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2347, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2348, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2349, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2350, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2351, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2352, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2353, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2354, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2355, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2356, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2357, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2358, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2359, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2360, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2361, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2362, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2363, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2364, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2365, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2366, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2367, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2368, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2369, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2370, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2371, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2372, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2373, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2374, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2375, + "properties": { + "facing": "north", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2376, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2377, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2378, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2379, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2380, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2381, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2382, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2383, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2384, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2385, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2386, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2387, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2388, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2389, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2390, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2391, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2392, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2393, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2394, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2395, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2396, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2397, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2398, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2399, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2400, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2401, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2402, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2403, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2404, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2405, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2406, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "default": true, + "id": 2407, + "properties": { + "facing": "north", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2408, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2409, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2410, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2411, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2412, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2413, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2414, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2415, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2416, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2417, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2418, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2419, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2420, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2421, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2422, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2423, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2424, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2425, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2426, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2427, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2428, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2429, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2430, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2431, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2432, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2433, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2434, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2435, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2436, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2437, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2438, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2439, + "properties": { + "facing": "south", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2440, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2441, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2442, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2443, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2444, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2445, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2446, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2447, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2448, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2449, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2450, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2451, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2452, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2453, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2454, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2455, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2456, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2457, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2458, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2459, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2460, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2461, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2462, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2463, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2464, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2465, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2466, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2467, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2468, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2469, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2470, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2471, + "properties": { + "facing": "south", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2472, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2473, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2474, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2475, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2476, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2477, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2478, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2479, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2480, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2481, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2482, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2483, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2484, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2485, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2486, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2487, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2488, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2489, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2490, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2491, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2492, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2493, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2494, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2495, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2496, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2497, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2498, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2499, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2500, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2501, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2502, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2503, + "properties": { + "facing": "west", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2504, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2505, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2506, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2507, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2508, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2509, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2510, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2511, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2512, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2513, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2514, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2515, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2516, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2517, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2518, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2519, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2520, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2521, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2522, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2523, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2524, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2525, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2526, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2527, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2528, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2529, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2530, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2531, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2532, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2533, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2534, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2535, + "properties": { + "facing": "west", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2536, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2537, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2538, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2539, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2540, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2541, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2542, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2543, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2544, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2545, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2546, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2547, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2548, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2549, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2550, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2551, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2552, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2553, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2554, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2555, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2556, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2557, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2558, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2559, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2560, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2561, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2562, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2563, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2564, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2565, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2566, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2567, + "properties": { + "facing": "east", + "slot_0_occupied": "true", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2568, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2569, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2570, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2571, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2572, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2573, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2574, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2575, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2576, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2577, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2578, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2579, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2580, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2581, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2582, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2583, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "true", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2584, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2585, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2586, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2587, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2588, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2589, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2590, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2591, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "true", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2592, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2593, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2594, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2595, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "true", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + }, + { + "id": 2596, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "true" + } + }, + { + "id": 2597, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "true", + "slot_5_occupied": "false" + } + }, + { + "id": 2598, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "true" + } + }, + { + "id": 2599, + "properties": { + "facing": "east", + "slot_0_occupied": "false", + "slot_1_occupied": "false", + "slot_2_occupied": "false", + "slot_3_occupied": "false", + "slot_4_occupied": "false", + "slot_5_occupied": "false" + } + } + ] + }, + "minecraft:chiseled_cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27159 + } + ] + }, + "minecraft:chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 27800 + } + ] + }, + "minecraft:chiseled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32063 + } + ] + }, + "minecraft:chiseled_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23093 + } + ] + }, + "minecraft:chiseled_polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22245 + } + ] + }, + "minecraft:chiseled_quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11324 + } + ] + }, + "minecraft:chiseled_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13248 + } + ] + }, + "minecraft:chiseled_resin_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9333 + } + ] + }, + "minecraft:chiseled_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 579 + } + ] + }, + "minecraft:chiseled_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7757 + } + ] + }, + "minecraft:chiseled_sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25925 + } + ] + }, + "minecraft:chiseled_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24274 + } + ] + }, + "minecraft:chiseled_tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24686 + } + ] + }, + "minecraft:chorus_flower": { + "definition": { + "type": "minecraft:chorus_flower", + "plant": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5" + ] + }, + "states": [ + { + "default": true, + "id": 14706, + "properties": { + "age": "0" + } + }, + { + "id": 14707, + "properties": { + "age": "1" + } + }, + { + "id": 14708, + "properties": { + "age": "2" + } + }, + { + "id": 14709, + "properties": { + "age": "3" + } + }, + { + "id": 14710, + "properties": { + "age": "4" + } + }, + { + "id": 14711, + "properties": { + "age": "5" + } + } + ] + }, + "minecraft:chorus_plant": { + "definition": { + "type": "minecraft:chorus_plant", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14642, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14643, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14644, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14645, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14646, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14647, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14648, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14649, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14650, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14651, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14652, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14653, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14654, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14655, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14656, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14657, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14658, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14659, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14660, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14661, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14662, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14663, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14664, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14665, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14666, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14667, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14668, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14669, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14670, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14671, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14672, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14673, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14674, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14675, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14676, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14677, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14678, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14679, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14680, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14681, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14682, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14683, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14684, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14685, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14686, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14687, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14688, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14689, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14690, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14691, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14692, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14693, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14694, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14695, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14696, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 14697, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 14698, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 14699, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 14700, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 14701, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 14702, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 14703, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 14704, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14705, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25926 + } + ] + }, + "minecraft:cinnabar_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26749, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26750, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26751, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26752, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26753, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26754, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cinnabar_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26755, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26756, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26757, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26758, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26759, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26760, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26761, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26762, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26763, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26764, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26766, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26767, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26768, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26769, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26770, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26771, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26775, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26776, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26777, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26778, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26779, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26780, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26781, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26782, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26783, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26784, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26786, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26787, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26788, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26789, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26790, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26791, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26795, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26796, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26797, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26798, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26799, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26800, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26801, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26802, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26803, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26804, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26806, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26807, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26808, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26809, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26810, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26811, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26815, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26816, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26817, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26818, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26819, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26820, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26821, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26822, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26823, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26824, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26826, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26827, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26828, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26829, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26830, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26831, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26835, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26836, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26837, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26838, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26839, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26840, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26841, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26842, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26843, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26844, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26845, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26846, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26847, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26848, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26849, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26850, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26851, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26852, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26853, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26854, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26855, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26856, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26857, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26858, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26859, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26860, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26861, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26862, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26863, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26864, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26865, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26866, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26867, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26868, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26869, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26870, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26871, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26872, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26873, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26874, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26875, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26876, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26877, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26878, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26879, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26880, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26881, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26882, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26883, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26884, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26885, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26886, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26887, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26888, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26889, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26890, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26891, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26892, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26893, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26894, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26895, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26896, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26897, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26898, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26899, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26900, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26901, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26902, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26903, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26904, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26905, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26906, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26907, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26908, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26909, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26910, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26911, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26912, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26913, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26914, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26915, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26916, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26917, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26918, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26919, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26920, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26921, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26922, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26923, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26924, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26925, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26926, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26927, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26928, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26929, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26930, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26931, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26932, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26933, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26934, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26935, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26936, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26937, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26938, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26939, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26940, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26941, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26942, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26943, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26944, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26945, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26946, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26947, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26948, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26949, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26950, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26951, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26952, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26953, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26954, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26955, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26956, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26957, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26958, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26959, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26960, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26961, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26962, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26963, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26964, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26965, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26966, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26967, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26968, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26969, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26970, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26971, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26972, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26973, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26974, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26975, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26976, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26977, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26978, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26979, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26980, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26981, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26982, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26983, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26984, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26985, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26986, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26987, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26988, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26989, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26990, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26991, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26992, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26993, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26994, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26995, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26996, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26997, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26998, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26999, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27000, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27001, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27002, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27003, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27004, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27005, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27006, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27007, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27008, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27009, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27010, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27011, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27012, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27013, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27014, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27015, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27016, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27017, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27018, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27019, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27020, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27021, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27022, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27023, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27024, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27025, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27026, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27027, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27028, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27029, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27030, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27031, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27032, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27033, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27034, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27035, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27036, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27037, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27038, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27039, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27040, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27041, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27042, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27043, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27044, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27045, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27046, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27047, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27048, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27049, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27050, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27051, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27052, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27053, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27054, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27055, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27056, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27057, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27058, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27059, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27060, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27061, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27062, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27063, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27064, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27065, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27066, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27067, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27068, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27069, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27070, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27071, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27072, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27073, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27074, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27075, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27076, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27077, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27078, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27079, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27080, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27081, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27082, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27083, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27084, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27085, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27086, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27087, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27088, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27089, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27090, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27091, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27092, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27093, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27094, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27095, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27096, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27097, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27098, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27099, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27100, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27101, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27102, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27103, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27104, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27105, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27106, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27107, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27108, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27109, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27110, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27111, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27112, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27113, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27114, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27115, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27116, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27117, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27118, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27119, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27120, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27121, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27122, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27123, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27124, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27125, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27126, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27127, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27128, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27129, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27130, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27131, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27132, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27133, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27134, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27135, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27136, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27137, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27138, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27139, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27140, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27141, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27142, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27143, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27144, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27145, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27146, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27147, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27148, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27149, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27150, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27151, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27152, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 27153, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 27154, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 27155, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 27156, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 27157, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 27158, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cinnabar_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26748 + } + ] + }, + "minecraft:cinnabar_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25927, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25928, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25929, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25930, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25931, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25932, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cinnabar" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25933, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25934, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25935, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25936, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25937, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25938, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25939, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25940, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25941, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25942, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25943, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25944, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25945, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25946, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25947, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25948, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25949, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25953, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25954, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25955, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25956, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25957, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25958, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25959, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25960, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25961, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25962, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25963, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25964, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25965, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25966, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25967, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25968, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25969, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25973, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25974, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25975, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25976, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25977, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25978, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25979, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25980, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25981, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25982, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25983, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25984, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25985, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25986, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25987, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25988, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25989, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25993, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25994, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25995, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25996, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25997, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25998, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25999, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26000, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26001, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26002, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26003, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26004, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26005, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26007, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cinnabar_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26013, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26014, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26015, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26021, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26022, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26023, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26024, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26025, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26026, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26027, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26033, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26034, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26035, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26036, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26037, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26038, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26039, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26045, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26046, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26047, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26048, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26049, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26050, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26051, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26057, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26058, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26059, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26060, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26061, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26062, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26063, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26069, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26070, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26071, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26072, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26073, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26074, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26075, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26081, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26082, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26083, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26084, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26085, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26086, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26087, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26093, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26094, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26095, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26096, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26097, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26098, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26099, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26105, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26106, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26107, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26108, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26109, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26110, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26111, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26117, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26118, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26119, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26120, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26121, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26122, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26123, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26129, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26130, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26131, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26132, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26133, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26134, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26135, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26141, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26142, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26143, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26144, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26145, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26146, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26147, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26153, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26154, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26155, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26156, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26157, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26158, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26159, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26165, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26166, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26167, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26168, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26169, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26170, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26171, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26177, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26178, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26179, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26180, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26181, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26182, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26183, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26189, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26190, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26191, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26192, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26193, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26194, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26195, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26201, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26202, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26203, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26204, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26205, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26206, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26207, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26213, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26214, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26215, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26216, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26217, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26218, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26219, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26225, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26226, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26227, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26228, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26229, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26230, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26231, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26237, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26238, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26239, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26240, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26241, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26242, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26243, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26249, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26250, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26251, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26252, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26253, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26254, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26255, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26261, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26262, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26263, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26264, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26265, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26266, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26267, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26273, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26274, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26275, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26276, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26277, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26278, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26279, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26285, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26286, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26287, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26288, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26289, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26290, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26291, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26297, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26298, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26299, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26300, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26301, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26302, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26303, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26309, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26310, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26311, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26312, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26313, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26314, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26315, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26321, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26322, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26323, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26324, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26325, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26326, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26327, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26333, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26334, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26335, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26336, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:clay": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6946 + } + ] + }, + "minecraft:closed_eyeblossom": { + "definition": { + "type": "minecraft:eyeblossom", + "open": false, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32362 + } + ] + }, + "minecraft:coal_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12913 + } + ] + }, + "minecraft:coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 133 + } + ] + }, + "minecraft:coarse_dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11 + } + ] + }, + "minecraft:cobbled_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30419 + } + ] + }, + "minecraft:cobbled_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30500, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 30501, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 30502, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30503, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 30504, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 30505, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobbled_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30420, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30421, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30422, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30423, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30424, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30425, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30426, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30427, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30428, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30429, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30430, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30431, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30432, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30433, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30434, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30435, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30436, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30437, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30438, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30439, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30440, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30441, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30442, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30443, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30444, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30445, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30446, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30447, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30448, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30449, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30450, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30451, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30452, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30453, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30454, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30455, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30456, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30457, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30458, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30459, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30460, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30461, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30462, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30463, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30464, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30465, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30466, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30467, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30468, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30469, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30470, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30471, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30472, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30473, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30474, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30475, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30476, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30477, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30478, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30479, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30480, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30481, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30482, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30483, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30484, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30485, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30486, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30487, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30488, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30489, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30490, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30491, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30492, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30493, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30494, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30495, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30496, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30497, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30498, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30499, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobbled_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 30506, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30507, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30508, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 30509, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30510, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30511, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30512, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30513, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30514, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30515, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30516, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30517, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30518, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30519, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30520, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30521, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30522, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30523, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30524, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30525, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30526, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30527, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30528, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30529, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30530, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30531, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30532, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30533, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30534, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30535, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30536, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30537, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30538, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30539, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30540, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30541, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30542, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30543, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30544, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30545, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30546, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30547, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30548, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30549, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30550, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30551, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30552, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30553, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30554, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30555, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30556, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30557, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30558, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30559, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30560, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30561, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30562, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30563, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30564, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30565, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30566, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30567, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30568, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30569, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30570, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30571, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30572, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30573, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30574, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30575, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30576, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30577, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30578, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30579, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30580, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30581, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30582, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30583, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30584, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30585, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30586, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30587, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30588, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30589, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30590, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30591, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30592, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30593, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30594, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30595, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30596, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30597, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30598, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30599, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30600, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30601, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30602, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30603, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30604, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30605, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30606, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30607, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30608, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30609, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30610, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30611, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30612, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30613, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30614, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30615, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30616, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30617, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30618, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30619, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30620, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30621, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30622, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30623, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30624, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30625, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30626, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30627, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30628, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30629, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30630, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30631, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30632, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30633, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30634, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30635, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30636, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30637, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30638, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30639, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30640, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30641, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30642, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30643, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30644, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30645, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30646, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30647, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30648, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30649, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30650, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30651, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30652, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30653, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30654, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30655, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30656, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30657, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30658, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30659, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30660, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30661, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30662, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30663, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30664, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30665, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30666, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30667, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30668, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30669, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30670, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30671, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30672, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30673, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30674, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30675, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30676, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30677, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30678, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30679, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30680, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30681, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30682, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30683, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30684, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30685, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30686, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30687, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30688, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30689, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30690, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30691, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30692, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30693, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30694, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30695, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30696, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30697, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30698, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30699, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30700, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30701, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30702, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30703, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30704, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30705, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30706, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30707, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30708, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30709, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30710, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30711, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30712, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30713, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30714, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30715, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30716, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30717, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30718, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30719, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30720, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30721, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30722, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30723, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30724, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30725, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30726, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30727, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30728, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30729, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30730, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30731, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30732, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30733, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30734, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30735, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30736, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30737, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30738, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30739, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30740, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30741, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30742, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30743, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30744, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30745, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30746, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30747, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30748, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30749, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30750, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30751, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30752, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30753, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30754, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30755, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30756, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30757, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30758, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30759, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30760, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30761, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30762, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30763, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30764, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30765, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30766, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30767, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30768, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30769, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30770, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30771, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30772, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30773, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30774, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30775, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30776, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30777, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30778, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30779, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30780, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30781, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30782, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30783, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30784, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30785, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30786, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30787, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30788, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30789, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30790, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30791, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30792, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30793, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30794, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30795, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30796, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30797, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30798, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30799, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30800, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30801, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30802, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30803, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30804, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30805, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30806, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30807, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30808, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30809, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30810, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30811, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30812, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30813, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30814, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30815, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30816, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30817, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30818, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30819, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30820, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30821, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30822, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30823, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30824, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30825, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30826, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30827, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30828, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30829, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14 + } + ] + }, + "minecraft:cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13426, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13427, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13428, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13429, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13430, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13431, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5747, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5748, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5749, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5750, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5751, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5752, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5753, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5754, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5755, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5756, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5757, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5758, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5759, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5760, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5761, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5762, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5763, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5764, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5765, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5766, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5767, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5768, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5769, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5770, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5771, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5772, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5773, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5774, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5775, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5776, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5777, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5778, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5779, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5780, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5781, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5782, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5783, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5784, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5785, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5786, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5787, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5788, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5789, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5790, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5791, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5792, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5793, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5794, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5795, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5796, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5797, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5798, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5799, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5800, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5801, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5802, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5803, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5804, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5805, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5806, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5807, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5808, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5809, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5810, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5811, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5812, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5813, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5814, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5815, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5816, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 5817, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 5818, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 5819, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 5820, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 5821, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 5822, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 5823, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 5824, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 5825, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 5826, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 9981, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9982, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9983, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 9984, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9985, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9986, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9987, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9988, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9989, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9990, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9991, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9992, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9993, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9994, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9995, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9996, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9997, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9998, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9999, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10000, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10001, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10002, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10003, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10004, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10005, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10006, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10007, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10008, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10009, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10010, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10011, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10012, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10013, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10014, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10015, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10016, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10017, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10018, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10019, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10020, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10021, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10022, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10023, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10024, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10025, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10026, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10027, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10028, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10029, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10030, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10031, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10032, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10033, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10034, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10035, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10036, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10037, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10038, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10039, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10040, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10041, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10042, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10043, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10044, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10045, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10046, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10047, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10048, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10049, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10050, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10051, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10052, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10053, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10054, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10055, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10056, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10057, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10058, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10059, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10060, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10061, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10062, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10063, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10064, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10065, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10066, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10067, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10068, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10069, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10070, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10071, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10072, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10073, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10074, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10075, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10076, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10077, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10078, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10079, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10080, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10081, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10082, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10083, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10084, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10085, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10086, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10087, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10088, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10089, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10090, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10091, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10092, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10093, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10094, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10095, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10096, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10097, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10098, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10099, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10100, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10101, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10102, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10103, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10104, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10105, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10106, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10107, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10108, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10109, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10110, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10111, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10112, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10113, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10114, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10115, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10116, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10117, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10118, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10119, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10120, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10121, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10122, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10123, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10124, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10125, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10126, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10127, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10128, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10129, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10130, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10131, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10132, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10133, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10134, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10135, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10136, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10137, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10138, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10139, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10140, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10141, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10142, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10143, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10144, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10145, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10146, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10147, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10148, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10149, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10150, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10151, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10152, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10153, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10154, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10155, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10156, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10157, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10158, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10159, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10160, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10161, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10162, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10163, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10164, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10165, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10166, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10167, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10168, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10169, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10170, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10171, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10172, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10173, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10174, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10175, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10176, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10177, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10178, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10179, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10180, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10181, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10182, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10183, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10184, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10185, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10186, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10187, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10188, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10189, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10190, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10191, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10192, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10193, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10194, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10195, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10196, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10197, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10198, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10199, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10200, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10201, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10202, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10203, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10204, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10205, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10206, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10207, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10208, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10209, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10210, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10211, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10212, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10213, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10214, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10215, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10216, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10217, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10218, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10219, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10220, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10221, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10222, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10223, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10224, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10225, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10226, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10227, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10228, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10229, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10230, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10231, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10232, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10233, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10234, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10235, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10236, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10237, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10238, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10239, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10240, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10241, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10242, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10243, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10244, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10245, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10246, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10247, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10248, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10249, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10250, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10251, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10252, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10253, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10254, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10255, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10256, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10257, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10258, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10259, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10260, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10261, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10262, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10263, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10264, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10265, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10266, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10267, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10268, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10269, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10270, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10271, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10272, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10273, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10274, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10275, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10276, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10277, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10278, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10279, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10280, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10281, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10282, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10283, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10284, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10285, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10286, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10287, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10288, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10289, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10290, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10291, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10292, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10293, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10294, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10295, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10296, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10297, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10298, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10299, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10300, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10301, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10302, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10303, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10304, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:cobweb": { + "definition": { + "type": "minecraft:web", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2247 + } + ] + }, + "minecraft:cocoa": { + "definition": { + "type": "minecraft:cocoa", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 9481, + "properties": { + "age": "0", + "facing": "north" + } + }, + { + "id": 9482, + "properties": { + "age": "0", + "facing": "south" + } + }, + { + "id": 9483, + "properties": { + "age": "0", + "facing": "west" + } + }, + { + "id": 9484, + "properties": { + "age": "0", + "facing": "east" + } + }, + { + "id": 9485, + "properties": { + "age": "1", + "facing": "north" + } + }, + { + "id": 9486, + "properties": { + "age": "1", + "facing": "south" + } + }, + { + "id": 9487, + "properties": { + "age": "1", + "facing": "west" + } + }, + { + "id": 9488, + "properties": { + "age": "1", + "facing": "east" + } + }, + { + "id": 9489, + "properties": { + "age": "2", + "facing": "north" + } + }, + { + "id": 9490, + "properties": { + "age": "2", + "facing": "south" + } + }, + { + "id": 9491, + "properties": { + "age": "2", + "facing": "west" + } + }, + { + "id": 9492, + "properties": { + "age": "2", + "facing": "east" + } + } + ] + }, + "minecraft:command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 9968, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 9969, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 9970, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 9971, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 9972, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 9973, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 9974, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 9975, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 9976, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 9977, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 9978, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 9979, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:comparator": { + "definition": { + "type": "minecraft:comparator", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "mode": [ + "compare", + "subtract" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11263, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "true" + } + }, + { + "default": true, + "id": 11264, + "properties": { + "facing": "north", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11265, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11266, + "properties": { + "facing": "north", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11267, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11268, + "properties": { + "facing": "south", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11269, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11270, + "properties": { + "facing": "south", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11271, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11272, + "properties": { + "facing": "west", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11273, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11274, + "properties": { + "facing": "west", + "mode": "subtract", + "powered": "false" + } + }, + { + "id": 11275, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "true" + } + }, + { + "id": 11276, + "properties": { + "facing": "east", + "mode": "compare", + "powered": "false" + } + }, + { + "id": 11277, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "true" + } + }, + { + "id": 11278, + "properties": { + "facing": "east", + "mode": "subtract", + "powered": "false" + } + } + ] + }, + "minecraft:composter": { + "definition": { + "type": "minecraft:composter", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 21743, + "properties": { + "level": "0" + } + }, + { + "id": 21744, + "properties": { + "level": "1" + } + }, + { + "id": 21745, + "properties": { + "level": "2" + } + }, + { + "id": 21746, + "properties": { + "level": "3" + } + }, + { + "id": 21747, + "properties": { + "level": "4" + } + }, + { + "id": 21748, + "properties": { + "level": "5" + } + }, + { + "id": 21749, + "properties": { + "level": "6" + } + }, + { + "id": 21750, + "properties": { + "level": "7" + } + }, + { + "id": 21751, + "properties": { + "level": "8" + } + } + ] + }, + "minecraft:conduit": { + "definition": { + "type": "minecraft:conduit", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15276, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15277, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7990, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7991, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7992, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7993, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7994, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7995, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7996, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7997, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7998, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7999, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8000, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8001, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8002, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8003, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8004, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8005, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8006, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8007, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8008, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8009, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8010, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8011, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8012, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8013, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8014, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8015, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8016, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8017, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8018, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8019, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8020, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8021, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:copper_block": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 27782 + } + ] + }, + "minecraft:copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29536, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29537, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29538, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29539, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8252, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8253, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8254, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8255, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8256, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8257, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29568, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29569, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29570, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29571, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29572, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29573, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29574, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29575, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29576, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29577, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29578, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29579, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29580, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29581, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29582, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29583, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29584, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29585, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29586, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29587, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29588, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29589, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29590, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29591, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28496, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28497, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28498, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28499, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28500, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28501, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28502, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28503, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28504, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28505, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28506, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28507, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28508, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28509, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28510, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28511, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28512, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28513, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28514, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28515, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28516, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28517, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28518, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28519, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28520, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28521, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28522, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28523, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28524, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28525, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28526, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28527, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28528, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28529, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28530, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28531, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28532, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28533, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28534, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28535, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28536, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28537, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28538, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28539, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28540, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28541, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28542, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28543, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28544, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28545, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28546, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28547, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28548, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28549, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28550, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28551, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28552, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28553, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28554, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28555, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28556, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28557, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28558, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28559, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29760, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29761, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29762, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29763, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29764, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29765, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29766, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29767, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29768, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29769, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29770, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29771, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29772, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29773, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29774, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29775, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29776, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29777, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29778, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29779, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29780, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29781, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29782, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29783, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29784, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29785, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29786, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29787, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29788, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29789, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29790, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29791, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29520, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29521, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20845, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20846, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20847, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20848, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27790 + } + ] + }, + "minecraft:copper_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:copper_fire_flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7011 + } + ] + }, + "minecraft:copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trapdoor", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29008, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29009, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29010, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29011, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29012, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29013, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29014, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29015, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29016, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29017, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29018, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29019, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29020, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29021, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29022, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29023, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29024, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29025, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29026, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29027, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29028, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29029, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29030, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29031, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29032, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29033, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29034, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29035, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29036, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29037, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29038, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29039, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29040, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29041, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29042, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29043, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29044, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29045, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29046, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29047, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29048, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29049, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29050, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29051, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29052, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29053, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29054, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29055, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29056, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29057, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29058, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29059, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29060, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29061, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29062, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29063, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29064, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29065, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29066, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29067, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29068, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29069, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29070, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29071, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:copper_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:copper_fire_flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7012, + "properties": { + "facing": "north" + } + }, + { + "id": 7013, + "properties": { + "facing": "south" + } + }, + { + "id": 7014, + "properties": { + "facing": "west" + } + }, + { + "id": 7015, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cornflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:jump_boost" + } + ] + }, + "states": [ + { + "default": true, + "id": 2333 + } + ] + }, + "minecraft:cracked_deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32064 + } + ] + }, + "minecraft:cracked_deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32065 + } + ] + }, + "minecraft:cracked_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23094 + } + ] + }, + "minecraft:cracked_polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22244 + } + ] + }, + "minecraft:cracked_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7756 + } + ] + }, + "minecraft:crafter": { + "definition": { + "type": "minecraft:crafter", + "properties": {} + }, + "properties": { + "crafting": [ + "true", + "false" + ], + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 32102, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 32103, + "properties": { + "crafting": "true", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 32104, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 32105, + "properties": { + "crafting": "true", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 32106, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 32107, + "properties": { + "crafting": "true", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 32108, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 32109, + "properties": { + "crafting": "true", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 32110, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 32111, + "properties": { + "crafting": "true", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 32112, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 32113, + "properties": { + "crafting": "true", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 32114, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 32115, + "properties": { + "crafting": "true", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 32116, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 32117, + "properties": { + "crafting": "true", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 32118, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 32119, + "properties": { + "crafting": "true", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 32120, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 32121, + "properties": { + "crafting": "true", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 32122, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "id": 32123, + "properties": { + "crafting": "true", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 32124, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 32125, + "properties": { + "crafting": "true", + "orientation": "south_up", + "triggered": "false" + } + }, + { + "id": 32126, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "true" + } + }, + { + "id": 32127, + "properties": { + "crafting": "false", + "orientation": "down_east", + "triggered": "false" + } + }, + { + "id": 32128, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "true" + } + }, + { + "id": 32129, + "properties": { + "crafting": "false", + "orientation": "down_north", + "triggered": "false" + } + }, + { + "id": 32130, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "true" + } + }, + { + "id": 32131, + "properties": { + "crafting": "false", + "orientation": "down_south", + "triggered": "false" + } + }, + { + "id": 32132, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "true" + } + }, + { + "id": 32133, + "properties": { + "crafting": "false", + "orientation": "down_west", + "triggered": "false" + } + }, + { + "id": 32134, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "true" + } + }, + { + "id": 32135, + "properties": { + "crafting": "false", + "orientation": "up_east", + "triggered": "false" + } + }, + { + "id": 32136, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "true" + } + }, + { + "id": 32137, + "properties": { + "crafting": "false", + "orientation": "up_north", + "triggered": "false" + } + }, + { + "id": 32138, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "true" + } + }, + { + "id": 32139, + "properties": { + "crafting": "false", + "orientation": "up_south", + "triggered": "false" + } + }, + { + "id": 32140, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "true" + } + }, + { + "id": 32141, + "properties": { + "crafting": "false", + "orientation": "up_west", + "triggered": "false" + } + }, + { + "id": 32142, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "true" + } + }, + { + "id": 32143, + "properties": { + "crafting": "false", + "orientation": "west_up", + "triggered": "false" + } + }, + { + "id": 32144, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "true" + } + }, + { + "id": 32145, + "properties": { + "crafting": "false", + "orientation": "east_up", + "triggered": "false" + } + }, + { + "id": 32146, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "true" + } + }, + { + "default": true, + "id": 32147, + "properties": { + "crafting": "false", + "orientation": "north_up", + "triggered": "false" + } + }, + { + "id": 32148, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "true" + } + }, + { + "id": 32149, + "properties": { + "crafting": "false", + "orientation": "south_up", + "triggered": "false" + } + } + ] + }, + "minecraft:crafting_table": { + "definition": { + "type": "minecraft:crafting_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5310 + } + ] + }, + "minecraft:creaking_heart": { + "definition": { + "type": "minecraft:creaking_heart", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "creaking_heart_state": [ + "uprooted", + "dormant", + "awake" + ], + "natural": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3889, + "properties": { + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "id": 3890, + "properties": { + "axis": "x", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3891, + "properties": { + "axis": "x", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3892, + "properties": { + "axis": "x", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3893, + "properties": { + "axis": "x", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3894, + "properties": { + "axis": "x", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 3895, + "properties": { + "axis": "y", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "default": true, + "id": 3896, + "properties": { + "axis": "y", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3897, + "properties": { + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3898, + "properties": { + "axis": "y", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3899, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3900, + "properties": { + "axis": "y", + "creaking_heart_state": "awake", + "natural": "false" + } + }, + { + "id": 3901, + "properties": { + "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "true" + } + }, + { + "id": 3902, + "properties": { + "axis": "z", + "creaking_heart_state": "uprooted", + "natural": "false" + } + }, + { + "id": 3903, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "true" + } + }, + { + "id": 3904, + "properties": { + "axis": "z", + "creaking_heart_state": "dormant", + "natural": "false" + } + }, + { + "id": 3905, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", + "natural": "true" + } + }, + { + "id": 3906, + "properties": { + "axis": "z", + "creaking_heart_state": "awake", + "natural": "false" + } + } + ] + }, + "minecraft:creeper_head": { + "definition": { + "type": "minecraft:skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11075, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11076, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11077, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11078, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11079, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11080, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11081, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11082, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11083, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11084, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11085, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11086, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11087, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11088, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11089, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11090, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11091, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11092, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11093, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11094, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11095, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11096, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11097, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11098, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11099, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11100, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11101, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11102, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11103, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11104, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11105, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11106, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:creeper_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "creeper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11107, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11108, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11109, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11110, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11111, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11112, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11113, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11114, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "crimson", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21466, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21467, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21468, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21469, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21470, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21471, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21472, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21473, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21474, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 21475, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21476, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21477, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21478, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21479, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21480, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21481, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21482, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21483, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21484, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21485, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21486, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21487, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21488, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21489, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21514, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21515, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21516, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21517, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21518, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21519, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21520, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21521, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21522, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21523, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21524, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21525, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21526, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21527, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21528, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21529, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21530, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21531, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21532, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21533, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21534, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21535, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21536, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21537, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21538, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21539, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21540, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21541, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21542, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21543, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21544, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21545, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21546, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21547, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21548, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21549, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21550, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21551, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21552, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21553, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21554, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21555, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21556, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21557, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21558, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21559, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21560, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21561, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21562, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21563, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21564, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21565, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21566, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21567, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21568, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21569, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21570, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21571, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21572, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21573, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21574, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21575, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21576, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21577, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21050, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21051, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21052, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21053, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21054, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21055, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21056, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21057, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21058, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21059, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21060, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21061, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21062, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21063, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21064, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21065, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21066, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21067, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21068, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21069, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21070, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21071, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21072, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21073, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21074, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21075, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21076, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21077, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21078, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21079, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21080, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 21081, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:crimson_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21242, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21243, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21244, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21245, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21246, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21247, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21248, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21249, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21250, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21251, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21252, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21253, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21254, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21255, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21256, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21257, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21258, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21259, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21260, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21261, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21262, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21263, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21264, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21265, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21266, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21267, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21268, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21269, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21270, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21271, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21272, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21273, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:crimson_fungus": { + "definition": { + "type": "minecraft:nether_fungus", + "feature": "minecraft:crimson_fungus_planted", + "grows_on": "minecraft:crimson_nylium", + "properties": {}, + "support_blocks": "minecraft:supports_crimson_fungus" + }, + "states": [ + { + "default": true, + "id": 20975 + } + ] + }, + "minecraft:crimson_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6419, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6420, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6421, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6422, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6423, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6424, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6425, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6426, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6427, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6428, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6429, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6430, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6431, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6432, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6433, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6434, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6435, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6436, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6437, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6438, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6439, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6440, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6441, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6442, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6443, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6444, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6445, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6446, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6447, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6448, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6449, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6450, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6451, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6452, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6453, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6454, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6455, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6456, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6457, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6458, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6459, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6460, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6461, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6462, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6463, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6464, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6465, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6466, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6467, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6468, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6469, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6470, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6471, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6472, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6473, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6474, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6475, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6476, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6477, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6478, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6479, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6480, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6481, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6482, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20968, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20969, + "properties": { + "axis": "y" + } + }, + { + "id": 20970, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20974 + } + ] + }, + "minecraft:crimson_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21032 + } + ] + }, + "minecraft:crimson_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21046, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 21047, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:crimson_roots": { + "definition": { + "type": "minecraft:nether_roots", + "properties": {}, + "support_blocks": "minecraft:supports_crimson_roots" + }, + "states": [ + { + "default": true, + "id": 21031 + } + ] + }, + "minecraft:crimson_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2856, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2857, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2858, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2859, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2860, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2861, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2862, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2863, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2864, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2865, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2866, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2867, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2868, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2869, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2870, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2871, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2872, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2873, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2874, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2875, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2876, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2877, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2878, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2879, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2880, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2881, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2882, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2883, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2884, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2885, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2886, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2887, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2888, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2889, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2890, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2891, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2892, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2893, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2894, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2895, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2896, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2897, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2898, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2899, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2900, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2901, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2902, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2903, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2904, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2905, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2906, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2907, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2908, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2909, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2910, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2911, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2912, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2913, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2914, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2915, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2916, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2917, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2918, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2919, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21642, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 21643, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 21644, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 21645, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 21646, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 21647, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 21648, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 21649, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 21650, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 21651, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 21652, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 21653, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 21654, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 21655, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 21656, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 21657, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 21658, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21659, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 21660, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 21661, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 21662, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 21663, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 21664, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 21665, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 21666, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 21667, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 21668, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 21669, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 21670, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 21671, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 21672, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 21673, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21034, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21035, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21036, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21037, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21038, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21039, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:crimson_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21306, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21307, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21308, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21309, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21310, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21311, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21312, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21313, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21314, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21315, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21316, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21317, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21318, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21319, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21320, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21321, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21322, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21323, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21324, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21325, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21326, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21327, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21328, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21329, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21330, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21331, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21332, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21333, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21334, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21335, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21336, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21337, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21338, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21339, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21340, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21341, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21342, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21343, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21344, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21345, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21346, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21347, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21348, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21349, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21350, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21351, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21352, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21353, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21354, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21355, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21356, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21357, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21358, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21359, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21360, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21361, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21362, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21363, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21364, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21365, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21366, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21367, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21368, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21369, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21370, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21371, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21372, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21373, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21374, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21375, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21376, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21377, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21378, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21379, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21380, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21381, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21382, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21383, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21384, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21385, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20962, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20963, + "properties": { + "axis": "y" + } + }, + { + "id": 20964, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:crimson_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "crimson", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21114, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21115, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21116, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21117, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21118, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21119, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21120, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21121, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21122, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21123, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21124, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21125, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21126, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21127, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21128, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21129, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21130, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21131, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21132, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21133, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21134, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21135, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21136, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21137, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21138, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21139, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21140, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21141, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21142, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21143, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21144, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21145, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21146, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21147, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21148, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21149, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21150, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21151, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21152, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21153, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21154, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21155, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21156, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21157, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21158, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21159, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21160, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21161, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21162, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21163, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21164, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21165, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21166, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21167, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21168, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21169, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21170, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21171, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21172, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21173, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21174, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21175, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21176, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21177, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6747, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6748, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6749, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6750, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6751, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6752, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6753, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6754, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crimson_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "crimson" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21706, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21707, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21708, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21709, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21710, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21711, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21712, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21713, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:crying_obsidian": { + "definition": { + "type": "minecraft:crying_obsidian", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21820 + } + ] + }, + "minecraft:cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "unaffected" + }, + "states": [ + { + "default": true, + "id": 27792 + } + ] + }, + "minecraft:cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28448, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28449, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28450, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28451, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28452, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28453, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:cut_copper" + }, + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27808, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27809, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27810, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27811, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27812, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27813, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27814, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27815, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27816, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27817, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27818, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27819, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27820, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27821, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27822, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27823, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27824, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27825, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27826, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27827, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27828, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27829, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27830, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27831, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27832, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27833, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27834, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27835, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27836, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27837, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27838, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27839, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27840, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27841, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27842, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27843, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27844, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27845, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27846, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27847, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27848, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27849, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27850, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27851, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27852, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27853, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27854, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27855, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27856, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27857, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27858, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27859, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27860, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27861, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27862, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27863, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27864, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27865, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27866, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27867, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27868, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27869, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27870, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27871, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27872, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27873, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27874, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27875, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27876, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27877, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27878, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27879, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27880, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27881, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27882, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27883, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27884, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27885, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27886, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27887, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13249 + } + ] + }, + "minecraft:cut_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13468, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13469, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13470, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13471, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13472, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13473, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cut_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 580 + } + ] + }, + "minecraft:cut_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13414, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13415, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13416, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13417, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13418, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13419, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_banner": { + "definition": { + "type": "minecraft:banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13071, + "properties": { + "rotation": "0" + } + }, + { + "id": 13072, + "properties": { + "rotation": "1" + } + }, + { + "id": 13073, + "properties": { + "rotation": "2" + } + }, + { + "id": 13074, + "properties": { + "rotation": "3" + } + }, + { + "id": 13075, + "properties": { + "rotation": "4" + } + }, + { + "id": 13076, + "properties": { + "rotation": "5" + } + }, + { + "id": 13077, + "properties": { + "rotation": "6" + } + }, + { + "id": 13078, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13079, + "properties": { + "rotation": "8" + } + }, + { + "id": 13080, + "properties": { + "rotation": "9" + } + }, + { + "id": 13081, + "properties": { + "rotation": "10" + } + }, + { + "id": 13082, + "properties": { + "rotation": "11" + } + }, + { + "id": 13083, + "properties": { + "rotation": "12" + } + }, + { + "id": 13084, + "properties": { + "rotation": "13" + } + }, + { + "id": 13085, + "properties": { + "rotation": "14" + } + }, + { + "id": 13086, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:cyan_bed": { + "definition": { + "type": "minecraft:bed", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2075, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2076, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2077, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2078, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2079, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2080, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2081, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2082, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2083, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2084, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2085, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2086, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2087, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2088, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2089, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2090, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:cyan_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23256, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23257, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23258, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23259, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23260, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23261, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23262, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23263, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23264, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23265, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23266, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23267, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23268, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23269, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23270, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23271, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:cyan_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:cyan_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23388, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23389, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:cyan_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12905 + } + ] + }, + "minecraft:cyan_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15039 + } + ] + }, + "minecraft:cyan_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:cyan_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15055 + } + ] + }, + "minecraft:cyan_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15002, + "properties": { + "facing": "north" + } + }, + { + "id": 15003, + "properties": { + "facing": "south" + } + }, + { + "id": 15004, + "properties": { + "facing": "west" + } + }, + { + "id": 15005, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14924, + "properties": { + "facing": "north" + } + }, + { + "id": 14925, + "properties": { + "facing": "east" + } + }, + { + "id": 14926, + "properties": { + "facing": "south" + } + }, + { + "id": 14927, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14928, + "properties": { + "facing": "up" + } + }, + { + "id": 14929, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:cyan_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "cyan", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7107 + } + ] + }, + "minecraft:cyan_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "cyan", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11748, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11749, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11750, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11751, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11752, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11753, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11754, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11755, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11756, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11757, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11758, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11759, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11760, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11761, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11762, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11763, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11764, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11765, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11766, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11767, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11768, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11769, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11770, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11771, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11772, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11773, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11774, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11775, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11776, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11777, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11778, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11779, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:cyan_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11453 + } + ] + }, + "minecraft:cyan_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "cyan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13219, + "properties": { + "facing": "north" + } + }, + { + "id": 13220, + "properties": { + "facing": "south" + } + }, + { + "id": 13221, + "properties": { + "facing": "west" + } + }, + { + "id": 13222, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:cyan_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2302 + } + ] + }, + "minecraft:damaged_anvil": { + "definition": { + "type": "minecraft:anvil", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11203, + "properties": { + "facing": "north" + } + }, + { + "id": 11204, + "properties": { + "facing": "south" + } + }, + { + "id": 11205, + "properties": { + "facing": "west" + } + }, + { + "id": 11206, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2321 + } + ] + }, + "minecraft:dark_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "dark_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10819, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10820, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10821, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10822, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10823, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10824, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10825, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10826, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10827, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10828, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10829, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10830, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10831, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10832, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10833, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10834, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10835, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10836, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10837, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10838, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10839, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10840, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10841, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10842, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14380, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14381, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14382, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14383, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14384, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14385, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14386, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14387, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14388, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14389, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14390, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14391, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14392, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14393, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14394, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14395, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14396, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14397, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14398, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14399, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14400, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14401, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14402, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14403, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14404, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14405, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14406, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14407, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14408, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14409, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14410, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14411, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14412, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14413, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14414, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14415, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14416, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14417, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14418, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14419, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14420, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14421, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14422, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14423, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14424, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14425, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14426, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14427, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14428, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14429, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14430, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14431, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14432, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14433, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14434, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14435, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14436, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14437, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14438, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14439, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14440, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14441, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14442, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14443, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13932, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13933, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13934, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13935, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13936, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13937, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13938, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13939, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13940, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13941, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13942, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13943, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13944, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13945, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13946, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13947, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13948, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13949, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13950, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13951, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13952, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13953, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13954, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13955, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13956, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13957, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13958, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13959, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13960, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13961, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13962, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13963, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:dark_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13644, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13645, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13646, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13647, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13648, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13649, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13650, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13651, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13652, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13653, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13654, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13655, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13656, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13657, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13658, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13659, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13660, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13661, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13662, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13663, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13664, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13665, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13666, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13667, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13668, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13669, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13670, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13671, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13672, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13673, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13674, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13675, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6291, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6292, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6293, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6294, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6295, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6296, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6297, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6298, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6299, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6300, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6301, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6302, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6303, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6304, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6305, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6306, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6307, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6308, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6309, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6310, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6311, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6312, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6313, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6314, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6315, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6316, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6317, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6318, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6319, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6320, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6321, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6322, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6323, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6324, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6325, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6326, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6327, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6328, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6329, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6330, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6331, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6332, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6333, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6334, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6335, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6336, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6337, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6338, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6339, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6340, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6341, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6342, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6343, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6344, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6345, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6346, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6347, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6348, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6349, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6350, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6351, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6352, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6353, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6354, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 420, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 421, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 422, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 423, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 424, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 425, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 426, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 427, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 428, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 429, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 430, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 431, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 432, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 433, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 434, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 435, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 436, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 437, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 438, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 439, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 440, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 441, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 442, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 443, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 444, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 445, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 446, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 447, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 154, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 155, + "properties": { + "axis": "y" + } + }, + { + "id": 156, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21 + } + ] + }, + "minecraft:dark_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6873, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6874, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:dark_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "dark_oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 41, + "properties": { + "stage": "0" + } + }, + { + "id": 42, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:dark_oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2920, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2921, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2922, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2923, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2924, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2925, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2926, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2927, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2928, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2929, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2930, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2931, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2932, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2933, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2934, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2935, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2936, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2937, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2938, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2939, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2940, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2941, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2942, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2943, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2944, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2945, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2946, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2947, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2948, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2949, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2950, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2951, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2952, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2953, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2954, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2955, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2956, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2957, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2958, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2959, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2960, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2961, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2962, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2963, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2964, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2965, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2966, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2967, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2968, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2969, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2970, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2971, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2972, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2973, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2974, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2975, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2976, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2977, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2978, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2979, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2980, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2981, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2982, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2983, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5527, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5528, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5529, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5530, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5531, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5532, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5533, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5534, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5535, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5536, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5537, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5538, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5539, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5540, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5541, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5542, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5543, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5544, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5545, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5546, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5547, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5548, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5549, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5550, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5551, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5552, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5553, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5554, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5555, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5556, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5557, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5558, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13366, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13367, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13368, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13369, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13370, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13371, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12132, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12133, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12134, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12135, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12136, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12137, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12138, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12139, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12140, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12141, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12142, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12143, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12144, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12145, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12146, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12147, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12148, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12149, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12150, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12151, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12152, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12153, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12154, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12155, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12156, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12157, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12158, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12159, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12160, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12161, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12162, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12163, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12164, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12165, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12166, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12167, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12168, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12169, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12170, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12171, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12172, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12173, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12174, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12175, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12176, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12177, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12178, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12179, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12180, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12181, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12182, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12183, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12184, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12185, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12186, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12187, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12188, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12189, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12190, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12191, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12192, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12193, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12194, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12195, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12196, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12197, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12198, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12199, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12200, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12201, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12202, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12203, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12204, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12205, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12206, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12207, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12208, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12209, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12210, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12211, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "dark_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7498, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7499, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7500, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7501, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7502, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7503, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7504, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7505, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7506, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7507, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7508, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7509, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7510, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7511, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7512, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7513, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7514, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7515, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7516, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7517, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7518, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7519, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7520, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7521, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7522, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7523, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7524, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7525, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7526, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7527, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7528, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7529, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7530, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7531, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7532, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7533, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7534, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7535, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7536, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7537, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7538, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7539, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7540, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7541, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7542, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7543, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7544, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7545, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7546, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7547, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7548, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7549, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7550, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7551, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7552, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7553, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7554, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7555, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7556, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7557, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7558, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7559, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7560, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7561, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6723, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6724, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6725, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6726, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6727, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6728, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6729, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6730, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "dark_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5875, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5876, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5877, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5878, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5879, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5880, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5881, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5882, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 219, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 220, + "properties": { + "axis": "y" + } + }, + { + "id": 221, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:dark_prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12633 + } + ] + }, + "minecraft:dark_prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12886, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12887, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12888, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12889, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12890, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12891, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dark_prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:dark_prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12794, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12795, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12796, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12797, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12798, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12799, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12800, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12801, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12802, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12803, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12804, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12805, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12806, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12807, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12808, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12809, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12810, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12811, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12812, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12813, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12814, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12815, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12816, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12817, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12818, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12819, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12820, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12821, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12822, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12823, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12824, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12825, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12826, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12827, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12828, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12829, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12830, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12831, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12832, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12833, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12834, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12835, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12836, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12837, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12838, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12839, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12840, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12841, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12842, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12843, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12844, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12845, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12846, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12847, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12848, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12849, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12850, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12851, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12852, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12853, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12854, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12855, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12856, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12857, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12858, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12859, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12860, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12861, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12862, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12863, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12864, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12865, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12866, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12867, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12868, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12869, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12870, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12871, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12872, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12873, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:daylight_detector": { + "definition": { + "type": "minecraft:daylight_detector", + "properties": {} + }, + "properties": { + "inverted": [ + "true", + "false" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11279, + "properties": { + "inverted": "true", + "power": "0" + } + }, + { + "id": 11280, + "properties": { + "inverted": "true", + "power": "1" + } + }, + { + "id": 11281, + "properties": { + "inverted": "true", + "power": "2" + } + }, + { + "id": 11282, + "properties": { + "inverted": "true", + "power": "3" + } + }, + { + "id": 11283, + "properties": { + "inverted": "true", + "power": "4" + } + }, + { + "id": 11284, + "properties": { + "inverted": "true", + "power": "5" + } + }, + { + "id": 11285, + "properties": { + "inverted": "true", + "power": "6" + } + }, + { + "id": 11286, + "properties": { + "inverted": "true", + "power": "7" + } + }, + { + "id": 11287, + "properties": { + "inverted": "true", + "power": "8" + } + }, + { + "id": 11288, + "properties": { + "inverted": "true", + "power": "9" + } + }, + { + "id": 11289, + "properties": { + "inverted": "true", + "power": "10" + } + }, + { + "id": 11290, + "properties": { + "inverted": "true", + "power": "11" + } + }, + { + "id": 11291, + "properties": { + "inverted": "true", + "power": "12" + } + }, + { + "id": 11292, + "properties": { + "inverted": "true", + "power": "13" + } + }, + { + "id": 11293, + "properties": { + "inverted": "true", + "power": "14" + } + }, + { + "id": 11294, + "properties": { + "inverted": "true", + "power": "15" + } + }, + { + "default": true, + "id": 11295, + "properties": { + "inverted": "false", + "power": "0" + } + }, + { + "id": 11296, + "properties": { + "inverted": "false", + "power": "1" + } + }, + { + "id": 11297, + "properties": { + "inverted": "false", + "power": "2" + } + }, + { + "id": 11298, + "properties": { + "inverted": "false", + "power": "3" + } + }, + { + "id": 11299, + "properties": { + "inverted": "false", + "power": "4" + } + }, + { + "id": 11300, + "properties": { + "inverted": "false", + "power": "5" + } + }, + { + "id": 11301, + "properties": { + "inverted": "false", + "power": "6" + } + }, + { + "id": 11302, + "properties": { + "inverted": "false", + "power": "7" + } + }, + { + "id": 11303, + "properties": { + "inverted": "false", + "power": "8" + } + }, + { + "id": 11304, + "properties": { + "inverted": "false", + "power": "9" + } + }, + { + "id": 11305, + "properties": { + "inverted": "false", + "power": "10" + } + }, + { + "id": 11306, + "properties": { + "inverted": "false", + "power": "11" + } + }, + { + "id": 11307, + "properties": { + "inverted": "false", + "power": "12" + } + }, + { + "id": 11308, + "properties": { + "inverted": "false", + "power": "13" + } + }, + { + "id": 11309, + "properties": { + "inverted": "false", + "power": "14" + } + }, + { + "id": 11310, + "properties": { + "inverted": "false", + "power": "15" + } + } + ] + }, + "minecraft:dead_brain_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15149, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15150, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15138 + } + ] + }, + "minecraft:dead_brain_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15169, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15170, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_brain_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15195, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15196, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15197, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15198, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15199, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15200, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15201, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15202, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15151, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15152, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15139 + } + ] + }, + "minecraft:dead_bubble_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15171, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15172, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bubble_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15203, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15204, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15205, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15206, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15207, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15208, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15209, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15210, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_bush": { + "definition": { + "type": "minecraft:dry_vegetation", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2250 + } + ] + }, + "minecraft:dead_fire_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15153, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15154, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15140 + } + ] + }, + "minecraft:dead_fire_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15173, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15174, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_fire_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15211, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15212, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15213, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15214, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15215, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15216, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15217, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15218, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15155, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15156, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15141 + } + ] + }, + "minecraft:dead_horn_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15175, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15176, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_horn_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15219, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15220, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15221, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15222, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15223, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15224, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15225, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15226, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral": { + "definition": { + "type": "minecraft:base_coral_plant", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15147, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15148, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15137 + } + ] + }, + "minecraft:dead_tube_coral_fan": { + "definition": { + "type": "minecraft:base_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15167, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15168, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:dead_tube_coral_wall_fan": { + "definition": { + "type": "minecraft:base_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15187, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15188, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15189, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15190, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15191, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15192, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15193, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15194, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:decorated_pot": { + "definition": { + "type": "minecraft:decorated_pot", + "properties": {} + }, + "properties": { + "cracked": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 32086, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 32087, + "properties": { + "cracked": "true", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 32088, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 32089, + "properties": { + "cracked": "true", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 32090, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 32091, + "properties": { + "cracked": "true", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 32092, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 32093, + "properties": { + "cracked": "true", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 32094, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 32095, + "properties": { + "cracked": "false", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 32096, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 32097, + "properties": { + "cracked": "false", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 32098, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 32099, + "properties": { + "cracked": "false", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 32100, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 32101, + "properties": { + "cracked": "false", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 30416, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 30417, + "properties": { + "axis": "y" + } + }, + { + "id": 30418, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:deepslate_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 31733, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 31734, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 31735, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 31736, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 31737, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 31738, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 31653, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31654, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31655, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31656, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31657, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31658, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31659, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31660, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31661, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31662, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31663, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 31664, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31665, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31666, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31667, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31668, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31669, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31670, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31671, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31672, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31673, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31674, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31675, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31676, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31677, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31678, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31679, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31680, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31681, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31682, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31683, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31684, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31685, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31686, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31687, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31688, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31689, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31690, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31691, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31692, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31693, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31694, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31695, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31696, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31697, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31698, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31699, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31700, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31701, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31702, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31703, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31704, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31705, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31706, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31707, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31708, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31709, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31710, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31711, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31712, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31713, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31714, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31715, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31716, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31717, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31718, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31719, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31720, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31721, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31722, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31723, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31724, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31725, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31726, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31727, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31728, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31729, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31730, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31731, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31732, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 31739, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31740, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31741, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 31742, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31743, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31744, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31745, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31746, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31747, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31748, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31749, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31750, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31751, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31752, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31753, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31754, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31755, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31756, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31757, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31758, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31759, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31760, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31761, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31762, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31763, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31764, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31765, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31766, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31767, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31768, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31769, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31770, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31771, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31772, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31773, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31774, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31775, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31776, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31777, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31778, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31779, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31780, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31781, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31782, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31783, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31784, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31785, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31786, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31787, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31788, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31789, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31790, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31791, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31792, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31793, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31794, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31795, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31796, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31797, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31798, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31799, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31800, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31801, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31802, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31803, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31804, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31805, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31806, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31807, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31808, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31809, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31810, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31811, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31812, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31813, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31814, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31815, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31816, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31817, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31818, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31819, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31820, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31821, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31822, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31823, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31824, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31825, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31826, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31827, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31828, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31829, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31830, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31831, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31832, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31833, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31834, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31835, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31836, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31837, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31838, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31839, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31840, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31841, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31842, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31843, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31844, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31845, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31846, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31847, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31848, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31849, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31850, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31851, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31852, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31853, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31854, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31855, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31856, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31857, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31858, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31859, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31860, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31861, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31862, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31863, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31864, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31865, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31866, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31867, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31868, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31869, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31870, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31871, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31872, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31873, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31874, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31875, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31876, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31877, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31878, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31879, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31880, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31881, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31882, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31883, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31884, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31885, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31886, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31887, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31888, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31889, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31890, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31891, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31892, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31893, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31894, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31895, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31896, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31897, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31898, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31899, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31900, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31901, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31902, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31903, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31904, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31905, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31906, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31907, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31908, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31909, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31910, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31911, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31912, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31913, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31914, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31915, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31916, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31917, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31918, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31919, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31920, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31921, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31922, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31923, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31924, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31925, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31926, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31927, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31928, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31929, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31930, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31931, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31932, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31933, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31934, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31935, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31936, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31937, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31938, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31939, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31940, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31941, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31942, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31943, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31944, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31945, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31946, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31947, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31948, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31949, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31950, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31951, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31952, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31953, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31954, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31955, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31956, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31957, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31958, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31959, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31960, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31961, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31962, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31963, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31964, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31965, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31966, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31967, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31968, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31969, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31970, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31971, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31972, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31973, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31974, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31975, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31976, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31977, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31978, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31979, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31980, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31981, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31982, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31983, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31984, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31985, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31986, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31987, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31988, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31989, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31990, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31991, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31992, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31993, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31994, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31995, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31996, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31997, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31998, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31999, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32000, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32001, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32002, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32003, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32004, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32005, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32006, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32007, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32008, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32009, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32010, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32011, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32012, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32013, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32014, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32015, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32016, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32017, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32018, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32019, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32020, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32021, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32022, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32023, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32024, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32025, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32026, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32027, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32028, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32029, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32030, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32031, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32032, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32033, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32034, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32035, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32036, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32037, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32038, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32039, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32040, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32041, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32042, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32043, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32044, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32045, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32046, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32047, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32048, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32049, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32050, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32051, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32052, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32053, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32054, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32055, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32056, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 32057, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 32058, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 32059, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 32060, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 32061, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 32062, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 31652 + } + ] + }, + "minecraft:deepslate_coal_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 2, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 134 + } + ] + }, + "minecraft:deepslate_copper_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27791 + } + ] + }, + "minecraft:deepslate_diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5308 + } + ] + }, + "minecraft:deepslate_emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9574 + } + ] + }, + "minecraft:deepslate_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 130 + } + ] + }, + "minecraft:deepslate_iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 132 + } + ] + }, + "minecraft:deepslate_lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 564 + } + ] + }, + "minecraft:deepslate_redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6883, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 6884, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:deepslate_tile_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 31322, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 31323, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 31324, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 31325, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 31326, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 31327, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:deepslate_tiles" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 31242, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31243, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31244, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31245, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31246, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31247, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31248, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31249, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31250, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31251, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31252, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 31253, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31254, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31255, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31256, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31257, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31258, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31259, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31260, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31261, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31262, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31263, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31264, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31265, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31266, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31267, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31268, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31269, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31270, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31271, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31272, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31273, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31274, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31275, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31276, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31277, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31278, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31279, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31280, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31281, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31282, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31283, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31284, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31285, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31286, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31287, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31288, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31289, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31290, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31291, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31292, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31293, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31294, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31295, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31296, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31297, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31298, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31299, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31300, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31301, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31302, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31303, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31304, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31305, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31306, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31307, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31308, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31309, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31310, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31311, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 31312, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 31313, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 31314, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 31315, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 31316, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 31317, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 31318, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 31319, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 31320, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 31321, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:deepslate_tile_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 31328, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31329, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31330, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 31331, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31332, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31333, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31334, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31335, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31336, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31337, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31338, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31339, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31340, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31341, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31342, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31343, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31344, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31345, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31346, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31347, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31348, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31349, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31350, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31351, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31352, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31353, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31354, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31355, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31356, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31357, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31358, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31359, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31360, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31361, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31362, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31363, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31364, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31365, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31366, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31367, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31368, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31369, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31370, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31371, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31372, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31373, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31374, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31375, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31376, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31377, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31378, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31379, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31380, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31381, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31382, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31383, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31384, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31385, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31386, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31387, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31388, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31389, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31390, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31391, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31392, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31393, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31394, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31395, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31396, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31397, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31398, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31399, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31400, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31401, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31402, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31403, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31404, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31405, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31406, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31407, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31408, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31409, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31410, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31411, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31412, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31413, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31414, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31415, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31416, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31417, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31418, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31419, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31420, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31421, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31422, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31423, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31424, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31425, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31426, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31427, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31428, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31429, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31430, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31431, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31432, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31433, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31434, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31435, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31436, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31437, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31438, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31439, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31440, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31441, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31442, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31443, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31444, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31445, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31446, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31447, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31448, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31449, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31450, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31451, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31452, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31453, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31454, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31455, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31456, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31457, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31458, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31459, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31460, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31461, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31462, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31463, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31464, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31465, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31466, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31467, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31468, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31469, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31470, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31471, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31472, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31473, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31474, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31475, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31476, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31477, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31478, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31479, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31480, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31481, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31482, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31483, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31484, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31485, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31486, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31487, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31488, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31489, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31490, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31491, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31492, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31493, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31494, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31495, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31496, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31497, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31498, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31499, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31500, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31501, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31502, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31503, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31504, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31505, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31506, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31507, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31508, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31509, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31510, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31511, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31512, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31513, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31514, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31515, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31516, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31517, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31518, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31519, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31520, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31521, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31522, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31523, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31524, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31525, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31526, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31527, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31528, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31529, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31530, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31531, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31532, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31533, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31534, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31535, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31536, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31537, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31538, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31539, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31540, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31541, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31542, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31543, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31544, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31545, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31546, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31547, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31548, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31549, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31550, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31551, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31552, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31553, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31554, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31555, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31556, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31557, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31558, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31559, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31560, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31561, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31562, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31563, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31564, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31565, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31566, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31567, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31568, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31569, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31570, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31571, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31572, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31573, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31574, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31575, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31576, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31577, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31578, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31579, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31580, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31581, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31582, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31583, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31584, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31585, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31586, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31587, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31588, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31589, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31590, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31591, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31592, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31593, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31594, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31595, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31596, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31597, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31598, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31599, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31600, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31601, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31602, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31603, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31604, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31605, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31606, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31607, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31608, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31609, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31610, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31611, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31612, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31613, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31614, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31615, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31616, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31617, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31618, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31619, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31620, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31621, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31622, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31623, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31624, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31625, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31626, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31627, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31628, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31629, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31630, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31631, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31632, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31633, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31634, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31635, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31636, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31637, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31638, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31639, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31640, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31641, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31642, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31643, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31644, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31645, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31646, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31647, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31648, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31649, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31650, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31651, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:deepslate_tiles": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 31241 + } + ] + }, + "minecraft:detector_rail": { + "definition": { + "type": "minecraft:detector_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2211, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 2212, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2213, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2214, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2215, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2216, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2217, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2218, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2219, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2220, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2221, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2222, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 2223, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2224, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2225, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2226, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2227, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2228, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2229, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2230, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2231, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2232, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2233, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2234, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diamond_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5309 + } + ] + }, + "minecraft:diamond_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5307 + } + ] + }, + "minecraft:diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 4 + } + ] + }, + "minecraft:diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16488, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16489, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16490, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16491, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16492, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16493, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16336, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16337, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16338, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16339, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16340, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16341, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16342, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16343, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16344, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16345, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16346, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16347, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16348, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16349, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16350, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16351, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16352, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16353, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16354, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16356, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16357, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16358, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16359, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16360, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16361, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16362, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16363, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16364, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16365, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16367, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16368, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16369, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16370, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16371, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16372, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16373, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16374, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16376, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16377, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16378, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16379, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16380, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16381, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16382, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16383, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16384, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16385, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16387, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16388, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16389, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16390, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16391, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16392, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16393, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16394, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16396, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16397, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16398, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16399, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16400, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16401, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16402, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16403, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16404, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16405, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16407, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16408, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16409, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16410, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16411, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16412, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16413, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16414, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:diorite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20382, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20383, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20384, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20385, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20386, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20387, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20388, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20389, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20390, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20391, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20392, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20393, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20394, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20395, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20396, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20397, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20398, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20399, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20400, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20401, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20402, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20403, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20404, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20405, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20406, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20407, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20408, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20409, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20410, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20411, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20412, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20413, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20414, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20415, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20416, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20417, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20418, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20419, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20420, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20421, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20422, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20423, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20424, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20425, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20426, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20427, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20428, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20429, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20430, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20431, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20432, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20433, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20434, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20435, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20436, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20437, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20438, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20439, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20440, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20441, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20442, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20443, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20444, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20445, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20446, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20447, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20448, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20449, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20450, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20451, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20452, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20453, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20454, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20455, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20456, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20457, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20458, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20459, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20460, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20461, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20462, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20463, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20464, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20465, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20466, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20467, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20468, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20469, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20470, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20471, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20472, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20473, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20474, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20475, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20476, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20477, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20478, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20479, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20480, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20481, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20482, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20483, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20484, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20485, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20486, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20487, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20488, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20489, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20490, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20491, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20492, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20493, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20494, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20495, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20496, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20497, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20498, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20499, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20500, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20501, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20502, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20503, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20504, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20505, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20506, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20507, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20508, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20509, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20510, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20511, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20512, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20513, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20514, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20515, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20516, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20517, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20518, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20519, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20520, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20521, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20522, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20523, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20524, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20525, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20526, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20527, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20528, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20529, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20530, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20531, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20532, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20533, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20534, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20535, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20536, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20537, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20538, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20539, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20540, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20541, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20542, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20543, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20544, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20545, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20546, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20547, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20548, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20549, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20550, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20551, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20552, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20553, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20554, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20555, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20556, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20557, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20558, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20559, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20560, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20561, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20562, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20563, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20564, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20565, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20566, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20567, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20568, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20569, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20570, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20571, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20572, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20573, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20574, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20575, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20576, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20577, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20578, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20579, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20580, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20581, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20582, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20583, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20584, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20585, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20586, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20587, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20588, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20589, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20590, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20591, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20592, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20593, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20594, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20595, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20596, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20597, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20598, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20599, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20600, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20601, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20602, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20603, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20604, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20605, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20606, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20607, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20608, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20609, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20610, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20611, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20612, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20613, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20614, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20615, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20616, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20617, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20618, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20619, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20620, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20621, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20622, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20623, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20624, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20625, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20626, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20627, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20628, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20629, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20630, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20631, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20632, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20633, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20634, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20635, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20636, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20637, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20638, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20639, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20640, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20641, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20642, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20643, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20644, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20645, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20646, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20647, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20648, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20649, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20650, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20651, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20652, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20653, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20654, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20655, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20656, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20657, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20658, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20659, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20660, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20661, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20662, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20663, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20664, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20665, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20666, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20667, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20668, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20669, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20670, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20671, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20672, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20673, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20674, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20675, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20676, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20677, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20678, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20679, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20680, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20681, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20682, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20683, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20684, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20685, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20686, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20687, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20688, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20689, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20690, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20691, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20692, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20693, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20694, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20695, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20696, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20697, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20698, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20699, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20700, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20701, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20702, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20703, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20704, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20705, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:dirt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10 + } + ] + }, + "minecraft:dirt_path": { + "definition": { + "type": "minecraft:dirt_path", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14815 + } + ] + }, + "minecraft:dispenser": { + "definition": { + "type": "minecraft:dispenser", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 566, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 567, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 568, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 569, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 570, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 571, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 572, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 573, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 574, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 575, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 576, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 577, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:dragon_egg": { + "definition": { + "type": "minecraft:dragon_egg", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9478 + } + ] + }, + "minecraft:dragon_head": { + "definition": { + "type": "minecraft:skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11115, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11116, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11117, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11118, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11119, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11120, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11121, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11122, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11123, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11124, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11125, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11126, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11127, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11128, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11129, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11130, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11131, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11132, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11133, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11134, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11135, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11136, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11137, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11138, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11139, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11140, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11141, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11142, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11143, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11144, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11145, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11146, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:dragon_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "dragon", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11147, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11148, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11149, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11150, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11151, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11152, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11153, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11154, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:dried_ghast": { + "definition": { + "type": "minecraft:dried_ghast", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "hydration": [ + "0", + "1", + "2", + "3" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15105, + "properties": { + "facing": "north", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15106, + "properties": { + "facing": "north", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15107, + "properties": { + "facing": "north", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15108, + "properties": { + "facing": "north", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15109, + "properties": { + "facing": "north", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15110, + "properties": { + "facing": "north", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15111, + "properties": { + "facing": "north", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15112, + "properties": { + "facing": "north", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15113, + "properties": { + "facing": "south", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15114, + "properties": { + "facing": "south", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15115, + "properties": { + "facing": "south", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15116, + "properties": { + "facing": "south", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15117, + "properties": { + "facing": "south", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15118, + "properties": { + "facing": "south", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15119, + "properties": { + "facing": "south", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15120, + "properties": { + "facing": "south", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15121, + "properties": { + "facing": "west", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15122, + "properties": { + "facing": "west", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15123, + "properties": { + "facing": "west", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15124, + "properties": { + "facing": "west", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15125, + "properties": { + "facing": "west", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15126, + "properties": { + "facing": "west", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15127, + "properties": { + "facing": "west", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15128, + "properties": { + "facing": "west", + "hydration": "3", + "waterlogged": "false" + } + }, + { + "id": 15129, + "properties": { + "facing": "east", + "hydration": "0", + "waterlogged": "true" + } + }, + { + "id": 15130, + "properties": { + "facing": "east", + "hydration": "0", + "waterlogged": "false" + } + }, + { + "id": 15131, + "properties": { + "facing": "east", + "hydration": "1", + "waterlogged": "true" + } + }, + { + "id": 15132, + "properties": { + "facing": "east", + "hydration": "1", + "waterlogged": "false" + } + }, + { + "id": 15133, + "properties": { + "facing": "east", + "hydration": "2", + "waterlogged": "true" + } + }, + { + "id": 15134, + "properties": { + "facing": "east", + "hydration": "2", + "waterlogged": "false" + } + }, + { + "id": 15135, + "properties": { + "facing": "east", + "hydration": "3", + "waterlogged": "true" + } + }, + { + "id": 15136, + "properties": { + "facing": "east", + "hydration": "3", + "waterlogged": "false" + } + } + ] + }, + "minecraft:dried_kelp_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15089 + } + ] + }, + "minecraft:dripstone_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30208 + } + ] + }, + "minecraft:dropper": { + "definition": { + "type": "minecraft:dropper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "triggered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11432, + "properties": { + "facing": "north", + "triggered": "true" + } + }, + { + "default": true, + "id": 11433, + "properties": { + "facing": "north", + "triggered": "false" + } + }, + { + "id": 11434, + "properties": { + "facing": "east", + "triggered": "true" + } + }, + { + "id": 11435, + "properties": { + "facing": "east", + "triggered": "false" + } + }, + { + "id": 11436, + "properties": { + "facing": "south", + "triggered": "true" + } + }, + { + "id": 11437, + "properties": { + "facing": "south", + "triggered": "false" + } + }, + { + "id": 11438, + "properties": { + "facing": "west", + "triggered": "true" + } + }, + { + "id": 11439, + "properties": { + "facing": "west", + "triggered": "false" + } + }, + { + "id": 11440, + "properties": { + "facing": "up", + "triggered": "true" + } + }, + { + "id": 11441, + "properties": { + "facing": "up", + "triggered": "false" + } + }, + { + "id": 11442, + "properties": { + "facing": "down", + "triggered": "true" + } + }, + { + "id": 11443, + "properties": { + "facing": "down", + "triggered": "false" + } + } + ] + }, + "minecraft:emerald_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9727 + } + ] + }, + "minecraft:emerald_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 7, + "min_inclusive": 3 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9573 + } + ] + }, + "minecraft:enchanting_table": { + "definition": { + "type": "minecraft:enchantment_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9451 + } + ] + }, + "minecraft:end_gateway": { + "definition": { + "type": "minecraft:end_gateway", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14816 + } + ] + }, + "minecraft:end_portal": { + "definition": { + "type": "minecraft:end_portal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9468 + } + ] + }, + "minecraft:end_portal_frame": { + "definition": { + "type": "minecraft:end_portal_frame", + "properties": {} + }, + "properties": { + "eye": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 9469, + "properties": { + "eye": "true", + "facing": "north" + } + }, + { + "id": 9470, + "properties": { + "eye": "true", + "facing": "south" + } + }, + { + "id": 9471, + "properties": { + "eye": "true", + "facing": "west" + } + }, + { + "id": 9472, + "properties": { + "eye": "true", + "facing": "east" + } + }, + { + "default": true, + "id": 9473, + "properties": { + "eye": "false", + "facing": "north" + } + }, + { + "id": 9474, + "properties": { + "eye": "false", + "facing": "south" + } + }, + { + "id": 9475, + "properties": { + "eye": "false", + "facing": "west" + } + }, + { + "id": 9476, + "properties": { + "eye": "false", + "facing": "east" + } + } + ] + }, + "minecraft:end_rod": { + "definition": { + "type": "minecraft:end_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14636, + "properties": { + "facing": "north" + } + }, + { + "id": 14637, + "properties": { + "facing": "east" + } + }, + { + "id": 14638, + "properties": { + "facing": "south" + } + }, + { + "id": 14639, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14640, + "properties": { + "facing": "up" + } + }, + { + "id": 14641, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:end_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9477 + } + ] + }, + "minecraft:end_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16446, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16447, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16448, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16449, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16450, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16451, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:end_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15696, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15697, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15698, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15699, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15700, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15701, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15702, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15703, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15704, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15705, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15706, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15707, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15708, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15709, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15710, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15711, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15712, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15713, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15714, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15715, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15716, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15717, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15718, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15719, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15720, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15721, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15722, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15723, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15724, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15725, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15726, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15727, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15728, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15729, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15730, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15731, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15732, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15733, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15734, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15735, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15736, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15737, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15738, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15739, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15740, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15741, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15742, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15743, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15744, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15745, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15746, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15747, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15748, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15749, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15750, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15751, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15752, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15753, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15754, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15755, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15756, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15757, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15758, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15759, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15760, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15761, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15762, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15763, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15764, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15765, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15766, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15767, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15768, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15769, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15770, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15772, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15773, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15774, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:end_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 20058, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20059, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20060, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 20061, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20062, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20063, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20064, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20065, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20066, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20067, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20068, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20069, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20070, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20071, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20072, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20073, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20074, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20075, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20076, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20077, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20078, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20079, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20080, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20081, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20082, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20083, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20084, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20085, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20086, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20087, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20088, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20089, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20090, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20091, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20092, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20093, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20094, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20095, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20096, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20097, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20098, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20099, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20100, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20101, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20102, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20103, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20104, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20105, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20106, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20107, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20108, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20109, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20110, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20111, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20112, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20113, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20114, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20115, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20116, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20117, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20118, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20119, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20120, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20121, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20122, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20123, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20124, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20125, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20126, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20127, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20128, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20129, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20130, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20131, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20132, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20133, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20134, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20135, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20136, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20137, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20138, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20139, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20140, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20141, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20142, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20143, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20144, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20145, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20146, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20147, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20148, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20149, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20150, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20151, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20152, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20153, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20154, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20155, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20156, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20157, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20158, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20159, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20160, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20161, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20162, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20163, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20164, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20165, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20166, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20167, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20168, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20169, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20170, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20171, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20172, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20173, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20174, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20175, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20176, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20177, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20178, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20179, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20180, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20181, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20182, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20183, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20184, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20185, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20186, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20187, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20188, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20189, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20190, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20191, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20192, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20193, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20194, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20195, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20196, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20197, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20198, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20199, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20200, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20201, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20202, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20203, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20204, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20205, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20206, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20207, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20208, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20209, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20210, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20211, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20212, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20213, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20214, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20215, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20216, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20217, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20218, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20219, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20220, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20221, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20222, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20223, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20224, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20225, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20226, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20227, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20228, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20229, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20230, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20231, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20232, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20233, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20234, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20235, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20236, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20237, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20238, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20239, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20240, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20241, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20242, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20243, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20244, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20245, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20246, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20247, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20248, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20249, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20250, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20251, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20252, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20253, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20254, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20255, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20256, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20257, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20258, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20259, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20260, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20261, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20262, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20263, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20264, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20265, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20266, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20267, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20268, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20269, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20270, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20271, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20272, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20273, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20274, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20275, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20276, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20277, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20278, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20279, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20280, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20281, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20282, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20283, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20284, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20285, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20286, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20287, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20288, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20289, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20290, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20291, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20292, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20293, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20294, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20295, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20296, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20297, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20298, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20299, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20300, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20301, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20302, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20303, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20304, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20305, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20306, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20307, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20308, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20309, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20310, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20311, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20312, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20313, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20314, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20315, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20316, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20317, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20318, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20319, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20320, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20321, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20322, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20323, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20324, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20325, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20326, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20327, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20328, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20329, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20330, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20331, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20332, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20333, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20334, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20335, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20336, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20337, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20338, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20339, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20340, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20341, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20342, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20343, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20344, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20345, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20346, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20347, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20348, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20349, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20350, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20351, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20352, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20353, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20354, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20355, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20356, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20357, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20358, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20359, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20360, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20361, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20362, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20363, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20364, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20365, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20366, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20367, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20368, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20369, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20370, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20371, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20372, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20373, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20374, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20375, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20376, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20377, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20378, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20379, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20380, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20381, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:end_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14796 + } + ] + }, + "minecraft:ender_chest": { + "definition": { + "type": "minecraft:ender_chest", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9575, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9576, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 9577, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 9578, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 9579, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 9580, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 9581, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 9582, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 27801 + } + ] + }, + "minecraft:exposed_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 27783 + } + ] + }, + "minecraft:exposed_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8022, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8023, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8024, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8025, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8026, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8027, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8028, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8029, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8030, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8031, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8032, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8033, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8034, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8035, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8036, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8037, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8038, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8039, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8040, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8041, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8042, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8043, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8044, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8045, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8046, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8047, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8048, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8049, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8050, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8051, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8052, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8053, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:exposed_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29540, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29541, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29542, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29543, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8258, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8259, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8260, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8261, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8262, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8263, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29592, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29593, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29594, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29595, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29596, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29597, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29598, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29599, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29600, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29601, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29602, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29603, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29604, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29605, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29606, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29607, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29608, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29609, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29610, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29611, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29612, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29613, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29614, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29615, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28560, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28561, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28562, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28563, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28564, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28565, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28566, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28567, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28568, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28569, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28570, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28571, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28572, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28573, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28574, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28575, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28576, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28577, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28578, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28579, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28580, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28581, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28582, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28583, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28584, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28585, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28586, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28587, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28588, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28589, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28590, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28591, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28592, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28593, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28594, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28595, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28596, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28597, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28598, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28599, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28600, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28601, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28602, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28603, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28604, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28605, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28606, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28607, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28608, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28609, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28610, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28611, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28612, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28613, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28614, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28615, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28616, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28617, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28618, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28619, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28620, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28621, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28622, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28623, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:exposed_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29792, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29793, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29794, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29795, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29796, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29797, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29798, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29799, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29800, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29801, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29802, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29803, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29804, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29805, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29806, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29807, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29808, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29809, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29810, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29811, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29812, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29813, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29814, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29815, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29816, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29817, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29818, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29819, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29820, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29821, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29822, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29823, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29522, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29523, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20849, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20850, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20851, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20852, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trapdoor", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29072, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29073, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29074, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29075, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29076, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29077, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29078, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29079, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29080, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29081, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29082, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29083, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29084, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29085, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29086, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29087, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29088, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29089, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29090, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29091, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29092, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29093, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29094, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29095, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29096, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29097, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29098, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29099, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29100, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29101, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29102, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29103, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29104, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29105, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29106, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29107, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29108, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29109, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29110, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29111, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29112, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29113, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29114, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29115, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29116, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29117, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29118, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29119, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29120, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29121, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29122, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29123, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29124, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29125, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29126, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29127, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29128, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29129, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29130, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29131, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29132, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29133, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29134, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29135, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "exposed" + }, + "states": [ + { + "default": true, + "id": 27793 + } + ] + }, + "minecraft:exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28454, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28455, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28456, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28457, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28458, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28459, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:exposed_cut_copper" + }, + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27888, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27889, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27890, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27891, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27892, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27893, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27894, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27895, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27896, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27897, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27901, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27902, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27903, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27904, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27905, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27906, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27907, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27908, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27909, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27910, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27911, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27912, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27913, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27914, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27915, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27916, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27917, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27921, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27922, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27923, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27924, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27925, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27926, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27927, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27928, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27929, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27930, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27931, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27932, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27933, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27934, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27935, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27936, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27937, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27941, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27942, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27943, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27944, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27945, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27946, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27947, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27948, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27949, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27950, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27951, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27952, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27953, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27954, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27955, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27956, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27957, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27961, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27962, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27963, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27964, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27965, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27966, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27967, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:exposed_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30040, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30041, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30042, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30043, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30044, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30045, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30046, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30047, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30048, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30049, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30050, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30051, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30052, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30053, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30054, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30055, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30056, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30057, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30058, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30059, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30060, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30061, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30062, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30063, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:farmland": { + "definition": { + "type": "minecraft:farmland", + "properties": {} + }, + "properties": { + "moisture": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5319, + "properties": { + "moisture": "0" + } + }, + { + "id": 5320, + "properties": { + "moisture": "1" + } + }, + { + "id": 5321, + "properties": { + "moisture": "2" + } + }, + { + "id": 5322, + "properties": { + "moisture": "3" + } + }, + { + "id": 5323, + "properties": { + "moisture": "4" + } + }, + { + "id": 5324, + "properties": { + "moisture": "5" + } + }, + { + "id": 5325, + "properties": { + "moisture": "6" + } + }, + { + "id": 5326, + "properties": { + "moisture": "7" + } + } + ] + }, + "minecraft:fern": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2249 + } + ] + }, + "minecraft:fire": { + "definition": { + "type": "minecraft:fire", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3375, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3376, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3377, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3378, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3379, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3380, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3381, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3382, + "properties": { + "age": "0", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3383, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3384, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3385, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3386, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3387, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3388, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3389, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3390, + "properties": { + "age": "0", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3391, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3392, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3393, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3394, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3395, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3396, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3397, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3398, + "properties": { + "age": "0", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3399, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3400, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3401, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3402, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3403, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3404, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3405, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 3406, + "properties": { + "age": "0", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3407, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3408, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3409, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3410, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3411, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3412, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3413, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3414, + "properties": { + "age": "1", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3415, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3416, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3417, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3418, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3419, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3420, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3421, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3422, + "properties": { + "age": "1", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3423, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3424, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3425, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3426, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3427, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3428, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3429, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3430, + "properties": { + "age": "1", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3431, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3432, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3433, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3434, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3435, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3436, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3437, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3438, + "properties": { + "age": "1", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3439, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3440, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3441, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3442, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3443, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3444, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3445, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3446, + "properties": { + "age": "2", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3447, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3448, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3449, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3450, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3451, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3452, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3453, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3454, + "properties": { + "age": "2", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3455, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3456, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3457, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3458, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3459, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3460, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3461, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3462, + "properties": { + "age": "2", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3463, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3464, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3465, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3466, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3467, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3468, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3469, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3470, + "properties": { + "age": "2", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3471, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3472, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3473, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3474, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3475, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3476, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3477, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3478, + "properties": { + "age": "3", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3479, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3480, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3481, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3482, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3483, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3484, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3485, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3486, + "properties": { + "age": "3", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3487, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3488, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3489, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3490, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3491, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3492, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3493, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3494, + "properties": { + "age": "3", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3495, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3496, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3497, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3498, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3499, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3500, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3501, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3502, + "properties": { + "age": "3", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3503, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3504, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3505, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3506, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3507, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3508, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3509, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3510, + "properties": { + "age": "4", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3511, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3512, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3513, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3514, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3515, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3516, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3517, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3518, + "properties": { + "age": "4", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3519, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3520, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3521, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3522, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3523, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3524, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3525, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3526, + "properties": { + "age": "4", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3527, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3528, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3529, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3530, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3531, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3532, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3533, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3534, + "properties": { + "age": "4", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3535, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3536, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3537, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3538, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3539, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3540, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3541, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3542, + "properties": { + "age": "5", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3543, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3544, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3545, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3546, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3547, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3548, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3549, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3550, + "properties": { + "age": "5", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3551, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3552, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3553, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3554, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3555, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3556, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3557, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3558, + "properties": { + "age": "5", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3559, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3560, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3561, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3562, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3563, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3564, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3565, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3566, + "properties": { + "age": "5", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3567, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3568, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3569, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3570, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3571, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3572, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3573, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3574, + "properties": { + "age": "6", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3575, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3576, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3577, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3578, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3579, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3580, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3581, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3582, + "properties": { + "age": "6", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3583, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3584, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3585, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3586, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3587, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3588, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3589, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3590, + "properties": { + "age": "6", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3591, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3592, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3593, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3594, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3595, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3596, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3597, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3598, + "properties": { + "age": "6", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3599, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3600, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3601, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3602, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3603, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3604, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3605, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3606, + "properties": { + "age": "7", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3607, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3608, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3609, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3610, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3611, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3612, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3613, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3614, + "properties": { + "age": "7", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3615, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3616, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3617, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3618, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3619, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3620, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3621, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3622, + "properties": { + "age": "7", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3623, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3624, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3625, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3626, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3627, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3628, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3629, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3630, + "properties": { + "age": "7", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3631, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3632, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3633, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3634, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3635, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3636, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3637, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3638, + "properties": { + "age": "8", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3639, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3640, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3641, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3642, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3643, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3644, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3645, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3646, + "properties": { + "age": "8", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3647, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3648, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3649, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3650, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3651, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3652, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3653, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3654, + "properties": { + "age": "8", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3655, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3656, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3657, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3658, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3659, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3660, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3661, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3662, + "properties": { + "age": "8", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3663, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3664, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3665, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3666, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3667, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3668, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3669, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3670, + "properties": { + "age": "9", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3671, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3672, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3673, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3674, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3675, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3676, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3677, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3678, + "properties": { + "age": "9", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3679, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3680, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3681, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3682, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3683, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3684, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3685, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3686, + "properties": { + "age": "9", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3687, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3688, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3689, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3690, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3691, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3692, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3693, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3694, + "properties": { + "age": "9", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3695, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3696, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3697, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3698, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3699, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3700, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3701, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3702, + "properties": { + "age": "10", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3703, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3704, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3705, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3706, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3707, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3708, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3709, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3710, + "properties": { + "age": "10", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3711, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3712, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3713, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3714, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3715, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3716, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3717, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3718, + "properties": { + "age": "10", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3719, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3720, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3721, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3722, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3723, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3724, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3725, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3726, + "properties": { + "age": "10", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3727, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3728, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3729, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3730, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3731, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3732, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3733, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3734, + "properties": { + "age": "11", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3735, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3736, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3737, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3738, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3739, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3740, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3741, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3742, + "properties": { + "age": "11", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3743, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3744, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3745, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3746, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3747, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3748, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3749, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3750, + "properties": { + "age": "11", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3751, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3752, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3753, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3754, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3755, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3756, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3757, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3758, + "properties": { + "age": "11", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3759, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3760, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3761, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3762, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3763, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3764, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3765, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3766, + "properties": { + "age": "12", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3767, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3768, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3769, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3770, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3771, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3772, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3773, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3774, + "properties": { + "age": "12", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3775, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3776, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3777, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3778, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3779, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3780, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3781, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3782, + "properties": { + "age": "12", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3783, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3784, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3785, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3786, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3787, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3788, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3789, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3790, + "properties": { + "age": "12", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3791, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3792, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3793, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3794, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3795, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3796, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3797, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3798, + "properties": { + "age": "13", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3799, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3800, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3801, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3802, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3803, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3804, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3805, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3806, + "properties": { + "age": "13", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3807, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3808, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3809, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3810, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3811, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3812, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3813, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3814, + "properties": { + "age": "13", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3815, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3816, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3817, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3818, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3819, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3820, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3821, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3822, + "properties": { + "age": "13", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3823, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3824, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3825, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3826, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3827, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3828, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3829, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3830, + "properties": { + "age": "14", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3831, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3832, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3833, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3834, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3835, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3836, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3837, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3838, + "properties": { + "age": "14", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3839, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3840, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3841, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3842, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3843, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3844, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3845, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3846, + "properties": { + "age": "14", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3847, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3848, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3849, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3850, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3851, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3852, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3853, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3854, + "properties": { + "age": "14", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3855, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3856, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3857, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3858, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3859, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3860, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3861, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3862, + "properties": { + "age": "15", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3863, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3864, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3865, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3866, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3867, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3868, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3869, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3870, + "properties": { + "age": "15", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3871, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3872, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3873, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3874, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3875, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3876, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3877, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3878, + "properties": { + "age": "15", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 3879, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 3880, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 3881, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 3882, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 3883, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 3884, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 3885, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 3886, + "properties": { + "age": "15", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:fire_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_fire_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15163, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15164, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_fire_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15145 + } + ] + }, + "minecraft:fire_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_fire_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15183, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15184, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:fire_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_fire_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15251, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15252, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15253, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15254, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15255, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15256, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15257, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15258, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:firefly_bush": { + "definition": { + "type": "minecraft:firefly_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32365 + } + ] + }, + "minecraft:fletching_table": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20771 + } + ] + }, + "minecraft:flower_pot": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10629 + } + ] + }, + "minecraft:flowering_azalea": { + "definition": { + "type": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30305 + } + ] + }, + "minecraft:flowering_azalea_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:tinted_leaves", + "color": -9399763 + }, + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 532, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 533, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 534, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 535, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 536, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 537, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 538, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 539, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 540, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 541, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 542, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 543, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 544, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 545, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 546, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 547, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 548, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 549, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 550, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 551, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 552, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 553, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 554, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 555, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 556, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 557, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 558, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 559, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:frogspawn": { + "definition": { + "type": "minecraft:frogspawn", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32084 + } + ] + }, + "minecraft:frosted_ice": { + "definition": { + "type": "minecraft:frosted_ice", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 14841, + "properties": { + "age": "0" + } + }, + { + "id": 14842, + "properties": { + "age": "1" + } + }, + { + "id": 14843, + "properties": { + "age": "2" + } + }, + { + "id": 14844, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:furnace": { + "definition": { + "type": "minecraft:furnace", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5327, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 5328, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 5329, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 5330, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 5331, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 5332, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 5333, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 5334, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:gilded_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22656 + } + ] + }, + "minecraft:glass": { + "definition": { + "type": "minecraft:transparent", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 562 + } + ] + }, + "minecraft:glass_pane": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8300, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8301, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8302, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8303, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8304, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8305, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8306, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8307, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8308, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8309, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8310, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8311, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8312, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8313, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8314, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8315, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8316, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8317, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8318, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8319, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8320, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8321, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8322, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8323, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8324, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8325, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8326, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8327, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8328, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8329, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8330, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8331, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glow_lichen": { + "definition": { + "type": "minecraft:glow_lichen", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8390, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8391, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8392, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8393, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8394, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8395, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8396, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8397, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8398, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8399, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8400, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8401, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8402, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8403, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8404, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8405, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8406, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8407, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8408, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8409, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8410, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8411, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8412, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8413, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8414, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8415, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8416, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8417, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8418, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8419, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8420, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8421, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8422, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8423, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8424, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8425, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8426, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8427, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8428, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8429, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8430, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8431, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8432, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8433, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8434, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8435, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8436, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8437, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8438, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8439, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8440, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8441, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8442, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8443, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8444, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8445, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8446, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8447, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8448, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8449, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8450, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8451, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8452, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8453, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8454, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8455, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8456, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8457, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8458, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8459, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8460, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8461, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8462, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8463, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8464, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8465, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8466, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8467, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8468, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8469, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8470, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8471, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8472, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8473, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8474, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8475, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8476, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8477, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8478, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8479, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8480, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8481, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8482, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8483, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8484, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8485, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8486, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8487, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8488, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8489, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8490, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8491, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8492, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8493, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8494, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8495, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8496, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8497, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8498, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8499, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8500, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8501, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8502, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8503, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8504, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8505, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8506, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8507, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8508, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8509, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8510, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8511, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8512, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8513, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8514, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8515, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8516, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8517, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:glowstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7016 + } + ] + }, + "minecraft:gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2338 + } + ] + }, + "minecraft:gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 129 + } + ] + }, + "minecraft:golden_dandelion": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 7, + "id": "minecraft:saturation" + } + ] + }, + "states": [ + { + "default": true, + "id": 2322 + } + ] + }, + "minecraft:granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2 + } + ] + }, + "minecraft:granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16464, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16465, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16466, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16467, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16468, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16469, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16016, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16017, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16018, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16019, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16020, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16021, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16022, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16023, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16024, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16025, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16026, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16027, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16028, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16029, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16030, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16031, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16032, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16033, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16034, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16035, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16036, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16037, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16038, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16039, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16040, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16041, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16042, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16043, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16044, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16045, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16046, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16047, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16048, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16049, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16050, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16051, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16052, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16053, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16054, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16055, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16056, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16057, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16058, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16059, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16060, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16061, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16062, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16063, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16064, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16065, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16066, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16067, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16068, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16069, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16070, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16071, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16072, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16073, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16074, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16075, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16076, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16077, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16078, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16079, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16080, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16081, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16082, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16083, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16084, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16085, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16086, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16087, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16088, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16089, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16090, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16091, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16092, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16093, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16094, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16095, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:granite_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17791, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17792, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17793, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17794, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17795, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17796, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17797, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17798, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17799, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17800, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17801, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17803, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17804, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17805, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17806, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17807, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17808, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17809, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17810, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17811, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17812, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17813, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17815, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17816, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17817, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17818, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17819, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17820, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17821, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17822, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17823, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17824, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17825, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17827, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17828, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17829, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17830, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17831, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17832, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17833, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17834, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17835, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17836, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17837, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17839, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17840, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17841, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17842, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17843, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17844, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17845, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17846, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17847, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17848, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17849, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17851, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17852, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17853, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17854, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17855, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17856, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17857, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17858, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17859, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17860, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17861, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17863, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17864, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17865, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17866, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17867, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17868, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17869, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17870, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17871, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17872, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17873, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17875, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17876, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17877, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17878, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17879, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17880, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17881, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17882, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17883, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17884, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17885, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17887, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17888, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17889, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17890, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17891, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17892, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17893, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17894, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17895, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17896, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17897, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17899, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17900, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17901, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17902, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17903, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17904, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17905, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17906, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17907, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17908, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17909, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17911, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17912, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17913, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17914, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17915, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17916, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17917, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17918, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17919, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17920, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17921, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17923, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17924, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17925, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17926, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17927, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17928, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17929, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17930, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17931, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17932, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17933, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17935, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17936, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17937, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17938, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17939, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17940, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17941, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17942, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17943, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17944, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17945, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17947, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17948, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17949, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17950, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17951, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17952, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17953, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17954, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17955, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17956, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17957, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17959, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17960, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17961, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17962, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17963, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17964, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17965, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17966, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17967, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17968, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17969, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17971, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17972, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17973, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17974, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17975, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17976, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17977, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17978, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17979, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17980, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17981, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17983, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17984, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17985, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17986, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17987, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17988, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17989, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17990, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17991, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17992, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17993, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17995, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17996, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17997, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17998, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17999, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18000, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18001, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18002, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18003, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18004, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18005, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18007, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18008, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18009, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18010, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18011, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18012, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18013, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18014, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18015, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18016, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18017, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18019, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18020, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18021, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18022, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18023, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18024, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18025, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18026, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18027, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18028, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18029, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18031, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18032, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18033, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18034, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18035, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18036, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18037, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18038, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18039, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18040, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18041, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18043, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18044, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18045, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18046, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18047, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18048, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18049, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18050, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18051, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18052, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18053, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18055, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18056, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18057, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18058, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18059, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18060, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18061, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18062, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18063, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18064, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18065, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18067, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18068, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18069, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18070, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18071, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18072, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18073, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18074, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18075, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18076, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18077, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18079, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18080, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18081, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18082, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18083, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18084, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18085, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18086, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18087, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18088, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18089, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18091, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18092, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18093, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18094, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18095, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18096, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18097, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18098, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18099, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18100, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18101, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18103, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18104, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18105, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18106, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18107, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18108, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18109, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18110, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18111, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18112, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18113, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:grass_block": { + "definition": { + "type": "minecraft:grass", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 9, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:gravel": { + "definition": { + "type": "minecraft:colored_falling", + "falling_dust_color": "#ff807c7b", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 124 + } + ] + }, + "minecraft:gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13039, + "properties": { + "rotation": "0" + } + }, + { + "id": 13040, + "properties": { + "rotation": "1" + } + }, + { + "id": 13041, + "properties": { + "rotation": "2" + } + }, + { + "id": 13042, + "properties": { + "rotation": "3" + } + }, + { + "id": 13043, + "properties": { + "rotation": "4" + } + }, + { + "id": 13044, + "properties": { + "rotation": "5" + } + }, + { + "id": 13045, + "properties": { + "rotation": "6" + } + }, + { + "id": 13046, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13047, + "properties": { + "rotation": "8" + } + }, + { + "id": 13048, + "properties": { + "rotation": "9" + } + }, + { + "id": 13049, + "properties": { + "rotation": "10" + } + }, + { + "id": 13050, + "properties": { + "rotation": "11" + } + }, + { + "id": 13051, + "properties": { + "rotation": "12" + } + }, + { + "id": 13052, + "properties": { + "rotation": "13" + } + }, + { + "id": 13053, + "properties": { + "rotation": "14" + } + }, + { + "id": 13054, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2043, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2044, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2045, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2046, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2047, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2048, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2049, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2050, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2051, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2052, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2053, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2054, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2055, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2056, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2057, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2058, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23224, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23225, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23226, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23227, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23228, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23229, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23230, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23231, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23232, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23233, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23234, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23235, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23236, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23237, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23238, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23239, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23384, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23385, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12903 + } + ] + }, + "minecraft:gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15037 + } + ] + }, + "minecraft:gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15053 + } + ] + }, + "minecraft:gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14994, + "properties": { + "facing": "north" + } + }, + { + "id": 14995, + "properties": { + "facing": "south" + } + }, + { + "id": 14996, + "properties": { + "facing": "west" + } + }, + { + "id": 14997, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14912, + "properties": { + "facing": "north" + } + }, + { + "id": 14913, + "properties": { + "facing": "east" + } + }, + { + "id": 14914, + "properties": { + "facing": "south" + } + }, + { + "id": 14915, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14916, + "properties": { + "facing": "up" + } + }, + { + "id": 14917, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7105 + } + ] + }, + "minecraft:gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11684, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11685, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11686, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11687, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11688, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11689, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11690, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11691, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11692, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11693, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11694, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11695, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11696, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11697, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11698, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11699, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11700, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11701, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11702, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11703, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11704, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11705, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11706, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11707, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11708, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11709, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11710, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11711, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11712, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11713, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11714, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11715, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11451 + } + ] + }, + "minecraft:gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13211, + "properties": { + "facing": "north" + } + }, + { + "id": 13212, + "properties": { + "facing": "south" + } + }, + { + "id": 13213, + "properties": { + "facing": "west" + } + }, + { + "id": 13214, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2300 + } + ] + }, + "minecraft:green_banner": { + "definition": { + "type": "minecraft:banner", + "color": "green", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13135, + "properties": { + "rotation": "0" + } + }, + { + "id": 13136, + "properties": { + "rotation": "1" + } + }, + { + "id": 13137, + "properties": { + "rotation": "2" + } + }, + { + "id": 13138, + "properties": { + "rotation": "3" + } + }, + { + "id": 13139, + "properties": { + "rotation": "4" + } + }, + { + "id": 13140, + "properties": { + "rotation": "5" + } + }, + { + "id": 13141, + "properties": { + "rotation": "6" + } + }, + { + "id": 13142, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13143, + "properties": { + "rotation": "8" + } + }, + { + "id": 13144, + "properties": { + "rotation": "9" + } + }, + { + "id": 13145, + "properties": { + "rotation": "10" + } + }, + { + "id": 13146, + "properties": { + "rotation": "11" + } + }, + { + "id": 13147, + "properties": { + "rotation": "12" + } + }, + { + "id": 13148, + "properties": { + "rotation": "13" + } + }, + { + "id": 13149, + "properties": { + "rotation": "14" + } + }, + { + "id": 13150, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:green_bed": { + "definition": { + "type": "minecraft:bed", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2139, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2140, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2141, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2142, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2143, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2144, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2145, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2146, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2147, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2148, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2149, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2150, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2151, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2152, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2153, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2154, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:green_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23320, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23321, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23322, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23323, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23324, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23325, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23326, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23327, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23328, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23329, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23330, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23331, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23332, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23333, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23334, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23335, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:green_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:green_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23396, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23397, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:green_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12909 + } + ] + }, + "minecraft:green_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15043 + } + ] + }, + "minecraft:green_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:green_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15059 + } + ] + }, + "minecraft:green_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15018, + "properties": { + "facing": "north" + } + }, + { + "id": 15019, + "properties": { + "facing": "south" + } + }, + { + "id": 15020, + "properties": { + "facing": "west" + } + }, + { + "id": 15021, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14948, + "properties": { + "facing": "north" + } + }, + { + "id": 14949, + "properties": { + "facing": "east" + } + }, + { + "id": 14950, + "properties": { + "facing": "south" + } + }, + { + "id": 14951, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14952, + "properties": { + "facing": "up" + } + }, + { + "id": 14953, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:green_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "green", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7111 + } + ] + }, + "minecraft:green_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "green", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11876, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11877, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11878, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11879, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11880, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11881, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11882, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11883, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11884, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11885, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11886, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11887, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11888, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11889, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11890, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11891, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11892, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11893, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11894, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11895, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11896, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11897, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11898, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11899, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11900, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11901, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11902, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11903, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11904, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11905, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11906, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11907, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:green_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11457 + } + ] + }, + "minecraft:green_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "green", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13235, + "properties": { + "facing": "north" + } + }, + { + "id": 13236, + "properties": { + "facing": "south" + } + }, + { + "id": 13237, + "properties": { + "facing": "west" + } + }, + { + "id": 13238, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:green_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2306 + } + ] + }, + "minecraft:grindstone": { + "definition": { + "type": "minecraft:grindstone", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "id": 20772, + "properties": { + "face": "floor", + "facing": "north" + } + }, + { + "id": 20773, + "properties": { + "face": "floor", + "facing": "south" + } + }, + { + "id": 20774, + "properties": { + "face": "floor", + "facing": "west" + } + }, + { + "id": 20775, + "properties": { + "face": "floor", + "facing": "east" + } + }, + { + "default": true, + "id": 20776, + "properties": { + "face": "wall", + "facing": "north" + } + }, + { + "id": 20777, + "properties": { + "face": "wall", + "facing": "south" + } + }, + { + "id": 20778, + "properties": { + "face": "wall", + "facing": "west" + } + }, + { + "id": 20779, + "properties": { + "face": "wall", + "facing": "east" + } + }, + { + "id": 20780, + "properties": { + "face": "ceiling", + "facing": "north" + } + }, + { + "id": 20781, + "properties": { + "face": "ceiling", + "facing": "south" + } + }, + { + "id": 20782, + "properties": { + "face": "ceiling", + "facing": "west" + } + }, + { + "id": 20783, + "properties": { + "face": "ceiling", + "facing": "east" + } + } + ] + }, + "minecraft:hanging_roots": { + "definition": { + "type": "minecraft:hanging_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30412, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30413, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:hay_block": { + "definition": { + "type": "minecraft:hay", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 12893, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 12894, + "properties": { + "axis": "y" + } + }, + { + "id": 12895, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:heavy_core": { + "definition": { + "type": "minecraft:heavy_core", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 32194, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 32195, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:heavy_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "iron", + "max_weight": 150, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 11247, + "properties": { + "power": "0" + } + }, + { + "id": 11248, + "properties": { + "power": "1" + } + }, + { + "id": 11249, + "properties": { + "power": "2" + } + }, + { + "id": 11250, + "properties": { + "power": "3" + } + }, + { + "id": 11251, + "properties": { + "power": "4" + } + }, + { + "id": 11252, + "properties": { + "power": "5" + } + }, + { + "id": 11253, + "properties": { + "power": "6" + } + }, + { + "id": 11254, + "properties": { + "power": "7" + } + }, + { + "id": 11255, + "properties": { + "power": "8" + } + }, + { + "id": 11256, + "properties": { + "power": "9" + } + }, + { + "id": 11257, + "properties": { + "power": "10" + } + }, + { + "id": 11258, + "properties": { + "power": "11" + } + }, + { + "id": 11259, + "properties": { + "power": "12" + } + }, + { + "id": 11260, + "properties": { + "power": "13" + } + }, + { + "id": 11261, + "properties": { + "power": "14" + } + }, + { + "id": 11262, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:honey_block": { + "definition": { + "type": "minecraft:honey", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21816 + } + ] + }, + "minecraft:honeycomb_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21817 + } + ] + }, + "minecraft:hopper": { + "definition": { + "type": "minecraft:hopper", + "properties": {} + }, + "properties": { + "enabled": [ + "true", + "false" + ], + "facing": [ + "down", + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 11313, + "properties": { + "enabled": "true", + "facing": "down" + } + }, + { + "id": 11314, + "properties": { + "enabled": "true", + "facing": "north" + } + }, + { + "id": 11315, + "properties": { + "enabled": "true", + "facing": "south" + } + }, + { + "id": 11316, + "properties": { + "enabled": "true", + "facing": "west" + } + }, + { + "id": 11317, + "properties": { + "enabled": "true", + "facing": "east" + } + }, + { + "id": 11318, + "properties": { + "enabled": "false", + "facing": "down" + } + }, + { + "id": 11319, + "properties": { + "enabled": "false", + "facing": "north" + } + }, + { + "id": 11320, + "properties": { + "enabled": "false", + "facing": "south" + } + }, + { + "id": 11321, + "properties": { + "enabled": "false", + "facing": "west" + } + }, + { + "id": 11322, + "properties": { + "enabled": "false", + "facing": "east" + } + } + ] + }, + "minecraft:horn_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_horn_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15165, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15166, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_horn_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15146 + } + ] + }, + "minecraft:horn_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_horn_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15185, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15186, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:horn_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_horn_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15259, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15260, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15261, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15262, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15263, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15264, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15265, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15266, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:ice": { + "definition": { + "type": "minecraft:ice", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6927 + } + ] + }, + "minecraft:infested_chiseled_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:chiseled_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7765 + } + ] + }, + "minecraft:infested_cobblestone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cobblestone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7761 + } + ] + }, + "minecraft:infested_cracked_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:cracked_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7764 + } + ] + }, + "minecraft:infested_deepslate": { + "definition": { + "type": "minecraft:infested_rotated_pillar", + "host": "minecraft:deepslate", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 32066, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 32067, + "properties": { + "axis": "y" + } + }, + { + "id": 32068, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:infested_mossy_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:mossy_stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7763 + } + ] + }, + "minecraft:infested_stone": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7760 + } + ] + }, + "minecraft:infested_stone_bricks": { + "definition": { + "type": "minecraft:infested", + "host": "minecraft:stone_bricks", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7762 + } + ] + }, + "minecraft:iron_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7958, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7959, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7960, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7961, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7962, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7963, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7964, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7965, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7966, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7967, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7968, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7969, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7970, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7971, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7972, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7973, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7974, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7975, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7976, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7977, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7978, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7979, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7980, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7981, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7982, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7983, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7984, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 7985, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 7986, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 7987, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 7988, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 7989, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2339 + } + ] + }, + "minecraft:iron_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8246, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8247, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8248, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8249, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8250, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8251, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:iron_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6797, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6798, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6799, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6800, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6801, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6802, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6803, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6804, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6805, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6806, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6807, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 6808, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6809, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6810, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6811, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6812, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6813, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6814, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6815, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6816, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6817, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6818, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6819, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6820, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6821, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6822, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6823, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6824, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6825, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6826, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6827, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6828, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6829, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6830, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6831, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6832, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6833, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6834, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6835, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6836, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6837, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6838, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6839, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6840, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6841, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6842, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6843, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6844, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6845, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6846, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6847, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6848, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6849, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6850, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6851, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6852, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 6853, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 6854, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 6855, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 6856, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 6857, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 6858, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 6859, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 6860, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:iron_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": 0, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 131 + } + ] + }, + "minecraft:iron_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "iron", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12567, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12568, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12569, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12570, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12571, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12572, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12573, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12574, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12575, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12576, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12577, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12578, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12579, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12580, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12581, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12582, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12583, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12584, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12585, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12586, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12587, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12588, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12589, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12590, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12591, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12592, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12593, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12594, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12595, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12596, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12597, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12598, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12599, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12600, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12601, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12602, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12603, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12604, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12605, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12606, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12607, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12608, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12609, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12610, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12611, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12612, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12613, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12614, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12615, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12616, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12617, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12618, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12619, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12620, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12621, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12622, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12623, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12624, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12625, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12626, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 12627, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 12628, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 12629, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 12630, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jack_o_lantern": { + "definition": { + "type": "minecraft:jack_o_lantern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7023, + "properties": { + "facing": "north" + } + }, + { + "id": 7024, + "properties": { + "facing": "south" + } + }, + { + "id": 7025, + "properties": { + "facing": "west" + } + }, + { + "id": 7026, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:jigsaw": { + "definition": { + "type": "minecraft:jigsaw", + "properties": {} + }, + "properties": { + "orientation": [ + "down_east", + "down_north", + "down_south", + "down_west", + "up_east", + "up_north", + "up_south", + "up_west", + "west_up", + "east_up", + "north_up", + "south_up" + ] + }, + "states": [ + { + "id": 21726, + "properties": { + "orientation": "down_east" + } + }, + { + "id": 21727, + "properties": { + "orientation": "down_north" + } + }, + { + "id": 21728, + "properties": { + "orientation": "down_south" + } + }, + { + "id": 21729, + "properties": { + "orientation": "down_west" + } + }, + { + "id": 21730, + "properties": { + "orientation": "up_east" + } + }, + { + "id": 21731, + "properties": { + "orientation": "up_north" + } + }, + { + "id": 21732, + "properties": { + "orientation": "up_south" + } + }, + { + "id": 21733, + "properties": { + "orientation": "up_west" + } + }, + { + "id": 21734, + "properties": { + "orientation": "west_up" + } + }, + { + "id": 21735, + "properties": { + "orientation": "east_up" + } + }, + { + "default": true, + "id": 21736, + "properties": { + "orientation": "north_up" + } + }, + { + "id": 21737, + "properties": { + "orientation": "south_up" + } + } + ] + }, + "minecraft:jukebox": { + "definition": { + "type": "minecraft:jukebox", + "properties": {} + }, + "properties": { + "has_record": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6963, + "properties": { + "has_record": "true" + } + }, + { + "default": true, + "id": 6964, + "properties": { + "has_record": "false" + } + } + ] + }, + "minecraft:jungle_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "jungle", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10747, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10748, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10749, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10750, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10751, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10752, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10753, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10754, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10755, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10756, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10757, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10758, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10759, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10760, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10761, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10762, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10763, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10764, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10765, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10766, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10767, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10768, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10769, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10770, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14188, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14189, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14190, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14191, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14192, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14193, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14194, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14195, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14196, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14197, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14198, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14199, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14200, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14201, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14202, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14203, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14204, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14205, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14206, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14207, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14208, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14209, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14210, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14211, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14212, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14213, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14214, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14215, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14216, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14217, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14218, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14219, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14220, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14221, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14222, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14223, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14224, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14225, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14226, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14227, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14228, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14229, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14230, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14231, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14232, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14233, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14234, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14235, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14236, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14237, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14238, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14239, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14240, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14241, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14242, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14243, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14244, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14245, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14246, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14247, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14248, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14249, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14250, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14251, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13836, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13837, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13838, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13839, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13840, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13841, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13842, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13843, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13844, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13845, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13846, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13847, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13848, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13849, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13850, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13851, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13852, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13853, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13854, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13855, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13856, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13857, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13858, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13859, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13860, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13861, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13862, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13863, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13864, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13865, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13866, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13867, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:jungle_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13548, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13549, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13550, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13551, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13552, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13553, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13554, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13555, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13556, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13557, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13558, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13559, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13560, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13561, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13562, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13563, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13564, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13565, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13566, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13567, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13568, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13569, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13570, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13571, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13572, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13573, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13574, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13575, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13576, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13577, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13578, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13579, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:jungle_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6227, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6228, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6229, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6230, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6231, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6232, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6233, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6234, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6235, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6236, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6237, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6238, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6239, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6240, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6241, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6242, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6243, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6244, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6245, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6246, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6247, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6248, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6249, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6250, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6251, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6252, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6253, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6254, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6255, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6256, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6257, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6258, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6259, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6260, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6261, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6262, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6263, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6264, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6265, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6266, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6267, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6268, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6269, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6270, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6271, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6272, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6273, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6274, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6275, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6276, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6277, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6278, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6279, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6280, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6281, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6282, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6283, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6284, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6285, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6286, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6287, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6288, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6289, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6290, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 336, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 337, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 338, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 339, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 340, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 341, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 342, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 343, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 344, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 345, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 346, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 347, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 348, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 349, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 350, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 351, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 352, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 353, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 354, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 355, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 356, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 357, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 358, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 359, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 360, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 361, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 362, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 363, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 145, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 146, + "properties": { + "axis": "y" + } + }, + { + "id": 147, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:jungle_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 18 + } + ] + }, + "minecraft:jungle_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6867, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6868, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:jungle_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "jungle" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 35, + "properties": { + "stage": "0" + } + }, + { + "id": 36, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:jungle_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2984, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 2985, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2986, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2987, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2988, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2989, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2990, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2991, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 2992, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2993, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 2994, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 2995, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 2996, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 2997, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 2998, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 2999, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3000, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3001, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3002, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3003, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3004, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3005, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3006, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3007, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3008, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3009, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3010, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3011, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3012, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3013, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3014, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3015, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3016, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3017, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3018, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3019, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3020, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3021, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3022, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3023, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3024, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3025, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3026, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3027, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3028, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3029, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3030, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3031, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3032, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3033, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3034, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3035, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3036, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3037, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3038, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3039, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3040, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3041, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3042, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3043, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3044, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3045, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3046, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3047, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5495, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5496, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5497, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5498, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5499, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5500, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5501, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5502, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5503, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5504, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5505, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5506, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5507, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5508, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5509, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5510, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5511, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5512, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5513, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5514, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5515, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5516, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5517, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5518, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5519, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5520, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5521, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5522, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5523, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5524, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5525, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5526, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13348, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13349, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13350, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13351, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13352, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13353, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:jungle_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9888, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9889, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9890, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9891, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9892, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9893, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9894, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9895, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9896, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9897, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9898, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9899, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9900, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9901, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9902, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9903, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9904, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9905, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9906, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9907, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9908, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9909, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9910, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9911, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9912, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9913, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9914, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9915, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9916, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9917, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9918, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9919, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9920, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9921, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9922, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9923, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9924, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9925, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9926, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9927, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9928, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9929, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9930, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9931, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9932, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9933, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9934, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9935, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9936, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9937, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9938, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9939, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9940, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9941, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9942, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9943, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9944, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9945, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9946, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9947, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9948, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9949, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9950, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9951, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9952, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9953, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9954, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9955, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9956, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9957, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9958, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9959, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9960, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9961, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9962, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9963, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9964, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9965, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9966, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9967, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "jungle", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7306, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7307, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7308, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7309, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7310, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7311, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7312, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7313, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7314, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7315, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7316, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7317, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7318, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7319, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7320, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7321, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7322, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7323, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7324, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7325, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7326, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7327, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7328, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7329, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7330, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7331, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7332, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7333, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7334, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7335, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7336, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7337, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7338, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7339, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7340, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7341, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7342, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7343, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7344, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7345, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7346, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7347, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7348, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7349, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7350, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7351, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7352, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7353, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7354, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7355, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7356, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7357, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7358, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7359, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7360, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7361, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7362, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7363, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7364, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7365, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7366, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7367, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7368, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7369, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6715, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6716, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6717, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6718, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6719, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6720, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6721, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6722, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "jungle" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5867, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5868, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5869, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5870, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5871, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5872, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5873, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5874, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 210, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 211, + "properties": { + "axis": "y" + } + }, + { + "id": 212, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:kelp": { + "definition": { + "type": "minecraft:kelp", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 15062, + "properties": { + "age": "0" + } + }, + { + "id": 15063, + "properties": { + "age": "1" + } + }, + { + "id": 15064, + "properties": { + "age": "2" + } + }, + { + "id": 15065, + "properties": { + "age": "3" + } + }, + { + "id": 15066, + "properties": { + "age": "4" + } + }, + { + "id": 15067, + "properties": { + "age": "5" + } + }, + { + "id": 15068, + "properties": { + "age": "6" + } + }, + { + "id": 15069, + "properties": { + "age": "7" + } + }, + { + "id": 15070, + "properties": { + "age": "8" + } + }, + { + "id": 15071, + "properties": { + "age": "9" + } + }, + { + "id": 15072, + "properties": { + "age": "10" + } + }, + { + "id": 15073, + "properties": { + "age": "11" + } + }, + { + "id": 15074, + "properties": { + "age": "12" + } + }, + { + "id": 15075, + "properties": { + "age": "13" + } + }, + { + "id": 15076, + "properties": { + "age": "14" + } + }, + { + "id": 15077, + "properties": { + "age": "15" + } + }, + { + "id": 15078, + "properties": { + "age": "16" + } + }, + { + "id": 15079, + "properties": { + "age": "17" + } + }, + { + "id": 15080, + "properties": { + "age": "18" + } + }, + { + "id": 15081, + "properties": { + "age": "19" + } + }, + { + "id": 15082, + "properties": { + "age": "20" + } + }, + { + "id": 15083, + "properties": { + "age": "21" + } + }, + { + "id": 15084, + "properties": { + "age": "22" + } + }, + { + "id": 15085, + "properties": { + "age": "23" + } + }, + { + "id": 15086, + "properties": { + "age": "24" + } + }, + { + "id": 15087, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:kelp_plant": { + "definition": { + "type": "minecraft:kelp_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15088 + } + ] + }, + "minecraft:ladder": { + "definition": { + "type": "minecraft:ladder", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5719, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5720, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5721, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5722, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5723, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5724, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5725, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5726, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20837, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20838, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20839, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20840, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lapis_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 565 + } + ] + }, + "minecraft:lapis_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 563 + } + ] + }, + "minecraft:large_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 5.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23416, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23417, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23418, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23419, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23420, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23421, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23422, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23423, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23424, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23425, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23426, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23427, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:large_fern": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12925, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12926, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lava": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:lava", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 102, + "properties": { + "level": "0" + } + }, + { + "id": 103, + "properties": { + "level": "1" + } + }, + { + "id": 104, + "properties": { + "level": "2" + } + }, + { + "id": 105, + "properties": { + "level": "3" + } + }, + { + "id": 106, + "properties": { + "level": "4" + } + }, + { + "id": 107, + "properties": { + "level": "5" + } + }, + { + "id": 108, + "properties": { + "level": "6" + } + }, + { + "id": 109, + "properties": { + "level": "7" + } + }, + { + "id": 110, + "properties": { + "level": "8" + } + }, + { + "id": 111, + "properties": { + "level": "9" + } + }, + { + "id": 112, + "properties": { + "level": "10" + } + }, + { + "id": 113, + "properties": { + "level": "11" + } + }, + { + "id": 114, + "properties": { + "level": "12" + } + }, + { + "id": 115, + "properties": { + "level": "13" + } + }, + { + "id": 116, + "properties": { + "level": "14" + } + }, + { + "id": 117, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:lava_cauldron": { + "definition": { + "type": "minecraft:lava_cauldron", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9464 + } + ] + }, + "minecraft:leaf_litter": { + "definition": { + "type": "minecraft:leaf_litter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "segment_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 30339, + "properties": { + "facing": "north", + "segment_amount": "1" + } + }, + { + "id": 30340, + "properties": { + "facing": "north", + "segment_amount": "2" + } + }, + { + "id": 30341, + "properties": { + "facing": "north", + "segment_amount": "3" + } + }, + { + "id": 30342, + "properties": { + "facing": "north", + "segment_amount": "4" + } + }, + { + "id": 30343, + "properties": { + "facing": "south", + "segment_amount": "1" + } + }, + { + "id": 30344, + "properties": { + "facing": "south", + "segment_amount": "2" + } + }, + { + "id": 30345, + "properties": { + "facing": "south", + "segment_amount": "3" + } + }, + { + "id": 30346, + "properties": { + "facing": "south", + "segment_amount": "4" + } + }, + { + "id": 30347, + "properties": { + "facing": "west", + "segment_amount": "1" + } + }, + { + "id": 30348, + "properties": { + "facing": "west", + "segment_amount": "2" + } + }, + { + "id": 30349, + "properties": { + "facing": "west", + "segment_amount": "3" + } + }, + { + "id": 30350, + "properties": { + "facing": "west", + "segment_amount": "4" + } + }, + { + "id": 30351, + "properties": { + "facing": "east", + "segment_amount": "1" + } + }, + { + "id": 30352, + "properties": { + "facing": "east", + "segment_amount": "2" + } + }, + { + "id": 30353, + "properties": { + "facing": "east", + "segment_amount": "3" + } + }, + { + "id": 30354, + "properties": { + "facing": "east", + "segment_amount": "4" + } + } + ] + }, + "minecraft:lectern": { + "definition": { + "type": "minecraft:lectern", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "has_book": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20784, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20785, + "properties": { + "facing": "north", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20786, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 20787, + "properties": { + "facing": "north", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20788, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20789, + "properties": { + "facing": "south", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20790, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20791, + "properties": { + "facing": "south", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20792, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20793, + "properties": { + "facing": "west", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20794, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20795, + "properties": { + "facing": "west", + "has_book": "false", + "powered": "false" + } + }, + { + "id": 20796, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "true" + } + }, + { + "id": 20797, + "properties": { + "facing": "east", + "has_book": "true", + "powered": "false" + } + }, + { + "id": 20798, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "true" + } + }, + { + "id": 20799, + "properties": { + "facing": "east", + "has_book": "false", + "powered": "false" + } + } + ] + }, + "minecraft:lever": { + "definition": { + "type": "minecraft:lever", + "properties": {} + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6771, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6772, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6773, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6774, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6775, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6776, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6777, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6778, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6779, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6780, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6781, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6782, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6783, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6784, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6785, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6786, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6787, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6788, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6789, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6790, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6791, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6792, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6793, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6794, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:light": { + "definition": { + "type": "minecraft:light", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12535, + "properties": { + "level": "0", + "waterlogged": "true" + } + }, + { + "id": 12536, + "properties": { + "level": "0", + "waterlogged": "false" + } + }, + { + "id": 12537, + "properties": { + "level": "1", + "waterlogged": "true" + } + }, + { + "id": 12538, + "properties": { + "level": "1", + "waterlogged": "false" + } + }, + { + "id": 12539, + "properties": { + "level": "2", + "waterlogged": "true" + } + }, + { + "id": 12540, + "properties": { + "level": "2", + "waterlogged": "false" + } + }, + { + "id": 12541, + "properties": { + "level": "3", + "waterlogged": "true" + } + }, + { + "id": 12542, + "properties": { + "level": "3", + "waterlogged": "false" + } + }, + { + "id": 12543, + "properties": { + "level": "4", + "waterlogged": "true" + } + }, + { + "id": 12544, + "properties": { + "level": "4", + "waterlogged": "false" + } + }, + { + "id": 12545, + "properties": { + "level": "5", + "waterlogged": "true" + } + }, + { + "id": 12546, + "properties": { + "level": "5", + "waterlogged": "false" + } + }, + { + "id": 12547, + "properties": { + "level": "6", + "waterlogged": "true" + } + }, + { + "id": 12548, + "properties": { + "level": "6", + "waterlogged": "false" + } + }, + { + "id": 12549, + "properties": { + "level": "7", + "waterlogged": "true" + } + }, + { + "id": 12550, + "properties": { + "level": "7", + "waterlogged": "false" + } + }, + { + "id": 12551, + "properties": { + "level": "8", + "waterlogged": "true" + } + }, + { + "id": 12552, + "properties": { + "level": "8", + "waterlogged": "false" + } + }, + { + "id": 12553, + "properties": { + "level": "9", + "waterlogged": "true" + } + }, + { + "id": 12554, + "properties": { + "level": "9", + "waterlogged": "false" + } + }, + { + "id": 12555, + "properties": { + "level": "10", + "waterlogged": "true" + } + }, + { + "id": 12556, + "properties": { + "level": "10", + "waterlogged": "false" + } + }, + { + "id": 12557, + "properties": { + "level": "11", + "waterlogged": "true" + } + }, + { + "id": 12558, + "properties": { + "level": "11", + "waterlogged": "false" + } + }, + { + "id": 12559, + "properties": { + "level": "12", + "waterlogged": "true" + } + }, + { + "id": 12560, + "properties": { + "level": "12", + "waterlogged": "false" + } + }, + { + "id": 12561, + "properties": { + "level": "13", + "waterlogged": "true" + } + }, + { + "id": 12562, + "properties": { + "level": "13", + "waterlogged": "false" + } + }, + { + "id": 12563, + "properties": { + "level": "14", + "waterlogged": "true" + } + }, + { + "id": 12564, + "properties": { + "level": "14", + "waterlogged": "false" + } + }, + { + "id": 12565, + "properties": { + "level": "15", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12566, + "properties": { + "level": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12975, + "properties": { + "rotation": "0" + } + }, + { + "id": 12976, + "properties": { + "rotation": "1" + } + }, + { + "id": 12977, + "properties": { + "rotation": "2" + } + }, + { + "id": 12978, + "properties": { + "rotation": "3" + } + }, + { + "id": 12979, + "properties": { + "rotation": "4" + } + }, + { + "id": 12980, + "properties": { + "rotation": "5" + } + }, + { + "id": 12981, + "properties": { + "rotation": "6" + } + }, + { + "id": 12982, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12983, + "properties": { + "rotation": "8" + } + }, + { + "id": 12984, + "properties": { + "rotation": "9" + } + }, + { + "id": 12985, + "properties": { + "rotation": "10" + } + }, + { + "id": 12986, + "properties": { + "rotation": "11" + } + }, + { + "id": 12987, + "properties": { + "rotation": "12" + } + }, + { + "id": 12988, + "properties": { + "rotation": "13" + } + }, + { + "id": 12989, + "properties": { + "rotation": "14" + } + }, + { + "id": 12990, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_blue_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1979, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1980, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1981, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1982, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1983, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1984, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1985, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1986, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1987, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1988, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1989, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1990, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1991, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1992, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1993, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1994, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_blue_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23160, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23161, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23162, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23163, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23164, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23165, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23166, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23167, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23168, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23169, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23170, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23171, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23172, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23173, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23174, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23175, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_blue_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_blue_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23376, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23377, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_blue_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12899 + } + ] + }, + "minecraft:light_blue_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15033 + } + ] + }, + "minecraft:light_blue_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_blue_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15049 + } + ] + }, + "minecraft:light_blue_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14978, + "properties": { + "facing": "north" + } + }, + { + "id": 14979, + "properties": { + "facing": "south" + } + }, + { + "id": 14980, + "properties": { + "facing": "west" + } + }, + { + "id": 14981, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14888, + "properties": { + "facing": "north" + } + }, + { + "id": 14889, + "properties": { + "facing": "east" + } + }, + { + "id": 14890, + "properties": { + "facing": "south" + } + }, + { + "id": 14891, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14892, + "properties": { + "facing": "up" + } + }, + { + "id": 14893, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_blue_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_blue", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7101 + } + ] + }, + "minecraft:light_blue_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_blue", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11556, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11557, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11558, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11559, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11560, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11561, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11562, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11563, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11564, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11565, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11566, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11567, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11568, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11569, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11570, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11571, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11572, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11573, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11574, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11575, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11576, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11577, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11578, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11579, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11580, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11581, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11582, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11583, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11584, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11585, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11586, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11587, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_blue_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11447 + } + ] + }, + "minecraft:light_blue_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_blue", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13195, + "properties": { + "facing": "north" + } + }, + { + "id": 13196, + "properties": { + "facing": "south" + } + }, + { + "id": 13197, + "properties": { + "facing": "west" + } + }, + { + "id": 13198, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_blue_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2296 + } + ] + }, + "minecraft:light_gray_banner": { + "definition": { + "type": "minecraft:banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13055, + "properties": { + "rotation": "0" + } + }, + { + "id": 13056, + "properties": { + "rotation": "1" + } + }, + { + "id": 13057, + "properties": { + "rotation": "2" + } + }, + { + "id": 13058, + "properties": { + "rotation": "3" + } + }, + { + "id": 13059, + "properties": { + "rotation": "4" + } + }, + { + "id": 13060, + "properties": { + "rotation": "5" + } + }, + { + "id": 13061, + "properties": { + "rotation": "6" + } + }, + { + "id": 13062, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13063, + "properties": { + "rotation": "8" + } + }, + { + "id": 13064, + "properties": { + "rotation": "9" + } + }, + { + "id": 13065, + "properties": { + "rotation": "10" + } + }, + { + "id": 13066, + "properties": { + "rotation": "11" + } + }, + { + "id": 13067, + "properties": { + "rotation": "12" + } + }, + { + "id": 13068, + "properties": { + "rotation": "13" + } + }, + { + "id": 13069, + "properties": { + "rotation": "14" + } + }, + { + "id": 13070, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:light_gray_bed": { + "definition": { + "type": "minecraft:bed", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2059, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2060, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2061, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2062, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2063, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2064, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2065, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2066, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2067, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2068, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2069, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2070, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2071, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2072, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2073, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2074, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:light_gray_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23240, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23241, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23242, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23243, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23244, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23245, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23246, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23247, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23248, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23249, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23250, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23251, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23252, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23253, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23254, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23255, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:light_gray_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:light_gray_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23386, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23387, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:light_gray_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12904 + } + ] + }, + "minecraft:light_gray_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15038 + } + ] + }, + "minecraft:light_gray_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:light_gray_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15054 + } + ] + }, + "minecraft:light_gray_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14998, + "properties": { + "facing": "north" + } + }, + { + "id": 14999, + "properties": { + "facing": "south" + } + }, + { + "id": 15000, + "properties": { + "facing": "west" + } + }, + { + "id": 15001, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14918, + "properties": { + "facing": "north" + } + }, + { + "id": 14919, + "properties": { + "facing": "east" + } + }, + { + "id": 14920, + "properties": { + "facing": "south" + } + }, + { + "id": 14921, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14922, + "properties": { + "facing": "up" + } + }, + { + "id": 14923, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:light_gray_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "light_gray", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7106 + } + ] + }, + "minecraft:light_gray_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "light_gray", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11716, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11717, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11718, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11719, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11720, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11721, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11722, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11723, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11724, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11725, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11726, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11727, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11728, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11729, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11730, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11731, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11732, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11733, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11734, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11735, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11736, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11737, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11738, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11739, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11740, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11741, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11742, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11743, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11744, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11745, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11746, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11747, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:light_gray_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11452 + } + ] + }, + "minecraft:light_gray_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "light_gray", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13215, + "properties": { + "facing": "north" + } + }, + { + "id": 13216, + "properties": { + "facing": "south" + } + }, + { + "id": 13217, + "properties": { + "facing": "west" + } + }, + { + "id": 13218, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:light_gray_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2301 + } + ] + }, + "minecraft:light_weighted_pressure_plate": { + "definition": { + "type": "minecraft:weighted_pressure_plate", + "block_set_type": "gold", + "max_weight": 15, + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 11231, + "properties": { + "power": "0" + } + }, + { + "id": 11232, + "properties": { + "power": "1" + } + }, + { + "id": 11233, + "properties": { + "power": "2" + } + }, + { + "id": 11234, + "properties": { + "power": "3" + } + }, + { + "id": 11235, + "properties": { + "power": "4" + } + }, + { + "id": 11236, + "properties": { + "power": "5" + } + }, + { + "id": 11237, + "properties": { + "power": "6" + } + }, + { + "id": 11238, + "properties": { + "power": "7" + } + }, + { + "id": 11239, + "properties": { + "power": "8" + } + }, + { + "id": 11240, + "properties": { + "power": "9" + } + }, + { + "id": 11241, + "properties": { + "power": "10" + } + }, + { + "id": 11242, + "properties": { + "power": "11" + } + }, + { + "id": 11243, + "properties": { + "power": "12" + } + }, + { + "id": 11244, + "properties": { + "power": "13" + } + }, + { + "id": 11245, + "properties": { + "power": "14" + } + }, + { + "id": 11246, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30016, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30017, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30018, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30019, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30020, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30021, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30022, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30023, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30024, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30025, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30026, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30027, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30028, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30029, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30030, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30031, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30032, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30033, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30034, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30035, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30036, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30037, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30038, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30039, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lilac": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12917, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12918, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:lily_of_the_valley": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 220, + "id": "minecraft:poison" + } + ] + }, + "states": [ + { + "default": true, + "id": 2335 + } + ] + }, + "minecraft:lily_pad": { + "definition": { + "type": "minecraft:lily_pad", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8920 + } + ] + }, + "minecraft:lime_banner": { + "definition": { + "type": "minecraft:banner", + "color": "lime", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13007, + "properties": { + "rotation": "0" + } + }, + { + "id": 13008, + "properties": { + "rotation": "1" + } + }, + { + "id": 13009, + "properties": { + "rotation": "2" + } + }, + { + "id": 13010, + "properties": { + "rotation": "3" + } + }, + { + "id": 13011, + "properties": { + "rotation": "4" + } + }, + { + "id": 13012, + "properties": { + "rotation": "5" + } + }, + { + "id": 13013, + "properties": { + "rotation": "6" + } + }, + { + "id": 13014, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13015, + "properties": { + "rotation": "8" + } + }, + { + "id": 13016, + "properties": { + "rotation": "9" + } + }, + { + "id": 13017, + "properties": { + "rotation": "10" + } + }, + { + "id": 13018, + "properties": { + "rotation": "11" + } + }, + { + "id": 13019, + "properties": { + "rotation": "12" + } + }, + { + "id": 13020, + "properties": { + "rotation": "13" + } + }, + { + "id": 13021, + "properties": { + "rotation": "14" + } + }, + { + "id": 13022, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:lime_bed": { + "definition": { + "type": "minecraft:bed", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2011, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2012, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2013, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2014, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2015, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2016, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2017, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2018, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2019, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2020, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2021, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2022, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2023, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2024, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2025, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2026, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:lime_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23192, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23193, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23194, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23195, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23196, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23197, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23198, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23199, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23200, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23201, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23202, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23203, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23204, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23205, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23206, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23207, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:lime_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:lime_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23380, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23381, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:lime_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12901 + } + ] + }, + "minecraft:lime_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15035 + } + ] + }, + "minecraft:lime_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:lime_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15051 + } + ] + }, + "minecraft:lime_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14986, + "properties": { + "facing": "north" + } + }, + { + "id": 14987, + "properties": { + "facing": "south" + } + }, + { + "id": 14988, + "properties": { + "facing": "west" + } + }, + { + "id": 14989, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14900, + "properties": { + "facing": "north" + } + }, + { + "id": 14901, + "properties": { + "facing": "east" + } + }, + { + "id": 14902, + "properties": { + "facing": "south" + } + }, + { + "id": 14903, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14904, + "properties": { + "facing": "up" + } + }, + { + "id": 14905, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:lime_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "lime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7103 + } + ] + }, + "minecraft:lime_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "lime", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11620, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11621, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11622, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11623, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11624, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11625, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11626, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11627, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11628, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11629, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11630, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11631, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11632, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11633, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11634, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11635, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11636, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11637, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11638, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11639, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11640, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11641, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11642, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11643, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11644, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11645, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11646, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11647, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11648, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11649, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11650, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11651, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:lime_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11449 + } + ] + }, + "minecraft:lime_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "lime", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13203, + "properties": { + "facing": "north" + } + }, + { + "id": 13204, + "properties": { + "facing": "south" + } + }, + { + "id": 13205, + "properties": { + "facing": "west" + } + }, + { + "id": 13206, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:lime_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2298 + } + ] + }, + "minecraft:lodestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21830 + } + ] + }, + "minecraft:loom": { + "definition": { + "type": "minecraft:loom", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 20738, + "properties": { + "facing": "north" + } + }, + { + "id": 20739, + "properties": { + "facing": "south" + } + }, + { + "id": 20740, + "properties": { + "facing": "west" + } + }, + { + "id": 20741, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_banner": { + "definition": { + "type": "minecraft:banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12959, + "properties": { + "rotation": "0" + } + }, + { + "id": 12960, + "properties": { + "rotation": "1" + } + }, + { + "id": 12961, + "properties": { + "rotation": "2" + } + }, + { + "id": 12962, + "properties": { + "rotation": "3" + } + }, + { + "id": 12963, + "properties": { + "rotation": "4" + } + }, + { + "id": 12964, + "properties": { + "rotation": "5" + } + }, + { + "id": 12965, + "properties": { + "rotation": "6" + } + }, + { + "id": 12966, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12967, + "properties": { + "rotation": "8" + } + }, + { + "id": 12968, + "properties": { + "rotation": "9" + } + }, + { + "id": 12969, + "properties": { + "rotation": "10" + } + }, + { + "id": 12970, + "properties": { + "rotation": "11" + } + }, + { + "id": 12971, + "properties": { + "rotation": "12" + } + }, + { + "id": 12972, + "properties": { + "rotation": "13" + } + }, + { + "id": 12973, + "properties": { + "rotation": "14" + } + }, + { + "id": 12974, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:magenta_bed": { + "definition": { + "type": "minecraft:bed", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1963, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1964, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1965, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1966, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1967, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1968, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1969, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1970, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1971, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1972, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1973, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1974, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1975, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1976, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1977, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1978, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:magenta_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23144, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23145, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23146, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23147, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23148, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23149, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23150, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23151, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23152, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23153, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23154, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23155, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23156, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23157, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23158, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23159, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:magenta_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:magenta_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23374, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23375, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:magenta_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12898 + } + ] + }, + "minecraft:magenta_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15032 + } + ] + }, + "minecraft:magenta_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:magenta_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15048 + } + ] + }, + "minecraft:magenta_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14974, + "properties": { + "facing": "north" + } + }, + { + "id": 14975, + "properties": { + "facing": "south" + } + }, + { + "id": 14976, + "properties": { + "facing": "west" + } + }, + { + "id": 14977, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14882, + "properties": { + "facing": "north" + } + }, + { + "id": 14883, + "properties": { + "facing": "east" + } + }, + { + "id": 14884, + "properties": { + "facing": "south" + } + }, + { + "id": 14885, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14886, + "properties": { + "facing": "up" + } + }, + { + "id": 14887, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:magenta_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "magenta", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7100 + } + ] + }, + "minecraft:magenta_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "magenta", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11524, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11525, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11526, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11527, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11528, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11529, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11530, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11531, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11532, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11533, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11534, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11535, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11536, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11537, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11538, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11539, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11540, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11541, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11542, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11543, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11544, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11545, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11546, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11547, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11548, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11549, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11550, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11551, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11552, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11553, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11554, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11555, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:magenta_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11446 + } + ] + }, + "minecraft:magenta_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "magenta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13191, + "properties": { + "facing": "north" + } + }, + { + "id": 13192, + "properties": { + "facing": "south" + } + }, + { + "id": 13193, + "properties": { + "facing": "west" + } + }, + { + "id": 13194, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:magenta_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2295 + } + ] + }, + "minecraft:magma_block": { + "definition": { + "type": "minecraft:magma", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14845 + } + ] + }, + "minecraft:mangrove_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "mangrove", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10867, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10868, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10869, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10870, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10871, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10872, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10873, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10874, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10875, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10876, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10877, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10878, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10879, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10880, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10881, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10882, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10883, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10884, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10885, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10886, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10887, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10888, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10889, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10890, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14508, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14509, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14510, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14511, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14512, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14513, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14514, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14515, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14516, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14517, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14518, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14519, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14520, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14521, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14522, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14523, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14524, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14525, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14526, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14527, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14528, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14529, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14530, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14531, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14532, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14533, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14534, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14535, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14536, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14537, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14538, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14539, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14540, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14541, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14542, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14543, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14544, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14545, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14546, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14547, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14548, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14549, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14550, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14551, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14552, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14553, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14554, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14555, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14556, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14557, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14558, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14559, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14560, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14561, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14562, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14563, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14564, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14565, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14566, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14567, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14568, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14569, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14570, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14571, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13996, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13997, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13998, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13999, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14000, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14001, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14002, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14003, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14004, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14005, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14006, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14007, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14008, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14009, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14010, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14011, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14012, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14013, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14014, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14015, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14016, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14017, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14018, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14019, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14020, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14021, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14022, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 14023, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 14024, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 14025, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 14026, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 14027, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:mangrove_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13708, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13709, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13710, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13711, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13712, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13713, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13714, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13715, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13716, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13717, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13718, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13719, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13720, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13721, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13722, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13723, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13724, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13725, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13726, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13727, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13728, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13729, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13730, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13731, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13732, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13733, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13734, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13735, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13736, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13737, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13738, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13739, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6547, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6548, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6549, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6550, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6551, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6552, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6553, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6554, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6555, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6556, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6557, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6558, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6559, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6560, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6561, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6562, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6563, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6564, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6565, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6566, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6567, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6568, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6569, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6570, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6571, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6572, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6573, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6574, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6575, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6576, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6577, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6578, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6579, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6580, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6581, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6582, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6583, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6584, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6585, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6586, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6587, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6588, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6589, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6590, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6591, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6592, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6593, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6594, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6595, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6596, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6597, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6598, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6599, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6600, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6601, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6602, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6603, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6604, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6605, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6606, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6607, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6608, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6609, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6610, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_leaves": { + "definition": { + "type": "minecraft:mangrove_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 476, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 477, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 478, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 479, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 480, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 481, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 482, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 483, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 484, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 485, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 486, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 487, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 488, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 489, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 490, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 491, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 492, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 493, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 494, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 495, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 496, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 497, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 498, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 499, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 500, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 501, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 502, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 503, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 160, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 161, + "properties": { + "axis": "y" + } + }, + { + "id": 162, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mangrove_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26 + } + ] + }, + "minecraft:mangrove_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6877, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6878, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:mangrove_propagule": { + "definition": { + "type": "minecraft:mangrove_propagule", + "properties": {}, + "tree": "mangrove" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "hanging": [ + "true", + "false" + ], + "stage": [ + "0", + "1" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 45, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 46, + "properties": { + "age": "0", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 47, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 48, + "properties": { + "age": "0", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 49, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 50, + "properties": { + "age": "0", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 51, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 52, + "properties": { + "age": "0", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 53, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 54, + "properties": { + "age": "1", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 55, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 56, + "properties": { + "age": "1", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 57, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 58, + "properties": { + "age": "1", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 59, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 60, + "properties": { + "age": "1", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 61, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 62, + "properties": { + "age": "2", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 63, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 64, + "properties": { + "age": "2", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 65, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 66, + "properties": { + "age": "2", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 67, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 68, + "properties": { + "age": "2", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 69, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 70, + "properties": { + "age": "3", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 71, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 72, + "properties": { + "age": "3", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 73, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 74, + "properties": { + "age": "3", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 75, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 76, + "properties": { + "age": "3", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 77, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 78, + "properties": { + "age": "4", + "hanging": "true", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 79, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 80, + "properties": { + "age": "4", + "hanging": "true", + "stage": "1", + "waterlogged": "false" + } + }, + { + "id": 81, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "true" + } + }, + { + "id": 82, + "properties": { + "age": "4", + "hanging": "false", + "stage": "0", + "waterlogged": "false" + } + }, + { + "id": 83, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "true" + } + }, + { + "id": 84, + "properties": { + "age": "4", + "hanging": "false", + "stage": "1", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_roots": { + "definition": { + "type": "minecraft:mangrove_roots", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 163, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 164, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3048, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3049, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3050, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3051, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3052, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3053, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3054, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3055, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3056, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3057, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3058, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3059, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3060, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3061, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3062, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3063, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3064, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3065, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3066, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3067, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3068, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3069, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3070, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3071, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3072, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3073, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3074, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3075, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3076, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3077, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3078, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3079, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3080, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3081, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3082, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3083, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3084, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3085, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3086, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3087, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3088, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3089, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3090, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3091, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3092, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3093, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3094, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3095, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3096, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3097, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3098, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3099, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3100, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3101, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3102, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3103, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3104, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3105, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3106, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3107, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3108, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3109, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3110, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3111, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5591, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5592, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5593, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5594, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5595, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5596, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5597, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5598, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5599, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5600, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5601, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5602, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5603, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5604, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5605, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5606, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5607, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5608, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5609, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5610, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5611, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5612, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5613, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5614, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5615, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5616, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5617, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5618, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5619, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5620, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5621, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5622, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13378, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13379, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13380, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13381, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13382, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13383, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mangrove_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12292, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12293, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12294, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12295, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12296, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12297, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12298, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12299, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12300, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12301, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12304, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12305, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12306, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12307, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12308, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12309, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12310, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12311, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12312, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12313, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12314, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12315, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12316, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12317, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12318, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12319, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12320, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12321, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12324, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12325, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12326, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12327, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12328, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12329, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12330, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12331, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12332, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12333, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12334, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12335, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12336, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12337, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12338, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12339, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12340, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12341, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12344, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12345, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12346, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12347, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12348, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12349, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12350, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12351, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12352, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12353, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12354, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12355, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12356, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12357, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12358, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12359, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12360, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12361, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12364, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12365, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12366, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12367, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12368, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12369, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12370, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12371, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "mangrove", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7626, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7627, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7628, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7629, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7630, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7631, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7632, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7633, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7634, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7635, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7636, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7637, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7638, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7639, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7640, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7641, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7642, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7643, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7644, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7645, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7646, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7647, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7648, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7649, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7650, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7651, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7652, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7653, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7654, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7655, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7656, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7657, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7658, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7659, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7660, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7661, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7662, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7663, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7664, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7665, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7666, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7667, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7668, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7669, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7670, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7671, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7672, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7673, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7674, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7675, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7676, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7677, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7678, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7679, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7680, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7681, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7682, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7683, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7684, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7685, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7686, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7687, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7688, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7689, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6739, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6740, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6741, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6742, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6743, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6744, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6745, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6746, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "mangrove" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5891, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5892, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5893, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5894, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5895, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5896, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5897, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5898, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 222, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 223, + "properties": { + "axis": "y" + } + }, + { + "id": 224, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:medium_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 4.0, + "properties": {}, + "width": 10.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23428, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23429, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23430, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23431, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23432, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23433, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23434, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23435, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23436, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23437, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23438, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23439, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:melon": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8333 + } + ] + }, + "minecraft:melon_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_melon_stem", + "fruit": "minecraft:melon", + "fruit_support_blocks": "minecraft:supports_melon_stem_fruit", + "properties": {}, + "seed": "minecraft:melon_seeds", + "stem_support_blocks": "minecraft:supports_melon_stem" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8350, + "properties": { + "age": "0" + } + }, + { + "id": 8351, + "properties": { + "age": "1" + } + }, + { + "id": 8352, + "properties": { + "age": "2" + } + }, + { + "id": 8353, + "properties": { + "age": "3" + } + }, + { + "id": 8354, + "properties": { + "age": "4" + } + }, + { + "id": 8355, + "properties": { + "age": "5" + } + }, + { + "id": 8356, + "properties": { + "age": "6" + } + }, + { + "id": 8357, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:moss_block": { + "definition": { + "type": "minecraft:bonemealable_feature_placer", + "feature": "minecraft:moss_patch_bonemeal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30355 + } + ] + }, + "minecraft:moss_carpet": { + "definition": { + "type": "minecraft:carpet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30306 + } + ] + }, + "minecraft:mossy_cobblestone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3368 + } + ] + }, + "minecraft:mossy_cobblestone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16440, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16441, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16442, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16443, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16444, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16445, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_cobblestone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15616, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15617, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15618, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15619, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15620, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15621, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15622, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15623, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15624, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15625, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15626, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15627, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15628, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15629, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15630, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15631, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15632, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15633, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15634, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15635, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15636, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15637, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15638, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15639, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15640, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15641, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15642, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15643, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15644, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15645, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15646, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15647, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15648, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15649, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15650, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15651, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15652, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15653, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15654, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15655, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15656, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15657, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15658, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15659, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15660, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15661, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15662, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15663, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15664, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15665, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15666, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15667, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15668, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15669, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15670, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15671, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15672, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15673, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15674, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15675, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15676, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15677, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15678, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15679, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15680, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15681, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15682, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15683, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15684, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15685, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15686, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15687, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15688, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15689, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15690, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15691, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15692, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15693, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15694, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15695, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_cobblestone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 10305, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10306, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10307, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 10308, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10309, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10310, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10311, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10312, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10313, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10314, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10315, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10316, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10317, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10318, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10319, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10320, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10321, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10322, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10323, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10324, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10325, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10326, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10327, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10328, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10329, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10330, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10331, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10332, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10333, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10334, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10335, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10336, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10337, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10338, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10339, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10340, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10341, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10342, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10343, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10344, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10345, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10346, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10347, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10348, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10349, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10350, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10351, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10352, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10353, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10354, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10355, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10356, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10357, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10358, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10359, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10360, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10361, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10362, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10363, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10364, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10365, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10366, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10367, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10368, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10369, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10370, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10371, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10372, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10373, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10374, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10375, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10376, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10377, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10378, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10379, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10380, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10381, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10382, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10383, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10384, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10385, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10386, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10387, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10388, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10389, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10390, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10391, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10392, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10393, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10394, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10395, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10396, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10397, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10398, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10399, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10400, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10401, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10402, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10403, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10404, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10405, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10406, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10407, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10408, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10409, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10410, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10411, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10412, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10413, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10414, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10415, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10416, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10417, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10418, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10419, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10420, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10421, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10422, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10423, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10424, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10425, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10426, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10427, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10428, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10429, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10430, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10431, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10432, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10433, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10434, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10435, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10436, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10437, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10438, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10439, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10440, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10441, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10442, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10443, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10444, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10445, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10446, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10447, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10448, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10449, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10450, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10451, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10452, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10453, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10454, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10455, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10456, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10457, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10458, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10459, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10460, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10461, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10462, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10463, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10464, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10465, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10466, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10467, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10468, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10469, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10470, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10471, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10472, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10473, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10474, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10475, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10476, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10477, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10478, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10479, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10480, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10481, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10482, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10483, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10484, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10485, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10486, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10487, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10488, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10489, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10490, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10491, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10492, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10493, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10494, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10495, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10496, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10497, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10498, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10499, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10500, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10501, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10502, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10503, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10504, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10505, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10506, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10507, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10508, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10509, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10510, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10511, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10512, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10513, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10514, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10515, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10516, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10517, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10518, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10519, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10520, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10521, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10522, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10523, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10524, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10525, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10526, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10527, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10528, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10529, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10530, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10531, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10532, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10533, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10534, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10535, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10536, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10537, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10538, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10539, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10540, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10541, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10542, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10543, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10544, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10545, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10546, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10547, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10548, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10549, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10550, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10551, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10552, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10553, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10554, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10555, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10556, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10557, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10558, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10559, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10560, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10561, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10562, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10563, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10564, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10565, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10566, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10567, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10568, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10569, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10570, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10571, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10572, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10573, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10574, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10575, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10576, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10577, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10578, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10579, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10580, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10581, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10582, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10583, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10584, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10585, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10586, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10587, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10588, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10589, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10590, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10591, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10592, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10593, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10594, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10595, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10596, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10597, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10598, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10599, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10600, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10601, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10602, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10603, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10604, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10605, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10606, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10607, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10608, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10609, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10610, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10611, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10612, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10613, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10614, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10615, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10616, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10617, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10618, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10619, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10620, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10621, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10622, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 10623, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 10624, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 10625, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 10626, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 10627, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 10628, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16428, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16429, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16430, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16431, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16432, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16433, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mossy_stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15456, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15457, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15458, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15459, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15460, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15461, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15462, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15463, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15464, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15465, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15466, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15467, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15468, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15476, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15477, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15478, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15479, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15480, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15481, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15482, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15483, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15484, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15485, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15486, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15487, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15488, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15496, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15497, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15498, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15499, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15500, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15501, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15502, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15503, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15504, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15505, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15506, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15507, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15508, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15516, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15517, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15518, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15519, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15520, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15521, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15522, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15523, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15524, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15525, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15526, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15527, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15528, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mossy_stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17466, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17467, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17468, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17469, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17470, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17471, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17472, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17473, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17474, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17475, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17476, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17477, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17478, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17479, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17480, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17481, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17482, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17483, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17484, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17485, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17486, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17487, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17488, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17489, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17490, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17491, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17492, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17493, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17494, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17495, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17496, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17497, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17498, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17499, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17500, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17501, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17502, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17503, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17504, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17505, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17506, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17507, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17508, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17509, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17510, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17511, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17512, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17513, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17514, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17515, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17516, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17517, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17518, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17519, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17520, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17521, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17522, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17523, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17524, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17525, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17526, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17527, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17528, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17529, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17530, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17531, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17532, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17533, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17534, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17535, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17536, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17537, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17538, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17539, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17540, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17541, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17542, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17543, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17544, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17545, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17546, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17547, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17548, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17549, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17550, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17551, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17552, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17553, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17554, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17555, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17556, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17557, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17558, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17559, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17560, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17561, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17562, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17563, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17564, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17565, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17566, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17567, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17568, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17569, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17570, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17571, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17572, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17573, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17574, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17575, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17576, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17577, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17578, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17579, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17580, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17581, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17582, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17583, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17584, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17585, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17586, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17587, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17588, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17589, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17590, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17591, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17592, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17593, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17594, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17595, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17596, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17597, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17598, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17599, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17600, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17601, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17602, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17603, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17604, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17605, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17606, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17607, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17608, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17609, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17610, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17611, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17612, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17613, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17614, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17615, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17616, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17617, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17618, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17619, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17620, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17621, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17622, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17623, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17624, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17625, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17626, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17627, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17628, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17629, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17630, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17631, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17632, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17633, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17634, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17635, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17636, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17637, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17638, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17639, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17640, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17641, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17642, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17643, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17644, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17645, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17646, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17647, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17648, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17649, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17650, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17651, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17652, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17653, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17654, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17655, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17656, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17657, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17658, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17659, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17660, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17661, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17662, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17663, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17664, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17665, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17666, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17667, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17668, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17669, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17670, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17671, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17672, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17673, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17674, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17675, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17676, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17677, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17678, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17679, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17680, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17681, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17682, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17683, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17684, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17685, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17686, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17687, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17688, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17689, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17690, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17691, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17692, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17693, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17694, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17695, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17696, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17697, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17698, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17699, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17700, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17701, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17702, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17703, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17704, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17705, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17706, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17707, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17708, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17709, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17710, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17711, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17712, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17713, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17714, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17715, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17716, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17717, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17718, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17719, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17720, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17721, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17722, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17723, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17724, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17725, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17726, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17727, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17728, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17729, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17730, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17731, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17732, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17733, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17734, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17735, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17736, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17737, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17738, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17739, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17740, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17741, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17742, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17743, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17744, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17745, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17746, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17747, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17748, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17749, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17750, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17751, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17752, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17753, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17754, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17755, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17756, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17757, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17758, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17759, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17760, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17761, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17762, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17763, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17764, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17765, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17766, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17767, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17768, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17769, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17770, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17771, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17772, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17773, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17774, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17775, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17776, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17777, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17778, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17779, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17780, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17781, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17782, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17783, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17784, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17785, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17786, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17787, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17788, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17789, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mossy_stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7755 + } + ] + }, + "minecraft:moving_piston": { + "definition": { + "type": "minecraft:moving_piston", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "default": true, + "id": 2309, + "properties": { + "type": "normal", + "facing": "north" + } + }, + { + "id": 2310, + "properties": { + "type": "sticky", + "facing": "north" + } + }, + { + "id": 2311, + "properties": { + "type": "normal", + "facing": "east" + } + }, + { + "id": 2312, + "properties": { + "type": "sticky", + "facing": "east" + } + }, + { + "id": 2313, + "properties": { + "type": "normal", + "facing": "south" + } + }, + { + "id": 2314, + "properties": { + "type": "sticky", + "facing": "south" + } + }, + { + "id": 2315, + "properties": { + "type": "normal", + "facing": "west" + } + }, + { + "id": 2316, + "properties": { + "type": "sticky", + "facing": "west" + } + }, + { + "id": 2317, + "properties": { + "type": "normal", + "facing": "up" + } + }, + { + "id": 2318, + "properties": { + "type": "sticky", + "facing": "up" + } + }, + { + "id": 2319, + "properties": { + "type": "normal", + "facing": "down" + } + }, + { + "id": 2320, + "properties": { + "type": "sticky", + "facing": "down" + } + } + ] + }, + "minecraft:mud": { + "definition": { + "type": "minecraft:mud", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30415 + } + ] + }, + "minecraft:mud_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13444, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13445, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13446, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13447, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13448, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13449, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:mud_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8838, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8839, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8840, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8841, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8842, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8843, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8844, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8845, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8846, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8847, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8848, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8851, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8852, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8853, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8854, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8855, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8856, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8857, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8858, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8859, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8860, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8861, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8862, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8863, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8864, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8865, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8866, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8867, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8868, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8871, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8872, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8873, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8874, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8875, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8876, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8877, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8878, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8879, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8880, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8881, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8882, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8883, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8884, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8885, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8886, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8887, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8888, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8891, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8892, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8893, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8894, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8895, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8896, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8897, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8898, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8899, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8900, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8901, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8902, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8903, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8904, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8905, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8906, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8907, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8908, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8911, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8912, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8913, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8914, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8915, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8916, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8917, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:mud_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18438, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18439, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18440, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18441, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18442, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18443, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18444, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18445, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18446, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18447, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18448, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18449, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18450, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18451, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18452, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18453, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18454, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18455, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18456, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18457, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18458, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18459, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18460, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18461, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18462, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18463, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18464, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18465, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18466, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18467, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18468, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18469, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18470, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18471, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18472, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18473, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18474, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18475, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18476, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18477, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18478, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18479, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18480, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18481, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18482, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18483, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18484, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18485, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18486, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18487, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18488, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18489, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18490, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18491, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18492, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18493, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18494, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18495, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18496, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18497, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18498, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18499, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18500, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18501, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18502, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18503, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18504, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18505, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18506, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18507, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18508, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18509, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18510, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18511, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18512, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18513, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18514, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18515, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18516, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18517, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18518, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18519, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18520, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18521, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18522, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18523, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18524, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18525, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18526, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18527, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18528, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18529, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18530, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18531, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18532, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18533, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18534, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18535, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18536, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18537, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18538, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18539, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18540, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18541, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18542, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18543, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18544, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18545, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18546, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18547, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18548, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18549, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18550, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18551, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18552, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18553, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18554, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18555, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18556, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18557, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18558, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18559, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18560, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18561, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18562, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18563, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18564, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18565, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18566, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18567, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18568, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18569, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18570, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18571, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18572, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18573, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18574, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18575, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18576, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18577, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18578, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18579, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18580, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18581, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18582, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18583, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18584, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18585, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18586, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18587, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18588, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18589, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18590, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18591, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18592, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18593, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18594, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18595, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18596, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18597, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18598, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18599, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18600, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18601, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18602, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18603, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18604, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18605, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18606, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18607, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18608, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18609, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18610, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18611, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18612, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18613, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18614, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18615, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18616, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18617, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18618, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18619, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18620, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18621, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18622, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18623, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18624, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18625, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18626, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18627, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18628, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18629, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18630, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18631, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18632, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18633, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18634, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18635, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18636, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18637, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18638, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18639, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18640, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18641, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18642, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18643, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18644, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18645, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18646, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18647, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18648, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18649, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18650, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18651, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18652, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18653, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18654, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18655, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18656, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18657, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18658, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18659, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18660, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18661, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18662, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18663, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18664, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18665, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18666, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18667, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18668, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18669, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18670, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18671, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18672, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18673, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18674, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18675, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18676, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18677, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18678, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18679, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18680, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18681, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18682, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18683, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18684, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18685, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18686, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18687, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18688, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18689, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18690, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18691, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18692, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18693, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18694, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18695, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18696, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18697, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18698, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18699, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18700, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18701, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18702, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18703, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18704, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18705, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18706, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18707, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18708, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18709, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18710, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18711, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18712, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18713, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18714, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18715, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18716, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18717, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18718, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18719, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18720, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18721, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18722, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18723, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18724, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18725, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18726, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18727, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18728, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18729, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18730, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18731, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18732, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18733, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18734, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18735, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18736, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18737, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18738, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18739, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18740, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18741, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18742, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18743, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18744, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18745, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18746, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18747, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18748, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18749, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18750, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18751, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18752, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18753, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18754, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18755, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18756, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18757, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18758, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18759, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18760, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18761, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:mud_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7759 + } + ] + }, + "minecraft:muddy_mangrove_roots": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 165, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 166, + "properties": { + "axis": "y" + } + }, + { + "id": 167, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:mushroom_stem": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7894, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7895, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7896, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7897, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7898, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7899, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7900, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7901, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7902, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7903, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7904, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7905, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7906, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7907, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7908, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7909, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7910, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7911, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7912, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7913, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7914, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7915, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7916, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7917, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7918, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7919, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7920, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7921, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7922, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7923, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7924, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7925, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7926, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7927, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7928, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7929, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7930, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7931, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7932, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7933, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7934, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7935, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7936, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7937, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7938, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7939, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7940, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7941, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7942, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7943, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7944, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7945, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7946, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7947, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7948, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7949, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7950, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7951, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7952, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7953, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7954, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7955, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7956, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7957, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:mycelium": { + "definition": { + "type": "minecraft:mycelium", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8918, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 8919, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:nether_brick_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9335, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9336, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9337, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9338, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9339, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9340, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9341, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9342, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9343, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9344, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9345, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9346, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9347, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9348, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9349, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9350, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9351, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9352, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9353, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9354, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9355, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9356, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9357, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9358, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9359, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9360, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9361, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 9362, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 9363, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 9364, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 9365, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9366, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13450, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13451, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13452, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13453, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13454, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13455, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9367, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9368, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9369, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9370, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9371, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9372, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9373, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9374, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9375, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9376, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9377, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9380, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9381, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9382, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9383, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9384, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9385, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9387, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9388, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9389, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9390, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9391, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9392, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9393, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9394, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9395, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9396, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9397, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9400, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9401, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9402, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9403, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9404, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9405, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9407, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9408, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9409, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9410, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9411, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9412, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9413, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9414, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9415, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9416, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9417, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9420, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9421, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9422, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9423, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9424, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9425, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9427, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9428, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9429, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9430, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9431, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9432, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9433, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9434, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9435, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9436, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9437, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9440, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9441, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9442, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9443, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9444, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9445, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18762, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18763, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18764, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18765, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18766, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18767, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18768, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18769, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18770, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18771, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18772, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18773, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18774, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18775, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18776, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18777, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18778, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18779, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18780, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18781, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18782, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18783, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18784, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18785, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18786, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18787, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18788, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18789, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18790, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18791, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18792, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18793, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18794, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18795, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18796, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18797, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18798, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18799, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18800, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18801, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18802, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18803, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18804, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18805, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18806, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18807, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18808, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18809, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18810, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18811, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18812, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18813, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18814, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18815, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18816, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18817, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18818, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18819, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18820, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18821, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18822, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18823, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18824, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18825, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18826, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18827, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18828, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18829, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18830, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18831, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18832, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18833, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18834, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18835, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18836, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18837, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18838, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18839, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18840, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18841, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18842, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18843, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18844, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18845, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18846, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18847, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18848, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18849, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18850, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18851, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18852, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18853, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18854, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18855, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18856, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18857, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18858, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18859, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18860, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18861, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18862, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18863, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18864, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18865, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18866, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18867, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18868, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18869, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18870, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18871, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18872, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18873, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18874, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18875, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18876, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18877, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18878, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18879, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18880, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18881, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18882, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18883, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18884, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18885, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18886, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18887, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18888, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18889, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18890, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18891, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18892, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18893, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18894, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18895, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18896, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18897, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18898, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18899, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18900, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18901, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18902, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18903, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18904, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18905, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18906, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18907, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18908, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18909, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18910, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18911, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18912, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18913, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18914, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18915, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18916, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18917, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18918, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18919, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18920, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18921, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18922, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18923, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18924, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18925, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18926, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18927, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18928, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18929, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18930, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18931, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18932, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18933, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18934, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18935, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18936, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18937, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18938, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18939, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18940, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18941, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18942, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18943, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18944, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18945, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18946, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18947, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18948, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18949, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18950, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18951, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18952, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18953, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18954, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18955, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18956, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18957, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18958, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18959, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18960, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18961, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18962, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18963, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18964, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18965, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18966, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18967, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18968, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18969, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18970, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18971, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18972, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18973, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18974, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18975, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18976, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18977, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18978, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18979, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18980, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18981, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18982, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18983, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18984, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18985, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18986, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18987, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18988, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18989, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18990, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18991, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18992, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18993, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18994, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18995, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18996, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18997, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18998, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18999, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19000, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19001, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19002, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19003, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19004, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19005, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19006, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19007, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19008, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19009, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19010, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19011, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19012, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19013, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19014, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19015, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19016, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19017, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19018, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19019, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19020, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19021, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19022, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19023, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19024, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19025, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19026, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19027, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19028, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19029, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19030, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19031, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19032, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19033, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19034, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19035, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19036, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19037, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19038, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19039, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19040, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19041, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19042, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19043, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19044, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19045, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19046, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19047, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19048, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19049, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19050, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19051, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19052, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19053, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19054, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19055, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19056, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19057, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19058, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19059, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19060, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19061, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19062, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19063, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19064, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19065, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19066, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19067, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19068, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19069, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19070, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19071, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19072, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19073, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19074, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19075, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19076, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19077, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19078, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19079, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19080, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19081, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19082, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19083, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19084, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19085, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 9334 + } + ] + }, + "minecraft:nether_gold_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 1, + "min_inclusive": 0 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 135 + } + ] + }, + "minecraft:nether_portal": { + "definition": { + "type": "minecraft:nether_portal", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "z" + ] + }, + "states": [ + { + "default": true, + "id": 7017, + "properties": { + "axis": "x" + } + }, + { + "id": 7018, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:nether_quartz_ore": { + "definition": { + "type": "minecraft:drop_experience", + "experience": { + "type": "minecraft:uniform", + "max_inclusive": 5, + "min_inclusive": 2 + }, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11312 + } + ] + }, + "minecraft:nether_sprouts": { + "definition": { + "type": "minecraft:nether_sprouts", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20961 + } + ] + }, + "minecraft:nether_wart": { + "definition": { + "type": "minecraft:nether_wart", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9447, + "properties": { + "age": "0" + } + }, + { + "id": 9448, + "properties": { + "age": "1" + } + }, + { + "id": 9449, + "properties": { + "age": "2" + } + }, + { + "id": 9450, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:nether_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14846 + } + ] + }, + "minecraft:netherite_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21818 + } + ] + }, + "minecraft:netherrack": { + "definition": { + "type": "minecraft:netherrack", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6997 + } + ] + }, + "minecraft:note_block": { + "definition": { + "type": "minecraft:note", + "properties": {} + }, + "properties": { + "instrument": [ + "harp", + "basedrum", + "snare", + "hat", + "bass", + "flute", + "bell", + "guitar", + "chime", + "xylophone", + "iron_xylophone", + "cow_bell", + "didgeridoo", + "bit", + "banjo", + "pling", + "trumpet", + "trumpet_exposed", + "trumpet_oxidized", + "trumpet_weathered", + "zombie", + "skeleton", + "creeper", + "dragon", + "wither_skeleton", + "piglin", + "custom_head" + ], + "note": [ + "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" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 581, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "true" + } + }, + { + "default": true, + "id": 582, + "properties": { + "instrument": "harp", + "note": "0", + "powered": "false" + } + }, + { + "id": 583, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "true" + } + }, + { + "id": 584, + "properties": { + "instrument": "harp", + "note": "1", + "powered": "false" + } + }, + { + "id": 585, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "true" + } + }, + { + "id": 586, + "properties": { + "instrument": "harp", + "note": "2", + "powered": "false" + } + }, + { + "id": 587, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "true" + } + }, + { + "id": 588, + "properties": { + "instrument": "harp", + "note": "3", + "powered": "false" + } + }, + { + "id": 589, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "true" + } + }, + { + "id": 590, + "properties": { + "instrument": "harp", + "note": "4", + "powered": "false" + } + }, + { + "id": 591, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "true" + } + }, + { + "id": 592, + "properties": { + "instrument": "harp", + "note": "5", + "powered": "false" + } + }, + { + "id": 593, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "true" + } + }, + { + "id": 594, + "properties": { + "instrument": "harp", + "note": "6", + "powered": "false" + } + }, + { + "id": 595, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "true" + } + }, + { + "id": 596, + "properties": { + "instrument": "harp", + "note": "7", + "powered": "false" + } + }, + { + "id": 597, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "true" + } + }, + { + "id": 598, + "properties": { + "instrument": "harp", + "note": "8", + "powered": "false" + } + }, + { + "id": 599, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "true" + } + }, + { + "id": 600, + "properties": { + "instrument": "harp", + "note": "9", + "powered": "false" + } + }, + { + "id": 601, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "true" + } + }, + { + "id": 602, + "properties": { + "instrument": "harp", + "note": "10", + "powered": "false" + } + }, + { + "id": 603, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "true" + } + }, + { + "id": 604, + "properties": { + "instrument": "harp", + "note": "11", + "powered": "false" + } + }, + { + "id": 605, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "true" + } + }, + { + "id": 606, + "properties": { + "instrument": "harp", + "note": "12", + "powered": "false" + } + }, + { + "id": 607, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "true" + } + }, + { + "id": 608, + "properties": { + "instrument": "harp", + "note": "13", + "powered": "false" + } + }, + { + "id": 609, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "true" + } + }, + { + "id": 610, + "properties": { + "instrument": "harp", + "note": "14", + "powered": "false" + } + }, + { + "id": 611, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "true" + } + }, + { + "id": 612, + "properties": { + "instrument": "harp", + "note": "15", + "powered": "false" + } + }, + { + "id": 613, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "true" + } + }, + { + "id": 614, + "properties": { + "instrument": "harp", + "note": "16", + "powered": "false" + } + }, + { + "id": 615, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "true" + } + }, + { + "id": 616, + "properties": { + "instrument": "harp", + "note": "17", + "powered": "false" + } + }, + { + "id": 617, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "true" + } + }, + { + "id": 618, + "properties": { + "instrument": "harp", + "note": "18", + "powered": "false" + } + }, + { + "id": 619, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "true" + } + }, + { + "id": 620, + "properties": { + "instrument": "harp", + "note": "19", + "powered": "false" + } + }, + { + "id": 621, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "true" + } + }, + { + "id": 622, + "properties": { + "instrument": "harp", + "note": "20", + "powered": "false" + } + }, + { + "id": 623, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "true" + } + }, + { + "id": 624, + "properties": { + "instrument": "harp", + "note": "21", + "powered": "false" + } + }, + { + "id": 625, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "true" + } + }, + { + "id": 626, + "properties": { + "instrument": "harp", + "note": "22", + "powered": "false" + } + }, + { + "id": 627, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "true" + } + }, + { + "id": 628, + "properties": { + "instrument": "harp", + "note": "23", + "powered": "false" + } + }, + { + "id": 629, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "true" + } + }, + { + "id": 630, + "properties": { + "instrument": "harp", + "note": "24", + "powered": "false" + } + }, + { + "id": 631, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "true" + } + }, + { + "id": 632, + "properties": { + "instrument": "basedrum", + "note": "0", + "powered": "false" + } + }, + { + "id": 633, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "true" + } + }, + { + "id": 634, + "properties": { + "instrument": "basedrum", + "note": "1", + "powered": "false" + } + }, + { + "id": 635, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "true" + } + }, + { + "id": 636, + "properties": { + "instrument": "basedrum", + "note": "2", + "powered": "false" + } + }, + { + "id": 637, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "true" + } + }, + { + "id": 638, + "properties": { + "instrument": "basedrum", + "note": "3", + "powered": "false" + } + }, + { + "id": 639, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "true" + } + }, + { + "id": 640, + "properties": { + "instrument": "basedrum", + "note": "4", + "powered": "false" + } + }, + { + "id": 641, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "true" + } + }, + { + "id": 642, + "properties": { + "instrument": "basedrum", + "note": "5", + "powered": "false" + } + }, + { + "id": 643, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "true" + } + }, + { + "id": 644, + "properties": { + "instrument": "basedrum", + "note": "6", + "powered": "false" + } + }, + { + "id": 645, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "true" + } + }, + { + "id": 646, + "properties": { + "instrument": "basedrum", + "note": "7", + "powered": "false" + } + }, + { + "id": 647, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "true" + } + }, + { + "id": 648, + "properties": { + "instrument": "basedrum", + "note": "8", + "powered": "false" + } + }, + { + "id": 649, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "true" + } + }, + { + "id": 650, + "properties": { + "instrument": "basedrum", + "note": "9", + "powered": "false" + } + }, + { + "id": 651, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "true" + } + }, + { + "id": 652, + "properties": { + "instrument": "basedrum", + "note": "10", + "powered": "false" + } + }, + { + "id": 653, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "true" + } + }, + { + "id": 654, + "properties": { + "instrument": "basedrum", + "note": "11", + "powered": "false" + } + }, + { + "id": 655, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "true" + } + }, + { + "id": 656, + "properties": { + "instrument": "basedrum", + "note": "12", + "powered": "false" + } + }, + { + "id": 657, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "true" + } + }, + { + "id": 658, + "properties": { + "instrument": "basedrum", + "note": "13", + "powered": "false" + } + }, + { + "id": 659, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "true" + } + }, + { + "id": 660, + "properties": { + "instrument": "basedrum", + "note": "14", + "powered": "false" + } + }, + { + "id": 661, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "true" + } + }, + { + "id": 662, + "properties": { + "instrument": "basedrum", + "note": "15", + "powered": "false" + } + }, + { + "id": 663, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "true" + } + }, + { + "id": 664, + "properties": { + "instrument": "basedrum", + "note": "16", + "powered": "false" + } + }, + { + "id": 665, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "true" + } + }, + { + "id": 666, + "properties": { + "instrument": "basedrum", + "note": "17", + "powered": "false" + } + }, + { + "id": 667, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "true" + } + }, + { + "id": 668, + "properties": { + "instrument": "basedrum", + "note": "18", + "powered": "false" + } + }, + { + "id": 669, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "true" + } + }, + { + "id": 670, + "properties": { + "instrument": "basedrum", + "note": "19", + "powered": "false" + } + }, + { + "id": 671, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "true" + } + }, + { + "id": 672, + "properties": { + "instrument": "basedrum", + "note": "20", + "powered": "false" + } + }, + { + "id": 673, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "true" + } + }, + { + "id": 674, + "properties": { + "instrument": "basedrum", + "note": "21", + "powered": "false" + } + }, + { + "id": 675, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "true" + } + }, + { + "id": 676, + "properties": { + "instrument": "basedrum", + "note": "22", + "powered": "false" + } + }, + { + "id": 677, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "true" + } + }, + { + "id": 678, + "properties": { + "instrument": "basedrum", + "note": "23", + "powered": "false" + } + }, + { + "id": 679, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "true" + } + }, + { + "id": 680, + "properties": { + "instrument": "basedrum", + "note": "24", + "powered": "false" + } + }, + { + "id": 681, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "true" + } + }, + { + "id": 682, + "properties": { + "instrument": "snare", + "note": "0", + "powered": "false" + } + }, + { + "id": 683, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "true" + } + }, + { + "id": 684, + "properties": { + "instrument": "snare", + "note": "1", + "powered": "false" + } + }, + { + "id": 685, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "true" + } + }, + { + "id": 686, + "properties": { + "instrument": "snare", + "note": "2", + "powered": "false" + } + }, + { + "id": 687, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "true" + } + }, + { + "id": 688, + "properties": { + "instrument": "snare", + "note": "3", + "powered": "false" + } + }, + { + "id": 689, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "true" + } + }, + { + "id": 690, + "properties": { + "instrument": "snare", + "note": "4", + "powered": "false" + } + }, + { + "id": 691, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "true" + } + }, + { + "id": 692, + "properties": { + "instrument": "snare", + "note": "5", + "powered": "false" + } + }, + { + "id": 693, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "true" + } + }, + { + "id": 694, + "properties": { + "instrument": "snare", + "note": "6", + "powered": "false" + } + }, + { + "id": 695, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "true" + } + }, + { + "id": 696, + "properties": { + "instrument": "snare", + "note": "7", + "powered": "false" + } + }, + { + "id": 697, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "true" + } + }, + { + "id": 698, + "properties": { + "instrument": "snare", + "note": "8", + "powered": "false" + } + }, + { + "id": 699, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "true" + } + }, + { + "id": 700, + "properties": { + "instrument": "snare", + "note": "9", + "powered": "false" + } + }, + { + "id": 701, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "true" + } + }, + { + "id": 702, + "properties": { + "instrument": "snare", + "note": "10", + "powered": "false" + } + }, + { + "id": 703, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "true" + } + }, + { + "id": 704, + "properties": { + "instrument": "snare", + "note": "11", + "powered": "false" + } + }, + { + "id": 705, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "true" + } + }, + { + "id": 706, + "properties": { + "instrument": "snare", + "note": "12", + "powered": "false" + } + }, + { + "id": 707, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "true" + } + }, + { + "id": 708, + "properties": { + "instrument": "snare", + "note": "13", + "powered": "false" + } + }, + { + "id": 709, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "true" + } + }, + { + "id": 710, + "properties": { + "instrument": "snare", + "note": "14", + "powered": "false" + } + }, + { + "id": 711, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "true" + } + }, + { + "id": 712, + "properties": { + "instrument": "snare", + "note": "15", + "powered": "false" + } + }, + { + "id": 713, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "true" + } + }, + { + "id": 714, + "properties": { + "instrument": "snare", + "note": "16", + "powered": "false" + } + }, + { + "id": 715, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "true" + } + }, + { + "id": 716, + "properties": { + "instrument": "snare", + "note": "17", + "powered": "false" + } + }, + { + "id": 717, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "true" + } + }, + { + "id": 718, + "properties": { + "instrument": "snare", + "note": "18", + "powered": "false" + } + }, + { + "id": 719, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "true" + } + }, + { + "id": 720, + "properties": { + "instrument": "snare", + "note": "19", + "powered": "false" + } + }, + { + "id": 721, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "true" + } + }, + { + "id": 722, + "properties": { + "instrument": "snare", + "note": "20", + "powered": "false" + } + }, + { + "id": 723, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "true" + } + }, + { + "id": 724, + "properties": { + "instrument": "snare", + "note": "21", + "powered": "false" + } + }, + { + "id": 725, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "true" + } + }, + { + "id": 726, + "properties": { + "instrument": "snare", + "note": "22", + "powered": "false" + } + }, + { + "id": 727, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "true" + } + }, + { + "id": 728, + "properties": { + "instrument": "snare", + "note": "23", + "powered": "false" + } + }, + { + "id": 729, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "true" + } + }, + { + "id": 730, + "properties": { + "instrument": "snare", + "note": "24", + "powered": "false" + } + }, + { + "id": 731, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "true" + } + }, + { + "id": 732, + "properties": { + "instrument": "hat", + "note": "0", + "powered": "false" + } + }, + { + "id": 733, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "true" + } + }, + { + "id": 734, + "properties": { + "instrument": "hat", + "note": "1", + "powered": "false" + } + }, + { + "id": 735, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "true" + } + }, + { + "id": 736, + "properties": { + "instrument": "hat", + "note": "2", + "powered": "false" + } + }, + { + "id": 737, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "true" + } + }, + { + "id": 738, + "properties": { + "instrument": "hat", + "note": "3", + "powered": "false" + } + }, + { + "id": 739, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "true" + } + }, + { + "id": 740, + "properties": { + "instrument": "hat", + "note": "4", + "powered": "false" + } + }, + { + "id": 741, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "true" + } + }, + { + "id": 742, + "properties": { + "instrument": "hat", + "note": "5", + "powered": "false" + } + }, + { + "id": 743, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "true" + } + }, + { + "id": 744, + "properties": { + "instrument": "hat", + "note": "6", + "powered": "false" + } + }, + { + "id": 745, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "true" + } + }, + { + "id": 746, + "properties": { + "instrument": "hat", + "note": "7", + "powered": "false" + } + }, + { + "id": 747, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "true" + } + }, + { + "id": 748, + "properties": { + "instrument": "hat", + "note": "8", + "powered": "false" + } + }, + { + "id": 749, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "true" + } + }, + { + "id": 750, + "properties": { + "instrument": "hat", + "note": "9", + "powered": "false" + } + }, + { + "id": 751, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "true" + } + }, + { + "id": 752, + "properties": { + "instrument": "hat", + "note": "10", + "powered": "false" + } + }, + { + "id": 753, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "true" + } + }, + { + "id": 754, + "properties": { + "instrument": "hat", + "note": "11", + "powered": "false" + } + }, + { + "id": 755, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "true" + } + }, + { + "id": 756, + "properties": { + "instrument": "hat", + "note": "12", + "powered": "false" + } + }, + { + "id": 757, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "true" + } + }, + { + "id": 758, + "properties": { + "instrument": "hat", + "note": "13", + "powered": "false" + } + }, + { + "id": 759, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "true" + } + }, + { + "id": 760, + "properties": { + "instrument": "hat", + "note": "14", + "powered": "false" + } + }, + { + "id": 761, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "true" + } + }, + { + "id": 762, + "properties": { + "instrument": "hat", + "note": "15", + "powered": "false" + } + }, + { + "id": 763, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "true" + } + }, + { + "id": 764, + "properties": { + "instrument": "hat", + "note": "16", + "powered": "false" + } + }, + { + "id": 765, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "true" + } + }, + { + "id": 766, + "properties": { + "instrument": "hat", + "note": "17", + "powered": "false" + } + }, + { + "id": 767, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "true" + } + }, + { + "id": 768, + "properties": { + "instrument": "hat", + "note": "18", + "powered": "false" + } + }, + { + "id": 769, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "true" + } + }, + { + "id": 770, + "properties": { + "instrument": "hat", + "note": "19", + "powered": "false" + } + }, + { + "id": 771, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "true" + } + }, + { + "id": 772, + "properties": { + "instrument": "hat", + "note": "20", + "powered": "false" + } + }, + { + "id": 773, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "true" + } + }, + { + "id": 774, + "properties": { + "instrument": "hat", + "note": "21", + "powered": "false" + } + }, + { + "id": 775, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "true" + } + }, + { + "id": 776, + "properties": { + "instrument": "hat", + "note": "22", + "powered": "false" + } + }, + { + "id": 777, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "true" + } + }, + { + "id": 778, + "properties": { + "instrument": "hat", + "note": "23", + "powered": "false" + } + }, + { + "id": 779, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "true" + } + }, + { + "id": 780, + "properties": { + "instrument": "hat", + "note": "24", + "powered": "false" + } + }, + { + "id": 781, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "true" + } + }, + { + "id": 782, + "properties": { + "instrument": "bass", + "note": "0", + "powered": "false" + } + }, + { + "id": 783, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "true" + } + }, + { + "id": 784, + "properties": { + "instrument": "bass", + "note": "1", + "powered": "false" + } + }, + { + "id": 785, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "true" + } + }, + { + "id": 786, + "properties": { + "instrument": "bass", + "note": "2", + "powered": "false" + } + }, + { + "id": 787, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "true" + } + }, + { + "id": 788, + "properties": { + "instrument": "bass", + "note": "3", + "powered": "false" + } + }, + { + "id": 789, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "true" + } + }, + { + "id": 790, + "properties": { + "instrument": "bass", + "note": "4", + "powered": "false" + } + }, + { + "id": 791, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "true" + } + }, + { + "id": 792, + "properties": { + "instrument": "bass", + "note": "5", + "powered": "false" + } + }, + { + "id": 793, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "true" + } + }, + { + "id": 794, + "properties": { + "instrument": "bass", + "note": "6", + "powered": "false" + } + }, + { + "id": 795, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "true" + } + }, + { + "id": 796, + "properties": { + "instrument": "bass", + "note": "7", + "powered": "false" + } + }, + { + "id": 797, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "true" + } + }, + { + "id": 798, + "properties": { + "instrument": "bass", + "note": "8", + "powered": "false" + } + }, + { + "id": 799, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "true" + } + }, + { + "id": 800, + "properties": { + "instrument": "bass", + "note": "9", + "powered": "false" + } + }, + { + "id": 801, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "true" + } + }, + { + "id": 802, + "properties": { + "instrument": "bass", + "note": "10", + "powered": "false" + } + }, + { + "id": 803, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "true" + } + }, + { + "id": 804, + "properties": { + "instrument": "bass", + "note": "11", + "powered": "false" + } + }, + { + "id": 805, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "true" + } + }, + { + "id": 806, + "properties": { + "instrument": "bass", + "note": "12", + "powered": "false" + } + }, + { + "id": 807, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "true" + } + }, + { + "id": 808, + "properties": { + "instrument": "bass", + "note": "13", + "powered": "false" + } + }, + { + "id": 809, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "true" + } + }, + { + "id": 810, + "properties": { + "instrument": "bass", + "note": "14", + "powered": "false" + } + }, + { + "id": 811, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "true" + } + }, + { + "id": 812, + "properties": { + "instrument": "bass", + "note": "15", + "powered": "false" + } + }, + { + "id": 813, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "true" + } + }, + { + "id": 814, + "properties": { + "instrument": "bass", + "note": "16", + "powered": "false" + } + }, + { + "id": 815, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "true" + } + }, + { + "id": 816, + "properties": { + "instrument": "bass", + "note": "17", + "powered": "false" + } + }, + { + "id": 817, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "true" + } + }, + { + "id": 818, + "properties": { + "instrument": "bass", + "note": "18", + "powered": "false" + } + }, + { + "id": 819, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "true" + } + }, + { + "id": 820, + "properties": { + "instrument": "bass", + "note": "19", + "powered": "false" + } + }, + { + "id": 821, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "true" + } + }, + { + "id": 822, + "properties": { + "instrument": "bass", + "note": "20", + "powered": "false" + } + }, + { + "id": 823, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "true" + } + }, + { + "id": 824, + "properties": { + "instrument": "bass", + "note": "21", + "powered": "false" + } + }, + { + "id": 825, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "true" + } + }, + { + "id": 826, + "properties": { + "instrument": "bass", + "note": "22", + "powered": "false" + } + }, + { + "id": 827, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "true" + } + }, + { + "id": 828, + "properties": { + "instrument": "bass", + "note": "23", + "powered": "false" + } + }, + { + "id": 829, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "true" + } + }, + { + "id": 830, + "properties": { + "instrument": "bass", + "note": "24", + "powered": "false" + } + }, + { + "id": 831, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "true" + } + }, + { + "id": 832, + "properties": { + "instrument": "flute", + "note": "0", + "powered": "false" + } + }, + { + "id": 833, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "true" + } + }, + { + "id": 834, + "properties": { + "instrument": "flute", + "note": "1", + "powered": "false" + } + }, + { + "id": 835, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "true" + } + }, + { + "id": 836, + "properties": { + "instrument": "flute", + "note": "2", + "powered": "false" + } + }, + { + "id": 837, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "true" + } + }, + { + "id": 838, + "properties": { + "instrument": "flute", + "note": "3", + "powered": "false" + } + }, + { + "id": 839, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "true" + } + }, + { + "id": 840, + "properties": { + "instrument": "flute", + "note": "4", + "powered": "false" + } + }, + { + "id": 841, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "true" + } + }, + { + "id": 842, + "properties": { + "instrument": "flute", + "note": "5", + "powered": "false" + } + }, + { + "id": 843, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "true" + } + }, + { + "id": 844, + "properties": { + "instrument": "flute", + "note": "6", + "powered": "false" + } + }, + { + "id": 845, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "true" + } + }, + { + "id": 846, + "properties": { + "instrument": "flute", + "note": "7", + "powered": "false" + } + }, + { + "id": 847, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "true" + } + }, + { + "id": 848, + "properties": { + "instrument": "flute", + "note": "8", + "powered": "false" + } + }, + { + "id": 849, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "true" + } + }, + { + "id": 850, + "properties": { + "instrument": "flute", + "note": "9", + "powered": "false" + } + }, + { + "id": 851, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "true" + } + }, + { + "id": 852, + "properties": { + "instrument": "flute", + "note": "10", + "powered": "false" + } + }, + { + "id": 853, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "true" + } + }, + { + "id": 854, + "properties": { + "instrument": "flute", + "note": "11", + "powered": "false" + } + }, + { + "id": 855, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "true" + } + }, + { + "id": 856, + "properties": { + "instrument": "flute", + "note": "12", + "powered": "false" + } + }, + { + "id": 857, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "true" + } + }, + { + "id": 858, + "properties": { + "instrument": "flute", + "note": "13", + "powered": "false" + } + }, + { + "id": 859, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "true" + } + }, + { + "id": 860, + "properties": { + "instrument": "flute", + "note": "14", + "powered": "false" + } + }, + { + "id": 861, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "true" + } + }, + { + "id": 862, + "properties": { + "instrument": "flute", + "note": "15", + "powered": "false" + } + }, + { + "id": 863, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "true" + } + }, + { + "id": 864, + "properties": { + "instrument": "flute", + "note": "16", + "powered": "false" + } + }, + { + "id": 865, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "true" + } + }, + { + "id": 866, + "properties": { + "instrument": "flute", + "note": "17", + "powered": "false" + } + }, + { + "id": 867, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "true" + } + }, + { + "id": 868, + "properties": { + "instrument": "flute", + "note": "18", + "powered": "false" + } + }, + { + "id": 869, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "true" + } + }, + { + "id": 870, + "properties": { + "instrument": "flute", + "note": "19", + "powered": "false" + } + }, + { + "id": 871, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "true" + } + }, + { + "id": 872, + "properties": { + "instrument": "flute", + "note": "20", + "powered": "false" + } + }, + { + "id": 873, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "true" + } + }, + { + "id": 874, + "properties": { + "instrument": "flute", + "note": "21", + "powered": "false" + } + }, + { + "id": 875, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "true" + } + }, + { + "id": 876, + "properties": { + "instrument": "flute", + "note": "22", + "powered": "false" + } + }, + { + "id": 877, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "true" + } + }, + { + "id": 878, + "properties": { + "instrument": "flute", + "note": "23", + "powered": "false" + } + }, + { + "id": 879, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "true" + } + }, + { + "id": 880, + "properties": { + "instrument": "flute", + "note": "24", + "powered": "false" + } + }, + { + "id": 881, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 882, + "properties": { + "instrument": "bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 883, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 884, + "properties": { + "instrument": "bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 885, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 886, + "properties": { + "instrument": "bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 887, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 888, + "properties": { + "instrument": "bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 889, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 890, + "properties": { + "instrument": "bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 891, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 892, + "properties": { + "instrument": "bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 893, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 894, + "properties": { + "instrument": "bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 895, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 896, + "properties": { + "instrument": "bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 897, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 898, + "properties": { + "instrument": "bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 899, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 900, + "properties": { + "instrument": "bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 901, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 902, + "properties": { + "instrument": "bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 903, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 904, + "properties": { + "instrument": "bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 905, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 906, + "properties": { + "instrument": "bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 907, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 908, + "properties": { + "instrument": "bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 909, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 910, + "properties": { + "instrument": "bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 911, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 912, + "properties": { + "instrument": "bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 913, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 914, + "properties": { + "instrument": "bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 915, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 916, + "properties": { + "instrument": "bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 917, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 918, + "properties": { + "instrument": "bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 919, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 920, + "properties": { + "instrument": "bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 921, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 922, + "properties": { + "instrument": "bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 923, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 924, + "properties": { + "instrument": "bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 925, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 926, + "properties": { + "instrument": "bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 927, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 928, + "properties": { + "instrument": "bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 929, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 930, + "properties": { + "instrument": "bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 931, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "true" + } + }, + { + "id": 932, + "properties": { + "instrument": "guitar", + "note": "0", + "powered": "false" + } + }, + { + "id": 933, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "true" + } + }, + { + "id": 934, + "properties": { + "instrument": "guitar", + "note": "1", + "powered": "false" + } + }, + { + "id": 935, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "true" + } + }, + { + "id": 936, + "properties": { + "instrument": "guitar", + "note": "2", + "powered": "false" + } + }, + { + "id": 937, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "true" + } + }, + { + "id": 938, + "properties": { + "instrument": "guitar", + "note": "3", + "powered": "false" + } + }, + { + "id": 939, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "true" + } + }, + { + "id": 940, + "properties": { + "instrument": "guitar", + "note": "4", + "powered": "false" + } + }, + { + "id": 941, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "true" + } + }, + { + "id": 942, + "properties": { + "instrument": "guitar", + "note": "5", + "powered": "false" + } + }, + { + "id": 943, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "true" + } + }, + { + "id": 944, + "properties": { + "instrument": "guitar", + "note": "6", + "powered": "false" + } + }, + { + "id": 945, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "true" + } + }, + { + "id": 946, + "properties": { + "instrument": "guitar", + "note": "7", + "powered": "false" + } + }, + { + "id": 947, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "true" + } + }, + { + "id": 948, + "properties": { + "instrument": "guitar", + "note": "8", + "powered": "false" + } + }, + { + "id": 949, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "true" + } + }, + { + "id": 950, + "properties": { + "instrument": "guitar", + "note": "9", + "powered": "false" + } + }, + { + "id": 951, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "true" + } + }, + { + "id": 952, + "properties": { + "instrument": "guitar", + "note": "10", + "powered": "false" + } + }, + { + "id": 953, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "true" + } + }, + { + "id": 954, + "properties": { + "instrument": "guitar", + "note": "11", + "powered": "false" + } + }, + { + "id": 955, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "true" + } + }, + { + "id": 956, + "properties": { + "instrument": "guitar", + "note": "12", + "powered": "false" + } + }, + { + "id": 957, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "true" + } + }, + { + "id": 958, + "properties": { + "instrument": "guitar", + "note": "13", + "powered": "false" + } + }, + { + "id": 959, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "true" + } + }, + { + "id": 960, + "properties": { + "instrument": "guitar", + "note": "14", + "powered": "false" + } + }, + { + "id": 961, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "true" + } + }, + { + "id": 962, + "properties": { + "instrument": "guitar", + "note": "15", + "powered": "false" + } + }, + { + "id": 963, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "true" + } + }, + { + "id": 964, + "properties": { + "instrument": "guitar", + "note": "16", + "powered": "false" + } + }, + { + "id": 965, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "true" + } + }, + { + "id": 966, + "properties": { + "instrument": "guitar", + "note": "17", + "powered": "false" + } + }, + { + "id": 967, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "true" + } + }, + { + "id": 968, + "properties": { + "instrument": "guitar", + "note": "18", + "powered": "false" + } + }, + { + "id": 969, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "true" + } + }, + { + "id": 970, + "properties": { + "instrument": "guitar", + "note": "19", + "powered": "false" + } + }, + { + "id": 971, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "true" + } + }, + { + "id": 972, + "properties": { + "instrument": "guitar", + "note": "20", + "powered": "false" + } + }, + { + "id": 973, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "true" + } + }, + { + "id": 974, + "properties": { + "instrument": "guitar", + "note": "21", + "powered": "false" + } + }, + { + "id": 975, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "true" + } + }, + { + "id": 976, + "properties": { + "instrument": "guitar", + "note": "22", + "powered": "false" + } + }, + { + "id": 977, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "true" + } + }, + { + "id": 978, + "properties": { + "instrument": "guitar", + "note": "23", + "powered": "false" + } + }, + { + "id": 979, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "true" + } + }, + { + "id": 980, + "properties": { + "instrument": "guitar", + "note": "24", + "powered": "false" + } + }, + { + "id": 981, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "true" + } + }, + { + "id": 982, + "properties": { + "instrument": "chime", + "note": "0", + "powered": "false" + } + }, + { + "id": 983, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "true" + } + }, + { + "id": 984, + "properties": { + "instrument": "chime", + "note": "1", + "powered": "false" + } + }, + { + "id": 985, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "true" + } + }, + { + "id": 986, + "properties": { + "instrument": "chime", + "note": "2", + "powered": "false" + } + }, + { + "id": 987, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "true" + } + }, + { + "id": 988, + "properties": { + "instrument": "chime", + "note": "3", + "powered": "false" + } + }, + { + "id": 989, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "true" + } + }, + { + "id": 990, + "properties": { + "instrument": "chime", + "note": "4", + "powered": "false" + } + }, + { + "id": 991, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "true" + } + }, + { + "id": 992, + "properties": { + "instrument": "chime", + "note": "5", + "powered": "false" + } + }, + { + "id": 993, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "true" + } + }, + { + "id": 994, + "properties": { + "instrument": "chime", + "note": "6", + "powered": "false" + } + }, + { + "id": 995, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "true" + } + }, + { + "id": 996, + "properties": { + "instrument": "chime", + "note": "7", + "powered": "false" + } + }, + { + "id": 997, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "true" + } + }, + { + "id": 998, + "properties": { + "instrument": "chime", + "note": "8", + "powered": "false" + } + }, + { + "id": 999, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "true" + } + }, + { + "id": 1000, + "properties": { + "instrument": "chime", + "note": "9", + "powered": "false" + } + }, + { + "id": 1001, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "true" + } + }, + { + "id": 1002, + "properties": { + "instrument": "chime", + "note": "10", + "powered": "false" + } + }, + { + "id": 1003, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "true" + } + }, + { + "id": 1004, + "properties": { + "instrument": "chime", + "note": "11", + "powered": "false" + } + }, + { + "id": 1005, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "true" + } + }, + { + "id": 1006, + "properties": { + "instrument": "chime", + "note": "12", + "powered": "false" + } + }, + { + "id": 1007, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "true" + } + }, + { + "id": 1008, + "properties": { + "instrument": "chime", + "note": "13", + "powered": "false" + } + }, + { + "id": 1009, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "true" + } + }, + { + "id": 1010, + "properties": { + "instrument": "chime", + "note": "14", + "powered": "false" + } + }, + { + "id": 1011, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "true" + } + }, + { + "id": 1012, + "properties": { + "instrument": "chime", + "note": "15", + "powered": "false" + } + }, + { + "id": 1013, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "true" + } + }, + { + "id": 1014, + "properties": { + "instrument": "chime", + "note": "16", + "powered": "false" + } + }, + { + "id": 1015, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "true" + } + }, + { + "id": 1016, + "properties": { + "instrument": "chime", + "note": "17", + "powered": "false" + } + }, + { + "id": 1017, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "true" + } + }, + { + "id": 1018, + "properties": { + "instrument": "chime", + "note": "18", + "powered": "false" + } + }, + { + "id": 1019, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "true" + } + }, + { + "id": 1020, + "properties": { + "instrument": "chime", + "note": "19", + "powered": "false" + } + }, + { + "id": 1021, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "true" + } + }, + { + "id": 1022, + "properties": { + "instrument": "chime", + "note": "20", + "powered": "false" + } + }, + { + "id": 1023, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "true" + } + }, + { + "id": 1024, + "properties": { + "instrument": "chime", + "note": "21", + "powered": "false" + } + }, + { + "id": 1025, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "true" + } + }, + { + "id": 1026, + "properties": { + "instrument": "chime", + "note": "22", + "powered": "false" + } + }, + { + "id": 1027, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "true" + } + }, + { + "id": 1028, + "properties": { + "instrument": "chime", + "note": "23", + "powered": "false" + } + }, + { + "id": 1029, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "true" + } + }, + { + "id": 1030, + "properties": { + "instrument": "chime", + "note": "24", + "powered": "false" + } + }, + { + "id": 1031, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1032, + "properties": { + "instrument": "xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1033, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1034, + "properties": { + "instrument": "xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1035, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1036, + "properties": { + "instrument": "xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1037, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1038, + "properties": { + "instrument": "xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1039, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1040, + "properties": { + "instrument": "xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1041, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1042, + "properties": { + "instrument": "xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1043, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1044, + "properties": { + "instrument": "xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1045, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1046, + "properties": { + "instrument": "xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1047, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1048, + "properties": { + "instrument": "xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1049, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1050, + "properties": { + "instrument": "xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1051, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1052, + "properties": { + "instrument": "xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1053, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1054, + "properties": { + "instrument": "xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1055, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1056, + "properties": { + "instrument": "xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1057, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1058, + "properties": { + "instrument": "xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1059, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1060, + "properties": { + "instrument": "xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1061, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1062, + "properties": { + "instrument": "xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1063, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1064, + "properties": { + "instrument": "xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1065, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1066, + "properties": { + "instrument": "xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1067, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1068, + "properties": { + "instrument": "xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1069, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1070, + "properties": { + "instrument": "xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1071, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1072, + "properties": { + "instrument": "xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1073, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1074, + "properties": { + "instrument": "xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1075, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1076, + "properties": { + "instrument": "xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1077, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1078, + "properties": { + "instrument": "xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1079, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1080, + "properties": { + "instrument": "xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1081, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "true" + } + }, + { + "id": 1082, + "properties": { + "instrument": "iron_xylophone", + "note": "0", + "powered": "false" + } + }, + { + "id": 1083, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "true" + } + }, + { + "id": 1084, + "properties": { + "instrument": "iron_xylophone", + "note": "1", + "powered": "false" + } + }, + { + "id": 1085, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "true" + } + }, + { + "id": 1086, + "properties": { + "instrument": "iron_xylophone", + "note": "2", + "powered": "false" + } + }, + { + "id": 1087, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "true" + } + }, + { + "id": 1088, + "properties": { + "instrument": "iron_xylophone", + "note": "3", + "powered": "false" + } + }, + { + "id": 1089, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "true" + } + }, + { + "id": 1090, + "properties": { + "instrument": "iron_xylophone", + "note": "4", + "powered": "false" + } + }, + { + "id": 1091, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "true" + } + }, + { + "id": 1092, + "properties": { + "instrument": "iron_xylophone", + "note": "5", + "powered": "false" + } + }, + { + "id": 1093, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "true" + } + }, + { + "id": 1094, + "properties": { + "instrument": "iron_xylophone", + "note": "6", + "powered": "false" + } + }, + { + "id": 1095, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "true" + } + }, + { + "id": 1096, + "properties": { + "instrument": "iron_xylophone", + "note": "7", + "powered": "false" + } + }, + { + "id": 1097, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "true" + } + }, + { + "id": 1098, + "properties": { + "instrument": "iron_xylophone", + "note": "8", + "powered": "false" + } + }, + { + "id": 1099, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "true" + } + }, + { + "id": 1100, + "properties": { + "instrument": "iron_xylophone", + "note": "9", + "powered": "false" + } + }, + { + "id": 1101, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "true" + } + }, + { + "id": 1102, + "properties": { + "instrument": "iron_xylophone", + "note": "10", + "powered": "false" + } + }, + { + "id": 1103, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "true" + } + }, + { + "id": 1104, + "properties": { + "instrument": "iron_xylophone", + "note": "11", + "powered": "false" + } + }, + { + "id": 1105, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "true" + } + }, + { + "id": 1106, + "properties": { + "instrument": "iron_xylophone", + "note": "12", + "powered": "false" + } + }, + { + "id": 1107, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "true" + } + }, + { + "id": 1108, + "properties": { + "instrument": "iron_xylophone", + "note": "13", + "powered": "false" + } + }, + { + "id": 1109, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "true" + } + }, + { + "id": 1110, + "properties": { + "instrument": "iron_xylophone", + "note": "14", + "powered": "false" + } + }, + { + "id": 1111, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "true" + } + }, + { + "id": 1112, + "properties": { + "instrument": "iron_xylophone", + "note": "15", + "powered": "false" + } + }, + { + "id": 1113, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "true" + } + }, + { + "id": 1114, + "properties": { + "instrument": "iron_xylophone", + "note": "16", + "powered": "false" + } + }, + { + "id": 1115, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "true" + } + }, + { + "id": 1116, + "properties": { + "instrument": "iron_xylophone", + "note": "17", + "powered": "false" + } + }, + { + "id": 1117, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "true" + } + }, + { + "id": 1118, + "properties": { + "instrument": "iron_xylophone", + "note": "18", + "powered": "false" + } + }, + { + "id": 1119, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "true" + } + }, + { + "id": 1120, + "properties": { + "instrument": "iron_xylophone", + "note": "19", + "powered": "false" + } + }, + { + "id": 1121, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "true" + } + }, + { + "id": 1122, + "properties": { + "instrument": "iron_xylophone", + "note": "20", + "powered": "false" + } + }, + { + "id": 1123, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "true" + } + }, + { + "id": 1124, + "properties": { + "instrument": "iron_xylophone", + "note": "21", + "powered": "false" + } + }, + { + "id": 1125, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "true" + } + }, + { + "id": 1126, + "properties": { + "instrument": "iron_xylophone", + "note": "22", + "powered": "false" + } + }, + { + "id": 1127, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "true" + } + }, + { + "id": 1128, + "properties": { + "instrument": "iron_xylophone", + "note": "23", + "powered": "false" + } + }, + { + "id": 1129, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "true" + } + }, + { + "id": 1130, + "properties": { + "instrument": "iron_xylophone", + "note": "24", + "powered": "false" + } + }, + { + "id": 1131, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "true" + } + }, + { + "id": 1132, + "properties": { + "instrument": "cow_bell", + "note": "0", + "powered": "false" + } + }, + { + "id": 1133, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "true" + } + }, + { + "id": 1134, + "properties": { + "instrument": "cow_bell", + "note": "1", + "powered": "false" + } + }, + { + "id": 1135, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "true" + } + }, + { + "id": 1136, + "properties": { + "instrument": "cow_bell", + "note": "2", + "powered": "false" + } + }, + { + "id": 1137, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "true" + } + }, + { + "id": 1138, + "properties": { + "instrument": "cow_bell", + "note": "3", + "powered": "false" + } + }, + { + "id": 1139, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "true" + } + }, + { + "id": 1140, + "properties": { + "instrument": "cow_bell", + "note": "4", + "powered": "false" + } + }, + { + "id": 1141, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "true" + } + }, + { + "id": 1142, + "properties": { + "instrument": "cow_bell", + "note": "5", + "powered": "false" + } + }, + { + "id": 1143, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "true" + } + }, + { + "id": 1144, + "properties": { + "instrument": "cow_bell", + "note": "6", + "powered": "false" + } + }, + { + "id": 1145, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "true" + } + }, + { + "id": 1146, + "properties": { + "instrument": "cow_bell", + "note": "7", + "powered": "false" + } + }, + { + "id": 1147, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "true" + } + }, + { + "id": 1148, + "properties": { + "instrument": "cow_bell", + "note": "8", + "powered": "false" + } + }, + { + "id": 1149, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "true" + } + }, + { + "id": 1150, + "properties": { + "instrument": "cow_bell", + "note": "9", + "powered": "false" + } + }, + { + "id": 1151, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "true" + } + }, + { + "id": 1152, + "properties": { + "instrument": "cow_bell", + "note": "10", + "powered": "false" + } + }, + { + "id": 1153, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "true" + } + }, + { + "id": 1154, + "properties": { + "instrument": "cow_bell", + "note": "11", + "powered": "false" + } + }, + { + "id": 1155, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "true" + } + }, + { + "id": 1156, + "properties": { + "instrument": "cow_bell", + "note": "12", + "powered": "false" + } + }, + { + "id": 1157, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "true" + } + }, + { + "id": 1158, + "properties": { + "instrument": "cow_bell", + "note": "13", + "powered": "false" + } + }, + { + "id": 1159, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "true" + } + }, + { + "id": 1160, + "properties": { + "instrument": "cow_bell", + "note": "14", + "powered": "false" + } + }, + { + "id": 1161, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "true" + } + }, + { + "id": 1162, + "properties": { + "instrument": "cow_bell", + "note": "15", + "powered": "false" + } + }, + { + "id": 1163, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "true" + } + }, + { + "id": 1164, + "properties": { + "instrument": "cow_bell", + "note": "16", + "powered": "false" + } + }, + { + "id": 1165, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "true" + } + }, + { + "id": 1166, + "properties": { + "instrument": "cow_bell", + "note": "17", + "powered": "false" + } + }, + { + "id": 1167, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "true" + } + }, + { + "id": 1168, + "properties": { + "instrument": "cow_bell", + "note": "18", + "powered": "false" + } + }, + { + "id": 1169, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "true" + } + }, + { + "id": 1170, + "properties": { + "instrument": "cow_bell", + "note": "19", + "powered": "false" + } + }, + { + "id": 1171, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "true" + } + }, + { + "id": 1172, + "properties": { + "instrument": "cow_bell", + "note": "20", + "powered": "false" + } + }, + { + "id": 1173, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "true" + } + }, + { + "id": 1174, + "properties": { + "instrument": "cow_bell", + "note": "21", + "powered": "false" + } + }, + { + "id": 1175, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "true" + } + }, + { + "id": 1176, + "properties": { + "instrument": "cow_bell", + "note": "22", + "powered": "false" + } + }, + { + "id": 1177, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "true" + } + }, + { + "id": 1178, + "properties": { + "instrument": "cow_bell", + "note": "23", + "powered": "false" + } + }, + { + "id": 1179, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "true" + } + }, + { + "id": 1180, + "properties": { + "instrument": "cow_bell", + "note": "24", + "powered": "false" + } + }, + { + "id": 1181, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1182, + "properties": { + "instrument": "didgeridoo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1183, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1184, + "properties": { + "instrument": "didgeridoo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1185, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1186, + "properties": { + "instrument": "didgeridoo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1187, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1188, + "properties": { + "instrument": "didgeridoo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1189, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1190, + "properties": { + "instrument": "didgeridoo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1191, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1192, + "properties": { + "instrument": "didgeridoo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1193, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1194, + "properties": { + "instrument": "didgeridoo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1195, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1196, + "properties": { + "instrument": "didgeridoo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1197, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1198, + "properties": { + "instrument": "didgeridoo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1199, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1200, + "properties": { + "instrument": "didgeridoo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1201, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1202, + "properties": { + "instrument": "didgeridoo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1203, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1204, + "properties": { + "instrument": "didgeridoo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1205, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1206, + "properties": { + "instrument": "didgeridoo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1207, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1208, + "properties": { + "instrument": "didgeridoo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1209, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1210, + "properties": { + "instrument": "didgeridoo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1211, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1212, + "properties": { + "instrument": "didgeridoo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1213, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1214, + "properties": { + "instrument": "didgeridoo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1215, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1216, + "properties": { + "instrument": "didgeridoo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1217, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1218, + "properties": { + "instrument": "didgeridoo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1219, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1220, + "properties": { + "instrument": "didgeridoo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1221, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1222, + "properties": { + "instrument": "didgeridoo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1223, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1224, + "properties": { + "instrument": "didgeridoo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1225, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1226, + "properties": { + "instrument": "didgeridoo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1227, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1228, + "properties": { + "instrument": "didgeridoo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1229, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1230, + "properties": { + "instrument": "didgeridoo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1231, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "true" + } + }, + { + "id": 1232, + "properties": { + "instrument": "bit", + "note": "0", + "powered": "false" + } + }, + { + "id": 1233, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "true" + } + }, + { + "id": 1234, + "properties": { + "instrument": "bit", + "note": "1", + "powered": "false" + } + }, + { + "id": 1235, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "true" + } + }, + { + "id": 1236, + "properties": { + "instrument": "bit", + "note": "2", + "powered": "false" + } + }, + { + "id": 1237, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "true" + } + }, + { + "id": 1238, + "properties": { + "instrument": "bit", + "note": "3", + "powered": "false" + } + }, + { + "id": 1239, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "true" + } + }, + { + "id": 1240, + "properties": { + "instrument": "bit", + "note": "4", + "powered": "false" + } + }, + { + "id": 1241, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "true" + } + }, + { + "id": 1242, + "properties": { + "instrument": "bit", + "note": "5", + "powered": "false" + } + }, + { + "id": 1243, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "true" + } + }, + { + "id": 1244, + "properties": { + "instrument": "bit", + "note": "6", + "powered": "false" + } + }, + { + "id": 1245, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "true" + } + }, + { + "id": 1246, + "properties": { + "instrument": "bit", + "note": "7", + "powered": "false" + } + }, + { + "id": 1247, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "true" + } + }, + { + "id": 1248, + "properties": { + "instrument": "bit", + "note": "8", + "powered": "false" + } + }, + { + "id": 1249, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "true" + } + }, + { + "id": 1250, + "properties": { + "instrument": "bit", + "note": "9", + "powered": "false" + } + }, + { + "id": 1251, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "true" + } + }, + { + "id": 1252, + "properties": { + "instrument": "bit", + "note": "10", + "powered": "false" + } + }, + { + "id": 1253, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "true" + } + }, + { + "id": 1254, + "properties": { + "instrument": "bit", + "note": "11", + "powered": "false" + } + }, + { + "id": 1255, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "true" + } + }, + { + "id": 1256, + "properties": { + "instrument": "bit", + "note": "12", + "powered": "false" + } + }, + { + "id": 1257, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "true" + } + }, + { + "id": 1258, + "properties": { + "instrument": "bit", + "note": "13", + "powered": "false" + } + }, + { + "id": 1259, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "true" + } + }, + { + "id": 1260, + "properties": { + "instrument": "bit", + "note": "14", + "powered": "false" + } + }, + { + "id": 1261, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "true" + } + }, + { + "id": 1262, + "properties": { + "instrument": "bit", + "note": "15", + "powered": "false" + } + }, + { + "id": 1263, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "true" + } + }, + { + "id": 1264, + "properties": { + "instrument": "bit", + "note": "16", + "powered": "false" + } + }, + { + "id": 1265, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "true" + } + }, + { + "id": 1266, + "properties": { + "instrument": "bit", + "note": "17", + "powered": "false" + } + }, + { + "id": 1267, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "true" + } + }, + { + "id": 1268, + "properties": { + "instrument": "bit", + "note": "18", + "powered": "false" + } + }, + { + "id": 1269, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "true" + } + }, + { + "id": 1270, + "properties": { + "instrument": "bit", + "note": "19", + "powered": "false" + } + }, + { + "id": 1271, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "true" + } + }, + { + "id": 1272, + "properties": { + "instrument": "bit", + "note": "20", + "powered": "false" + } + }, + { + "id": 1273, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "true" + } + }, + { + "id": 1274, + "properties": { + "instrument": "bit", + "note": "21", + "powered": "false" + } + }, + { + "id": 1275, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "true" + } + }, + { + "id": 1276, + "properties": { + "instrument": "bit", + "note": "22", + "powered": "false" + } + }, + { + "id": 1277, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "true" + } + }, + { + "id": 1278, + "properties": { + "instrument": "bit", + "note": "23", + "powered": "false" + } + }, + { + "id": 1279, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "true" + } + }, + { + "id": 1280, + "properties": { + "instrument": "bit", + "note": "24", + "powered": "false" + } + }, + { + "id": 1281, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "true" + } + }, + { + "id": 1282, + "properties": { + "instrument": "banjo", + "note": "0", + "powered": "false" + } + }, + { + "id": 1283, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "true" + } + }, + { + "id": 1284, + "properties": { + "instrument": "banjo", + "note": "1", + "powered": "false" + } + }, + { + "id": 1285, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "true" + } + }, + { + "id": 1286, + "properties": { + "instrument": "banjo", + "note": "2", + "powered": "false" + } + }, + { + "id": 1287, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "true" + } + }, + { + "id": 1288, + "properties": { + "instrument": "banjo", + "note": "3", + "powered": "false" + } + }, + { + "id": 1289, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "true" + } + }, + { + "id": 1290, + "properties": { + "instrument": "banjo", + "note": "4", + "powered": "false" + } + }, + { + "id": 1291, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "true" + } + }, + { + "id": 1292, + "properties": { + "instrument": "banjo", + "note": "5", + "powered": "false" + } + }, + { + "id": 1293, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "true" + } + }, + { + "id": 1294, + "properties": { + "instrument": "banjo", + "note": "6", + "powered": "false" + } + }, + { + "id": 1295, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "true" + } + }, + { + "id": 1296, + "properties": { + "instrument": "banjo", + "note": "7", + "powered": "false" + } + }, + { + "id": 1297, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "true" + } + }, + { + "id": 1298, + "properties": { + "instrument": "banjo", + "note": "8", + "powered": "false" + } + }, + { + "id": 1299, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "true" + } + }, + { + "id": 1300, + "properties": { + "instrument": "banjo", + "note": "9", + "powered": "false" + } + }, + { + "id": 1301, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "true" + } + }, + { + "id": 1302, + "properties": { + "instrument": "banjo", + "note": "10", + "powered": "false" + } + }, + { + "id": 1303, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "true" + } + }, + { + "id": 1304, + "properties": { + "instrument": "banjo", + "note": "11", + "powered": "false" + } + }, + { + "id": 1305, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "true" + } + }, + { + "id": 1306, + "properties": { + "instrument": "banjo", + "note": "12", + "powered": "false" + } + }, + { + "id": 1307, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "true" + } + }, + { + "id": 1308, + "properties": { + "instrument": "banjo", + "note": "13", + "powered": "false" + } + }, + { + "id": 1309, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "true" + } + }, + { + "id": 1310, + "properties": { + "instrument": "banjo", + "note": "14", + "powered": "false" + } + }, + { + "id": 1311, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "true" + } + }, + { + "id": 1312, + "properties": { + "instrument": "banjo", + "note": "15", + "powered": "false" + } + }, + { + "id": 1313, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "true" + } + }, + { + "id": 1314, + "properties": { + "instrument": "banjo", + "note": "16", + "powered": "false" + } + }, + { + "id": 1315, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "true" + } + }, + { + "id": 1316, + "properties": { + "instrument": "banjo", + "note": "17", + "powered": "false" + } + }, + { + "id": 1317, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "true" + } + }, + { + "id": 1318, + "properties": { + "instrument": "banjo", + "note": "18", + "powered": "false" + } + }, + { + "id": 1319, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "true" + } + }, + { + "id": 1320, + "properties": { + "instrument": "banjo", + "note": "19", + "powered": "false" + } + }, + { + "id": 1321, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "true" + } + }, + { + "id": 1322, + "properties": { + "instrument": "banjo", + "note": "20", + "powered": "false" + } + }, + { + "id": 1323, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "true" + } + }, + { + "id": 1324, + "properties": { + "instrument": "banjo", + "note": "21", + "powered": "false" + } + }, + { + "id": 1325, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "true" + } + }, + { + "id": 1326, + "properties": { + "instrument": "banjo", + "note": "22", + "powered": "false" + } + }, + { + "id": 1327, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "true" + } + }, + { + "id": 1328, + "properties": { + "instrument": "banjo", + "note": "23", + "powered": "false" + } + }, + { + "id": 1329, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "true" + } + }, + { + "id": 1330, + "properties": { + "instrument": "banjo", + "note": "24", + "powered": "false" + } + }, + { + "id": 1331, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "true" + } + }, + { + "id": 1332, + "properties": { + "instrument": "pling", + "note": "0", + "powered": "false" + } + }, + { + "id": 1333, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "true" + } + }, + { + "id": 1334, + "properties": { + "instrument": "pling", + "note": "1", + "powered": "false" + } + }, + { + "id": 1335, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "true" + } + }, + { + "id": 1336, + "properties": { + "instrument": "pling", + "note": "2", + "powered": "false" + } + }, + { + "id": 1337, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "true" + } + }, + { + "id": 1338, + "properties": { + "instrument": "pling", + "note": "3", + "powered": "false" + } + }, + { + "id": 1339, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "true" + } + }, + { + "id": 1340, + "properties": { + "instrument": "pling", + "note": "4", + "powered": "false" + } + }, + { + "id": 1341, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "true" + } + }, + { + "id": 1342, + "properties": { + "instrument": "pling", + "note": "5", + "powered": "false" + } + }, + { + "id": 1343, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "true" + } + }, + { + "id": 1344, + "properties": { + "instrument": "pling", + "note": "6", + "powered": "false" + } + }, + { + "id": 1345, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "true" + } + }, + { + "id": 1346, + "properties": { + "instrument": "pling", + "note": "7", + "powered": "false" + } + }, + { + "id": 1347, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "true" + } + }, + { + "id": 1348, + "properties": { + "instrument": "pling", + "note": "8", + "powered": "false" + } + }, + { + "id": 1349, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "true" + } + }, + { + "id": 1350, + "properties": { + "instrument": "pling", + "note": "9", + "powered": "false" + } + }, + { + "id": 1351, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "true" + } + }, + { + "id": 1352, + "properties": { + "instrument": "pling", + "note": "10", + "powered": "false" + } + }, + { + "id": 1353, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "true" + } + }, + { + "id": 1354, + "properties": { + "instrument": "pling", + "note": "11", + "powered": "false" + } + }, + { + "id": 1355, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "true" + } + }, + { + "id": 1356, + "properties": { + "instrument": "pling", + "note": "12", + "powered": "false" + } + }, + { + "id": 1357, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "true" + } + }, + { + "id": 1358, + "properties": { + "instrument": "pling", + "note": "13", + "powered": "false" + } + }, + { + "id": 1359, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "true" + } + }, + { + "id": 1360, + "properties": { + "instrument": "pling", + "note": "14", + "powered": "false" + } + }, + { + "id": 1361, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "true" + } + }, + { + "id": 1362, + "properties": { + "instrument": "pling", + "note": "15", + "powered": "false" + } + }, + { + "id": 1363, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "true" + } + }, + { + "id": 1364, + "properties": { + "instrument": "pling", + "note": "16", + "powered": "false" + } + }, + { + "id": 1365, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "true" + } + }, + { + "id": 1366, + "properties": { + "instrument": "pling", + "note": "17", + "powered": "false" + } + }, + { + "id": 1367, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "true" + } + }, + { + "id": 1368, + "properties": { + "instrument": "pling", + "note": "18", + "powered": "false" + } + }, + { + "id": 1369, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "true" + } + }, + { + "id": 1370, + "properties": { + "instrument": "pling", + "note": "19", + "powered": "false" + } + }, + { + "id": 1371, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "true" + } + }, + { + "id": 1372, + "properties": { + "instrument": "pling", + "note": "20", + "powered": "false" + } + }, + { + "id": 1373, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "true" + } + }, + { + "id": 1374, + "properties": { + "instrument": "pling", + "note": "21", + "powered": "false" + } + }, + { + "id": 1375, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "true" + } + }, + { + "id": 1376, + "properties": { + "instrument": "pling", + "note": "22", + "powered": "false" + } + }, + { + "id": 1377, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "true" + } + }, + { + "id": 1378, + "properties": { + "instrument": "pling", + "note": "23", + "powered": "false" + } + }, + { + "id": 1379, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "true" + } + }, + { + "id": 1380, + "properties": { + "instrument": "pling", + "note": "24", + "powered": "false" + } + }, + { + "id": 1381, + "properties": { + "instrument": "trumpet", + "note": "0", + "powered": "true" + } + }, + { + "id": 1382, + "properties": { + "instrument": "trumpet", + "note": "0", + "powered": "false" + } + }, + { + "id": 1383, + "properties": { + "instrument": "trumpet", + "note": "1", + "powered": "true" + } + }, + { + "id": 1384, + "properties": { + "instrument": "trumpet", + "note": "1", + "powered": "false" + } + }, + { + "id": 1385, + "properties": { + "instrument": "trumpet", + "note": "2", + "powered": "true" + } + }, + { + "id": 1386, + "properties": { + "instrument": "trumpet", + "note": "2", + "powered": "false" + } + }, + { + "id": 1387, + "properties": { + "instrument": "trumpet", + "note": "3", + "powered": "true" + } + }, + { + "id": 1388, + "properties": { + "instrument": "trumpet", + "note": "3", + "powered": "false" + } + }, + { + "id": 1389, + "properties": { + "instrument": "trumpet", + "note": "4", + "powered": "true" + } + }, + { + "id": 1390, + "properties": { + "instrument": "trumpet", + "note": "4", + "powered": "false" + } + }, + { + "id": 1391, + "properties": { + "instrument": "trumpet", + "note": "5", + "powered": "true" + } + }, + { + "id": 1392, + "properties": { + "instrument": "trumpet", + "note": "5", + "powered": "false" + } + }, + { + "id": 1393, + "properties": { + "instrument": "trumpet", + "note": "6", + "powered": "true" + } + }, + { + "id": 1394, + "properties": { + "instrument": "trumpet", + "note": "6", + "powered": "false" + } + }, + { + "id": 1395, + "properties": { + "instrument": "trumpet", + "note": "7", + "powered": "true" + } + }, + { + "id": 1396, + "properties": { + "instrument": "trumpet", + "note": "7", + "powered": "false" + } + }, + { + "id": 1397, + "properties": { + "instrument": "trumpet", + "note": "8", + "powered": "true" + } + }, + { + "id": 1398, + "properties": { + "instrument": "trumpet", + "note": "8", + "powered": "false" + } + }, + { + "id": 1399, + "properties": { + "instrument": "trumpet", + "note": "9", + "powered": "true" + } + }, + { + "id": 1400, + "properties": { + "instrument": "trumpet", + "note": "9", + "powered": "false" + } + }, + { + "id": 1401, + "properties": { + "instrument": "trumpet", + "note": "10", + "powered": "true" + } + }, + { + "id": 1402, + "properties": { + "instrument": "trumpet", + "note": "10", + "powered": "false" + } + }, + { + "id": 1403, + "properties": { + "instrument": "trumpet", + "note": "11", + "powered": "true" + } + }, + { + "id": 1404, + "properties": { + "instrument": "trumpet", + "note": "11", + "powered": "false" + } + }, + { + "id": 1405, + "properties": { + "instrument": "trumpet", + "note": "12", + "powered": "true" + } + }, + { + "id": 1406, + "properties": { + "instrument": "trumpet", + "note": "12", + "powered": "false" + } + }, + { + "id": 1407, + "properties": { + "instrument": "trumpet", + "note": "13", + "powered": "true" + } + }, + { + "id": 1408, + "properties": { + "instrument": "trumpet", + "note": "13", + "powered": "false" + } + }, + { + "id": 1409, + "properties": { + "instrument": "trumpet", + "note": "14", + "powered": "true" + } + }, + { + "id": 1410, + "properties": { + "instrument": "trumpet", + "note": "14", + "powered": "false" + } + }, + { + "id": 1411, + "properties": { + "instrument": "trumpet", + "note": "15", + "powered": "true" + } + }, + { + "id": 1412, + "properties": { + "instrument": "trumpet", + "note": "15", + "powered": "false" + } + }, + { + "id": 1413, + "properties": { + "instrument": "trumpet", + "note": "16", + "powered": "true" + } + }, + { + "id": 1414, + "properties": { + "instrument": "trumpet", + "note": "16", + "powered": "false" + } + }, + { + "id": 1415, + "properties": { + "instrument": "trumpet", + "note": "17", + "powered": "true" + } + }, + { + "id": 1416, + "properties": { + "instrument": "trumpet", + "note": "17", + "powered": "false" + } + }, + { + "id": 1417, + "properties": { + "instrument": "trumpet", + "note": "18", + "powered": "true" + } + }, + { + "id": 1418, + "properties": { + "instrument": "trumpet", + "note": "18", + "powered": "false" + } + }, + { + "id": 1419, + "properties": { + "instrument": "trumpet", + "note": "19", + "powered": "true" + } + }, + { + "id": 1420, + "properties": { + "instrument": "trumpet", + "note": "19", + "powered": "false" + } + }, + { + "id": 1421, + "properties": { + "instrument": "trumpet", + "note": "20", + "powered": "true" + } + }, + { + "id": 1422, + "properties": { + "instrument": "trumpet", + "note": "20", + "powered": "false" + } + }, + { + "id": 1423, + "properties": { + "instrument": "trumpet", + "note": "21", + "powered": "true" + } + }, + { + "id": 1424, + "properties": { + "instrument": "trumpet", + "note": "21", + "powered": "false" + } + }, + { + "id": 1425, + "properties": { + "instrument": "trumpet", + "note": "22", + "powered": "true" + } + }, + { + "id": 1426, + "properties": { + "instrument": "trumpet", + "note": "22", + "powered": "false" + } + }, + { + "id": 1427, + "properties": { + "instrument": "trumpet", + "note": "23", + "powered": "true" + } + }, + { + "id": 1428, + "properties": { + "instrument": "trumpet", + "note": "23", + "powered": "false" + } + }, + { + "id": 1429, + "properties": { + "instrument": "trumpet", + "note": "24", + "powered": "true" + } + }, + { + "id": 1430, + "properties": { + "instrument": "trumpet", + "note": "24", + "powered": "false" + } + }, + { + "id": 1431, + "properties": { + "instrument": "trumpet_exposed", + "note": "0", + "powered": "true" + } + }, + { + "id": 1432, + "properties": { + "instrument": "trumpet_exposed", + "note": "0", + "powered": "false" + } + }, + { + "id": 1433, + "properties": { + "instrument": "trumpet_exposed", + "note": "1", + "powered": "true" + } + }, + { + "id": 1434, + "properties": { + "instrument": "trumpet_exposed", + "note": "1", + "powered": "false" + } + }, + { + "id": 1435, + "properties": { + "instrument": "trumpet_exposed", + "note": "2", + "powered": "true" + } + }, + { + "id": 1436, + "properties": { + "instrument": "trumpet_exposed", + "note": "2", + "powered": "false" + } + }, + { + "id": 1437, + "properties": { + "instrument": "trumpet_exposed", + "note": "3", + "powered": "true" + } + }, + { + "id": 1438, + "properties": { + "instrument": "trumpet_exposed", + "note": "3", + "powered": "false" + } + }, + { + "id": 1439, + "properties": { + "instrument": "trumpet_exposed", + "note": "4", + "powered": "true" + } + }, + { + "id": 1440, + "properties": { + "instrument": "trumpet_exposed", + "note": "4", + "powered": "false" + } + }, + { + "id": 1441, + "properties": { + "instrument": "trumpet_exposed", + "note": "5", + "powered": "true" + } + }, + { + "id": 1442, + "properties": { + "instrument": "trumpet_exposed", + "note": "5", + "powered": "false" + } + }, + { + "id": 1443, + "properties": { + "instrument": "trumpet_exposed", + "note": "6", + "powered": "true" + } + }, + { + "id": 1444, + "properties": { + "instrument": "trumpet_exposed", + "note": "6", + "powered": "false" + } + }, + { + "id": 1445, + "properties": { + "instrument": "trumpet_exposed", + "note": "7", + "powered": "true" + } + }, + { + "id": 1446, + "properties": { + "instrument": "trumpet_exposed", + "note": "7", + "powered": "false" + } + }, + { + "id": 1447, + "properties": { + "instrument": "trumpet_exposed", + "note": "8", + "powered": "true" + } + }, + { + "id": 1448, + "properties": { + "instrument": "trumpet_exposed", + "note": "8", + "powered": "false" + } + }, + { + "id": 1449, + "properties": { + "instrument": "trumpet_exposed", + "note": "9", + "powered": "true" + } + }, + { + "id": 1450, + "properties": { + "instrument": "trumpet_exposed", + "note": "9", + "powered": "false" + } + }, + { + "id": 1451, + "properties": { + "instrument": "trumpet_exposed", + "note": "10", + "powered": "true" + } + }, + { + "id": 1452, + "properties": { + "instrument": "trumpet_exposed", + "note": "10", + "powered": "false" + } + }, + { + "id": 1453, + "properties": { + "instrument": "trumpet_exposed", + "note": "11", + "powered": "true" + } + }, + { + "id": 1454, + "properties": { + "instrument": "trumpet_exposed", + "note": "11", + "powered": "false" + } + }, + { + "id": 1455, + "properties": { + "instrument": "trumpet_exposed", + "note": "12", + "powered": "true" + } + }, + { + "id": 1456, + "properties": { + "instrument": "trumpet_exposed", + "note": "12", + "powered": "false" + } + }, + { + "id": 1457, + "properties": { + "instrument": "trumpet_exposed", + "note": "13", + "powered": "true" + } + }, + { + "id": 1458, + "properties": { + "instrument": "trumpet_exposed", + "note": "13", + "powered": "false" + } + }, + { + "id": 1459, + "properties": { + "instrument": "trumpet_exposed", + "note": "14", + "powered": "true" + } + }, + { + "id": 1460, + "properties": { + "instrument": "trumpet_exposed", + "note": "14", + "powered": "false" + } + }, + { + "id": 1461, + "properties": { + "instrument": "trumpet_exposed", + "note": "15", + "powered": "true" + } + }, + { + "id": 1462, + "properties": { + "instrument": "trumpet_exposed", + "note": "15", + "powered": "false" + } + }, + { + "id": 1463, + "properties": { + "instrument": "trumpet_exposed", + "note": "16", + "powered": "true" + } + }, + { + "id": 1464, + "properties": { + "instrument": "trumpet_exposed", + "note": "16", + "powered": "false" + } + }, + { + "id": 1465, + "properties": { + "instrument": "trumpet_exposed", + "note": "17", + "powered": "true" + } + }, + { + "id": 1466, + "properties": { + "instrument": "trumpet_exposed", + "note": "17", + "powered": "false" + } + }, + { + "id": 1467, + "properties": { + "instrument": "trumpet_exposed", + "note": "18", + "powered": "true" + } + }, + { + "id": 1468, + "properties": { + "instrument": "trumpet_exposed", + "note": "18", + "powered": "false" + } + }, + { + "id": 1469, + "properties": { + "instrument": "trumpet_exposed", + "note": "19", + "powered": "true" + } + }, + { + "id": 1470, + "properties": { + "instrument": "trumpet_exposed", + "note": "19", + "powered": "false" + } + }, + { + "id": 1471, + "properties": { + "instrument": "trumpet_exposed", + "note": "20", + "powered": "true" + } + }, + { + "id": 1472, + "properties": { + "instrument": "trumpet_exposed", + "note": "20", + "powered": "false" + } + }, + { + "id": 1473, + "properties": { + "instrument": "trumpet_exposed", + "note": "21", + "powered": "true" + } + }, + { + "id": 1474, + "properties": { + "instrument": "trumpet_exposed", + "note": "21", + "powered": "false" + } + }, + { + "id": 1475, + "properties": { + "instrument": "trumpet_exposed", + "note": "22", + "powered": "true" + } + }, + { + "id": 1476, + "properties": { + "instrument": "trumpet_exposed", + "note": "22", + "powered": "false" + } + }, + { + "id": 1477, + "properties": { + "instrument": "trumpet_exposed", + "note": "23", + "powered": "true" + } + }, + { + "id": 1478, + "properties": { + "instrument": "trumpet_exposed", + "note": "23", + "powered": "false" + } + }, + { + "id": 1479, + "properties": { + "instrument": "trumpet_exposed", + "note": "24", + "powered": "true" + } + }, + { + "id": 1480, + "properties": { + "instrument": "trumpet_exposed", + "note": "24", + "powered": "false" + } + }, + { + "id": 1481, + "properties": { + "instrument": "trumpet_oxidized", + "note": "0", + "powered": "true" + } + }, + { + "id": 1482, + "properties": { + "instrument": "trumpet_oxidized", + "note": "0", + "powered": "false" + } + }, + { + "id": 1483, + "properties": { + "instrument": "trumpet_oxidized", + "note": "1", + "powered": "true" + } + }, + { + "id": 1484, + "properties": { + "instrument": "trumpet_oxidized", + "note": "1", + "powered": "false" + } + }, + { + "id": 1485, + "properties": { + "instrument": "trumpet_oxidized", + "note": "2", + "powered": "true" + } + }, + { + "id": 1486, + "properties": { + "instrument": "trumpet_oxidized", + "note": "2", + "powered": "false" + } + }, + { + "id": 1487, + "properties": { + "instrument": "trumpet_oxidized", + "note": "3", + "powered": "true" + } + }, + { + "id": 1488, + "properties": { + "instrument": "trumpet_oxidized", + "note": "3", + "powered": "false" + } + }, + { + "id": 1489, + "properties": { + "instrument": "trumpet_oxidized", + "note": "4", + "powered": "true" + } + }, + { + "id": 1490, + "properties": { + "instrument": "trumpet_oxidized", + "note": "4", + "powered": "false" + } + }, + { + "id": 1491, + "properties": { + "instrument": "trumpet_oxidized", + "note": "5", + "powered": "true" + } + }, + { + "id": 1492, + "properties": { + "instrument": "trumpet_oxidized", + "note": "5", + "powered": "false" + } + }, + { + "id": 1493, + "properties": { + "instrument": "trumpet_oxidized", + "note": "6", + "powered": "true" + } + }, + { + "id": 1494, + "properties": { + "instrument": "trumpet_oxidized", + "note": "6", + "powered": "false" + } + }, + { + "id": 1495, + "properties": { + "instrument": "trumpet_oxidized", + "note": "7", + "powered": "true" + } + }, + { + "id": 1496, + "properties": { + "instrument": "trumpet_oxidized", + "note": "7", + "powered": "false" + } + }, + { + "id": 1497, + "properties": { + "instrument": "trumpet_oxidized", + "note": "8", + "powered": "true" + } + }, + { + "id": 1498, + "properties": { + "instrument": "trumpet_oxidized", + "note": "8", + "powered": "false" + } + }, + { + "id": 1499, + "properties": { + "instrument": "trumpet_oxidized", + "note": "9", + "powered": "true" + } + }, + { + "id": 1500, + "properties": { + "instrument": "trumpet_oxidized", + "note": "9", + "powered": "false" + } + }, + { + "id": 1501, + "properties": { + "instrument": "trumpet_oxidized", + "note": "10", + "powered": "true" + } + }, + { + "id": 1502, + "properties": { + "instrument": "trumpet_oxidized", + "note": "10", + "powered": "false" + } + }, + { + "id": 1503, + "properties": { + "instrument": "trumpet_oxidized", + "note": "11", + "powered": "true" + } + }, + { + "id": 1504, + "properties": { + "instrument": "trumpet_oxidized", + "note": "11", + "powered": "false" + } + }, + { + "id": 1505, + "properties": { + "instrument": "trumpet_oxidized", + "note": "12", + "powered": "true" + } + }, + { + "id": 1506, + "properties": { + "instrument": "trumpet_oxidized", + "note": "12", + "powered": "false" + } + }, + { + "id": 1507, + "properties": { + "instrument": "trumpet_oxidized", + "note": "13", + "powered": "true" + } + }, + { + "id": 1508, + "properties": { + "instrument": "trumpet_oxidized", + "note": "13", + "powered": "false" + } + }, + { + "id": 1509, + "properties": { + "instrument": "trumpet_oxidized", + "note": "14", + "powered": "true" + } + }, + { + "id": 1510, + "properties": { + "instrument": "trumpet_oxidized", + "note": "14", + "powered": "false" + } + }, + { + "id": 1511, + "properties": { + "instrument": "trumpet_oxidized", + "note": "15", + "powered": "true" + } + }, + { + "id": 1512, + "properties": { + "instrument": "trumpet_oxidized", + "note": "15", + "powered": "false" + } + }, + { + "id": 1513, + "properties": { + "instrument": "trumpet_oxidized", + "note": "16", + "powered": "true" + } + }, + { + "id": 1514, + "properties": { + "instrument": "trumpet_oxidized", + "note": "16", + "powered": "false" + } + }, + { + "id": 1515, + "properties": { + "instrument": "trumpet_oxidized", + "note": "17", + "powered": "true" + } + }, + { + "id": 1516, + "properties": { + "instrument": "trumpet_oxidized", + "note": "17", + "powered": "false" + } + }, + { + "id": 1517, + "properties": { + "instrument": "trumpet_oxidized", + "note": "18", + "powered": "true" + } + }, + { + "id": 1518, + "properties": { + "instrument": "trumpet_oxidized", + "note": "18", + "powered": "false" + } + }, + { + "id": 1519, + "properties": { + "instrument": "trumpet_oxidized", + "note": "19", + "powered": "true" + } + }, + { + "id": 1520, + "properties": { + "instrument": "trumpet_oxidized", + "note": "19", + "powered": "false" + } + }, + { + "id": 1521, + "properties": { + "instrument": "trumpet_oxidized", + "note": "20", + "powered": "true" + } + }, + { + "id": 1522, + "properties": { + "instrument": "trumpet_oxidized", + "note": "20", + "powered": "false" + } + }, + { + "id": 1523, + "properties": { + "instrument": "trumpet_oxidized", + "note": "21", + "powered": "true" + } + }, + { + "id": 1524, + "properties": { + "instrument": "trumpet_oxidized", + "note": "21", + "powered": "false" + } + }, + { + "id": 1525, + "properties": { + "instrument": "trumpet_oxidized", + "note": "22", + "powered": "true" + } + }, + { + "id": 1526, + "properties": { + "instrument": "trumpet_oxidized", + "note": "22", + "powered": "false" + } + }, + { + "id": 1527, + "properties": { + "instrument": "trumpet_oxidized", + "note": "23", + "powered": "true" + } + }, + { + "id": 1528, + "properties": { + "instrument": "trumpet_oxidized", + "note": "23", + "powered": "false" + } + }, + { + "id": 1529, + "properties": { + "instrument": "trumpet_oxidized", + "note": "24", + "powered": "true" + } + }, + { + "id": 1530, + "properties": { + "instrument": "trumpet_oxidized", + "note": "24", + "powered": "false" + } + }, + { + "id": 1531, + "properties": { + "instrument": "trumpet_weathered", + "note": "0", + "powered": "true" + } + }, + { + "id": 1532, + "properties": { + "instrument": "trumpet_weathered", + "note": "0", + "powered": "false" + } + }, + { + "id": 1533, + "properties": { + "instrument": "trumpet_weathered", + "note": "1", + "powered": "true" + } + }, + { + "id": 1534, + "properties": { + "instrument": "trumpet_weathered", + "note": "1", + "powered": "false" + } + }, + { + "id": 1535, + "properties": { + "instrument": "trumpet_weathered", + "note": "2", + "powered": "true" + } + }, + { + "id": 1536, + "properties": { + "instrument": "trumpet_weathered", + "note": "2", + "powered": "false" + } + }, + { + "id": 1537, + "properties": { + "instrument": "trumpet_weathered", + "note": "3", + "powered": "true" + } + }, + { + "id": 1538, + "properties": { + "instrument": "trumpet_weathered", + "note": "3", + "powered": "false" + } + }, + { + "id": 1539, + "properties": { + "instrument": "trumpet_weathered", + "note": "4", + "powered": "true" + } + }, + { + "id": 1540, + "properties": { + "instrument": "trumpet_weathered", + "note": "4", + "powered": "false" + } + }, + { + "id": 1541, + "properties": { + "instrument": "trumpet_weathered", + "note": "5", + "powered": "true" + } + }, + { + "id": 1542, + "properties": { + "instrument": "trumpet_weathered", + "note": "5", + "powered": "false" + } + }, + { + "id": 1543, + "properties": { + "instrument": "trumpet_weathered", + "note": "6", + "powered": "true" + } + }, + { + "id": 1544, + "properties": { + "instrument": "trumpet_weathered", + "note": "6", + "powered": "false" + } + }, + { + "id": 1545, + "properties": { + "instrument": "trumpet_weathered", + "note": "7", + "powered": "true" + } + }, + { + "id": 1546, + "properties": { + "instrument": "trumpet_weathered", + "note": "7", + "powered": "false" + } + }, + { + "id": 1547, + "properties": { + "instrument": "trumpet_weathered", + "note": "8", + "powered": "true" + } + }, + { + "id": 1548, + "properties": { + "instrument": "trumpet_weathered", + "note": "8", + "powered": "false" + } + }, + { + "id": 1549, + "properties": { + "instrument": "trumpet_weathered", + "note": "9", + "powered": "true" + } + }, + { + "id": 1550, + "properties": { + "instrument": "trumpet_weathered", + "note": "9", + "powered": "false" + } + }, + { + "id": 1551, + "properties": { + "instrument": "trumpet_weathered", + "note": "10", + "powered": "true" + } + }, + { + "id": 1552, + "properties": { + "instrument": "trumpet_weathered", + "note": "10", + "powered": "false" + } + }, + { + "id": 1553, + "properties": { + "instrument": "trumpet_weathered", + "note": "11", + "powered": "true" + } + }, + { + "id": 1554, + "properties": { + "instrument": "trumpet_weathered", + "note": "11", + "powered": "false" + } + }, + { + "id": 1555, + "properties": { + "instrument": "trumpet_weathered", + "note": "12", + "powered": "true" + } + }, + { + "id": 1556, + "properties": { + "instrument": "trumpet_weathered", + "note": "12", + "powered": "false" + } + }, + { + "id": 1557, + "properties": { + "instrument": "trumpet_weathered", + "note": "13", + "powered": "true" + } + }, + { + "id": 1558, + "properties": { + "instrument": "trumpet_weathered", + "note": "13", + "powered": "false" + } + }, + { + "id": 1559, + "properties": { + "instrument": "trumpet_weathered", + "note": "14", + "powered": "true" + } + }, + { + "id": 1560, + "properties": { + "instrument": "trumpet_weathered", + "note": "14", + "powered": "false" + } + }, + { + "id": 1561, + "properties": { + "instrument": "trumpet_weathered", + "note": "15", + "powered": "true" + } + }, + { + "id": 1562, + "properties": { + "instrument": "trumpet_weathered", + "note": "15", + "powered": "false" + } + }, + { + "id": 1563, + "properties": { + "instrument": "trumpet_weathered", + "note": "16", + "powered": "true" + } + }, + { + "id": 1564, + "properties": { + "instrument": "trumpet_weathered", + "note": "16", + "powered": "false" + } + }, + { + "id": 1565, + "properties": { + "instrument": "trumpet_weathered", + "note": "17", + "powered": "true" + } + }, + { + "id": 1566, + "properties": { + "instrument": "trumpet_weathered", + "note": "17", + "powered": "false" + } + }, + { + "id": 1567, + "properties": { + "instrument": "trumpet_weathered", + "note": "18", + "powered": "true" + } + }, + { + "id": 1568, + "properties": { + "instrument": "trumpet_weathered", + "note": "18", + "powered": "false" + } + }, + { + "id": 1569, + "properties": { + "instrument": "trumpet_weathered", + "note": "19", + "powered": "true" + } + }, + { + "id": 1570, + "properties": { + "instrument": "trumpet_weathered", + "note": "19", + "powered": "false" + } + }, + { + "id": 1571, + "properties": { + "instrument": "trumpet_weathered", + "note": "20", + "powered": "true" + } + }, + { + "id": 1572, + "properties": { + "instrument": "trumpet_weathered", + "note": "20", + "powered": "false" + } + }, + { + "id": 1573, + "properties": { + "instrument": "trumpet_weathered", + "note": "21", + "powered": "true" + } + }, + { + "id": 1574, + "properties": { + "instrument": "trumpet_weathered", + "note": "21", + "powered": "false" + } + }, + { + "id": 1575, + "properties": { + "instrument": "trumpet_weathered", + "note": "22", + "powered": "true" + } + }, + { + "id": 1576, + "properties": { + "instrument": "trumpet_weathered", + "note": "22", + "powered": "false" + } + }, + { + "id": 1577, + "properties": { + "instrument": "trumpet_weathered", + "note": "23", + "powered": "true" + } + }, + { + "id": 1578, + "properties": { + "instrument": "trumpet_weathered", + "note": "23", + "powered": "false" + } + }, + { + "id": 1579, + "properties": { + "instrument": "trumpet_weathered", + "note": "24", + "powered": "true" + } + }, + { + "id": 1580, + "properties": { + "instrument": "trumpet_weathered", + "note": "24", + "powered": "false" + } + }, + { + "id": 1581, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "true" + } + }, + { + "id": 1582, + "properties": { + "instrument": "zombie", + "note": "0", + "powered": "false" + } + }, + { + "id": 1583, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "true" + } + }, + { + "id": 1584, + "properties": { + "instrument": "zombie", + "note": "1", + "powered": "false" + } + }, + { + "id": 1585, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "true" + } + }, + { + "id": 1586, + "properties": { + "instrument": "zombie", + "note": "2", + "powered": "false" + } + }, + { + "id": 1587, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "true" + } + }, + { + "id": 1588, + "properties": { + "instrument": "zombie", + "note": "3", + "powered": "false" + } + }, + { + "id": 1589, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "true" + } + }, + { + "id": 1590, + "properties": { + "instrument": "zombie", + "note": "4", + "powered": "false" + } + }, + { + "id": 1591, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "true" + } + }, + { + "id": 1592, + "properties": { + "instrument": "zombie", + "note": "5", + "powered": "false" + } + }, + { + "id": 1593, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "true" + } + }, + { + "id": 1594, + "properties": { + "instrument": "zombie", + "note": "6", + "powered": "false" + } + }, + { + "id": 1595, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "true" + } + }, + { + "id": 1596, + "properties": { + "instrument": "zombie", + "note": "7", + "powered": "false" + } + }, + { + "id": 1597, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "true" + } + }, + { + "id": 1598, + "properties": { + "instrument": "zombie", + "note": "8", + "powered": "false" + } + }, + { + "id": 1599, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "true" + } + }, + { + "id": 1600, + "properties": { + "instrument": "zombie", + "note": "9", + "powered": "false" + } + }, + { + "id": 1601, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "true" + } + }, + { + "id": 1602, + "properties": { + "instrument": "zombie", + "note": "10", + "powered": "false" + } + }, + { + "id": 1603, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "true" + } + }, + { + "id": 1604, + "properties": { + "instrument": "zombie", + "note": "11", + "powered": "false" + } + }, + { + "id": 1605, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "true" + } + }, + { + "id": 1606, + "properties": { + "instrument": "zombie", + "note": "12", + "powered": "false" + } + }, + { + "id": 1607, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "true" + } + }, + { + "id": 1608, + "properties": { + "instrument": "zombie", + "note": "13", + "powered": "false" + } + }, + { + "id": 1609, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "true" + } + }, + { + "id": 1610, + "properties": { + "instrument": "zombie", + "note": "14", + "powered": "false" + } + }, + { + "id": 1611, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "true" + } + }, + { + "id": 1612, + "properties": { + "instrument": "zombie", + "note": "15", + "powered": "false" + } + }, + { + "id": 1613, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "true" + } + }, + { + "id": 1614, + "properties": { + "instrument": "zombie", + "note": "16", + "powered": "false" + } + }, + { + "id": 1615, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "true" + } + }, + { + "id": 1616, + "properties": { + "instrument": "zombie", + "note": "17", + "powered": "false" + } + }, + { + "id": 1617, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "true" + } + }, + { + "id": 1618, + "properties": { + "instrument": "zombie", + "note": "18", + "powered": "false" + } + }, + { + "id": 1619, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "true" + } + }, + { + "id": 1620, + "properties": { + "instrument": "zombie", + "note": "19", + "powered": "false" + } + }, + { + "id": 1621, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "true" + } + }, + { + "id": 1622, + "properties": { + "instrument": "zombie", + "note": "20", + "powered": "false" + } + }, + { + "id": 1623, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "true" + } + }, + { + "id": 1624, + "properties": { + "instrument": "zombie", + "note": "21", + "powered": "false" + } + }, + { + "id": 1625, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "true" + } + }, + { + "id": 1626, + "properties": { + "instrument": "zombie", + "note": "22", + "powered": "false" + } + }, + { + "id": 1627, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "true" + } + }, + { + "id": 1628, + "properties": { + "instrument": "zombie", + "note": "23", + "powered": "false" + } + }, + { + "id": 1629, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "true" + } + }, + { + "id": 1630, + "properties": { + "instrument": "zombie", + "note": "24", + "powered": "false" + } + }, + { + "id": 1631, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1632, + "properties": { + "instrument": "skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1633, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1634, + "properties": { + "instrument": "skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1635, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1636, + "properties": { + "instrument": "skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1637, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1638, + "properties": { + "instrument": "skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1639, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1640, + "properties": { + "instrument": "skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1641, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1642, + "properties": { + "instrument": "skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1643, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1644, + "properties": { + "instrument": "skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1645, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1646, + "properties": { + "instrument": "skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1647, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1648, + "properties": { + "instrument": "skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1649, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1650, + "properties": { + "instrument": "skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1651, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1652, + "properties": { + "instrument": "skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1653, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1654, + "properties": { + "instrument": "skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1655, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1656, + "properties": { + "instrument": "skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1657, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1658, + "properties": { + "instrument": "skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1659, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1660, + "properties": { + "instrument": "skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1661, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1662, + "properties": { + "instrument": "skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1663, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1664, + "properties": { + "instrument": "skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1665, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1666, + "properties": { + "instrument": "skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1667, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1668, + "properties": { + "instrument": "skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1669, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1670, + "properties": { + "instrument": "skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1671, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1672, + "properties": { + "instrument": "skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1673, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1674, + "properties": { + "instrument": "skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1675, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1676, + "properties": { + "instrument": "skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1677, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1678, + "properties": { + "instrument": "skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1679, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1680, + "properties": { + "instrument": "skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1681, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "true" + } + }, + { + "id": 1682, + "properties": { + "instrument": "creeper", + "note": "0", + "powered": "false" + } + }, + { + "id": 1683, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "true" + } + }, + { + "id": 1684, + "properties": { + "instrument": "creeper", + "note": "1", + "powered": "false" + } + }, + { + "id": 1685, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "true" + } + }, + { + "id": 1686, + "properties": { + "instrument": "creeper", + "note": "2", + "powered": "false" + } + }, + { + "id": 1687, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "true" + } + }, + { + "id": 1688, + "properties": { + "instrument": "creeper", + "note": "3", + "powered": "false" + } + }, + { + "id": 1689, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "true" + } + }, + { + "id": 1690, + "properties": { + "instrument": "creeper", + "note": "4", + "powered": "false" + } + }, + { + "id": 1691, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "true" + } + }, + { + "id": 1692, + "properties": { + "instrument": "creeper", + "note": "5", + "powered": "false" + } + }, + { + "id": 1693, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "true" + } + }, + { + "id": 1694, + "properties": { + "instrument": "creeper", + "note": "6", + "powered": "false" + } + }, + { + "id": 1695, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "true" + } + }, + { + "id": 1696, + "properties": { + "instrument": "creeper", + "note": "7", + "powered": "false" + } + }, + { + "id": 1697, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "true" + } + }, + { + "id": 1698, + "properties": { + "instrument": "creeper", + "note": "8", + "powered": "false" + } + }, + { + "id": 1699, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "true" + } + }, + { + "id": 1700, + "properties": { + "instrument": "creeper", + "note": "9", + "powered": "false" + } + }, + { + "id": 1701, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "true" + } + }, + { + "id": 1702, + "properties": { + "instrument": "creeper", + "note": "10", + "powered": "false" + } + }, + { + "id": 1703, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "true" + } + }, + { + "id": 1704, + "properties": { + "instrument": "creeper", + "note": "11", + "powered": "false" + } + }, + { + "id": 1705, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "true" + } + }, + { + "id": 1706, + "properties": { + "instrument": "creeper", + "note": "12", + "powered": "false" + } + }, + { + "id": 1707, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "true" + } + }, + { + "id": 1708, + "properties": { + "instrument": "creeper", + "note": "13", + "powered": "false" + } + }, + { + "id": 1709, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "true" + } + }, + { + "id": 1710, + "properties": { + "instrument": "creeper", + "note": "14", + "powered": "false" + } + }, + { + "id": 1711, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "true" + } + }, + { + "id": 1712, + "properties": { + "instrument": "creeper", + "note": "15", + "powered": "false" + } + }, + { + "id": 1713, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "true" + } + }, + { + "id": 1714, + "properties": { + "instrument": "creeper", + "note": "16", + "powered": "false" + } + }, + { + "id": 1715, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "true" + } + }, + { + "id": 1716, + "properties": { + "instrument": "creeper", + "note": "17", + "powered": "false" + } + }, + { + "id": 1717, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "true" + } + }, + { + "id": 1718, + "properties": { + "instrument": "creeper", + "note": "18", + "powered": "false" + } + }, + { + "id": 1719, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "true" + } + }, + { + "id": 1720, + "properties": { + "instrument": "creeper", + "note": "19", + "powered": "false" + } + }, + { + "id": 1721, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "true" + } + }, + { + "id": 1722, + "properties": { + "instrument": "creeper", + "note": "20", + "powered": "false" + } + }, + { + "id": 1723, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "true" + } + }, + { + "id": 1724, + "properties": { + "instrument": "creeper", + "note": "21", + "powered": "false" + } + }, + { + "id": 1725, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "true" + } + }, + { + "id": 1726, + "properties": { + "instrument": "creeper", + "note": "22", + "powered": "false" + } + }, + { + "id": 1727, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "true" + } + }, + { + "id": 1728, + "properties": { + "instrument": "creeper", + "note": "23", + "powered": "false" + } + }, + { + "id": 1729, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "true" + } + }, + { + "id": 1730, + "properties": { + "instrument": "creeper", + "note": "24", + "powered": "false" + } + }, + { + "id": 1731, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "true" + } + }, + { + "id": 1732, + "properties": { + "instrument": "dragon", + "note": "0", + "powered": "false" + } + }, + { + "id": 1733, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "true" + } + }, + { + "id": 1734, + "properties": { + "instrument": "dragon", + "note": "1", + "powered": "false" + } + }, + { + "id": 1735, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "true" + } + }, + { + "id": 1736, + "properties": { + "instrument": "dragon", + "note": "2", + "powered": "false" + } + }, + { + "id": 1737, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "true" + } + }, + { + "id": 1738, + "properties": { + "instrument": "dragon", + "note": "3", + "powered": "false" + } + }, + { + "id": 1739, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "true" + } + }, + { + "id": 1740, + "properties": { + "instrument": "dragon", + "note": "4", + "powered": "false" + } + }, + { + "id": 1741, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "true" + } + }, + { + "id": 1742, + "properties": { + "instrument": "dragon", + "note": "5", + "powered": "false" + } + }, + { + "id": 1743, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "true" + } + }, + { + "id": 1744, + "properties": { + "instrument": "dragon", + "note": "6", + "powered": "false" + } + }, + { + "id": 1745, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "true" + } + }, + { + "id": 1746, + "properties": { + "instrument": "dragon", + "note": "7", + "powered": "false" + } + }, + { + "id": 1747, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "true" + } + }, + { + "id": 1748, + "properties": { + "instrument": "dragon", + "note": "8", + "powered": "false" + } + }, + { + "id": 1749, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "true" + } + }, + { + "id": 1750, + "properties": { + "instrument": "dragon", + "note": "9", + "powered": "false" + } + }, + { + "id": 1751, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "true" + } + }, + { + "id": 1752, + "properties": { + "instrument": "dragon", + "note": "10", + "powered": "false" + } + }, + { + "id": 1753, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "true" + } + }, + { + "id": 1754, + "properties": { + "instrument": "dragon", + "note": "11", + "powered": "false" + } + }, + { + "id": 1755, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "true" + } + }, + { + "id": 1756, + "properties": { + "instrument": "dragon", + "note": "12", + "powered": "false" + } + }, + { + "id": 1757, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "true" + } + }, + { + "id": 1758, + "properties": { + "instrument": "dragon", + "note": "13", + "powered": "false" + } + }, + { + "id": 1759, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "true" + } + }, + { + "id": 1760, + "properties": { + "instrument": "dragon", + "note": "14", + "powered": "false" + } + }, + { + "id": 1761, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "true" + } + }, + { + "id": 1762, + "properties": { + "instrument": "dragon", + "note": "15", + "powered": "false" + } + }, + { + "id": 1763, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "true" + } + }, + { + "id": 1764, + "properties": { + "instrument": "dragon", + "note": "16", + "powered": "false" + } + }, + { + "id": 1765, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "true" + } + }, + { + "id": 1766, + "properties": { + "instrument": "dragon", + "note": "17", + "powered": "false" + } + }, + { + "id": 1767, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "true" + } + }, + { + "id": 1768, + "properties": { + "instrument": "dragon", + "note": "18", + "powered": "false" + } + }, + { + "id": 1769, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "true" + } + }, + { + "id": 1770, + "properties": { + "instrument": "dragon", + "note": "19", + "powered": "false" + } + }, + { + "id": 1771, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "true" + } + }, + { + "id": 1772, + "properties": { + "instrument": "dragon", + "note": "20", + "powered": "false" + } + }, + { + "id": 1773, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "true" + } + }, + { + "id": 1774, + "properties": { + "instrument": "dragon", + "note": "21", + "powered": "false" + } + }, + { + "id": 1775, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "true" + } + }, + { + "id": 1776, + "properties": { + "instrument": "dragon", + "note": "22", + "powered": "false" + } + }, + { + "id": 1777, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "true" + } + }, + { + "id": 1778, + "properties": { + "instrument": "dragon", + "note": "23", + "powered": "false" + } + }, + { + "id": 1779, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "true" + } + }, + { + "id": 1780, + "properties": { + "instrument": "dragon", + "note": "24", + "powered": "false" + } + }, + { + "id": 1781, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "true" + } + }, + { + "id": 1782, + "properties": { + "instrument": "wither_skeleton", + "note": "0", + "powered": "false" + } + }, + { + "id": 1783, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "true" + } + }, + { + "id": 1784, + "properties": { + "instrument": "wither_skeleton", + "note": "1", + "powered": "false" + } + }, + { + "id": 1785, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "true" + } + }, + { + "id": 1786, + "properties": { + "instrument": "wither_skeleton", + "note": "2", + "powered": "false" + } + }, + { + "id": 1787, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "true" + } + }, + { + "id": 1788, + "properties": { + "instrument": "wither_skeleton", + "note": "3", + "powered": "false" + } + }, + { + "id": 1789, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "true" + } + }, + { + "id": 1790, + "properties": { + "instrument": "wither_skeleton", + "note": "4", + "powered": "false" + } + }, + { + "id": 1791, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "true" + } + }, + { + "id": 1792, + "properties": { + "instrument": "wither_skeleton", + "note": "5", + "powered": "false" + } + }, + { + "id": 1793, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "true" + } + }, + { + "id": 1794, + "properties": { + "instrument": "wither_skeleton", + "note": "6", + "powered": "false" + } + }, + { + "id": 1795, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "true" + } + }, + { + "id": 1796, + "properties": { + "instrument": "wither_skeleton", + "note": "7", + "powered": "false" + } + }, + { + "id": 1797, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "true" + } + }, + { + "id": 1798, + "properties": { + "instrument": "wither_skeleton", + "note": "8", + "powered": "false" + } + }, + { + "id": 1799, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "true" + } + }, + { + "id": 1800, + "properties": { + "instrument": "wither_skeleton", + "note": "9", + "powered": "false" + } + }, + { + "id": 1801, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "true" + } + }, + { + "id": 1802, + "properties": { + "instrument": "wither_skeleton", + "note": "10", + "powered": "false" + } + }, + { + "id": 1803, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "true" + } + }, + { + "id": 1804, + "properties": { + "instrument": "wither_skeleton", + "note": "11", + "powered": "false" + } + }, + { + "id": 1805, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "true" + } + }, + { + "id": 1806, + "properties": { + "instrument": "wither_skeleton", + "note": "12", + "powered": "false" + } + }, + { + "id": 1807, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "true" + } + }, + { + "id": 1808, + "properties": { + "instrument": "wither_skeleton", + "note": "13", + "powered": "false" + } + }, + { + "id": 1809, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "true" + } + }, + { + "id": 1810, + "properties": { + "instrument": "wither_skeleton", + "note": "14", + "powered": "false" + } + }, + { + "id": 1811, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "true" + } + }, + { + "id": 1812, + "properties": { + "instrument": "wither_skeleton", + "note": "15", + "powered": "false" + } + }, + { + "id": 1813, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "true" + } + }, + { + "id": 1814, + "properties": { + "instrument": "wither_skeleton", + "note": "16", + "powered": "false" + } + }, + { + "id": 1815, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "true" + } + }, + { + "id": 1816, + "properties": { + "instrument": "wither_skeleton", + "note": "17", + "powered": "false" + } + }, + { + "id": 1817, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "true" + } + }, + { + "id": 1818, + "properties": { + "instrument": "wither_skeleton", + "note": "18", + "powered": "false" + } + }, + { + "id": 1819, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "true" + } + }, + { + "id": 1820, + "properties": { + "instrument": "wither_skeleton", + "note": "19", + "powered": "false" + } + }, + { + "id": 1821, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "true" + } + }, + { + "id": 1822, + "properties": { + "instrument": "wither_skeleton", + "note": "20", + "powered": "false" + } + }, + { + "id": 1823, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "true" + } + }, + { + "id": 1824, + "properties": { + "instrument": "wither_skeleton", + "note": "21", + "powered": "false" + } + }, + { + "id": 1825, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "true" + } + }, + { + "id": 1826, + "properties": { + "instrument": "wither_skeleton", + "note": "22", + "powered": "false" + } + }, + { + "id": 1827, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "true" + } + }, + { + "id": 1828, + "properties": { + "instrument": "wither_skeleton", + "note": "23", + "powered": "false" + } + }, + { + "id": 1829, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "true" + } + }, + { + "id": 1830, + "properties": { + "instrument": "wither_skeleton", + "note": "24", + "powered": "false" + } + }, + { + "id": 1831, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "true" + } + }, + { + "id": 1832, + "properties": { + "instrument": "piglin", + "note": "0", + "powered": "false" + } + }, + { + "id": 1833, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "true" + } + }, + { + "id": 1834, + "properties": { + "instrument": "piglin", + "note": "1", + "powered": "false" + } + }, + { + "id": 1835, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "true" + } + }, + { + "id": 1836, + "properties": { + "instrument": "piglin", + "note": "2", + "powered": "false" + } + }, + { + "id": 1837, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "true" + } + }, + { + "id": 1838, + "properties": { + "instrument": "piglin", + "note": "3", + "powered": "false" + } + }, + { + "id": 1839, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "true" + } + }, + { + "id": 1840, + "properties": { + "instrument": "piglin", + "note": "4", + "powered": "false" + } + }, + { + "id": 1841, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "true" + } + }, + { + "id": 1842, + "properties": { + "instrument": "piglin", + "note": "5", + "powered": "false" + } + }, + { + "id": 1843, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "true" + } + }, + { + "id": 1844, + "properties": { + "instrument": "piglin", + "note": "6", + "powered": "false" + } + }, + { + "id": 1845, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "true" + } + }, + { + "id": 1846, + "properties": { + "instrument": "piglin", + "note": "7", + "powered": "false" + } + }, + { + "id": 1847, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "true" + } + }, + { + "id": 1848, + "properties": { + "instrument": "piglin", + "note": "8", + "powered": "false" + } + }, + { + "id": 1849, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "true" + } + }, + { + "id": 1850, + "properties": { + "instrument": "piglin", + "note": "9", + "powered": "false" + } + }, + { + "id": 1851, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "true" + } + }, + { + "id": 1852, + "properties": { + "instrument": "piglin", + "note": "10", + "powered": "false" + } + }, + { + "id": 1853, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "true" + } + }, + { + "id": 1854, + "properties": { + "instrument": "piglin", + "note": "11", + "powered": "false" + } + }, + { + "id": 1855, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "true" + } + }, + { + "id": 1856, + "properties": { + "instrument": "piglin", + "note": "12", + "powered": "false" + } + }, + { + "id": 1857, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "true" + } + }, + { + "id": 1858, + "properties": { + "instrument": "piglin", + "note": "13", + "powered": "false" + } + }, + { + "id": 1859, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "true" + } + }, + { + "id": 1860, + "properties": { + "instrument": "piglin", + "note": "14", + "powered": "false" + } + }, + { + "id": 1861, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "true" + } + }, + { + "id": 1862, + "properties": { + "instrument": "piglin", + "note": "15", + "powered": "false" + } + }, + { + "id": 1863, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "true" + } + }, + { + "id": 1864, + "properties": { + "instrument": "piglin", + "note": "16", + "powered": "false" + } + }, + { + "id": 1865, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "true" + } + }, + { + "id": 1866, + "properties": { + "instrument": "piglin", + "note": "17", + "powered": "false" + } + }, + { + "id": 1867, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "true" + } + }, + { + "id": 1868, + "properties": { + "instrument": "piglin", + "note": "18", + "powered": "false" + } + }, + { + "id": 1869, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "true" + } + }, + { + "id": 1870, + "properties": { + "instrument": "piglin", + "note": "19", + "powered": "false" + } + }, + { + "id": 1871, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "true" + } + }, + { + "id": 1872, + "properties": { + "instrument": "piglin", + "note": "20", + "powered": "false" + } + }, + { + "id": 1873, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "true" + } + }, + { + "id": 1874, + "properties": { + "instrument": "piglin", + "note": "21", + "powered": "false" + } + }, + { + "id": 1875, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "true" + } + }, + { + "id": 1876, + "properties": { + "instrument": "piglin", + "note": "22", + "powered": "false" + } + }, + { + "id": 1877, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "true" + } + }, + { + "id": 1878, + "properties": { + "instrument": "piglin", + "note": "23", + "powered": "false" + } + }, + { + "id": 1879, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "true" + } + }, + { + "id": 1880, + "properties": { + "instrument": "piglin", + "note": "24", + "powered": "false" + } + }, + { + "id": 1881, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "true" + } + }, + { + "id": 1882, + "properties": { + "instrument": "custom_head", + "note": "0", + "powered": "false" + } + }, + { + "id": 1883, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "true" + } + }, + { + "id": 1884, + "properties": { + "instrument": "custom_head", + "note": "1", + "powered": "false" + } + }, + { + "id": 1885, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "true" + } + }, + { + "id": 1886, + "properties": { + "instrument": "custom_head", + "note": "2", + "powered": "false" + } + }, + { + "id": 1887, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "true" + } + }, + { + "id": 1888, + "properties": { + "instrument": "custom_head", + "note": "3", + "powered": "false" + } + }, + { + "id": 1889, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "true" + } + }, + { + "id": 1890, + "properties": { + "instrument": "custom_head", + "note": "4", + "powered": "false" + } + }, + { + "id": 1891, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "true" + } + }, + { + "id": 1892, + "properties": { + "instrument": "custom_head", + "note": "5", + "powered": "false" + } + }, + { + "id": 1893, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "true" + } + }, + { + "id": 1894, + "properties": { + "instrument": "custom_head", + "note": "6", + "powered": "false" + } + }, + { + "id": 1895, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "true" + } + }, + { + "id": 1896, + "properties": { + "instrument": "custom_head", + "note": "7", + "powered": "false" + } + }, + { + "id": 1897, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "true" + } + }, + { + "id": 1898, + "properties": { + "instrument": "custom_head", + "note": "8", + "powered": "false" + } + }, + { + "id": 1899, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "true" + } + }, + { + "id": 1900, + "properties": { + "instrument": "custom_head", + "note": "9", + "powered": "false" + } + }, + { + "id": 1901, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "true" + } + }, + { + "id": 1902, + "properties": { + "instrument": "custom_head", + "note": "10", + "powered": "false" + } + }, + { + "id": 1903, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "true" + } + }, + { + "id": 1904, + "properties": { + "instrument": "custom_head", + "note": "11", + "powered": "false" + } + }, + { + "id": 1905, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "true" + } + }, + { + "id": 1906, + "properties": { + "instrument": "custom_head", + "note": "12", + "powered": "false" + } + }, + { + "id": 1907, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "true" + } + }, + { + "id": 1908, + "properties": { + "instrument": "custom_head", + "note": "13", + "powered": "false" + } + }, + { + "id": 1909, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "true" + } + }, + { + "id": 1910, + "properties": { + "instrument": "custom_head", + "note": "14", + "powered": "false" + } + }, + { + "id": 1911, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "true" + } + }, + { + "id": 1912, + "properties": { + "instrument": "custom_head", + "note": "15", + "powered": "false" + } + }, + { + "id": 1913, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "true" + } + }, + { + "id": 1914, + "properties": { + "instrument": "custom_head", + "note": "16", + "powered": "false" + } + }, + { + "id": 1915, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "true" + } + }, + { + "id": 1916, + "properties": { + "instrument": "custom_head", + "note": "17", + "powered": "false" + } + }, + { + "id": 1917, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "true" + } + }, + { + "id": 1918, + "properties": { + "instrument": "custom_head", + "note": "18", + "powered": "false" + } + }, + { + "id": 1919, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "true" + } + }, + { + "id": 1920, + "properties": { + "instrument": "custom_head", + "note": "19", + "powered": "false" + } + }, + { + "id": 1921, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "true" + } + }, + { + "id": 1922, + "properties": { + "instrument": "custom_head", + "note": "20", + "powered": "false" + } + }, + { + "id": 1923, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "true" + } + }, + { + "id": 1924, + "properties": { + "instrument": "custom_head", + "note": "21", + "powered": "false" + } + }, + { + "id": 1925, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "true" + } + }, + { + "id": 1926, + "properties": { + "instrument": "custom_head", + "note": "22", + "powered": "false" + } + }, + { + "id": 1927, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "true" + } + }, + { + "id": 1928, + "properties": { + "instrument": "custom_head", + "note": "23", + "powered": "false" + } + }, + { + "id": 1929, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "true" + } + }, + { + "id": 1930, + "properties": { + "instrument": "custom_head", + "note": "24", + "powered": "false" + } + } + ] + }, + "minecraft:oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10675, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10676, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10677, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10678, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10679, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10680, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10681, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10682, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10683, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10684, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10685, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10686, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10687, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10688, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10689, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10690, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10691, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10692, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10693, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10694, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10695, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10696, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10697, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10698, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5655, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5656, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5657, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5658, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5659, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5660, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5661, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5662, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5663, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5664, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5665, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 5666, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5667, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5668, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5669, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5670, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5671, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5672, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5673, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5674, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5675, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5676, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5677, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5678, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5679, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5680, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5681, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5682, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5683, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5684, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5685, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5686, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5687, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5688, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5689, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5690, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5691, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5692, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5693, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5694, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5695, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5696, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5697, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5698, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5699, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5700, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5701, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5702, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5703, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5704, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5705, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5706, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5707, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5708, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5709, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5710, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 5711, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 5712, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 5713, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 5714, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 5715, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 5716, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 5717, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 5718, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6965, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6966, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6967, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6968, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6969, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6970, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6971, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6972, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6973, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6974, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6975, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6976, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6977, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6978, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6979, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6980, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6981, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6982, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6983, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6984, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6985, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6986, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6987, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6988, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6989, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6990, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6991, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 6992, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 6993, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 6994, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 6995, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 6996, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8646, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8647, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8648, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8649, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8650, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8651, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8652, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 8653, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8654, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8655, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8656, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8657, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8658, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8659, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8660, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8661, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8662, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8663, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8664, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8665, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8666, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8667, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8668, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8669, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 8670, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 8671, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 8672, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 8673, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 8674, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 8675, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 8676, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 8677, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5907, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5908, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5909, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5910, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5911, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5912, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5913, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5914, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5915, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5916, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5917, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5918, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5919, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5920, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5921, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5922, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5923, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5924, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5925, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5926, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5927, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5928, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5929, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5930, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5931, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5932, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5933, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5934, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5935, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5936, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5937, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5938, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 5939, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5940, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5941, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5942, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5943, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5944, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5945, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5946, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5947, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5948, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5949, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5950, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5951, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5952, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5953, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5954, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5955, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5956, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5957, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5958, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5959, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5960, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5961, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5962, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5963, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5964, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5965, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5966, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5967, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5968, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5969, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5970, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 252, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 253, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 254, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 255, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 256, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 257, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 258, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 259, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 260, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 261, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 262, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 263, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 264, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 265, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 266, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 267, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 268, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 269, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 270, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 271, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 272, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 273, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 274, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 275, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 276, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 277, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 278, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 279, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 136, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 137, + "properties": { + "axis": "y" + } + }, + { + "id": 138, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15 + } + ] + }, + "minecraft:oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6861, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6862, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 29, + "properties": { + "stage": "0" + } + }, + { + "id": 30, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3112, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3113, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3114, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3115, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3116, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3117, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3118, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3119, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3120, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3121, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3122, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3123, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3124, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3125, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3126, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3127, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3128, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3129, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3130, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3131, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3132, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3133, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3134, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3135, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3136, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3137, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3138, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3139, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3140, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3141, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3142, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3143, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3144, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3145, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3146, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3147, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3148, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3149, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3150, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3151, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3152, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3153, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3154, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3155, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3156, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3157, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3158, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3159, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3160, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3161, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3162, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3163, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3164, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3165, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3166, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3167, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3168, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3169, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3170, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3171, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3172, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3173, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3174, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3175, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5335, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5336, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5337, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5338, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5339, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5340, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5341, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5342, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5343, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5344, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5345, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5346, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5347, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5348, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5349, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5350, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5351, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5352, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5353, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5354, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5355, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5356, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5357, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5358, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5359, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5360, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5361, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5362, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5363, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5364, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5365, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5366, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13330, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13331, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13332, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13333, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13334, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13335, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3907, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3908, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3909, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3910, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3911, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3912, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3913, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3914, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3915, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3916, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3917, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3918, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3919, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3920, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3921, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3922, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3923, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3924, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3925, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3926, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3927, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3928, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3929, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3930, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3931, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3932, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3933, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3934, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3935, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3936, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3937, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3938, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3939, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3940, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3941, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3942, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3943, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3944, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3945, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3946, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3947, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3948, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3949, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3950, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3951, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3952, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3953, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3954, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3955, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3956, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3957, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3958, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3959, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3960, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3961, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3962, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3963, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3964, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3965, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3966, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3967, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3968, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3969, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3970, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3971, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3972, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3973, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3974, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3975, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3976, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 3977, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 3978, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 3979, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 3980, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 3981, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 3982, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 3983, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 3984, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 3985, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 3986, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7114, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7115, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7116, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7117, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7118, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7119, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7120, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7121, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7122, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7123, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7124, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7125, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7126, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7127, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7128, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7129, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7130, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7131, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7132, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7133, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7134, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7135, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7136, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7137, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7138, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7139, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7140, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7141, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7142, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7143, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7144, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7145, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7146, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7147, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7148, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7149, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7150, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7151, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7152, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7153, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7154, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7155, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7156, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7157, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7158, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7159, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7160, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7161, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7162, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7163, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7164, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7165, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7166, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7167, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7168, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7169, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7170, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7171, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7172, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7173, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7174, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7175, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7176, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7177, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6675, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6676, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6677, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6678, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6679, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6680, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6681, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6682, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5827, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5828, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5829, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5830, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5831, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5832, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5833, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5834, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 201, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 202, + "properties": { + "axis": "y" + } + }, + { + "id": 203, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:observer": { + "definition": { + "type": "minecraft:observer", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14852, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "id": 14853, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 14854, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 14855, + "properties": { + "facing": "east", + "powered": "false" + } + }, + { + "id": 14856, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "default": true, + "id": 14857, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 14858, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 14859, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 14860, + "properties": { + "facing": "up", + "powered": "true" + } + }, + { + "id": 14861, + "properties": { + "facing": "up", + "powered": "false" + } + }, + { + "id": 14862, + "properties": { + "facing": "down", + "powered": "true" + } + }, + { + "id": 14863, + "properties": { + "facing": "down", + "powered": "false" + } + } + ] + }, + "minecraft:obsidian": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3369 + } + ] + }, + "minecraft:ochre_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 32075, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 32076, + "properties": { + "axis": "y" + } + }, + { + "id": 32077, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:open_eyeblossom": { + "definition": { + "type": "minecraft:eyeblossom", + "open": true, + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32361 + } + ] + }, + "minecraft:orange_banner": { + "definition": { + "type": "minecraft:banner", + "color": "orange", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12943, + "properties": { + "rotation": "0" + } + }, + { + "id": 12944, + "properties": { + "rotation": "1" + } + }, + { + "id": 12945, + "properties": { + "rotation": "2" + } + }, + { + "id": 12946, + "properties": { + "rotation": "3" + } + }, + { + "id": 12947, + "properties": { + "rotation": "4" + } + }, + { + "id": 12948, + "properties": { + "rotation": "5" + } + }, + { + "id": 12949, + "properties": { + "rotation": "6" + } + }, + { + "id": 12950, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12951, + "properties": { + "rotation": "8" + } + }, + { + "id": 12952, + "properties": { + "rotation": "9" + } + }, + { + "id": 12953, + "properties": { + "rotation": "10" + } + }, + { + "id": 12954, + "properties": { + "rotation": "11" + } + }, + { + "id": 12955, + "properties": { + "rotation": "12" + } + }, + { + "id": 12956, + "properties": { + "rotation": "13" + } + }, + { + "id": 12957, + "properties": { + "rotation": "14" + } + }, + { + "id": 12958, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:orange_bed": { + "definition": { + "type": "minecraft:bed", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1947, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1948, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1949, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1950, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1951, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1952, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1953, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1954, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1955, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1956, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1957, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1958, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1959, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1960, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1961, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1962, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:orange_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23128, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23129, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23130, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23131, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23132, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23133, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23134, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23135, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23136, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23137, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23138, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23139, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23140, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23141, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23142, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23143, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:orange_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:orange_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23372, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23373, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:orange_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12897 + } + ] + }, + "minecraft:orange_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15031 + } + ] + }, + "minecraft:orange_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:orange_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15047 + } + ] + }, + "minecraft:orange_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14970, + "properties": { + "facing": "north" + } + }, + { + "id": 14971, + "properties": { + "facing": "south" + } + }, + { + "id": 14972, + "properties": { + "facing": "west" + } + }, + { + "id": 14973, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14876, + "properties": { + "facing": "north" + } + }, + { + "id": 14877, + "properties": { + "facing": "east" + } + }, + { + "id": 14878, + "properties": { + "facing": "south" + } + }, + { + "id": 14879, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14880, + "properties": { + "facing": "up" + } + }, + { + "id": 14881, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:orange_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "orange", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7099 + } + ] + }, + "minecraft:orange_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "orange", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11492, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11493, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11494, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11495, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11496, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11497, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11498, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11499, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11500, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11501, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11502, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11503, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11504, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11505, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11506, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11507, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11508, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11509, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11510, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11511, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11512, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11513, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11514, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11515, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11516, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11517, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11518, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11519, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11520, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11521, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11522, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11523, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:orange_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11445 + } + ] + }, + "minecraft:orange_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2329 + } + ] + }, + "minecraft:orange_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "orange", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13187, + "properties": { + "facing": "north" + } + }, + { + "id": 13188, + "properties": { + "facing": "south" + } + }, + { + "id": 13189, + "properties": { + "facing": "west" + } + }, + { + "id": 13190, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:orange_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2294 + } + ] + }, + "minecraft:oxeye_daisy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:regeneration" + } + ] + }, + "states": [ + { + "default": true, + "id": 2332 + } + ] + }, + "minecraft:oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 27803 + } + ] + }, + "minecraft:oxidized_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 27785 + } + ] + }, + "minecraft:oxidized_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8086, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8087, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8088, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8089, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8090, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8091, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8092, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8093, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8094, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8095, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8096, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8097, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8098, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8099, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8100, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8101, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8102, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8103, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8104, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8105, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8106, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8107, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8108, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8109, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8110, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8111, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8112, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8113, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8114, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8115, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8116, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8117, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:oxidized_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29548, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29549, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29550, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29551, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8270, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8271, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8272, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8273, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8274, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8275, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest_oxidized.close", + "open_sound": "minecraft:block.copper_chest_oxidized.open", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29640, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29641, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29642, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29643, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29644, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29645, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29646, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29647, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29648, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29649, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29650, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29651, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29652, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29653, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29654, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29655, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29656, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29657, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29658, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29659, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29660, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29661, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29662, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29663, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28688, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28689, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28690, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28691, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28692, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28693, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28694, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28695, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28696, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28697, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28698, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28699, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28700, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28701, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28702, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28703, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28704, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28705, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28706, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28707, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28708, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28709, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28710, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28711, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28712, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28713, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28714, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28715, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28716, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28717, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28718, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28719, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28720, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28721, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28722, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28723, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28724, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28725, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28726, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28727, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28728, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28729, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28730, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28731, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28732, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28733, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28734, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28735, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28736, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28737, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28738, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28739, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28740, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28741, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28742, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28743, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28744, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28745, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28746, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28747, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28748, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28749, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28750, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28751, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:oxidized_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29856, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29857, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29858, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29859, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29860, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29861, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29862, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29863, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29864, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29865, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29866, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29867, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29868, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29869, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29870, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29871, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29872, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29873, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29874, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29875, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29876, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29877, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29878, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29879, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29880, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29881, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29882, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29883, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29884, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29885, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29886, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29887, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29526, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29527, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20857, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20858, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20859, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20860, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trapdoor", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29200, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29201, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29202, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29203, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29204, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29205, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29206, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29207, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29208, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29209, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29210, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29211, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29212, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29213, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29214, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29215, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29216, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29217, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29218, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29219, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29220, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29221, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29222, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29223, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29224, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29225, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29226, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29227, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29228, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29229, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29230, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29231, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29232, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29233, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29234, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29235, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29236, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29237, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29238, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29239, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29240, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29241, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29242, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29243, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29244, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29245, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29246, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29247, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29248, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29249, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29250, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29251, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29252, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29253, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29254, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29255, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29256, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29257, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29258, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29259, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29260, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29261, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29262, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29263, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "oxidized" + }, + "states": [ + { + "default": true, + "id": 27795 + } + ] + }, + "minecraft:oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28466, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28467, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28468, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28469, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28470, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28471, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:oxidized_cut_copper" + }, + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28048, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28049, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28050, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28051, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28052, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28053, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28054, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28055, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28056, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28057, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28058, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28059, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28060, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28061, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28062, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28063, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28064, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28065, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28066, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28067, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28068, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28069, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28070, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28071, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28072, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28073, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28074, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28075, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28076, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28077, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28078, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28079, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28080, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28081, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28082, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28083, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28084, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28085, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28086, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28087, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28088, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28089, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28090, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28091, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28092, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28093, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28094, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28095, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28096, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28097, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28098, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28099, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28100, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28101, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28102, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28103, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28104, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28105, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28106, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28107, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28108, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28109, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28110, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28111, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28112, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28113, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28114, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28115, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28116, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28117, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28118, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28119, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28120, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28121, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28122, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28123, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28124, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28125, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28126, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28127, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:oxidized_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30088, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30089, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30090, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30091, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30092, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30093, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30094, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30095, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30096, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30097, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30098, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30099, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30100, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30101, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30102, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30103, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30104, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30105, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30106, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30107, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30108, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30109, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30110, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30111, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:packed_ice": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12914 + } + ] + }, + "minecraft:packed_mud": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7758 + } + ] + }, + "minecraft:pale_hanging_moss": { + "definition": { + "type": "minecraft:hanging_moss", + "properties": {} + }, + "properties": { + "tip": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 32359, + "properties": { + "tip": "true" + } + }, + { + "id": 32360, + "properties": { + "tip": "false" + } + } + ] + }, + "minecraft:pale_moss_block": { + "definition": { + "type": "minecraft:bonemealable_feature_placer", + "feature": "minecraft:pale_moss_patch_bonemeal", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32196 + } + ] + }, + "minecraft:pale_moss_carpet": { + "definition": { + "type": "minecraft:mossy_carpet", + "properties": {} + }, + "properties": { + "bottom": [ + "true", + "false" + ], + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "default": true, + "id": 32197, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32198, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32199, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32200, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32201, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32202, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32203, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32204, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32205, + "properties": { + "bottom": "true", + "east": "none", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32206, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32207, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32208, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32209, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32210, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32211, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32212, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32213, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32214, + "properties": { + "bottom": "true", + "east": "none", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32215, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32216, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32217, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32218, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32219, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32220, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32221, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32222, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32223, + "properties": { + "bottom": "true", + "east": "none", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32224, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32225, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32226, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32227, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32228, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32229, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32230, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32231, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32232, + "properties": { + "bottom": "true", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32233, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32234, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32235, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32236, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32237, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32238, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32239, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32240, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32241, + "properties": { + "bottom": "true", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32242, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32243, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32244, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32245, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32246, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32247, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32248, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32249, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32250, + "properties": { + "bottom": "true", + "east": "low", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32251, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32252, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32253, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32254, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32255, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32256, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32257, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32258, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32259, + "properties": { + "bottom": "true", + "east": "tall", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32260, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32261, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32262, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32263, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32264, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32265, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32266, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32267, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32268, + "properties": { + "bottom": "true", + "east": "tall", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32269, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32270, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32271, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32272, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32273, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32274, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32275, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32276, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32277, + "properties": { + "bottom": "true", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32278, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32279, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32280, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32281, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32282, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32283, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32284, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32285, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32286, + "properties": { + "bottom": "false", + "east": "none", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32287, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32288, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32289, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32290, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32291, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32292, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32293, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32294, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32295, + "properties": { + "bottom": "false", + "east": "none", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32296, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32297, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32298, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32299, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32300, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32301, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32302, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32303, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32304, + "properties": { + "bottom": "false", + "east": "none", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32305, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32306, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32307, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32308, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32309, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32310, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32311, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32312, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32313, + "properties": { + "bottom": "false", + "east": "low", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32314, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32315, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32316, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32317, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32318, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32319, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32320, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32321, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32322, + "properties": { + "bottom": "false", + "east": "low", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32323, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32324, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32325, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32326, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32327, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32328, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32329, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32330, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32331, + "properties": { + "bottom": "false", + "east": "low", + "north": "tall", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32332, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "none" + } + }, + { + "id": 32333, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "low" + } + }, + { + "id": 32334, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "none", + "west": "tall" + } + }, + { + "id": 32335, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "none" + } + }, + { + "id": 32336, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "low" + } + }, + { + "id": 32337, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "low", + "west": "tall" + } + }, + { + "id": 32338, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "none" + } + }, + { + "id": 32339, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "low" + } + }, + { + "id": 32340, + "properties": { + "bottom": "false", + "east": "tall", + "north": "none", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32341, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "none" + } + }, + { + "id": 32342, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "low" + } + }, + { + "id": 32343, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "none", + "west": "tall" + } + }, + { + "id": 32344, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "none" + } + }, + { + "id": 32345, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "low" + } + }, + { + "id": 32346, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "low", + "west": "tall" + } + }, + { + "id": 32347, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "none" + } + }, + { + "id": 32348, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "low" + } + }, + { + "id": 32349, + "properties": { + "bottom": "false", + "east": "tall", + "north": "low", + "south": "tall", + "west": "tall" + } + }, + { + "id": 32350, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "none" + } + }, + { + "id": 32351, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "low" + } + }, + { + "id": 32352, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "none", + "west": "tall" + } + }, + { + "id": 32353, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "none" + } + }, + { + "id": 32354, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "low" + } + }, + { + "id": 32355, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "low", + "west": "tall" + } + }, + { + "id": 32356, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "none" + } + }, + { + "id": 32357, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "low" + } + }, + { + "id": 32358, + "properties": { + "bottom": "false", + "east": "tall", + "north": "tall", + "south": "tall", + "west": "tall" + } + } + ] + }, + "minecraft:pale_oak_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "pale_oak", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10843, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10844, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10845, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10846, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10847, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10848, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10849, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10850, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10851, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10852, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10853, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10854, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10855, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10856, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10857, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10858, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10859, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10860, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10861, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10862, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10863, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10864, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10865, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10866, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14444, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14445, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14446, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14447, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14448, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14449, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14450, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14451, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14452, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14453, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14454, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14455, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14456, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14457, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14458, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14459, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14460, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14461, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14462, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14463, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14464, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14465, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14466, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14467, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14468, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14469, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14470, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14471, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14472, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14473, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14474, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14475, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14476, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14477, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14478, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14479, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14480, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14481, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14482, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14483, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14484, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14485, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14486, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14487, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14488, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14489, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14490, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14491, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14492, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14493, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14494, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14495, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14496, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14497, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14498, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14499, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14500, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14501, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14502, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14503, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14504, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14505, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14506, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14507, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13964, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13965, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13966, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13967, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13968, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13969, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13970, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13971, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13972, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13973, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13974, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13975, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13976, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13977, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13978, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13979, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13980, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13981, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13982, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13983, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13984, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13985, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13986, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13987, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13988, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13989, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13990, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13991, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13992, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13993, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13994, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13995, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pale_oak_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13676, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13677, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13678, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13679, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13680, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13681, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13682, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13683, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13684, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13685, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13686, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13687, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13688, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13689, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13690, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13691, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13692, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13693, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13694, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13695, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13696, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13697, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13698, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13699, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13700, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13701, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13702, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13703, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13704, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13705, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13706, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13707, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6355, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6356, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6357, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6358, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6359, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6360, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6361, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6362, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6363, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6364, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6365, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6366, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6367, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6368, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6369, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6370, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6371, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6372, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6373, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6374, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6375, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6376, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6377, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6378, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6379, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6380, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6381, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6382, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6383, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6384, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6385, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6386, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6387, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6388, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6389, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6390, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6391, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6392, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6393, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6394, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6395, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6396, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6397, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6398, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6399, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6400, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6401, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6402, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6403, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6404, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6405, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6406, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6407, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6408, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6409, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6410, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6411, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6412, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6413, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6414, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6415, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6416, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6417, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6418, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_leaves": { + "definition": { + "type": "minecraft:untinted_particle_leaves", + "leaf_particle": { + "type": "minecraft:pale_oak_leaves" + }, + "leaf_particle_chance": 0.02, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 448, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 449, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 450, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 451, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 452, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 453, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 454, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 455, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 456, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 457, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 458, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 459, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 460, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 461, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 462, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 463, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 464, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 465, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 466, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 467, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 468, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 469, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 470, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 471, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 472, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 473, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 474, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 475, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 157, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 158, + "properties": { + "axis": "y" + } + }, + { + "id": 159, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:pale_oak_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25 + } + ] + }, + "minecraft:pale_oak_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6875, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6876, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:pale_oak_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "pale_oak" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 43, + "properties": { + "stage": "0" + } + }, + { + "id": 44, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:pale_oak_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3176, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3177, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3178, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3179, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3180, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3181, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3182, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3183, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3184, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3185, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3186, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3187, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3188, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3189, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3190, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3191, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3192, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3193, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3194, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3195, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3196, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3197, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3198, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3199, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3200, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3201, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3202, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3203, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3204, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3205, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3206, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3207, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3208, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3209, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3210, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3211, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3212, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3213, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3214, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3215, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3216, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3217, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3218, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3219, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3220, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3221, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3222, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3223, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3224, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3225, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3226, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3227, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3228, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3229, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3230, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3231, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3232, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3233, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3234, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3235, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3236, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3237, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3238, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3239, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5559, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5560, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5561, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5562, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5563, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5564, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5565, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5566, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5567, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5568, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5569, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5570, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5571, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5572, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5573, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5574, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5575, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5576, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5577, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5578, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5579, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5580, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5581, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5582, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5583, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5584, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5585, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5586, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5587, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5588, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5589, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5590, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13372, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13373, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13374, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13375, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13376, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13377, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:pale_oak_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12212, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12213, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12214, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12215, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12216, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12217, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12218, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12219, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12220, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12221, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12222, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12223, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12224, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12225, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12226, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12227, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12228, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12229, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12230, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12231, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12232, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12233, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12234, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12235, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12236, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12237, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12238, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12239, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12240, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12241, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12242, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12243, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12244, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12245, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12246, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12247, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12248, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12249, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12250, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12251, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12252, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12253, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12254, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12255, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12256, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12257, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12258, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12259, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12260, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12261, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12262, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12263, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12264, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12265, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12266, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12267, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12268, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12269, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12270, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12271, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12272, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12273, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12274, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12275, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12276, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12277, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12278, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12279, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12280, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12281, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12282, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12283, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12284, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12285, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12286, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12287, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12288, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12289, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12290, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12291, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "pale_oak", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7562, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7563, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7564, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7565, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7566, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7567, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7568, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7569, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7570, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7571, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7572, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7573, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7574, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7575, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7576, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7577, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7578, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7579, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7580, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7581, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7582, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7583, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7584, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7585, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7586, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7587, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7588, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7589, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7590, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7591, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7592, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7593, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7594, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7595, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7596, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7597, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7598, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7599, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7600, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7601, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7602, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7603, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7604, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7605, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7606, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7607, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7608, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7609, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7610, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7611, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7612, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7613, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7614, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7615, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7616, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7617, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7618, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7619, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7620, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7621, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7622, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7623, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7624, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7625, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6731, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6732, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6733, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6734, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6735, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6736, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6737, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6738, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "pale_oak" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5883, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5884, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5885, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5886, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5887, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5888, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5889, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5890, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pale_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 22, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 23, + "properties": { + "axis": "y" + } + }, + { + "id": 24, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:pearlescent_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 32081, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 32082, + "properties": { + "axis": "y" + } + }, + { + "id": 32083, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:peony": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12921, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12922, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:petrified_oak_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13420, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13421, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13422, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13423, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13424, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13425, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:piglin_head": { + "definition": { + "type": "minecraft:skull", + "kind": "piglin", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11155, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11156, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11157, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11158, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11159, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11160, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11161, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11162, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11163, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11164, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11165, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11166, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11167, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11168, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11169, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11170, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11171, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11172, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11173, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11174, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11175, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11176, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11177, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11178, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11179, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11180, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11181, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11182, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11183, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11184, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11185, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11186, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:piglin_wall_head": { + "definition": { + "type": "minecraft:piglinwallskull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11187, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11188, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11189, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11190, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11191, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11192, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11193, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11194, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:pink_banner": { + "definition": { + "type": "minecraft:banner", + "color": "pink", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13023, + "properties": { + "rotation": "0" + } + }, + { + "id": 13024, + "properties": { + "rotation": "1" + } + }, + { + "id": 13025, + "properties": { + "rotation": "2" + } + }, + { + "id": 13026, + "properties": { + "rotation": "3" + } + }, + { + "id": 13027, + "properties": { + "rotation": "4" + } + }, + { + "id": 13028, + "properties": { + "rotation": "5" + } + }, + { + "id": 13029, + "properties": { + "rotation": "6" + } + }, + { + "id": 13030, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13031, + "properties": { + "rotation": "8" + } + }, + { + "id": 13032, + "properties": { + "rotation": "9" + } + }, + { + "id": 13033, + "properties": { + "rotation": "10" + } + }, + { + "id": 13034, + "properties": { + "rotation": "11" + } + }, + { + "id": 13035, + "properties": { + "rotation": "12" + } + }, + { + "id": 13036, + "properties": { + "rotation": "13" + } + }, + { + "id": 13037, + "properties": { + "rotation": "14" + } + }, + { + "id": 13038, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:pink_bed": { + "definition": { + "type": "minecraft:bed", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2027, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2028, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2029, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2030, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2031, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2032, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2033, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2034, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2035, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2036, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2037, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2038, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2039, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2040, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2041, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2042, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:pink_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23208, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23209, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23210, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23211, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23212, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23213, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23214, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23215, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23216, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23217, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23218, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23219, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23220, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23221, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23222, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23223, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:pink_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:pink_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23382, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23383, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:pink_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12902 + } + ] + }, + "minecraft:pink_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15036 + } + ] + }, + "minecraft:pink_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:pink_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15052 + } + ] + }, + "minecraft:pink_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14990, + "properties": { + "facing": "north" + } + }, + { + "id": 14991, + "properties": { + "facing": "south" + } + }, + { + "id": 14992, + "properties": { + "facing": "west" + } + }, + { + "id": 14993, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_petals": { + "definition": { + "type": "minecraft:flower_bed", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 30307, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 30308, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 30309, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 30310, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 30311, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 30312, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 30313, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 30314, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 30315, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 30316, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 30317, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 30318, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 30319, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 30320, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 30321, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 30322, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:pink_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14906, + "properties": { + "facing": "north" + } + }, + { + "id": 14907, + "properties": { + "facing": "east" + } + }, + { + "id": 14908, + "properties": { + "facing": "south" + } + }, + { + "id": 14909, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14910, + "properties": { + "facing": "up" + } + }, + { + "id": 14911, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:pink_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "pink", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7104 + } + ] + }, + "minecraft:pink_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "pink", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11652, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11653, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11654, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11655, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11656, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11657, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11658, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11659, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11660, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11661, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11662, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11663, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11664, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11665, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11666, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11667, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11668, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11669, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11670, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11671, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11672, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11673, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11674, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11675, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11676, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11677, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11678, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11679, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11680, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11681, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11682, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11683, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:pink_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11450 + } + ] + }, + "minecraft:pink_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2331 + } + ] + }, + "minecraft:pink_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "pink", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13207, + "properties": { + "facing": "north" + } + }, + { + "id": 13208, + "properties": { + "facing": "south" + } + }, + { + "id": 13209, + "properties": { + "facing": "west" + } + }, + { + "id": 13210, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:pink_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2299 + } + ] + }, + "minecraft:piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": false + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2257, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2258, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2259, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2260, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2261, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2262, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2263, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2264, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2265, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2266, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2267, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2268, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:piston_head": { + "definition": { + "type": "minecraft:piston_head", + "properties": {} + }, + "properties": { + "type": [ + "normal", + "sticky" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "short": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2269, + "properties": { + "type": "normal", + "facing": "north", + "short": "true" + } + }, + { + "id": 2270, + "properties": { + "type": "sticky", + "facing": "north", + "short": "true" + } + }, + { + "default": true, + "id": 2271, + "properties": { + "type": "normal", + "facing": "north", + "short": "false" + } + }, + { + "id": 2272, + "properties": { + "type": "sticky", + "facing": "north", + "short": "false" + } + }, + { + "id": 2273, + "properties": { + "type": "normal", + "facing": "east", + "short": "true" + } + }, + { + "id": 2274, + "properties": { + "type": "sticky", + "facing": "east", + "short": "true" + } + }, + { + "id": 2275, + "properties": { + "type": "normal", + "facing": "east", + "short": "false" + } + }, + { + "id": 2276, + "properties": { + "type": "sticky", + "facing": "east", + "short": "false" + } + }, + { + "id": 2277, + "properties": { + "type": "normal", + "facing": "south", + "short": "true" + } + }, + { + "id": 2278, + "properties": { + "type": "sticky", + "facing": "south", + "short": "true" + } + }, + { + "id": 2279, + "properties": { + "type": "normal", + "facing": "south", + "short": "false" + } + }, + { + "id": 2280, + "properties": { + "type": "sticky", + "facing": "south", + "short": "false" + } + }, + { + "id": 2281, + "properties": { + "type": "normal", + "facing": "west", + "short": "true" + } + }, + { + "id": 2282, + "properties": { + "type": "sticky", + "facing": "west", + "short": "true" + } + }, + { + "id": 2283, + "properties": { + "type": "normal", + "facing": "west", + "short": "false" + } + }, + { + "id": 2284, + "properties": { + "type": "sticky", + "facing": "west", + "short": "false" + } + }, + { + "id": 2285, + "properties": { + "type": "normal", + "facing": "up", + "short": "true" + } + }, + { + "id": 2286, + "properties": { + "type": "sticky", + "facing": "up", + "short": "true" + } + }, + { + "id": 2287, + "properties": { + "type": "normal", + "facing": "up", + "short": "false" + } + }, + { + "id": 2288, + "properties": { + "type": "sticky", + "facing": "up", + "short": "false" + } + }, + { + "id": 2289, + "properties": { + "type": "normal", + "facing": "down", + "short": "true" + } + }, + { + "id": 2290, + "properties": { + "type": "sticky", + "facing": "down", + "short": "true" + } + }, + { + "id": 2291, + "properties": { + "type": "normal", + "facing": "down", + "short": "false" + } + }, + { + "id": 2292, + "properties": { + "type": "sticky", + "facing": "down", + "short": "false" + } + } + ] + }, + "minecraft:pitcher_crop": { + "definition": { + "type": "minecraft:pitcher_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4" + ], + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 14799, + "properties": { + "age": "0", + "half": "upper" + } + }, + { + "default": true, + "id": 14800, + "properties": { + "age": "0", + "half": "lower" + } + }, + { + "id": 14801, + "properties": { + "age": "1", + "half": "upper" + } + }, + { + "id": 14802, + "properties": { + "age": "1", + "half": "lower" + } + }, + { + "id": 14803, + "properties": { + "age": "2", + "half": "upper" + } + }, + { + "id": 14804, + "properties": { + "age": "2", + "half": "lower" + } + }, + { + "id": 14805, + "properties": { + "age": "3", + "half": "upper" + } + }, + { + "id": 14806, + "properties": { + "age": "3", + "half": "lower" + } + }, + { + "id": 14807, + "properties": { + "age": "4", + "half": "upper" + } + }, + { + "id": 14808, + "properties": { + "age": "4", + "half": "lower" + } + } + ] + }, + "minecraft:pitcher_plant": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 14809, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 14810, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:player_head": { + "definition": { + "type": "minecraft:player_head", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 11035, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 11036, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 11037, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 11038, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 11039, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11040, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11041, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11042, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11043, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11044, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11045, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11046, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11047, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11048, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11049, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11050, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11051, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11052, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11053, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11054, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11055, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11056, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11057, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11058, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11059, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11060, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11061, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11062, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11063, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11064, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11065, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11066, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:player_wall_head": { + "definition": { + "type": "minecraft:player_wall_head", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11067, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11068, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11069, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11070, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11071, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11072, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11073, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11074, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:podzol": { + "definition": { + "type": "minecraft:snowy_dirt", + "properties": {} + }, + "properties": { + "snowy": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12, + "properties": { + "snowy": "true" + } + }, + { + "default": true, + "id": 13, + "properties": { + "snowy": "false" + } + } + ] + }, + "minecraft:pointed_dripstone": { + "definition": { + "type": "minecraft:pointed_dripstone", + "block_to_grow_on": { + "Name": "minecraft:dripstone_block" + }, + "properties": {} + }, + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30209, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30210, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30211, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30212, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30213, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30214, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30215, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30216, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30217, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30218, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30219, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30220, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30221, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30222, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30223, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30224, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30225, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30226, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30227, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30228, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7 + } + ] + }, + "minecraft:polished_andesite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16482, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16483, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16484, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16485, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16486, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16487, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_andesite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_andesite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16256, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16257, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16258, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16259, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16260, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16261, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16262, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16263, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16264, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16265, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16270, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16271, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16272, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16273, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16274, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16275, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16276, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16277, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16278, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16279, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16280, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16281, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16282, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16283, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16284, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16285, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16290, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16291, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16292, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16293, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16294, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16295, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16296, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16297, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16298, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16299, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16300, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16301, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16302, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16303, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16304, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16305, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16310, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16311, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16312, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16313, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16314, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16315, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16316, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16317, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16318, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16319, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16320, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16321, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16322, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16323, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16324, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16325, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16330, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16331, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16332, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16333, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16334, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16335, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_basalt": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 7003, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 7004, + "properties": { + "axis": "y" + } + }, + { + "id": 7005, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:polished_blackstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22242 + } + ] + }, + "minecraft:polished_blackstone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22246, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22247, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22248, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22249, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22250, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22251, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22252, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22253, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22254, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22255, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22256, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22257, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22258, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22259, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22260, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22261, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22262, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22263, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22264, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22265, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22270, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22271, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22272, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22273, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22274, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22275, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22276, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22277, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22278, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22279, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22280, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22281, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22282, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22283, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22284, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22285, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22290, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22291, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22292, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22293, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22294, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22295, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22296, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22297, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22298, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22299, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22300, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22301, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22302, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22303, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22304, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22305, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22310, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22311, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22312, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22313, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22314, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22315, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22316, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22317, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22318, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22319, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22320, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22321, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22322, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22323, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22324, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22325, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22330, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22331, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 22332, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22333, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22334, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 22335, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22336, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22337, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22338, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22339, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22340, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22341, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22342, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22343, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22344, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22345, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22346, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22347, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22348, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22349, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22350, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22351, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22352, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22353, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22354, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22355, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22356, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22357, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22358, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22359, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22360, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22361, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22362, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22363, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22364, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22365, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22366, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22367, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22368, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22369, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22370, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22371, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22372, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22373, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22374, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22375, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22376, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22377, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22378, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22379, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22380, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22381, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22382, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22383, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22384, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22385, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22386, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22387, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22388, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22389, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22390, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22391, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22392, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22393, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22394, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22395, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22396, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22397, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22398, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22399, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22400, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22401, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22402, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22403, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22404, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22405, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22406, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22407, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22408, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22409, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22410, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22411, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22412, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22413, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22414, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22415, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22416, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22417, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22418, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22419, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22420, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22421, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22422, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22423, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22424, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22425, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22426, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22427, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22428, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22429, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22430, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22431, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22432, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22433, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22434, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22435, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22436, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22437, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22438, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22439, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22440, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22441, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22442, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22443, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22444, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22445, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22446, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22447, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22448, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22449, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22450, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22451, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22452, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22453, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22454, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22455, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22456, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22457, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22458, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22459, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22460, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22461, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22462, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22463, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22464, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22465, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22466, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22467, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22468, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22469, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22470, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22471, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22472, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22473, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22474, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22475, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22476, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22477, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22478, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22479, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22480, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22481, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22482, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22483, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22484, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22485, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22486, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22487, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22488, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22489, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22490, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22491, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22492, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22493, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22494, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22495, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22496, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22497, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22498, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22499, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22500, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22501, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22502, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22503, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22504, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22505, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22506, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22507, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22508, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22509, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22510, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22511, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22512, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22513, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22514, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22515, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22516, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22517, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22518, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22519, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22520, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22521, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22522, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22523, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22524, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22525, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22526, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22527, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22528, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22529, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22530, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22531, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22532, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22533, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22534, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22535, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22536, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22537, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22538, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22539, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22540, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22541, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22542, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22543, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22544, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22545, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22546, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22547, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22548, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22549, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22550, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22551, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22552, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22553, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22554, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22555, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22556, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22557, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22558, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22559, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22560, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22561, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22562, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22563, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22564, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22565, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22566, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22567, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22568, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22569, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22570, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22571, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22572, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22573, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22574, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22575, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22576, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22577, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22578, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22579, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22580, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22581, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22582, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22583, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22584, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22585, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22586, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22587, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22588, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22589, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22590, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22591, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22592, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22593, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22594, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22595, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22596, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22597, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22598, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22599, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22600, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22601, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22602, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22603, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22604, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22605, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22606, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22607, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22608, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22609, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22610, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22611, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22612, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22613, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22614, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22615, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22616, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22617, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22618, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22619, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22620, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22621, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22622, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22623, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22624, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22625, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22626, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22627, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22628, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22629, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22630, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22631, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22632, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22633, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22634, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22635, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22636, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22637, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22638, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22639, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22640, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22641, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22642, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22643, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22644, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22645, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22646, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22647, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22648, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22649, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22650, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22651, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22652, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22653, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22654, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22655, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_blackstone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 22243 + } + ] + }, + "minecraft:polished_blackstone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22745, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 22746, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22747, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22748, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22749, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22750, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22751, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22752, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 22753, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 22754, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22755, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22756, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22757, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22758, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22759, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22760, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 22761, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 22762, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 22763, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 22764, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 22765, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 22766, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 22767, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 22768, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "polished_blackstone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22743, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 22744, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:polished_blackstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22737, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 22738, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 22739, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22740, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 22741, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 22742, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_blackstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 22657, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22658, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22659, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22660, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22661, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22662, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22663, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22664, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22665, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22666, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22667, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 22668, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22669, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22670, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22671, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22672, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22673, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22674, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22675, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22676, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22677, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22678, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22679, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22680, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22681, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22682, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22683, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22684, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22685, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22686, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22687, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22688, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22689, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22690, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22691, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22692, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22693, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22694, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22695, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22696, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22697, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22698, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22699, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22700, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22701, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22702, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22703, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22704, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22705, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22706, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22707, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22708, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22709, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22710, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22711, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22712, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22713, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22714, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22715, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22716, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22717, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22718, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22719, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22720, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22721, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22722, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22723, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22724, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22725, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22726, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 22727, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 22728, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 22729, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 22730, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 22731, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 22732, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 22733, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 22734, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 22735, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 22736, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_blackstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 22769, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22770, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22771, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 22772, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22773, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22774, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22775, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22776, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22777, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22778, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22779, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22781, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22782, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22783, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22784, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22785, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22786, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22787, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22788, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22789, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22790, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22791, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22793, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22794, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22795, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22796, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22797, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22798, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22799, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22800, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22801, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22802, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22803, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22805, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22806, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22807, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22808, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22809, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22810, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22811, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22812, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22813, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22814, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22815, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22817, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22818, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22819, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22820, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22821, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22822, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22823, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22824, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22825, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22826, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22827, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22829, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22830, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22831, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22832, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22833, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22834, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22835, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22836, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22837, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22838, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22839, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22841, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22842, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22843, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22844, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22845, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22846, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22847, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22848, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22849, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22850, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22851, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22853, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22854, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22855, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22856, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22857, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22858, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22859, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22860, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22861, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22862, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22863, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22865, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22866, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22867, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22868, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22869, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22870, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22871, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22872, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22873, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22874, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22877, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22878, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22879, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22880, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22881, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22882, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22883, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22884, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22885, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22886, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22887, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22889, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22890, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22891, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22892, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22893, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22894, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22895, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22896, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22897, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22898, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22899, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22901, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22902, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22903, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22904, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22905, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22906, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22907, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22908, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22909, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22910, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22911, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22913, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22914, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22915, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22916, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22917, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22918, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22919, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22920, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22921, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22922, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22923, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22925, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22926, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22927, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22928, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22929, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22930, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22931, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22932, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22933, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22934, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22935, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22937, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22938, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22939, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22940, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22941, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22942, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22943, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22944, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22945, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22946, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22947, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22949, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22950, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22951, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22952, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22953, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22954, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22955, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22956, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22957, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22958, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22959, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22961, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22962, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22963, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22964, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22965, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22966, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22967, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22968, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22969, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22970, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22971, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22973, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22974, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22975, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22976, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22977, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22978, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22979, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22980, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22981, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22982, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22985, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22986, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22987, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22988, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22989, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22990, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22991, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22992, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22993, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 22994, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 22995, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 22996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 22997, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 22998, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 22999, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23000, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23001, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23002, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23003, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23004, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23005, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23006, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23007, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23009, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23010, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23011, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23012, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23013, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23014, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23015, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23016, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23017, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23018, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23021, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23022, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23023, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23024, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23025, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23026, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23027, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23028, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23029, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23030, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23031, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23033, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23034, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23035, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23036, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23037, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23038, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23039, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23040, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23041, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23042, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23043, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23045, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23046, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23047, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23048, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23049, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23050, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23051, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23052, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23053, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23054, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23057, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23058, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23059, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23060, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23061, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23062, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23063, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23064, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23065, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23066, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23067, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23069, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23070, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23071, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23072, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23073, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23074, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23075, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23076, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23077, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23078, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23081, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23082, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23083, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23084, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23085, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23086, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23087, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23088, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23089, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23090, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_cinnabar": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 26337 + } + ] + }, + "minecraft:polished_cinnabar_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26338, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 26339, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 26340, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26341, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 26342, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 26343, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_cinnabar_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_cinnabar" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 26344, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26345, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26346, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26347, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26348, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26349, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26350, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26351, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26352, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26353, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26354, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 26355, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26356, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26357, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26358, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26359, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26360, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26361, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26362, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26363, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26364, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26365, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26366, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26367, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26368, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26369, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26370, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26371, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26372, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26373, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26374, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26375, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26376, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26377, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26378, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26379, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26380, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26381, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26382, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26383, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26384, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26385, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26386, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26387, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26388, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26389, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26390, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26391, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26392, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26393, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26394, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26395, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26396, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26397, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26398, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26399, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26400, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26401, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26402, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26403, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26404, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26405, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26406, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26407, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26408, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26409, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26410, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26411, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26412, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26413, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 26414, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 26415, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 26416, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 26417, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 26418, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 26419, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 26420, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 26421, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 26422, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 26423, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_cinnabar_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 26424, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26425, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26426, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 26427, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26428, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26429, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26430, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26431, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26432, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26433, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26434, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26435, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26436, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26437, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26438, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26439, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26440, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26441, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26442, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26443, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26444, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26445, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26446, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26447, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26448, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26449, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26450, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26451, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26452, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26453, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26454, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26455, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26456, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26457, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26458, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26459, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26460, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26461, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26462, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26463, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26464, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26465, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26466, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26467, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26468, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26469, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26470, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26471, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26472, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26473, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26474, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26475, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26476, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26477, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26478, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26479, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26480, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26481, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26482, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26483, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26484, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26485, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26486, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26487, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26488, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26489, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26490, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26491, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26492, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26493, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26494, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26495, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26496, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26497, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26498, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26499, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26500, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26501, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26502, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26503, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26504, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26505, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26506, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26507, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26508, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26509, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26510, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26511, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26512, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26513, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26514, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26515, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26516, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26517, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26518, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26519, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26520, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26521, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26522, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26523, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26524, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26525, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26526, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26527, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26528, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26529, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26530, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26531, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26532, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26533, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26534, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26535, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26536, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26537, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26538, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26539, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26540, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26541, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26542, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26543, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26544, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26545, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26546, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26547, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26548, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26549, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26550, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26551, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26552, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26553, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26554, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26555, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26556, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26557, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26558, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26559, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26560, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26561, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26562, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26563, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26564, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26565, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26566, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26567, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26568, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26569, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26570, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26571, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26572, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26573, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26574, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26575, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26576, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26577, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26578, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26579, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26580, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26581, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26582, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26583, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26584, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26585, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26586, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26587, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26588, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26589, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26590, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26591, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26592, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26593, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26594, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26595, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26596, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26597, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26598, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26599, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26600, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26601, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26602, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26603, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26604, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26605, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26606, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26607, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26608, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26609, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26610, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26611, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26612, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26613, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26614, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26615, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26616, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26617, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26618, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26619, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26620, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26621, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26622, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26623, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26624, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26625, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26626, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26627, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26628, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26629, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26630, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26631, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26632, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26633, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26634, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26635, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26636, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26637, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26638, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26639, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26640, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26641, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26642, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26643, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26644, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26645, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26646, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26647, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26648, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26649, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26650, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26651, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26652, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26653, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26654, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26655, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26656, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26657, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26658, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26659, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26660, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26661, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26662, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26663, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26664, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26665, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26666, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26667, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26668, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26669, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26670, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26671, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26672, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26673, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26674, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26675, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26676, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26677, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26678, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26679, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26680, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26681, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26682, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26683, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26684, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26685, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26686, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26687, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26688, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26689, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26690, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26691, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26692, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26693, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26694, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26695, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26696, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26697, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26698, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26699, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26700, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26701, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26702, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26703, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26704, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26705, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26706, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26707, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26708, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26709, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26710, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26711, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26712, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26713, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26714, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26715, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26716, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26717, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26718, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26719, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26720, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26721, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26722, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26723, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26724, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26725, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26726, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26727, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26728, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26729, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26730, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26731, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26732, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26733, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26734, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26735, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26736, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26737, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26738, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26739, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26740, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26741, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 26742, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 26743, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 26744, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 26745, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 26746, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 26747, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30830 + } + ] + }, + "minecraft:polished_deepslate_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30911, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 30912, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 30913, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30914, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 30915, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 30916, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_deepslate" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30831, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30832, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30833, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30834, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30835, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30836, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30837, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30838, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30839, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30840, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30841, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30842, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30843, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30844, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30845, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30846, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30847, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30848, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30849, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30850, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30851, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30852, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30853, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30854, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30855, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30856, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30857, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30858, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30859, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30860, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30861, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30862, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30863, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30864, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30865, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30866, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30867, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30868, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30869, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30870, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30871, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30872, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30873, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30874, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30875, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30876, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30877, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30878, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30879, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30880, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30881, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30882, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30883, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30884, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30885, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30886, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30887, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30888, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30889, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30890, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30891, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30892, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30893, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30894, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30895, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30896, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30897, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30898, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30899, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30900, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 30901, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 30902, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 30903, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 30904, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 30905, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 30906, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 30907, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 30908, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 30909, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 30910, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_deepslate_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 30917, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30918, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30919, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 30920, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30921, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30922, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30923, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30924, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30925, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30926, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30927, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30928, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30929, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30930, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30931, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30932, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30933, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30934, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30935, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30936, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30937, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30938, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30939, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30940, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30941, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30942, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30943, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30944, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30945, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30946, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30947, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30948, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30949, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30950, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30951, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30952, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30953, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30954, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30955, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30956, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30957, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30958, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30959, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30960, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30961, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30962, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30963, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30964, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30965, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30966, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30967, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30968, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30969, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30970, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30971, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30972, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30973, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30974, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30975, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30976, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30977, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30978, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30979, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30980, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30981, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30982, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30983, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30984, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30985, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30986, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30987, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30988, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30989, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30990, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30991, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30992, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30993, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 30994, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 30995, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 30996, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 30997, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 30998, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 30999, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31000, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31001, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31002, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31003, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31004, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31005, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31006, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31007, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31008, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31009, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31010, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31011, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31012, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31013, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31014, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31015, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31016, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31017, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31018, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31019, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31020, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31021, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31022, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31023, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31024, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31025, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31026, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31027, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31028, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31029, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31030, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31031, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31032, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31033, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31034, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31035, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31036, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31037, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31038, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31039, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31040, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31041, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31042, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31043, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31044, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31045, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31046, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31047, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31048, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31049, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31050, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31051, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31052, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31053, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31054, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31055, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31056, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31057, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31058, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31059, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31060, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31061, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31062, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31063, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31064, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31065, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31066, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31067, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31068, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31069, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31070, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31071, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31072, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31073, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31074, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31075, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31076, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31077, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31078, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31079, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31080, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31081, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31082, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31083, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31084, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31085, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31086, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31087, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31088, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31089, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31090, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31091, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31092, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31093, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31094, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31095, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31096, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31097, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31098, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31099, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31100, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31101, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31102, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31103, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31104, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31105, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31106, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31107, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31108, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31109, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31110, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31111, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31112, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31113, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31114, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31115, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31116, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31117, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31118, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31119, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31120, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31121, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31122, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31123, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31124, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31125, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31126, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31127, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31128, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31129, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31130, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31131, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31132, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31133, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31134, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31135, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31136, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31137, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31138, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31139, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31140, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31141, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31142, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31143, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31144, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31145, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31146, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31147, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31148, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31149, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31150, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31151, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31152, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31153, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31154, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31155, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31156, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31157, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31158, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31159, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31160, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31161, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31162, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31163, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31164, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31165, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31166, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31167, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31168, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31169, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31170, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31171, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31172, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31173, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31174, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31175, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31176, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31177, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31178, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31179, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31180, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31181, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31182, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31183, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31184, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31185, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31186, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31187, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31188, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31189, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31190, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31191, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31192, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31193, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31194, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31195, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31196, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31197, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31198, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31199, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31200, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31201, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31202, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31203, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31204, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31205, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31206, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31207, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31208, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31209, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31210, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31211, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31212, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31213, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31214, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31215, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31216, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31217, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31218, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31219, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31220, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31221, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31222, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31223, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31224, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31225, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31226, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31227, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31228, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31229, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31230, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31231, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31232, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31233, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31234, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 31235, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 31236, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 31237, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 31238, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 31239, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 31240, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_diorite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 5 + } + ] + }, + "minecraft:polished_diorite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16434, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16435, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16436, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16437, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16438, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16439, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_diorite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_diorite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15536, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15537, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15538, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15539, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15540, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15541, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15542, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15543, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15544, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15545, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15546, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15547, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15548, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15549, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15550, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15551, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15552, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15553, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15554, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15555, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15556, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15557, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15558, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15559, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15560, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15561, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15562, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15563, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15564, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15565, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15566, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15567, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15568, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15569, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15570, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15571, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15572, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15573, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15574, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15575, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15576, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15577, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15578, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15579, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15580, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15581, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15582, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15583, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15584, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15585, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15586, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15587, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15588, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15589, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15590, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15591, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15592, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15593, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15594, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15595, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15596, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15597, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15598, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15599, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15600, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15601, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15602, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15603, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15604, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15605, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15606, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15607, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15608, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15609, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15610, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15611, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15612, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15613, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15614, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15615, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3 + } + ] + }, + "minecraft:polished_granite_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16416, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16417, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16418, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16419, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16420, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16421, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_granite_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_granite" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15296, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15297, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15298, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15299, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15300, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15301, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15302, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15303, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15304, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15305, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15306, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15307, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15308, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15309, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15310, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15311, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15312, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15313, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15314, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15315, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15316, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15317, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15318, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15319, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15320, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15321, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15322, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15323, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15324, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15325, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15326, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15327, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15328, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15329, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15330, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15331, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15332, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15333, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15334, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15335, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15336, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15337, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15338, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15339, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15340, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15341, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15342, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15343, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15344, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15345, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15346, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15347, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15348, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15349, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15350, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15351, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15352, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15353, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15354, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15355, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15356, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15357, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15358, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15359, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15360, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15361, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15362, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15363, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15364, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15365, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15366, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15367, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15368, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15369, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15370, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15371, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15372, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15373, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15374, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15375, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25103 + } + ] + }, + "minecraft:polished_sulfur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25104, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25105, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25106, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25107, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25108, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25109, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_sulfur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_sulfur" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25110, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25111, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25112, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25113, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25114, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25115, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25116, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25117, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25118, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25119, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25120, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25121, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25122, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25123, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25124, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25125, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25126, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25127, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25128, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25129, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25130, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25131, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25132, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25133, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25134, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25135, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25136, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25137, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25138, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25139, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25140, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25141, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25142, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25143, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25144, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25145, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25146, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25147, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25148, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25149, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25150, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25151, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25152, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25153, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25154, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25155, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25156, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25157, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25158, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25159, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25160, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25161, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25162, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25163, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25164, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25165, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25166, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25167, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25168, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25169, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25170, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25171, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25172, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25173, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25174, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25175, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25176, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25177, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25178, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25179, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25180, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25181, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25182, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25183, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25184, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25185, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25186, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25187, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25188, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25189, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_sulfur_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25190, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25191, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25192, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25193, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25194, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25195, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25196, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25197, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25198, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25199, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25200, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25201, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25202, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25203, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25204, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25205, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25206, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25207, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25208, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25209, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25210, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25211, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25212, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25213, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25214, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25215, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25216, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25217, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25218, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25219, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25220, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25221, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25222, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25223, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25224, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25225, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25226, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25227, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25228, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25229, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25230, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25231, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25232, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25233, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25234, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25235, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25236, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25237, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25238, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25239, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25240, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25241, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25242, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25243, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25244, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25245, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25246, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25247, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25248, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25249, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25250, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25251, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25252, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25253, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25254, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25255, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25256, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25257, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25258, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25259, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25260, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25261, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25262, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25263, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25264, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25265, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25266, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25267, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25268, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25269, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25270, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25271, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25272, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25273, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25274, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25275, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25276, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25277, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25278, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25279, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25280, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25281, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25282, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25283, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25284, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25285, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25286, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25287, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25288, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25289, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25290, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25291, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25292, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25293, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25294, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25295, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25296, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25297, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25298, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25299, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25300, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25301, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25302, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25303, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25304, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25305, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25306, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25307, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25308, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25309, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25310, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25311, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25312, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25313, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25314, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25315, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25316, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25317, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25318, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25319, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25320, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25321, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25322, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25323, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25324, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25325, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25326, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25327, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25328, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25329, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25330, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25331, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25332, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25333, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25334, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25335, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25336, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25337, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25338, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25339, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25340, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25341, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25342, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25343, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25344, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25345, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25346, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25347, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25348, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25349, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25350, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25351, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25352, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25353, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25354, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25355, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25356, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25357, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25358, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25359, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25360, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25361, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25362, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25363, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25364, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25365, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25366, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25367, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25368, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25369, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25370, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25371, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25372, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25373, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25374, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25375, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25376, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25377, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25378, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25379, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25380, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25381, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25382, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25383, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25384, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25385, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25386, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25387, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25388, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25389, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25390, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25391, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25392, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25393, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25394, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25395, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25396, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25397, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25398, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25399, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25400, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25401, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25402, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25403, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25404, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25405, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25406, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25407, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25408, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25409, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25410, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25411, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25412, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25413, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25414, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25415, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25416, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25417, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25418, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25419, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25420, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25421, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25422, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25423, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25424, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25425, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25426, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25427, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25428, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25429, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25430, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25431, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25432, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25433, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25434, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25435, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25436, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25437, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25438, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25439, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25440, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25441, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25442, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25443, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25444, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25445, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25446, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25447, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25448, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25449, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25450, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25451, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25452, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25453, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25454, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25455, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25456, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25457, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25458, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25459, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25460, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25461, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25462, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25463, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25464, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25465, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25466, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25467, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25468, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25469, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25470, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25471, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25472, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25473, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25474, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25475, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25476, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25477, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25478, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25479, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25480, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25481, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25482, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25483, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25484, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25485, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25486, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25487, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25488, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25489, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25490, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25491, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25492, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25493, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25494, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25495, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25496, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25497, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25498, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25499, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25500, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25501, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25502, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25503, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25504, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25505, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25506, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25507, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25508, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25509, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25510, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25511, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25512, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25513, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:polished_tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23863 + } + ] + }, + "minecraft:polished_tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23864, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23865, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23866, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23867, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23868, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23869, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:polished_tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23870, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23871, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23872, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23873, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23874, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23875, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23876, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23877, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23878, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23879, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23880, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23881, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23882, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23883, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23884, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23885, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23886, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23887, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23888, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23889, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23890, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23891, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23892, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23893, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23894, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23895, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23896, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23897, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23898, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23899, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23900, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23901, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23902, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23903, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23904, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23905, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23906, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23907, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23908, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23909, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23910, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23911, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23912, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23913, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23914, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23915, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23916, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23917, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23918, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23919, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23920, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23921, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23922, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23923, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23924, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23925, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23926, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23927, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23928, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23929, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23930, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23931, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23932, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23933, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23934, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23935, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23936, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23937, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23938, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23939, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23940, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23941, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23942, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23943, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23944, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23945, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23946, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23947, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23948, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23949, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:polished_tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23950, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23951, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23952, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23953, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23954, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23955, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23956, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23957, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23958, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23959, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23960, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23961, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23962, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23963, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23964, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23965, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23966, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23967, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23968, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23969, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23970, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23971, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23972, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23973, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23974, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23975, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23976, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23977, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23978, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23979, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23980, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23981, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23982, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23983, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23984, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23985, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23986, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23987, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23988, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23989, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23990, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23991, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23992, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23993, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23994, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23995, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23996, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23997, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23998, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23999, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24000, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24001, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24002, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24003, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24004, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24005, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24006, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24007, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24008, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24009, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24010, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24011, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24012, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24013, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24014, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24015, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24016, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24017, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24018, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24019, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24020, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24021, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24022, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24023, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24024, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24025, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24026, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24027, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24028, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24029, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24030, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24031, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24032, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24033, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24034, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24035, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24036, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24037, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24038, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24039, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24040, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24041, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24042, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24043, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24044, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24045, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24046, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24047, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24048, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24049, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24050, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24051, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24052, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24053, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24054, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24055, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24056, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24057, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24058, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24059, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24060, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24061, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24062, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24063, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24064, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24065, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24066, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24067, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24068, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24069, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24070, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24071, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24072, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24073, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24074, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24075, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24076, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24077, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24078, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24079, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24080, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24081, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24082, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24083, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24084, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24085, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24086, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24087, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24088, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24089, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24090, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24091, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24092, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24093, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24094, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24095, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24096, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24097, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24098, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24099, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24100, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24101, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24102, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24103, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24104, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24105, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24106, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24107, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24108, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24109, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24110, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24111, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24112, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24113, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24114, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24115, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24116, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24117, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24118, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24119, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24120, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24121, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24122, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24123, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24124, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24125, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24126, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24127, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24128, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24129, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24130, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24131, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24132, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24133, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24134, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24135, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24136, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24137, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24138, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24139, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24140, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24141, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24142, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24143, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24144, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24145, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24146, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24147, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24148, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24149, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24150, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24151, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24152, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24153, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24154, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24155, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24156, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24157, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24158, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24159, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24160, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24161, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24162, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24163, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24164, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24165, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24166, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24167, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24168, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24169, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24170, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24171, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24172, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24173, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24174, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24175, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24176, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24177, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24178, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24179, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24180, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24181, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24182, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24183, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24184, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24185, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24186, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24187, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24188, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24189, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24190, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24191, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24192, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24193, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24194, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24195, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24196, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24197, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24198, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24199, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24200, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24201, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24202, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24203, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24204, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24205, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24206, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24207, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24208, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24209, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24210, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24211, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24212, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24213, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24214, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24215, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24216, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24217, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24218, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24219, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24220, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24221, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24222, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24223, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24224, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24225, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24226, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24227, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24228, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24229, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24230, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24231, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24232, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24233, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24234, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24235, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24236, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24237, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24238, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24239, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24240, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24241, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24242, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24243, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24244, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24245, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24246, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24247, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24248, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24249, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24250, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24251, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24252, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24253, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24254, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24255, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24256, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24257, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24258, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24259, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24260, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24261, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24262, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24263, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24264, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24265, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24266, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24267, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24268, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24269, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24270, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24271, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24272, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24273, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:poppy": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2324 + } + ] + }, + "minecraft:potatoes": { + "definition": { + "type": "minecraft:potato", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 10667, + "properties": { + "age": "0" + } + }, + { + "id": 10668, + "properties": { + "age": "1" + } + }, + { + "id": 10669, + "properties": { + "age": "2" + } + }, + { + "id": 10670, + "properties": { + "age": "3" + } + }, + { + "id": 10671, + "properties": { + "age": "4" + } + }, + { + "id": 10672, + "properties": { + "age": "5" + } + }, + { + "id": 10673, + "properties": { + "age": "6" + } + }, + { + "id": 10674, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:potent_sulfur": { + "definition": { + "type": "minecraft:potent_sulfur", + "properties": {} + }, + "properties": { + "potent_sulfur_state": [ + "dry", + "wet", + "dormant", + "erupting", + "continuous" + ] + }, + "states": [ + { + "default": true, + "id": 24688, + "properties": { + "potent_sulfur_state": "dry" + } + }, + { + "id": 24689, + "properties": { + "potent_sulfur_state": "wet" + } + }, + { + "id": 24690, + "properties": { + "potent_sulfur_state": "dormant" + } + }, + { + "id": 24691, + "properties": { + "potent_sulfur_state": "erupting" + } + }, + { + "id": 24692, + "properties": { + "potent_sulfur_state": "continuous" + } + } + ] + }, + "minecraft:potted_acacia_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:acacia_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10635 + } + ] + }, + "minecraft:potted_allium": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:allium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10645 + } + ] + }, + "minecraft:potted_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32073 + } + ] + }, + "minecraft:potted_azure_bluet": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:azure_bluet", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10646 + } + ] + }, + "minecraft:potted_bamboo": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:bamboo", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15291 + } + ] + }, + "minecraft:potted_birch_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:birch_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10633 + } + ] + }, + "minecraft:potted_blue_orchid": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:blue_orchid", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10644 + } + ] + }, + "minecraft:potted_brown_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:brown_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10656 + } + ] + }, + "minecraft:potted_cactus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cactus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10658 + } + ] + }, + "minecraft:potted_cherry_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cherry_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10636 + } + ] + }, + "minecraft:potted_closed_eyeblossom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:closed_eyeblossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32364 + } + ] + }, + "minecraft:potted_cornflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:cornflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10652 + } + ] + }, + "minecraft:potted_crimson_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21826 + } + ] + }, + "minecraft:potted_crimson_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:crimson_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21828 + } + ] + }, + "minecraft:potted_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dandelion", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10641 + } + ] + }, + "minecraft:potted_dark_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dark_oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10637 + } + ] + }, + "minecraft:potted_dead_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:dead_bush", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10657 + } + ] + }, + "minecraft:potted_fern": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:fern", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10640 + } + ] + }, + "minecraft:potted_flowering_azalea_bush": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:flowering_azalea", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32074 + } + ] + }, + "minecraft:potted_golden_dandelion": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:golden_dandelion", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10642 + } + ] + }, + "minecraft:potted_jungle_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:jungle_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10634 + } + ] + }, + "minecraft:potted_lily_of_the_valley": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:lily_of_the_valley", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10653 + } + ] + }, + "minecraft:potted_mangrove_propagule": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:mangrove_propagule", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10639 + } + ] + }, + "minecraft:potted_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10631 + } + ] + }, + "minecraft:potted_open_eyeblossom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:open_eyeblossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32363 + } + ] + }, + "minecraft:potted_orange_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:orange_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10648 + } + ] + }, + "minecraft:potted_oxeye_daisy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:oxeye_daisy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10651 + } + ] + }, + "minecraft:potted_pale_oak_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pale_oak_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10638 + } + ] + }, + "minecraft:potted_pink_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:pink_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10650 + } + ] + }, + "minecraft:potted_poppy": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:poppy", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10643 + } + ] + }, + "minecraft:potted_red_mushroom": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10655 + } + ] + }, + "minecraft:potted_red_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:red_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10647 + } + ] + }, + "minecraft:potted_spruce_sapling": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:spruce_sapling", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10632 + } + ] + }, + "minecraft:potted_torchflower": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:torchflower", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10630 + } + ] + }, + "minecraft:potted_warped_fungus": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_fungus", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21827 + } + ] + }, + "minecraft:potted_warped_roots": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:warped_roots", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21829 + } + ] + }, + "minecraft:potted_white_tulip": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:white_tulip", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10649 + } + ] + }, + "minecraft:potted_wither_rose": { + "definition": { + "type": "minecraft:flower_pot", + "potted": "minecraft:wither_rose", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 10654 + } + ] + }, + "minecraft:powder_snow": { + "definition": { + "type": "minecraft:powder_snow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27162 + } + ] + }, + "minecraft:powder_snow_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "powder_snow", + "precipitation": "snow", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9465, + "properties": { + "level": "1" + } + }, + { + "id": 9466, + "properties": { + "level": "2" + } + }, + { + "id": 9467, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:powered_rail": { + "definition": { + "type": "minecraft:powered_rail", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2187, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "id": 2188, + "properties": { + "powered": "true", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2189, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2190, + "properties": { + "powered": "true", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2191, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2192, + "properties": { + "powered": "true", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2193, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2194, + "properties": { + "powered": "true", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2195, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2196, + "properties": { + "powered": "true", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2197, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2198, + "properties": { + "powered": "true", + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 2199, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 2200, + "properties": { + "powered": "false", + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 2201, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 2202, + "properties": { + "powered": "false", + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 2203, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 2204, + "properties": { + "powered": "false", + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 2205, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 2206, + "properties": { + "powered": "false", + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 2207, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 2208, + "properties": { + "powered": "false", + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 2209, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 2210, + "properties": { + "powered": "false", + "shape": "ascending_south", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12631 + } + ] + }, + "minecraft:prismarine_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12880, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12881, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12882, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12883, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12884, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12885, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12714, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12715, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12716, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12717, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12718, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12719, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12720, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12721, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12722, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12723, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12724, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12725, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12726, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12727, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12728, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12729, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12730, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12731, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12732, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12733, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12734, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12735, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12736, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12737, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12738, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12739, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12740, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12741, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12742, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12743, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12744, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12745, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12746, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12747, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12748, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12749, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12750, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12751, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12752, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12753, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12754, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12755, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12756, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12757, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12758, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12759, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12760, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12761, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12762, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12763, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12764, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12765, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12766, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12767, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12768, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12769, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12770, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12771, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12772, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12773, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12774, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12775, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12776, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12777, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12778, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12779, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12780, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12781, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12782, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12783, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12784, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12785, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12786, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12787, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12788, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12789, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12790, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12791, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12792, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12793, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12632 + } + ] + }, + "minecraft:prismarine_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12874, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 12875, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 12876, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12877, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 12878, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 12879, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:prismarine" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 12634, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12635, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12636, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12637, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12638, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12639, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12640, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12641, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12642, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12643, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12644, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 12645, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12646, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12647, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12648, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12649, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12650, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12651, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12652, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12653, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12654, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12655, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12656, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12657, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12658, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12659, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12660, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12661, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12662, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12663, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12664, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12665, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12666, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12667, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12668, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12669, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12670, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12671, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12672, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12673, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12674, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12675, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12676, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12677, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12678, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12679, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12680, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12681, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12682, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12683, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12684, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12685, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12686, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12687, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12688, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12689, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12690, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12691, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12692, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12693, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12694, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12695, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12696, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12697, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12698, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12699, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12700, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12701, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12702, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12703, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 12704, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 12705, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 12706, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 12707, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 12708, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 12709, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 12710, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 12711, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 12712, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 12713, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:prismarine_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 16818, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16819, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16820, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 16821, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16822, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16823, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16824, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16825, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16826, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16827, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16828, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16829, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16830, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16831, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16832, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16833, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16834, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16835, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16836, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16837, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16838, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16839, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16840, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16841, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16842, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16843, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16844, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16845, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16846, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16847, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16848, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16849, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16850, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16851, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16852, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16853, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16854, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16855, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16856, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16857, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16858, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16859, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16860, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16861, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16862, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16863, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16864, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16865, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16866, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16867, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16868, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16869, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16870, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16871, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16872, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16873, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16874, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16875, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16876, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16877, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16878, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16879, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16880, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16881, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16882, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16883, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16884, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16885, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16886, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16887, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16888, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16889, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16890, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16891, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16892, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16893, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16894, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16895, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16896, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16897, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16898, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16899, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16900, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16901, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16902, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16903, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16904, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16905, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16906, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16907, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16908, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16909, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16910, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16911, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16912, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16913, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16914, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16915, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16916, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16917, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16918, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16919, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16920, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16921, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16922, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16923, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16924, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16925, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16926, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16927, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16928, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16929, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16930, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16931, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16932, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16933, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16934, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16935, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16936, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16937, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16938, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16939, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16940, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16941, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16942, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16943, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16944, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16945, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16946, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16947, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16948, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16949, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16950, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16951, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16952, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16953, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16954, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16955, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16956, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16957, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16958, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16959, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16960, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16961, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16962, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16963, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16964, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16965, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16966, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16967, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16968, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16969, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16970, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16971, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16972, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16973, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16974, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16975, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16976, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16977, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16978, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16979, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16980, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16981, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16982, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16983, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16984, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16985, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16986, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16987, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16988, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16989, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16990, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16991, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16992, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16993, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 16994, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 16995, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 16996, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 16997, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 16998, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 16999, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17000, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17001, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17002, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17003, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17004, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17005, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17006, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17007, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17008, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17009, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17010, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17011, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17012, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17013, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17014, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17015, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17016, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17017, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17018, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17019, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17020, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17021, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17022, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17023, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17024, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17025, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17026, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17027, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17028, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17029, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17030, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17031, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17032, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17033, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17034, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17035, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17036, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17037, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17038, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17039, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17040, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17041, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17042, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17043, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17044, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17045, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17046, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17047, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17048, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17049, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17050, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17051, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17052, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17053, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17054, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17055, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17056, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17057, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17058, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17059, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17060, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17061, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17062, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17063, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17064, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17065, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17066, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17067, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17068, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17069, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17070, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17071, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17072, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17073, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17074, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17075, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17076, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17077, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17078, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17079, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17080, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17081, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17082, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17083, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17084, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17085, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17086, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17087, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17088, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17089, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17090, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17091, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17092, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17093, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17094, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17095, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17096, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17097, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17098, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17099, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17100, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17101, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17102, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17103, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17104, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17105, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17106, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17107, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17108, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17109, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17110, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17111, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17112, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17113, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17114, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17115, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17116, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17117, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17118, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17119, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17120, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17121, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17122, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17123, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17124, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17125, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17126, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17127, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17128, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17129, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17130, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17131, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17132, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17133, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17134, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17135, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17136, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17137, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17138, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17139, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17140, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17141, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:pumpkin": { + "definition": { + "type": "minecraft:pumpkin", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8332 + } + ] + }, + "minecraft:pumpkin_stem": { + "definition": { + "type": "minecraft:stem", + "attached_stem": "minecraft:attached_pumpkin_stem", + "fruit": "minecraft:pumpkin", + "fruit_support_blocks": "minecraft:supports_pumpkin_stem_fruit", + "properties": {}, + "seed": "minecraft:pumpkin_seeds", + "stem_support_blocks": "minecraft:supports_pumpkin_stem" + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 8342, + "properties": { + "age": "0" + } + }, + { + "id": 8343, + "properties": { + "age": "1" + } + }, + { + "id": 8344, + "properties": { + "age": "2" + } + }, + { + "id": 8345, + "properties": { + "age": "3" + } + }, + { + "id": 8346, + "properties": { + "age": "4" + } + }, + { + "id": 8347, + "properties": { + "age": "5" + } + }, + { + "id": 8348, + "properties": { + "age": "6" + } + }, + { + "id": 8349, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:purple_banner": { + "definition": { + "type": "minecraft:banner", + "color": "purple", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13087, + "properties": { + "rotation": "0" + } + }, + { + "id": 13088, + "properties": { + "rotation": "1" + } + }, + { + "id": 13089, + "properties": { + "rotation": "2" + } + }, + { + "id": 13090, + "properties": { + "rotation": "3" + } + }, + { + "id": 13091, + "properties": { + "rotation": "4" + } + }, + { + "id": 13092, + "properties": { + "rotation": "5" + } + }, + { + "id": 13093, + "properties": { + "rotation": "6" + } + }, + { + "id": 13094, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13095, + "properties": { + "rotation": "8" + } + }, + { + "id": 13096, + "properties": { + "rotation": "9" + } + }, + { + "id": 13097, + "properties": { + "rotation": "10" + } + }, + { + "id": 13098, + "properties": { + "rotation": "11" + } + }, + { + "id": 13099, + "properties": { + "rotation": "12" + } + }, + { + "id": 13100, + "properties": { + "rotation": "13" + } + }, + { + "id": 13101, + "properties": { + "rotation": "14" + } + }, + { + "id": 13102, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:purple_bed": { + "definition": { + "type": "minecraft:bed", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2091, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2092, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2093, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2094, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2095, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2096, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2097, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2098, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2099, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2100, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2101, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2102, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2103, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2104, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2105, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2106, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:purple_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23272, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23273, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23274, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23275, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23276, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23277, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23278, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23279, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23280, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23281, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23282, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23283, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23284, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23285, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23286, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23287, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purple_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:purple_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23390, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23391, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:purple_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12906 + } + ] + }, + "minecraft:purple_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15040 + } + ] + }, + "minecraft:purple_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:purple_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15056 + } + ] + }, + "minecraft:purple_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15006, + "properties": { + "facing": "north" + } + }, + { + "id": 15007, + "properties": { + "facing": "south" + } + }, + { + "id": 15008, + "properties": { + "facing": "west" + } + }, + { + "id": 15009, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14930, + "properties": { + "facing": "north" + } + }, + { + "id": 14931, + "properties": { + "facing": "east" + } + }, + { + "id": 14932, + "properties": { + "facing": "south" + } + }, + { + "id": 14933, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14934, + "properties": { + "facing": "up" + } + }, + { + "id": 14935, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:purple_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "purple", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7108 + } + ] + }, + "minecraft:purple_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "purple", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11780, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11781, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11782, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11783, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11784, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11785, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11786, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11787, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11788, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11789, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11790, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11791, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11792, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11793, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11794, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11795, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11796, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11797, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11798, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11799, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11800, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11801, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11802, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11803, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11804, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11805, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11806, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11807, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11808, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11809, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11810, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11811, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:purple_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11454 + } + ] + }, + "minecraft:purple_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "purple", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13223, + "properties": { + "facing": "north" + } + }, + { + "id": 13224, + "properties": { + "facing": "south" + } + }, + { + "id": 13225, + "properties": { + "facing": "west" + } + }, + { + "id": 13226, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:purple_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2303 + } + ] + }, + "minecraft:purpur_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14712 + } + ] + }, + "minecraft:purpur_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 14713, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 14714, + "properties": { + "axis": "y" + } + }, + { + "id": 14715, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:purpur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13474, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13475, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13476, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13477, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13478, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13479, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:purpur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:purpur_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14716, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14717, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14718, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14719, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14720, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14721, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14722, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14723, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14724, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14725, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14726, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 14727, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14728, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14729, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14730, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14731, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14732, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14733, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14734, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14735, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14736, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14737, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14738, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14739, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14740, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14741, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14742, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14743, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14744, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14745, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14746, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14747, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14748, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14749, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14750, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14751, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14752, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14753, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14754, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14755, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14756, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14757, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14758, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14759, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14760, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14761, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14762, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14763, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14764, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14765, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14766, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14767, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14768, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14769, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14770, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14771, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14772, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14773, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14774, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14775, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14776, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14777, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14778, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14779, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14780, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14781, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14782, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14783, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14784, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14785, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 14786, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 14787, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 14788, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 14789, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 14790, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 14791, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 14792, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 14793, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 14794, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 14795, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11323 + } + ] + }, + "minecraft:quartz_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23095 + } + ] + }, + "minecraft:quartz_pillar": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 11325, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 11326, + "properties": { + "axis": "y" + } + }, + { + "id": 11327, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13456, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13457, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13458, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13459, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13460, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13461, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:quartz_block" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11328, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11329, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11330, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11331, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11332, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11333, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11334, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11335, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11336, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11337, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11338, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11339, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11340, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11341, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11342, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11343, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11344, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11345, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11346, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11347, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11348, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11349, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11350, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11351, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11352, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11353, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11354, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11355, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11356, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11357, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11358, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11359, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11360, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11361, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11362, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11363, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11364, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11365, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11366, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11367, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11368, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11369, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11370, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11371, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11372, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11373, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11374, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11375, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11376, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11377, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11378, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11379, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11380, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11381, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11382, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11383, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11384, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11385, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11386, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11387, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11388, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11389, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11390, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11391, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11392, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11393, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11394, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11395, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11396, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11397, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 11398, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 11399, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 11400, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 11401, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 11402, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 11403, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 11404, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 11405, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 11406, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 11407, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:rail": { + "definition": { + "type": "minecraft:rail", + "properties": {} + }, + "properties": { + "shape": [ + "north_south", + "east_west", + "ascending_east", + "ascending_west", + "ascending_north", + "ascending_south", + "south_east", + "south_west", + "north_west", + "north_east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5727, + "properties": { + "shape": "north_south", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5728, + "properties": { + "shape": "north_south", + "waterlogged": "false" + } + }, + { + "id": 5729, + "properties": { + "shape": "east_west", + "waterlogged": "true" + } + }, + { + "id": 5730, + "properties": { + "shape": "east_west", + "waterlogged": "false" + } + }, + { + "id": 5731, + "properties": { + "shape": "ascending_east", + "waterlogged": "true" + } + }, + { + "id": 5732, + "properties": { + "shape": "ascending_east", + "waterlogged": "false" + } + }, + { + "id": 5733, + "properties": { + "shape": "ascending_west", + "waterlogged": "true" + } + }, + { + "id": 5734, + "properties": { + "shape": "ascending_west", + "waterlogged": "false" + } + }, + { + "id": 5735, + "properties": { + "shape": "ascending_north", + "waterlogged": "true" + } + }, + { + "id": 5736, + "properties": { + "shape": "ascending_north", + "waterlogged": "false" + } + }, + { + "id": 5737, + "properties": { + "shape": "ascending_south", + "waterlogged": "true" + } + }, + { + "id": 5738, + "properties": { + "shape": "ascending_south", + "waterlogged": "false" + } + }, + { + "id": 5739, + "properties": { + "shape": "south_east", + "waterlogged": "true" + } + }, + { + "id": 5740, + "properties": { + "shape": "south_east", + "waterlogged": "false" + } + }, + { + "id": 5741, + "properties": { + "shape": "south_west", + "waterlogged": "true" + } + }, + { + "id": 5742, + "properties": { + "shape": "south_west", + "waterlogged": "false" + } + }, + { + "id": 5743, + "properties": { + "shape": "north_west", + "waterlogged": "true" + } + }, + { + "id": 5744, + "properties": { + "shape": "north_west", + "waterlogged": "false" + } + }, + { + "id": 5745, + "properties": { + "shape": "north_east", + "waterlogged": "true" + } + }, + { + "id": 5746, + "properties": { + "shape": "north_east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:raw_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32071 + } + ] + }, + "minecraft:raw_gold_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32072 + } + ] + }, + "minecraft:raw_iron_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32070 + } + ] + }, + "minecraft:red_banner": { + "definition": { + "type": "minecraft:banner", + "color": "red", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 13151, + "properties": { + "rotation": "0" + } + }, + { + "id": 13152, + "properties": { + "rotation": "1" + } + }, + { + "id": 13153, + "properties": { + "rotation": "2" + } + }, + { + "id": 13154, + "properties": { + "rotation": "3" + } + }, + { + "id": 13155, + "properties": { + "rotation": "4" + } + }, + { + "id": 13156, + "properties": { + "rotation": "5" + } + }, + { + "id": 13157, + "properties": { + "rotation": "6" + } + }, + { + "id": 13158, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 13159, + "properties": { + "rotation": "8" + } + }, + { + "id": 13160, + "properties": { + "rotation": "9" + } + }, + { + "id": 13161, + "properties": { + "rotation": "10" + } + }, + { + "id": 13162, + "properties": { + "rotation": "11" + } + }, + { + "id": 13163, + "properties": { + "rotation": "12" + } + }, + { + "id": 13164, + "properties": { + "rotation": "13" + } + }, + { + "id": 13165, + "properties": { + "rotation": "14" + } + }, + { + "id": 13166, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:red_bed": { + "definition": { + "type": "minecraft:bed", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 2155, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2156, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2157, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 2158, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2159, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2160, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2161, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2162, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2163, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2164, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2165, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2166, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2167, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2168, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2169, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2170, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:red_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23336, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23337, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23338, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23339, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23340, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23341, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23342, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23343, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23344, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23345, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23346, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23347, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23348, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23349, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23350, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23351, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:red_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23398, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23399, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:red_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12910 + } + ] + }, + "minecraft:red_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15044 + } + ] + }, + "minecraft:red_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:red_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15060 + } + ] + }, + "minecraft:red_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 15022, + "properties": { + "facing": "north" + } + }, + { + "id": 15023, + "properties": { + "facing": "south" + } + }, + { + "id": 15024, + "properties": { + "facing": "west" + } + }, + { + "id": 15025, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_mushroom": { + "definition": { + "type": "minecraft:mushroom", + "feature": "minecraft:huge_red_mushroom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2337 + } + ] + }, + "minecraft:red_mushroom_block": { + "definition": { + "type": "minecraft:huge_mushroom", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 7830, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7831, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7832, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7833, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7834, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7835, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7836, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7837, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7838, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7839, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7840, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7841, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7842, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7843, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7844, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7845, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7846, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7847, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7848, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7849, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7850, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7851, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7852, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7853, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7854, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7855, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7856, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7857, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7858, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7859, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7860, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7861, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7862, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7863, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7864, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7865, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7866, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7867, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7868, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7869, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7870, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7871, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7872, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7873, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7874, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7875, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7876, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7877, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7878, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7879, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7880, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7881, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7882, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7883, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7884, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7885, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 7886, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 7887, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 7888, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 7889, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 7890, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 7891, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 7892, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 7893, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_nether_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16476, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16477, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16478, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16479, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16480, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16481, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_nether_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16176, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16177, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16178, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16179, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16180, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16181, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16182, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16183, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16184, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16185, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16186, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16187, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16188, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16189, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16190, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16191, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16192, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16193, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16194, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16195, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16196, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16197, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16198, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16199, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16200, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16201, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16202, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16203, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16204, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16205, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16206, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16207, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16208, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16209, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16210, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16211, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16212, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16213, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16214, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16215, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16216, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16217, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16218, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16219, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16220, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16221, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16222, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16223, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16224, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16225, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16226, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16227, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16228, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16229, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16230, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16231, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16232, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16233, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16234, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16235, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16236, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16237, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16238, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16239, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16240, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16241, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16242, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16243, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16244, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16245, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16246, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16247, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16248, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16249, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16250, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16251, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16252, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16253, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16254, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16255, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_nether_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19410, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19411, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19412, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19413, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19414, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19415, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19416, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19417, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19418, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19419, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19420, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19421, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19422, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19423, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19424, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19425, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19426, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19427, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19428, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19429, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19430, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19431, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19432, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19433, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19434, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19435, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19436, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19437, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19438, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19439, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19440, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19441, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19442, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19443, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19444, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19445, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19446, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19447, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19448, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19449, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19450, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19451, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19452, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19453, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19454, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19455, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19456, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19457, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19458, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19459, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19460, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19461, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19462, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19463, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19464, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19465, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19466, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19467, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19468, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19469, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19470, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19471, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19472, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19473, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19474, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19475, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19476, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19477, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19478, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19479, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19480, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19481, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19482, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19483, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19484, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19485, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19486, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19487, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19488, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19489, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19490, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19491, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19492, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19493, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19494, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19495, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19496, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19497, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19498, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19499, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19500, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19501, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19502, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19503, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19504, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19505, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19506, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19507, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19508, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19509, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19510, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19511, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19512, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19513, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19514, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19515, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19516, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19517, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19518, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19519, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19520, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19521, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19522, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19523, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19524, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19525, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19526, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19527, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19528, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19529, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19530, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19531, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19532, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19533, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19534, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19535, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19536, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19537, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19538, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19539, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19540, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19541, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19542, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19543, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19544, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19545, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19546, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19547, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19548, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19549, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19550, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19551, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19552, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19553, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19554, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19555, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19556, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19557, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19558, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19559, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19560, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19561, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19562, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19563, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19564, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19565, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19566, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19567, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19568, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19569, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19570, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19571, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19572, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19573, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19574, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19575, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19576, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19577, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19578, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19579, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19580, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19581, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19582, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19583, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19584, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19585, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19586, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19587, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19588, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19589, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19590, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19591, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19592, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19593, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19594, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19595, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19596, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19597, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19598, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19599, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19600, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19601, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19602, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19603, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19604, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19605, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19606, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19607, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19608, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19609, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19610, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19611, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19612, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19613, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19614, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19615, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19616, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19617, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19618, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19619, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19620, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19621, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19622, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19623, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19624, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19625, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19626, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19627, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19628, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19629, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19630, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19631, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19632, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19633, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19634, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19635, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19636, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19637, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19638, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19639, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19640, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19641, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19642, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19643, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19644, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19645, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19646, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19647, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19648, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19649, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19650, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19651, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19652, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19653, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19654, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19655, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19656, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19657, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19658, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19659, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19660, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19661, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19662, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19663, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19664, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19665, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19666, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19667, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19668, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19669, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19670, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19671, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19672, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19673, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19674, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19675, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19676, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19677, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19678, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19679, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19680, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19681, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19682, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19683, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19684, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19685, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19686, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19687, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19688, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19689, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19690, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19691, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19692, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19693, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19694, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19695, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19696, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19697, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19698, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19699, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19700, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19701, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19702, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19703, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19704, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19705, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19706, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19707, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19708, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19709, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19710, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19711, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19712, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19713, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19714, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19715, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19716, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19717, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19718, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19719, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19720, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19721, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19722, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19723, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19724, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19725, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19726, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19727, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19728, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19729, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19730, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19731, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19732, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19733, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_nether_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14847 + } + ] + }, + "minecraft:red_sand": { + "definition": { + "type": "minecraft:sand", + "falling_dust_color": "#00a95821", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 123 + } + ] + }, + "minecraft:red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13247 + } + ] + }, + "minecraft:red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13462, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13463, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13464, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13465, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13466, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13467, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13250, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13251, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13252, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13253, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13254, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13255, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13256, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13257, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13258, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13259, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13260, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13261, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13262, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13263, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13264, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13265, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13266, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13267, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13268, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13269, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13270, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13271, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13272, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13273, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13274, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13275, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13276, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13277, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13278, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13279, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13280, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13281, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13282, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13283, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13284, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13285, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13286, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13287, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13288, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13289, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13290, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13291, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13292, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13293, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13294, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13295, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13296, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13297, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13298, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13299, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13300, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13301, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13302, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13303, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13304, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13305, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13306, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13307, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13308, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13309, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13310, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13311, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13312, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13313, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13314, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13315, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13316, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13317, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13318, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13319, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 13320, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 13321, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 13322, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 13323, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 13324, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 13325, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 13326, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 13327, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 13328, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 13329, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:red_sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 17142, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17143, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17144, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 17145, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17146, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17147, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17148, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17149, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17150, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17151, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17152, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17153, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17154, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17155, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17156, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17157, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17158, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17159, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17160, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17161, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17162, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17163, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17164, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17165, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17166, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17167, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17168, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17169, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17170, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17171, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17172, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17173, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17174, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17175, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17176, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17177, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17178, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17179, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17180, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17181, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17182, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17183, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17184, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17185, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17186, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17187, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17188, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17189, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17190, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17191, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17192, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17193, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17194, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17195, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17196, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17197, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17198, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17199, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17200, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17201, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17202, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17203, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17204, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17205, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17206, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17207, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17208, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17209, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17210, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17211, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17212, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17213, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17214, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17215, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17216, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17217, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17218, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17219, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17220, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17221, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17222, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17223, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17224, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17225, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17226, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17227, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17228, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17229, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17230, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17231, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17232, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17233, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17234, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17235, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17236, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17237, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17238, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17239, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17240, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17241, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17242, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17243, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17244, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17245, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17246, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17247, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17248, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17249, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17250, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17251, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17252, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17253, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17254, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17255, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17256, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17257, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17258, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17259, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17260, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17261, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17262, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17263, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17264, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17265, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17266, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17267, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17268, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17269, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17270, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17271, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17272, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17273, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17274, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17275, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17276, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17277, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17278, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17279, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17280, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17281, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17282, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17283, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17284, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17285, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17286, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17287, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17288, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17289, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17290, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17291, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17292, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17293, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17294, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17295, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17296, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17297, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17298, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17299, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17300, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17301, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17302, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17303, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17304, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17305, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17306, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17307, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17308, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17309, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17310, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17311, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17312, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17313, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17314, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17315, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17316, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17317, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17318, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17319, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17320, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17321, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17322, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17323, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17324, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17325, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17326, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17327, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17328, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17329, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17330, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17331, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17332, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17333, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17334, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17335, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17336, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17337, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17338, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17339, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17340, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17341, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17342, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17343, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17344, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17345, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17346, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17347, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17348, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17349, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17350, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17351, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17352, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17353, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17354, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17355, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17356, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17357, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17358, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17359, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17360, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17361, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17362, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17363, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17364, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17365, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17366, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17367, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17368, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17369, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17370, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17371, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17372, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17373, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17374, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17375, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17376, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17377, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17378, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17379, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17380, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17381, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17382, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17383, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17384, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17385, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17386, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17387, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17388, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17389, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17390, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17391, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17392, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17393, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17394, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17395, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17396, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17397, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17398, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17399, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17400, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17401, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17402, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17403, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17404, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17405, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17406, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17407, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17408, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17409, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17410, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17411, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17412, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17413, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17414, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17415, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17416, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17417, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17418, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17419, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17420, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17421, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17422, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17423, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17424, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17425, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17426, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17427, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17428, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17429, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17430, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17431, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17432, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17433, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17434, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17435, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17436, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17437, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17438, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17439, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17440, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17441, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17442, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17443, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17444, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17445, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17446, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17447, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17448, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17449, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17450, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17451, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17452, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17453, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17454, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17455, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17456, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17457, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17458, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17459, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 17460, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 17461, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 17462, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 17463, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 17464, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 17465, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:red_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14954, + "properties": { + "facing": "north" + } + }, + { + "id": 14955, + "properties": { + "facing": "east" + } + }, + { + "id": 14956, + "properties": { + "facing": "south" + } + }, + { + "id": 14957, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14958, + "properties": { + "facing": "up" + } + }, + { + "id": 14959, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:red_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "red", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7112 + } + ] + }, + "minecraft:red_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "red", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11908, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11909, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11910, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11911, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11912, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11913, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11914, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11915, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11916, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11917, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11918, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11919, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11920, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11921, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11922, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11923, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11924, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11925, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11926, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11927, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11928, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11929, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11930, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11931, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11932, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11933, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11934, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11935, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11936, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11937, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11938, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11939, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:red_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11458 + } + ] + }, + "minecraft:red_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2328 + } + ] + }, + "minecraft:red_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "red", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13239, + "properties": { + "facing": "north" + } + }, + { + "id": 13240, + "properties": { + "facing": "south" + } + }, + { + "id": 13241, + "properties": { + "facing": "west" + } + }, + { + "id": 13242, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:red_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2307 + } + ] + }, + "minecraft:redstone_block": { + "definition": { + "type": "minecraft:powered", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11311 + } + ] + }, + "minecraft:redstone_lamp": { + "definition": { + "type": "minecraft:redstone_lamp", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9479, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 9480, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_ore": { + "definition": { + "type": "minecraft:redstone_ore", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6881, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 6882, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_torch": { + "definition": { + "type": "minecraft:redstone_torch", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6885, + "properties": { + "lit": "true" + } + }, + { + "id": 6886, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wall_torch": { + "definition": { + "type": "minecraft:redstone_wall_torch", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 6887, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "id": 6888, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 6889, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 6890, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 6891, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 6892, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 6893, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 6894, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:redstone_wire": { + "definition": { + "type": "minecraft:redstone_wire", + "properties": {} + }, + "properties": { + "east": [ + "up", + "side", + "none" + ], + "north": [ + "up", + "side", + "none" + ], + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "south": [ + "up", + "side", + "none" + ], + "west": [ + "up", + "side", + "none" + ] + }, + "states": [ + { + "id": 4011, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4012, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4013, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4014, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4015, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4016, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4017, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4018, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4019, + "properties": { + "east": "up", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4020, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4021, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4022, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4023, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4024, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4025, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4026, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4027, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4028, + "properties": { + "east": "up", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4029, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4030, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4031, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4032, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4033, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4034, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4035, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4036, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4037, + "properties": { + "east": "up", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4038, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4039, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4040, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4041, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4042, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4043, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4044, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4045, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4046, + "properties": { + "east": "up", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4047, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4048, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4049, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4050, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4051, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4052, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4053, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4054, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4055, + "properties": { + "east": "up", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4056, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4057, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4058, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4059, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4060, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4061, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4062, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4063, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4064, + "properties": { + "east": "up", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4065, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4066, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4067, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4068, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4069, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4070, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4071, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4072, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4073, + "properties": { + "east": "up", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4074, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4075, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4076, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4077, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4078, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4079, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4080, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4081, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4082, + "properties": { + "east": "up", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4083, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4084, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4085, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4086, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4087, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4088, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4089, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4090, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4091, + "properties": { + "east": "up", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4092, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4093, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4094, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4095, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4096, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4097, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4098, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4099, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4100, + "properties": { + "east": "up", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4101, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4102, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4103, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4104, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4105, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4106, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4107, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4108, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4109, + "properties": { + "east": "up", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4110, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4111, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4112, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4113, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4114, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4115, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4116, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4117, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4118, + "properties": { + "east": "up", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4119, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4120, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4121, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4122, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4123, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4124, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4125, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4126, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4127, + "properties": { + "east": "up", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4128, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4129, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4130, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4131, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4132, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4133, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4134, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4135, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4136, + "properties": { + "east": "up", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4137, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4138, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4139, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4140, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4141, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4142, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4143, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4144, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4145, + "properties": { + "east": "up", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4146, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4147, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4148, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4149, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4150, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4151, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4152, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4153, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4154, + "properties": { + "east": "up", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4155, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4156, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4157, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4158, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4159, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4160, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4161, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4162, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4163, + "properties": { + "east": "up", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4164, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4165, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4166, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4167, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4168, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4169, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4170, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4171, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4172, + "properties": { + "east": "up", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4173, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4174, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4175, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4176, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4177, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4178, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4179, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4180, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4181, + "properties": { + "east": "up", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4182, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4183, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4184, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4185, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4186, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4187, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4188, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4189, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4190, + "properties": { + "east": "up", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4191, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4192, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4193, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4194, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4195, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4196, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4197, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4198, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4199, + "properties": { + "east": "up", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4200, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4201, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4202, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4203, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4204, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4205, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4206, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4207, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4208, + "properties": { + "east": "up", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4209, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4210, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4211, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4212, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4213, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4214, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4215, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4216, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4217, + "properties": { + "east": "up", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4218, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4219, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4220, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4221, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4222, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4223, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4224, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4225, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4226, + "properties": { + "east": "up", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4227, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4228, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4229, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4230, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4231, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4232, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4233, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4234, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4235, + "properties": { + "east": "up", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4236, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4237, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4238, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4239, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4240, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4241, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4242, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4243, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4244, + "properties": { + "east": "up", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4245, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4246, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4247, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4248, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4249, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4250, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4251, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4252, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4253, + "properties": { + "east": "up", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4254, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4255, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4256, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4257, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4258, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4259, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4260, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4261, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4262, + "properties": { + "east": "up", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4263, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4264, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4265, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4266, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4267, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4268, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4269, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4270, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4271, + "properties": { + "east": "up", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4272, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4273, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4274, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4275, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4276, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4277, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4278, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4279, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4280, + "properties": { + "east": "up", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4281, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4282, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4283, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4284, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4285, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4286, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4287, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4288, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4289, + "properties": { + "east": "up", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4290, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4291, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4292, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4293, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4294, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4295, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4296, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4297, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4298, + "properties": { + "east": "up", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4299, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4300, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4301, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4302, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4303, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4304, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4305, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4306, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4307, + "properties": { + "east": "up", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4308, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4309, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4310, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4311, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4312, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4313, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4314, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4315, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4316, + "properties": { + "east": "up", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4317, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4318, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4319, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4320, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4321, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4322, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4323, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4324, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4325, + "properties": { + "east": "up", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4326, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4327, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4328, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4329, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4330, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4331, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4332, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4333, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4334, + "properties": { + "east": "up", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4335, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4336, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4337, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4338, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4339, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4340, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4341, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4342, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4343, + "properties": { + "east": "up", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4344, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4345, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4346, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4347, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4348, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4349, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4350, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4351, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4352, + "properties": { + "east": "up", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4353, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4354, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4355, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4356, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4357, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4358, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4359, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4360, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4361, + "properties": { + "east": "up", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4362, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4363, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4364, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4365, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4366, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4367, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4368, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4369, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4370, + "properties": { + "east": "up", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4371, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4372, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4373, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4374, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4375, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4376, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4377, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4378, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4379, + "properties": { + "east": "up", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4380, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4381, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4382, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4383, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4384, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4385, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4386, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4387, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4388, + "properties": { + "east": "up", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4389, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4390, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4391, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4392, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4393, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4394, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4395, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4396, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4397, + "properties": { + "east": "up", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4398, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4399, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4400, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4401, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4402, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4403, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4404, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4405, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4406, + "properties": { + "east": "up", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4407, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4408, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4409, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4410, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4411, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4412, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4413, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4414, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4415, + "properties": { + "east": "up", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4416, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4417, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4418, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4419, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4420, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4421, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4422, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4423, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4424, + "properties": { + "east": "up", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4425, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4426, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4427, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4428, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4429, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4430, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4431, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4432, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4433, + "properties": { + "east": "up", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4434, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4435, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4436, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4437, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4438, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4439, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4440, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4441, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4442, + "properties": { + "east": "up", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4443, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4444, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4445, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4446, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4447, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4448, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4449, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4450, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4451, + "properties": { + "east": "side", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4452, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4453, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4454, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4455, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4456, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4457, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4458, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4459, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4460, + "properties": { + "east": "side", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4461, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4462, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4463, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4464, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4465, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4466, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4467, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4468, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4469, + "properties": { + "east": "side", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4470, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4471, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4472, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4473, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4474, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4475, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4476, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4477, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4478, + "properties": { + "east": "side", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4479, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4480, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4481, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4482, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4483, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4484, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4485, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4486, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4487, + "properties": { + "east": "side", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4488, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4489, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4490, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4491, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4492, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4493, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4494, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4495, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4496, + "properties": { + "east": "side", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4497, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4498, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4499, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4500, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4501, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4502, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4503, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4504, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4505, + "properties": { + "east": "side", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4506, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4507, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4508, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4509, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4510, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4511, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4512, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4513, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4514, + "properties": { + "east": "side", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4515, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4516, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4517, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4518, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4519, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4520, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4521, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4522, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4523, + "properties": { + "east": "side", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4524, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4525, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4526, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4527, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4528, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4529, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4530, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4531, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4532, + "properties": { + "east": "side", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4533, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4534, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4535, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4536, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4537, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4538, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4539, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4540, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4541, + "properties": { + "east": "side", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4542, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4543, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4544, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4545, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4546, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4547, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4548, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4549, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4550, + "properties": { + "east": "side", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4551, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4552, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4553, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4554, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4555, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4556, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4557, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4558, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4559, + "properties": { + "east": "side", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4560, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4561, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4562, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4563, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4564, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4565, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4566, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4567, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4568, + "properties": { + "east": "side", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4569, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4570, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4571, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4572, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4573, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4574, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4575, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4576, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4577, + "properties": { + "east": "side", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4578, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4579, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4580, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4581, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4582, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4583, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4584, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4585, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4586, + "properties": { + "east": "side", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4587, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4588, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4589, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4590, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4591, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4592, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4593, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4594, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4595, + "properties": { + "east": "side", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4596, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4597, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4598, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4599, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4600, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4601, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4602, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4603, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4604, + "properties": { + "east": "side", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4605, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4606, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4607, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4608, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4609, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4610, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4611, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4612, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4613, + "properties": { + "east": "side", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4614, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4615, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4616, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4617, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4618, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4619, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4620, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4621, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4622, + "properties": { + "east": "side", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4623, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4624, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4625, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4626, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4627, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4628, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4629, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4630, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4631, + "properties": { + "east": "side", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4632, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4633, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4634, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4635, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4636, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4637, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4638, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4639, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4640, + "properties": { + "east": "side", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4641, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4642, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4643, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4644, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4645, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4646, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4647, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4648, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4649, + "properties": { + "east": "side", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4650, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4651, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4652, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4653, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4654, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4655, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4656, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4657, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4658, + "properties": { + "east": "side", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4659, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4660, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4661, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4662, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4663, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4664, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4665, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4666, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4667, + "properties": { + "east": "side", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4668, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4669, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4670, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4671, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4672, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4673, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4674, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4675, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4676, + "properties": { + "east": "side", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4677, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4678, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4679, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4680, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4681, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4682, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4683, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4684, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4685, + "properties": { + "east": "side", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4686, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4687, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4688, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4689, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4690, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4691, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4692, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4693, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4694, + "properties": { + "east": "side", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4695, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4696, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4697, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4698, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4699, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4700, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4701, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4702, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4703, + "properties": { + "east": "side", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4704, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4705, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4706, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4707, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4708, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4709, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4710, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4711, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4712, + "properties": { + "east": "side", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4713, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4714, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4715, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4716, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4717, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4718, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4719, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4720, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4721, + "properties": { + "east": "side", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4722, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4723, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4724, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4725, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4726, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4727, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4728, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4729, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4730, + "properties": { + "east": "side", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4731, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4732, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4733, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4734, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4735, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4736, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4737, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4738, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4739, + "properties": { + "east": "side", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4740, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4741, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4742, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4743, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4744, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4745, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4746, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4747, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4748, + "properties": { + "east": "side", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4749, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4750, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4751, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4752, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4753, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4754, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4755, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4756, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4757, + "properties": { + "east": "side", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4758, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4759, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4760, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4761, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4762, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4763, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4764, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4765, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4766, + "properties": { + "east": "side", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4767, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4768, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4769, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4770, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4771, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4772, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4773, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4774, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4775, + "properties": { + "east": "side", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4776, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4777, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4778, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4779, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4780, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4781, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4782, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4783, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4784, + "properties": { + "east": "side", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4785, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4786, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4787, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4788, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4789, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4790, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4791, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4792, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4793, + "properties": { + "east": "side", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4794, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4795, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4796, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4797, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4798, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4799, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4800, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4801, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4802, + "properties": { + "east": "side", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4803, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4804, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4805, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4806, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4807, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4808, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4809, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4810, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4811, + "properties": { + "east": "side", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4812, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4813, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4814, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4815, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4816, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4817, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4818, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4819, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4820, + "properties": { + "east": "side", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4821, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4822, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4823, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4824, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4825, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4826, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4827, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4828, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4829, + "properties": { + "east": "side", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4830, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4831, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4832, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4833, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4834, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4835, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4836, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4837, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4838, + "properties": { + "east": "side", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4839, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4840, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4841, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4842, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4843, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4844, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4845, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4846, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4847, + "properties": { + "east": "side", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4848, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4849, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4850, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4851, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4852, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4853, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4854, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4855, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 4856, + "properties": { + "east": "side", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 4857, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 4858, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 4859, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 4860, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 4861, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 4862, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 4863, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 4864, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 4865, + "properties": { + "east": "side", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 4866, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 4867, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 4868, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 4869, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 4870, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 4871, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 4872, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 4873, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 4874, + "properties": { + "east": "side", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 4875, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 4876, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 4877, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 4878, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 4879, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 4880, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 4881, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 4882, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 4883, + "properties": { + "east": "none", + "north": "up", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 4884, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 4885, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 4886, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 4887, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 4888, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 4889, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 4890, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 4891, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 4892, + "properties": { + "east": "none", + "north": "up", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 4893, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 4894, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 4895, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 4896, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 4897, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 4898, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 4899, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 4900, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 4901, + "properties": { + "east": "none", + "north": "up", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 4902, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 4903, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 4904, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 4905, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 4906, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 4907, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 4908, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 4909, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 4910, + "properties": { + "east": "none", + "north": "up", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 4911, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 4912, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 4913, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 4914, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 4915, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 4916, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 4917, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 4918, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 4919, + "properties": { + "east": "none", + "north": "up", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 4920, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 4921, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 4922, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 4923, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 4924, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 4925, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 4926, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 4927, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 4928, + "properties": { + "east": "none", + "north": "up", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 4929, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 4930, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 4931, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 4932, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 4933, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 4934, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 4935, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 4936, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 4937, + "properties": { + "east": "none", + "north": "up", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 4938, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 4939, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 4940, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 4941, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 4942, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 4943, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 4944, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 4945, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 4946, + "properties": { + "east": "none", + "north": "up", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 4947, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 4948, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 4949, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 4950, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 4951, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 4952, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 4953, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 4954, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 4955, + "properties": { + "east": "none", + "north": "up", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 4956, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 4957, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 4958, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 4959, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 4960, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 4961, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 4962, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 4963, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 4964, + "properties": { + "east": "none", + "north": "up", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 4965, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 4966, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 4967, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 4968, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 4969, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 4970, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 4971, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 4972, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 4973, + "properties": { + "east": "none", + "north": "up", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 4974, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 4975, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 4976, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 4977, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 4978, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 4979, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 4980, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 4981, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 4982, + "properties": { + "east": "none", + "north": "up", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 4983, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 4984, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 4985, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 4986, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 4987, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 4988, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 4989, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 4990, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 4991, + "properties": { + "east": "none", + "north": "up", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 4992, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 4993, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 4994, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 4995, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 4996, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 4997, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 4998, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 4999, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5000, + "properties": { + "east": "none", + "north": "up", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5001, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5002, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5003, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5004, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5005, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5006, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5007, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5008, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5009, + "properties": { + "east": "none", + "north": "up", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5010, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5011, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5012, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5013, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5014, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5015, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5016, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5017, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5018, + "properties": { + "east": "none", + "north": "up", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 5019, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 5020, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 5021, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 5022, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 5023, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 5024, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 5025, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 5026, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "id": 5027, + "properties": { + "east": "none", + "north": "side", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 5028, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 5029, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 5030, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 5031, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 5032, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 5033, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 5034, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 5035, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 5036, + "properties": { + "east": "none", + "north": "side", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 5037, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 5038, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 5039, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 5040, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 5041, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 5042, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 5043, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 5044, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 5045, + "properties": { + "east": "none", + "north": "side", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 5046, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 5047, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 5048, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 5049, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 5050, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 5051, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 5052, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 5053, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 5054, + "properties": { + "east": "none", + "north": "side", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 5055, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 5056, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 5057, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 5058, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 5059, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 5060, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 5061, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 5062, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 5063, + "properties": { + "east": "none", + "north": "side", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 5064, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 5065, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 5066, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 5067, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 5068, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 5069, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 5070, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 5071, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 5072, + "properties": { + "east": "none", + "north": "side", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 5073, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 5074, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 5075, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 5076, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 5077, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 5078, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 5079, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 5080, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 5081, + "properties": { + "east": "none", + "north": "side", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 5082, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 5083, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 5084, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 5085, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 5086, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 5087, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 5088, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 5089, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 5090, + "properties": { + "east": "none", + "north": "side", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 5091, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 5092, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 5093, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 5094, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 5095, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 5096, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 5097, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 5098, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 5099, + "properties": { + "east": "none", + "north": "side", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 5100, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 5101, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 5102, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 5103, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 5104, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 5105, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 5106, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 5107, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 5108, + "properties": { + "east": "none", + "north": "side", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 5109, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 5110, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 5111, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 5112, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 5113, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 5114, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 5115, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 5116, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 5117, + "properties": { + "east": "none", + "north": "side", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 5118, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 5119, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 5120, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 5121, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 5122, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 5123, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 5124, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 5125, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 5126, + "properties": { + "east": "none", + "north": "side", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 5127, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 5128, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 5129, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 5130, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 5131, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 5132, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 5133, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 5134, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 5135, + "properties": { + "east": "none", + "north": "side", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 5136, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 5137, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 5138, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 5139, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 5140, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 5141, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 5142, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 5143, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5144, + "properties": { + "east": "none", + "north": "side", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5145, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5146, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5147, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5148, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5149, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5150, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5151, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5152, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5153, + "properties": { + "east": "none", + "north": "side", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5154, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5155, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5156, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5157, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5158, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5159, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5160, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5161, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5162, + "properties": { + "east": "none", + "north": "side", + "power": "15", + "south": "none", + "west": "none" + } + }, + { + "id": 5163, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "up" + } + }, + { + "id": 5164, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "side" + } + }, + { + "id": 5165, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "up", + "west": "none" + } + }, + { + "id": 5166, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "up" + } + }, + { + "id": 5167, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "side" + } + }, + { + "id": 5168, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "side", + "west": "none" + } + }, + { + "id": 5169, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "up" + } + }, + { + "id": 5170, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "side" + } + }, + { + "default": true, + "id": 5171, + "properties": { + "east": "none", + "north": "none", + "power": "0", + "south": "none", + "west": "none" + } + }, + { + "id": 5172, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "up" + } + }, + { + "id": 5173, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "side" + } + }, + { + "id": 5174, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "up", + "west": "none" + } + }, + { + "id": 5175, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "up" + } + }, + { + "id": 5176, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "side" + } + }, + { + "id": 5177, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "side", + "west": "none" + } + }, + { + "id": 5178, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "up" + } + }, + { + "id": 5179, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "side" + } + }, + { + "id": 5180, + "properties": { + "east": "none", + "north": "none", + "power": "1", + "south": "none", + "west": "none" + } + }, + { + "id": 5181, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "up" + } + }, + { + "id": 5182, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "side" + } + }, + { + "id": 5183, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "up", + "west": "none" + } + }, + { + "id": 5184, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "up" + } + }, + { + "id": 5185, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "side" + } + }, + { + "id": 5186, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "side", + "west": "none" + } + }, + { + "id": 5187, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "up" + } + }, + { + "id": 5188, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "side" + } + }, + { + "id": 5189, + "properties": { + "east": "none", + "north": "none", + "power": "2", + "south": "none", + "west": "none" + } + }, + { + "id": 5190, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "up" + } + }, + { + "id": 5191, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "side" + } + }, + { + "id": 5192, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "up", + "west": "none" + } + }, + { + "id": 5193, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "up" + } + }, + { + "id": 5194, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "side" + } + }, + { + "id": 5195, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "side", + "west": "none" + } + }, + { + "id": 5196, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "up" + } + }, + { + "id": 5197, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "side" + } + }, + { + "id": 5198, + "properties": { + "east": "none", + "north": "none", + "power": "3", + "south": "none", + "west": "none" + } + }, + { + "id": 5199, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "up" + } + }, + { + "id": 5200, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "side" + } + }, + { + "id": 5201, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "up", + "west": "none" + } + }, + { + "id": 5202, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "up" + } + }, + { + "id": 5203, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "side" + } + }, + { + "id": 5204, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "side", + "west": "none" + } + }, + { + "id": 5205, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "up" + } + }, + { + "id": 5206, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "side" + } + }, + { + "id": 5207, + "properties": { + "east": "none", + "north": "none", + "power": "4", + "south": "none", + "west": "none" + } + }, + { + "id": 5208, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "up" + } + }, + { + "id": 5209, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "side" + } + }, + { + "id": 5210, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "up", + "west": "none" + } + }, + { + "id": 5211, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "up" + } + }, + { + "id": 5212, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "side" + } + }, + { + "id": 5213, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "side", + "west": "none" + } + }, + { + "id": 5214, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "up" + } + }, + { + "id": 5215, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "side" + } + }, + { + "id": 5216, + "properties": { + "east": "none", + "north": "none", + "power": "5", + "south": "none", + "west": "none" + } + }, + { + "id": 5217, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "up" + } + }, + { + "id": 5218, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "side" + } + }, + { + "id": 5219, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "up", + "west": "none" + } + }, + { + "id": 5220, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "up" + } + }, + { + "id": 5221, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "side" + } + }, + { + "id": 5222, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "side", + "west": "none" + } + }, + { + "id": 5223, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "up" + } + }, + { + "id": 5224, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "side" + } + }, + { + "id": 5225, + "properties": { + "east": "none", + "north": "none", + "power": "6", + "south": "none", + "west": "none" + } + }, + { + "id": 5226, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "up" + } + }, + { + "id": 5227, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "side" + } + }, + { + "id": 5228, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "up", + "west": "none" + } + }, + { + "id": 5229, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "up" + } + }, + { + "id": 5230, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "side" + } + }, + { + "id": 5231, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "side", + "west": "none" + } + }, + { + "id": 5232, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "up" + } + }, + { + "id": 5233, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "side" + } + }, + { + "id": 5234, + "properties": { + "east": "none", + "north": "none", + "power": "7", + "south": "none", + "west": "none" + } + }, + { + "id": 5235, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "up" + } + }, + { + "id": 5236, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "side" + } + }, + { + "id": 5237, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "up", + "west": "none" + } + }, + { + "id": 5238, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "up" + } + }, + { + "id": 5239, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "side" + } + }, + { + "id": 5240, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "side", + "west": "none" + } + }, + { + "id": 5241, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "up" + } + }, + { + "id": 5242, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "side" + } + }, + { + "id": 5243, + "properties": { + "east": "none", + "north": "none", + "power": "8", + "south": "none", + "west": "none" + } + }, + { + "id": 5244, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "up" + } + }, + { + "id": 5245, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "side" + } + }, + { + "id": 5246, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "up", + "west": "none" + } + }, + { + "id": 5247, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "up" + } + }, + { + "id": 5248, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "side" + } + }, + { + "id": 5249, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "side", + "west": "none" + } + }, + { + "id": 5250, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "up" + } + }, + { + "id": 5251, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "side" + } + }, + { + "id": 5252, + "properties": { + "east": "none", + "north": "none", + "power": "9", + "south": "none", + "west": "none" + } + }, + { + "id": 5253, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "up" + } + }, + { + "id": 5254, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "side" + } + }, + { + "id": 5255, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "up", + "west": "none" + } + }, + { + "id": 5256, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "up" + } + }, + { + "id": 5257, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "side" + } + }, + { + "id": 5258, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "side", + "west": "none" + } + }, + { + "id": 5259, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "up" + } + }, + { + "id": 5260, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "side" + } + }, + { + "id": 5261, + "properties": { + "east": "none", + "north": "none", + "power": "10", + "south": "none", + "west": "none" + } + }, + { + "id": 5262, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "up" + } + }, + { + "id": 5263, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "side" + } + }, + { + "id": 5264, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "up", + "west": "none" + } + }, + { + "id": 5265, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "up" + } + }, + { + "id": 5266, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "side" + } + }, + { + "id": 5267, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "side", + "west": "none" + } + }, + { + "id": 5268, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "up" + } + }, + { + "id": 5269, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "side" + } + }, + { + "id": 5270, + "properties": { + "east": "none", + "north": "none", + "power": "11", + "south": "none", + "west": "none" + } + }, + { + "id": 5271, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "up" + } + }, + { + "id": 5272, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "side" + } + }, + { + "id": 5273, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "up", + "west": "none" + } + }, + { + "id": 5274, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "up" + } + }, + { + "id": 5275, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "side" + } + }, + { + "id": 5276, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "side", + "west": "none" + } + }, + { + "id": 5277, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "up" + } + }, + { + "id": 5278, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "side" + } + }, + { + "id": 5279, + "properties": { + "east": "none", + "north": "none", + "power": "12", + "south": "none", + "west": "none" + } + }, + { + "id": 5280, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "up" + } + }, + { + "id": 5281, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "side" + } + }, + { + "id": 5282, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "up", + "west": "none" + } + }, + { + "id": 5283, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "up" + } + }, + { + "id": 5284, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "side" + } + }, + { + "id": 5285, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "side", + "west": "none" + } + }, + { + "id": 5286, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "up" + } + }, + { + "id": 5287, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "side" + } + }, + { + "id": 5288, + "properties": { + "east": "none", + "north": "none", + "power": "13", + "south": "none", + "west": "none" + } + }, + { + "id": 5289, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "up" + } + }, + { + "id": 5290, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "side" + } + }, + { + "id": 5291, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "up", + "west": "none" + } + }, + { + "id": 5292, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "up" + } + }, + { + "id": 5293, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "side" + } + }, + { + "id": 5294, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "side", + "west": "none" + } + }, + { + "id": 5295, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "up" + } + }, + { + "id": 5296, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "side" + } + }, + { + "id": 5297, + "properties": { + "east": "none", + "north": "none", + "power": "14", + "south": "none", + "west": "none" + } + }, + { + "id": 5298, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "up" + } + }, + { + "id": 5299, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "side" + } + }, + { + "id": 5300, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "up", + "west": "none" + } + }, + { + "id": 5301, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "up" + } + }, + { + "id": 5302, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "side" + } + }, + { + "id": 5303, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "side", + "west": "none" + } + }, + { + "id": 5304, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "up" + } + }, + { + "id": 5305, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "side" + } + }, + { + "id": 5306, + "properties": { + "east": "none", + "north": "none", + "power": "15", + "south": "none", + "west": "none" + } + } + ] + }, + "minecraft:reinforced_deepslate": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32085 + } + ] + }, + "minecraft:repeater": { + "definition": { + "type": "minecraft:repeater", + "properties": {} + }, + "properties": { + "delay": [ + "1", + "2", + "3", + "4" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "locked": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7034, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7035, + "properties": { + "delay": "1", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7036, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 7037, + "properties": { + "delay": "1", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7038, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7039, + "properties": { + "delay": "1", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7040, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7041, + "properties": { + "delay": "1", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7042, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7043, + "properties": { + "delay": "1", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7044, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7045, + "properties": { + "delay": "1", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7046, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7047, + "properties": { + "delay": "1", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7048, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7049, + "properties": { + "delay": "1", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7050, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7051, + "properties": { + "delay": "2", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7052, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7053, + "properties": { + "delay": "2", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7054, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7055, + "properties": { + "delay": "2", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7056, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7057, + "properties": { + "delay": "2", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7058, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7059, + "properties": { + "delay": "2", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7060, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7061, + "properties": { + "delay": "2", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7062, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7063, + "properties": { + "delay": "2", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7064, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7065, + "properties": { + "delay": "2", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7066, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7067, + "properties": { + "delay": "3", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7068, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7069, + "properties": { + "delay": "3", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7070, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7071, + "properties": { + "delay": "3", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7072, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7073, + "properties": { + "delay": "3", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7074, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7075, + "properties": { + "delay": "3", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7076, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7077, + "properties": { + "delay": "3", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7078, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7079, + "properties": { + "delay": "3", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7080, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7081, + "properties": { + "delay": "3", + "facing": "east", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7082, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7083, + "properties": { + "delay": "4", + "facing": "north", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7084, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7085, + "properties": { + "delay": "4", + "facing": "north", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7086, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7087, + "properties": { + "delay": "4", + "facing": "south", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7088, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7089, + "properties": { + "delay": "4", + "facing": "south", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7090, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7091, + "properties": { + "delay": "4", + "facing": "west", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7092, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7093, + "properties": { + "delay": "4", + "facing": "west", + "locked": "false", + "powered": "false" + } + }, + { + "id": 7094, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "true" + } + }, + { + "id": 7095, + "properties": { + "delay": "4", + "facing": "east", + "locked": "true", + "powered": "false" + } + }, + { + "id": 7096, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "true" + } + }, + { + "id": 7097, + "properties": { + "delay": "4", + "facing": "east", + "locked": "false", + "powered": "false" + } + } + ] + }, + "minecraft:repeating_command_block": { + "definition": { + "type": "minecraft:command", + "automatic": false, + "properties": {} + }, + "properties": { + "conditional": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14817, + "properties": { + "conditional": "true", + "facing": "north" + } + }, + { + "id": 14818, + "properties": { + "conditional": "true", + "facing": "east" + } + }, + { + "id": 14819, + "properties": { + "conditional": "true", + "facing": "south" + } + }, + { + "id": 14820, + "properties": { + "conditional": "true", + "facing": "west" + } + }, + { + "id": 14821, + "properties": { + "conditional": "true", + "facing": "up" + } + }, + { + "id": 14822, + "properties": { + "conditional": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 14823, + "properties": { + "conditional": "false", + "facing": "north" + } + }, + { + "id": 14824, + "properties": { + "conditional": "false", + "facing": "east" + } + }, + { + "id": 14825, + "properties": { + "conditional": "false", + "facing": "south" + } + }, + { + "id": 14826, + "properties": { + "conditional": "false", + "facing": "west" + } + }, + { + "id": 14827, + "properties": { + "conditional": "false", + "facing": "up" + } + }, + { + "id": 14828, + "properties": { + "conditional": "false", + "facing": "down" + } + } + ] + }, + "minecraft:resin_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8921 + } + ] + }, + "minecraft:resin_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9003, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 9004, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 9005, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9006, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 9007, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 9008, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:resin_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:resin_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8923, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8924, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8925, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8926, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8927, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8928, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8929, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8930, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8931, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8932, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8933, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8934, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8935, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8936, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8937, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8938, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8939, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8940, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8941, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8942, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8943, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8944, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8945, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8946, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8947, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8948, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8949, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8950, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8951, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8952, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8953, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8954, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8955, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8956, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8957, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8958, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8959, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8960, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8961, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8962, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8963, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8964, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8965, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8966, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8967, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8968, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8969, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8970, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8971, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8972, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8973, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8974, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8975, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8976, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8977, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8978, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8979, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8980, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8981, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8982, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8983, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8984, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8985, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8986, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8987, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8988, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8989, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8990, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8991, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8992, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8993, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8994, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8995, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8996, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8997, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8998, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8999, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9000, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9001, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9002, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:resin_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 9009, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9010, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9011, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 9012, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9013, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9014, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9015, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9016, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9017, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9018, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9019, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9020, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9021, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9022, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9023, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9024, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9025, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9026, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9027, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9028, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9029, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9030, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9031, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9032, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9033, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9034, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9035, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9036, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9037, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9038, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9039, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9040, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9041, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9042, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9043, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9044, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9045, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9046, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9047, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9048, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9049, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9050, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9051, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9052, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9053, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9054, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9055, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9056, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9057, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9058, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9059, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9060, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9061, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9062, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9063, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9064, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9065, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9066, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9067, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9068, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9069, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9070, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9071, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9072, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9073, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9074, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9075, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9076, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9077, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9078, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9079, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9080, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9081, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9082, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9083, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9084, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9085, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9086, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9087, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9088, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9089, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9090, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9091, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9092, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9093, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9094, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9095, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9096, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9097, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9098, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9099, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9100, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9101, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9102, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9103, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9104, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9105, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9106, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9107, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9108, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9109, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9110, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9111, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9112, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9113, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9114, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9115, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9116, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9117, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9118, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9119, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9120, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9121, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9122, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9123, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9124, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9125, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9126, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9127, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9128, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9129, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9130, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9131, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9132, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9133, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9134, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9135, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9136, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9137, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9138, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9139, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9140, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9141, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9142, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9143, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9144, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9145, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9146, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9147, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9148, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9149, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9150, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9151, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9152, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9153, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9154, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9155, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9156, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9157, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9158, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9159, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9160, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9161, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9162, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9163, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9164, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9165, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9166, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9167, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9168, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9169, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9170, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9171, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9172, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9173, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9174, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9175, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9176, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9177, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9178, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9179, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9180, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9181, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9182, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9183, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9184, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9185, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9186, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9187, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9188, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9189, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9190, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9191, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9192, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9193, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9194, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9195, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9196, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9197, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9198, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9199, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9200, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9201, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9202, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9203, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9204, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9205, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9206, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9207, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9208, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9209, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9210, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9211, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9212, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9213, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9214, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9215, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9216, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9217, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9218, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9219, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9220, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9221, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9222, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9223, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9224, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9225, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9226, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9227, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9228, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9229, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9230, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9231, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9232, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9233, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9234, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9235, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9236, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9237, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9238, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9239, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9240, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9241, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9242, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9243, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9244, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9245, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9246, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9247, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9248, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9249, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9250, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9251, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9252, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9253, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9254, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9255, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9256, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9257, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9258, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9259, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9260, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9261, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9262, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9263, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9264, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9265, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9266, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9267, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9268, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9269, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9270, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9271, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9272, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9273, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9274, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9275, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9276, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9277, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9278, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9279, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9280, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9281, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9282, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9283, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9284, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9285, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9286, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9287, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9288, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9289, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9290, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9291, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9292, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9293, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9294, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9295, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9296, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9297, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9298, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9299, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9300, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9301, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9302, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9303, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9304, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9305, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9306, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9307, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9308, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9309, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9310, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9311, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9312, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9313, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9314, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9315, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9316, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9317, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9318, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9319, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9320, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9321, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9322, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9323, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9324, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9325, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9326, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 9327, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 9328, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 9329, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 9330, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 9331, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 9332, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:resin_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 8922 + } + ] + }, + "minecraft:resin_clump": { + "definition": { + "type": "minecraft:multiface", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8518, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8519, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8520, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8521, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8522, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8523, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8524, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8525, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8526, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8527, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8528, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8529, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8530, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8531, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8532, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8533, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8534, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8535, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8536, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8537, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8538, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8539, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8540, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8541, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8542, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8543, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8544, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8545, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8546, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8547, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8548, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8549, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8550, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8551, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8552, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8553, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8554, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8555, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8556, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8557, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8558, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8559, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8560, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8561, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8562, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8563, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8564, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8565, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8566, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8567, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8568, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8569, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8570, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8571, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8572, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8573, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8574, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8575, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8576, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8577, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8578, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8579, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8580, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8581, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8582, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8583, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8584, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8585, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8586, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8587, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8588, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8589, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8590, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8591, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8592, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8593, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8594, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8595, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8596, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8597, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8598, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8599, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8600, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8601, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8602, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8603, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8604, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8605, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8606, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8607, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8608, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8609, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8610, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8611, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8612, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8613, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8614, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8615, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8616, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8617, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8618, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8619, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8620, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8621, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8622, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8623, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8624, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8625, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8626, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8627, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8628, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8629, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8630, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8631, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8632, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8633, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8634, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8635, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8636, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8637, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8638, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8639, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8640, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8641, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8642, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8643, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8644, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8645, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:respawn_anchor": { + "definition": { + "type": "minecraft:respawn_anchor", + "properties": {} + }, + "properties": { + "charges": [ + "0", + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 21821, + "properties": { + "charges": "0" + } + }, + { + "id": 21822, + "properties": { + "charges": "1" + } + }, + { + "id": 21823, + "properties": { + "charges": "2" + } + }, + { + "id": 21824, + "properties": { + "charges": "3" + } + }, + { + "id": 21825, + "properties": { + "charges": "4" + } + } + ] + }, + "minecraft:rooted_dirt": { + "definition": { + "type": "minecraft:rooted_dirt", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30414 + } + ] + }, + "minecraft:rose_bush": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12919, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12920, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:sand": { + "definition": { + "type": "minecraft:sand", + "falling_dust_color": "#00dbd3a0", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 118 + } + ] + }, + "minecraft:sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 578 + } + ] + }, + "minecraft:sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13408, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13409, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13410, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13411, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13412, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13413, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9493, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9494, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9495, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9496, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9497, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9498, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9499, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9500, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9501, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9502, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9503, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9504, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9505, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9506, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9507, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9508, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9509, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9510, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9511, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9512, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9513, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9514, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9515, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9516, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9517, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9518, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9519, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9520, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9521, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9522, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9523, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9524, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9525, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9526, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9527, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9528, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9529, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9530, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9531, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9532, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9533, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9534, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9535, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9536, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9537, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9538, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9539, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9540, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9541, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9542, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9543, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9544, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9545, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9546, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9547, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9548, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9549, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9550, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9551, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9552, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9553, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9554, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9555, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9556, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9557, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9558, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9559, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9560, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9561, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9562, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9563, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9564, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9565, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9566, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9567, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9568, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9569, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9570, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9571, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9572, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sandstone_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 19734, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19735, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19736, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 19737, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19738, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19739, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19740, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19741, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19742, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19743, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19744, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19745, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19746, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19747, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19748, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19749, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19750, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19751, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19752, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19753, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19754, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19755, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19756, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19757, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19758, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19759, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19760, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19761, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19762, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19763, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19764, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19765, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19766, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19767, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19768, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19769, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19770, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19771, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19772, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19773, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19774, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19775, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19776, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19777, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19778, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19779, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19780, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19781, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19782, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19783, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19784, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19785, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19786, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19787, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19788, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19789, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19790, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19791, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19792, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19793, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19794, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19795, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19796, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19797, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19798, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19799, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19800, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19801, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19802, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19803, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19804, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19805, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19806, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19807, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19808, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19809, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19810, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19811, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19812, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19813, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19814, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19815, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19816, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19817, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19818, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19819, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19820, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19821, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19822, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19823, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19824, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19825, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19826, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19827, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19828, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19829, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19830, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19831, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19832, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19833, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19834, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19835, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19836, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19837, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19838, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19839, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19840, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19841, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19842, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19843, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19844, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19845, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19846, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19847, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19848, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19849, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19850, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19851, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19852, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19853, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19854, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19855, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19856, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19857, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19858, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19859, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19860, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19861, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19862, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19863, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19864, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19865, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19866, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19867, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19868, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19869, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19870, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19871, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19872, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19873, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19874, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19875, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19876, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19877, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19878, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19879, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19880, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19881, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19882, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19883, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19884, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19885, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19886, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19887, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19888, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19889, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19890, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19891, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19892, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19893, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19894, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19895, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19896, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19897, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19898, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19899, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19900, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19901, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19902, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19903, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19904, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19905, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19906, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19907, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19908, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19909, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19910, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19911, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19912, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19913, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19914, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19915, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19916, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19917, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19918, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19919, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19920, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19921, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19922, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19923, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19924, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19925, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19926, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19927, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19928, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19929, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19930, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19931, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19932, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19933, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19934, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19935, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19936, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19937, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19938, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19939, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19940, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19941, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19942, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19943, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19944, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19945, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19946, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19947, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19948, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19949, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19950, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19951, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19952, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19953, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19954, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19955, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19956, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19957, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19958, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19959, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19960, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19961, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19962, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19963, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19964, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19965, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19966, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19967, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19968, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19969, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19970, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19971, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19972, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19973, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19974, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19975, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19976, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19977, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19978, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19979, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19980, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19981, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19982, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19983, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19984, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19985, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19986, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19987, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19988, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19989, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19990, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19991, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19992, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19993, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 19994, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 19995, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 19996, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 19997, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 19998, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 19999, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20000, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20001, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20002, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20003, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20004, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20005, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20006, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20007, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20008, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20009, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20010, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20011, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20012, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20013, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20014, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20015, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20016, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20017, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20018, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20019, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20020, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20021, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20022, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20023, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20024, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20025, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20026, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20027, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20028, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20029, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20030, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20031, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20032, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20033, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20034, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20035, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20036, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20037, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20038, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20039, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20040, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20041, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20042, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20043, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20044, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20045, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20046, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20047, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20048, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20049, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20050, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20051, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 20052, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 20053, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 20054, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 20055, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 20056, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 20057, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:scaffolding": { + "definition": { + "type": "minecraft:scaffolding", + "properties": {} + }, + "properties": { + "bottom": [ + "true", + "false" + ], + "distance": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20706, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 20707, + "properties": { + "bottom": "true", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 20708, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 20709, + "properties": { + "bottom": "true", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 20710, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 20711, + "properties": { + "bottom": "true", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 20712, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 20713, + "properties": { + "bottom": "true", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 20714, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 20715, + "properties": { + "bottom": "true", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 20716, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 20717, + "properties": { + "bottom": "true", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 20718, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 20719, + "properties": { + "bottom": "true", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 20720, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "true" + } + }, + { + "id": 20721, + "properties": { + "bottom": "true", + "distance": "7", + "waterlogged": "false" + } + }, + { + "id": 20722, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "true" + } + }, + { + "id": 20723, + "properties": { + "bottom": "false", + "distance": "0", + "waterlogged": "false" + } + }, + { + "id": 20724, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "true" + } + }, + { + "id": 20725, + "properties": { + "bottom": "false", + "distance": "1", + "waterlogged": "false" + } + }, + { + "id": 20726, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "true" + } + }, + { + "id": 20727, + "properties": { + "bottom": "false", + "distance": "2", + "waterlogged": "false" + } + }, + { + "id": 20728, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "true" + } + }, + { + "id": 20729, + "properties": { + "bottom": "false", + "distance": "3", + "waterlogged": "false" + } + }, + { + "id": 20730, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "true" + } + }, + { + "id": 20731, + "properties": { + "bottom": "false", + "distance": "4", + "waterlogged": "false" + } + }, + { + "id": 20732, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "true" + } + }, + { + "id": 20733, + "properties": { + "bottom": "false", + "distance": "5", + "waterlogged": "false" + } + }, + { + "id": 20734, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "true" + } + }, + { + "id": 20735, + "properties": { + "bottom": "false", + "distance": "6", + "waterlogged": "false" + } + }, + { + "id": 20736, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20737, + "properties": { + "bottom": "false", + "distance": "7", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk": { + "definition": { + "type": "minecraft:sculk", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27643 + } + ] + }, + "minecraft:sculk_catalyst": { + "definition": { + "type": "minecraft:sculk_catalyst", + "properties": {} + }, + "properties": { + "bloom": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27772, + "properties": { + "bloom": "true" + } + }, + { + "default": true, + "id": 27773, + "properties": { + "bloom": "false" + } + } + ] + }, + "minecraft:sculk_sensor": { + "definition": { + "type": "minecraft:sculk_sensor", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "sculk_sensor_phase": [ + "inactive", + "active", + "cooldown" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27163, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27164, + "properties": { + "power": "0", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27165, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27166, + "properties": { + "power": "0", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27167, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27168, + "properties": { + "power": "0", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27169, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27170, + "properties": { + "power": "1", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27171, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27172, + "properties": { + "power": "1", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27173, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27174, + "properties": { + "power": "1", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27175, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27176, + "properties": { + "power": "2", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27177, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27178, + "properties": { + "power": "2", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27179, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27180, + "properties": { + "power": "2", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27181, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27182, + "properties": { + "power": "3", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27183, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27184, + "properties": { + "power": "3", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27185, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27186, + "properties": { + "power": "3", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27187, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27188, + "properties": { + "power": "4", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27189, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27190, + "properties": { + "power": "4", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27191, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27192, + "properties": { + "power": "4", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27193, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27194, + "properties": { + "power": "5", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27195, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27196, + "properties": { + "power": "5", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27197, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27198, + "properties": { + "power": "5", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27199, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27200, + "properties": { + "power": "6", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27201, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27202, + "properties": { + "power": "6", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27203, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27204, + "properties": { + "power": "6", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27205, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27206, + "properties": { + "power": "7", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27207, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27208, + "properties": { + "power": "7", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27209, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27210, + "properties": { + "power": "7", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27211, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27212, + "properties": { + "power": "8", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27213, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27214, + "properties": { + "power": "8", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27215, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27216, + "properties": { + "power": "8", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27217, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27218, + "properties": { + "power": "9", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27219, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27220, + "properties": { + "power": "9", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27221, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27222, + "properties": { + "power": "9", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27223, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27224, + "properties": { + "power": "10", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27225, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27226, + "properties": { + "power": "10", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27227, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27228, + "properties": { + "power": "10", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27229, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27230, + "properties": { + "power": "11", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27231, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27232, + "properties": { + "power": "11", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27233, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27234, + "properties": { + "power": "11", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27235, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27236, + "properties": { + "power": "12", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27237, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27238, + "properties": { + "power": "12", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27239, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27240, + "properties": { + "power": "12", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27241, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27242, + "properties": { + "power": "13", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27243, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27244, + "properties": { + "power": "13", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27245, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27246, + "properties": { + "power": "13", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27247, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27248, + "properties": { + "power": "14", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27249, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27250, + "properties": { + "power": "14", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27251, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27252, + "properties": { + "power": "14", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + }, + { + "id": 27253, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "true" + } + }, + { + "id": 27254, + "properties": { + "power": "15", + "sculk_sensor_phase": "inactive", + "waterlogged": "false" + } + }, + { + "id": 27255, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "true" + } + }, + { + "id": 27256, + "properties": { + "power": "15", + "sculk_sensor_phase": "active", + "waterlogged": "false" + } + }, + { + "id": 27257, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "true" + } + }, + { + "id": 27258, + "properties": { + "power": "15", + "sculk_sensor_phase": "cooldown", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_shrieker": { + "definition": { + "type": "minecraft:sculk_shrieker", + "properties": {} + }, + "properties": { + "can_summon": [ + "true", + "false" + ], + "shrieking": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27774, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 27775, + "properties": { + "can_summon": "true", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 27776, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "id": 27777, + "properties": { + "can_summon": "true", + "shrieking": "false", + "waterlogged": "false" + } + }, + { + "id": 27778, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "true" + } + }, + { + "id": 27779, + "properties": { + "can_summon": "false", + "shrieking": "true", + "waterlogged": "false" + } + }, + { + "id": 27780, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27781, + "properties": { + "can_summon": "false", + "shrieking": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sculk_vein": { + "definition": { + "type": "minecraft:sculk_vein", + "properties": {} + }, + "properties": { + "down": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27644, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27645, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27646, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27647, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27648, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27649, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27650, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27651, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27652, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27653, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27654, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27655, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27656, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27657, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27658, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27659, + "properties": { + "down": "true", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27660, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27661, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27662, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27663, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27664, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27665, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27666, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27667, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27668, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27669, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27670, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27671, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27672, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27673, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27674, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27675, + "properties": { + "down": "true", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27676, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27677, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27678, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27679, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27680, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27681, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27682, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27683, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27684, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27685, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27686, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27687, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27688, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27689, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27690, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27691, + "properties": { + "down": "true", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27692, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27693, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27694, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27695, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27696, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27697, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27698, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27699, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27700, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27701, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27702, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27703, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27704, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27705, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27706, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27707, + "properties": { + "down": "true", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27708, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27709, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27710, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27711, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27712, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27713, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27714, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27715, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27716, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27717, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27718, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27719, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27720, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27721, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27722, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27723, + "properties": { + "down": "false", + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27724, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27725, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27726, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27727, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27728, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27729, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27730, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27731, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27732, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27733, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27734, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27735, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27736, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27737, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27738, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27739, + "properties": { + "down": "false", + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27740, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27741, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27742, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27743, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27744, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27745, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27746, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27747, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27748, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27749, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27750, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27751, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27752, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27753, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27754, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27755, + "properties": { + "down": "false", + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27756, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27757, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27758, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27759, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27760, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27761, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27762, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27763, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27764, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27765, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27766, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 27767, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 27768, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 27769, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 27770, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 27771, + "properties": { + "down": "false", + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:sea_lantern": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12892 + } + ] + }, + "minecraft:sea_pickle": { + "definition": { + "type": "minecraft:sea_pickle", + "properties": {} + }, + "properties": { + "pickles": [ + "1", + "2", + "3", + "4" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15267, + "properties": { + "pickles": "1", + "waterlogged": "true" + } + }, + { + "id": 15268, + "properties": { + "pickles": "1", + "waterlogged": "false" + } + }, + { + "id": 15269, + "properties": { + "pickles": "2", + "waterlogged": "true" + } + }, + { + "id": 15270, + "properties": { + "pickles": "2", + "waterlogged": "false" + } + }, + { + "id": 15271, + "properties": { + "pickles": "3", + "waterlogged": "true" + } + }, + { + "id": 15272, + "properties": { + "pickles": "3", + "waterlogged": "false" + } + }, + { + "id": 15273, + "properties": { + "pickles": "4", + "waterlogged": "true" + } + }, + { + "id": 15274, + "properties": { + "pickles": "4", + "waterlogged": "false" + } + } + ] + }, + "minecraft:seagrass": { + "definition": { + "type": "minecraft:seagrass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2254 + } + ] + }, + "minecraft:short_dry_grass": { + "definition": { + "type": "minecraft:short_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2252 + } + ] + }, + "minecraft:short_grass": { + "definition": { + "type": "minecraft:tall_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2248 + } + ] + }, + "minecraft:shroomlight": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20976 + } + ] + }, + "minecraft:shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14864, + "properties": { + "facing": "north" + } + }, + { + "id": 14865, + "properties": { + "facing": "east" + } + }, + { + "id": 14866, + "properties": { + "facing": "south" + } + }, + { + "id": 14867, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14868, + "properties": { + "facing": "up" + } + }, + { + "id": 14869, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:skeleton_skull": { + "definition": { + "type": "minecraft:skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10915, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10916, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10917, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10918, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10919, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 10920, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 10921, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 10922, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 10923, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 10924, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 10925, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 10926, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 10927, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 10928, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 10929, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 10930, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 10931, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 10932, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 10933, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 10934, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 10935, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 10936, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 10937, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 10938, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 10939, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 10940, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 10941, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 10942, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 10943, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 10944, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 10945, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 10946, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:skeleton_wall_skull": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "skeleton", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10947, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10948, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 10949, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 10950, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 10951, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 10952, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 10953, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 10954, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:slime_block": { + "definition": { + "type": "minecraft:slime", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12532 + } + ] + }, + "minecraft:small_amethyst_bud": { + "definition": { + "type": "minecraft:amethyst_cluster", + "height": 3.0, + "properties": {}, + "width": 8.0 + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23440, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 23441, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 23442, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 23443, + "properties": { + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 23444, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 23445, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 23446, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 23447, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 23448, + "properties": { + "facing": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23449, + "properties": { + "facing": "up", + "waterlogged": "false" + } + }, + { + "id": 23450, + "properties": { + "facing": "down", + "waterlogged": "true" + } + }, + { + "id": 23451, + "properties": { + "facing": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:small_dripleaf": { + "definition": { + "type": "minecraft:small_dripleaf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30396, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 30397, + "properties": { + "facing": "north", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 30398, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30399, + "properties": { + "facing": "north", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 30400, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 30401, + "properties": { + "facing": "south", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 30402, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 30403, + "properties": { + "facing": "south", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 30404, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 30405, + "properties": { + "facing": "west", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 30406, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 30407, + "properties": { + "facing": "west", + "half": "lower", + "waterlogged": "false" + } + }, + { + "id": 30408, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "true" + } + }, + { + "id": 30409, + "properties": { + "facing": "east", + "half": "upper", + "waterlogged": "false" + } + }, + { + "id": 30410, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "true" + } + }, + { + "id": 30411, + "properties": { + "facing": "east", + "half": "lower", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smithing_table": { + "definition": { + "type": "minecraft:smithing_table", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20800 + } + ] + }, + "minecraft:smoker": { + "definition": { + "type": "minecraft:smoker", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20754, + "properties": { + "facing": "north", + "lit": "true" + } + }, + { + "default": true, + "id": 20755, + "properties": { + "facing": "north", + "lit": "false" + } + }, + { + "id": 20756, + "properties": { + "facing": "south", + "lit": "true" + } + }, + { + "id": 20757, + "properties": { + "facing": "south", + "lit": "false" + } + }, + { + "id": 20758, + "properties": { + "facing": "west", + "lit": "true" + } + }, + { + "id": 20759, + "properties": { + "facing": "west", + "lit": "false" + } + }, + { + "id": 20760, + "properties": { + "facing": "east", + "lit": "true" + } + }, + { + "id": 20761, + "properties": { + "facing": "east", + "lit": "false" + } + } + ] + }, + "minecraft:smooth_basalt": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 32069 + } + ] + }, + "minecraft:smooth_quartz": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13482 + } + ] + }, + "minecraft:smooth_quartz_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16458, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16459, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16460, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16461, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16462, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16463, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_quartz_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_quartz" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15936, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15937, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15938, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15939, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15940, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15941, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15942, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15943, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15944, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15945, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15946, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15947, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15948, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15949, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15950, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15951, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15952, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15953, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15954, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15955, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15956, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15957, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15958, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15959, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15960, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15961, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15962, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15963, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15964, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15965, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15966, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15967, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15968, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15969, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15970, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15971, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15972, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15973, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15974, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15975, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15976, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15977, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15978, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15979, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15980, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15981, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15982, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15983, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15984, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15985, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15986, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15987, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15988, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15989, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15990, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15991, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15992, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15993, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15994, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15995, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15996, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15997, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15998, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15999, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16000, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16001, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16002, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16003, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16004, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16005, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 16006, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 16007, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 16008, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 16009, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 16010, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 16011, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 16012, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 16013, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 16014, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 16015, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13483 + } + ] + }, + "minecraft:smooth_red_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16422, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16423, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16424, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16425, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16426, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16427, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_red_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_red_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15376, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15377, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15378, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15379, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15380, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15381, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15382, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15383, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15384, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15385, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15387, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15388, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15389, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15390, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15391, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15392, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15393, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15394, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15395, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15396, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15397, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15398, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15399, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15400, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15401, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15402, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15403, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15404, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15405, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15407, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15408, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15409, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15410, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15411, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15412, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15413, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15414, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15415, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15416, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15417, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15418, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15419, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15420, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15421, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15422, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15423, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15424, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15425, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15427, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15428, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15429, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15430, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15431, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15432, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15433, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15434, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15435, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15436, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15437, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15438, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15439, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15440, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15441, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15442, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15443, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15444, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15445, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15447, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15448, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15449, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15450, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15451, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15452, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15453, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15454, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15455, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13481 + } + ] + }, + "minecraft:smooth_sandstone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 16452, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 16453, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 16454, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 16455, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 16456, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 16457, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_sandstone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:smooth_sandstone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15856, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15857, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15858, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15859, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15860, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15861, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15862, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15863, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15864, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15865, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15866, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15867, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15868, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15869, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15870, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15871, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15872, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15873, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15874, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15875, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15876, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15877, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15878, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15879, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15880, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15881, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15882, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15883, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15884, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15885, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15886, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15887, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15888, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15889, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15890, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15891, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15892, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15893, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15894, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15895, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15896, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15897, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15898, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15899, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15900, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15901, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15902, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15903, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15904, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15905, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15906, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15907, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15908, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15909, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15910, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15911, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15912, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15913, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15914, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15915, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15916, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15917, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15918, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15919, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15920, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15921, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15922, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15923, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15924, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15925, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15926, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15927, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15928, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15929, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15930, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15931, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15932, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15933, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15934, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15935, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:smooth_stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 13480 + } + ] + }, + "minecraft:smooth_stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13402, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13403, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13404, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13405, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13406, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13407, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sniffer_egg": { + "definition": { + "type": "minecraft:sniffer_egg", + "properties": {} + }, + "properties": { + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 15102, + "properties": { + "hatch": "0" + } + }, + { + "id": 15103, + "properties": { + "hatch": "1" + } + }, + { + "id": 15104, + "properties": { + "hatch": "2" + } + } + ] + }, + "minecraft:snow": { + "definition": { + "type": "minecraft:snow_layer", + "properties": {} + }, + "properties": { + "layers": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8" + ] + }, + "states": [ + { + "default": true, + "id": 6919, + "properties": { + "layers": "1" + } + }, + { + "id": 6920, + "properties": { + "layers": "2" + } + }, + { + "id": 6921, + "properties": { + "layers": "3" + } + }, + { + "id": 6922, + "properties": { + "layers": "4" + } + }, + { + "id": 6923, + "properties": { + "layers": "5" + } + }, + { + "id": 6924, + "properties": { + "layers": "6" + } + }, + { + "id": 6925, + "properties": { + "layers": "7" + } + }, + { + "id": 6926, + "properties": { + "layers": "8" + } + } + ] + }, + "minecraft:snow_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6928 + } + ] + }, + "minecraft:soul_campfire": { + "definition": { + "type": "minecraft:campfire", + "fire_damage": 2, + "properties": {}, + "spawn_particles": false + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "lit": [ + "true", + "false" + ], + "signal_fire": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20909, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20910, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20911, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20912, + "properties": { + "facing": "north", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20913, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20914, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20915, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20916, + "properties": { + "facing": "north", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20917, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20918, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20919, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20920, + "properties": { + "facing": "south", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20921, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20922, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20923, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20924, + "properties": { + "facing": "south", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20925, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20926, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20927, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20928, + "properties": { + "facing": "west", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20929, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20930, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20931, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20932, + "properties": { + "facing": "west", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20933, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20934, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20935, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20936, + "properties": { + "facing": "east", + "lit": "true", + "signal_fire": "false", + "waterlogged": "false" + } + }, + { + "id": 20937, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "true" + } + }, + { + "id": 20938, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "true", + "waterlogged": "false" + } + }, + { + "id": 20939, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "true" + } + }, + { + "id": 20940, + "properties": { + "facing": "east", + "lit": "false", + "signal_fire": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_fire": { + "definition": { + "type": "minecraft:soul_fire", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3887 + } + ] + }, + "minecraft:soul_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20841, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20842, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20843, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20844, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:soul_sand": { + "definition": { + "type": "minecraft:soul_sand", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6998 + } + ] + }, + "minecraft:soul_soil": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 6999 + } + ] + }, + "minecraft:soul_torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7006 + } + ] + }, + "minecraft:soul_wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:soul_fire_flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 7007, + "properties": { + "facing": "north" + } + }, + { + "id": 7008, + "properties": { + "facing": "south" + } + }, + { + "id": 7009, + "properties": { + "facing": "west" + } + }, + { + "id": 7010, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:spawner": { + "definition": { + "type": "minecraft:spawner", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3888 + } + ] + }, + "minecraft:sponge": { + "definition": { + "type": "minecraft:sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 560 + } + ] + }, + "minecraft:spore_blossom": { + "definition": { + "type": "minecraft:spore_blossom", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 30303 + } + ] + }, + "minecraft:spruce_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "spruce", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10699, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10700, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10701, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10702, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10703, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10704, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10705, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10706, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10707, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10708, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10709, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10710, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10711, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10712, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10713, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10714, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 10715, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 10716, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 10717, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 10718, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 10719, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 10720, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 10721, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 10722, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 14060, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14061, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14062, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14063, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14064, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14065, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14066, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14067, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14068, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14069, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14070, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 14071, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14072, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14073, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14074, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14075, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14076, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14077, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14078, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14079, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14080, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14081, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14082, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14083, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14084, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14085, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14086, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14087, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14088, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14089, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14090, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14091, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14092, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14093, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14094, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14095, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14096, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14097, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14098, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14099, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14100, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14101, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14102, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14103, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14104, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14105, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14106, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14107, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14108, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14109, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14110, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14111, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14112, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14113, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14114, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14115, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 14116, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 14117, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 14118, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 14119, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 14120, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 14121, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 14122, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 14123, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13772, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13773, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13774, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13775, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13776, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13777, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13778, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13779, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13780, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13781, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13782, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13783, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13784, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13785, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13786, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13787, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13788, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13789, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13790, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13791, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13792, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13793, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13794, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13795, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13796, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13797, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13798, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 13799, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 13800, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 13801, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 13802, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 13803, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:spruce_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13484, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13485, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13486, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13487, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13488, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13489, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13490, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 13491, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13492, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13493, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13494, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13495, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13496, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13497, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13498, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13499, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13500, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13501, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13502, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13503, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13504, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13505, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13506, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13507, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 13508, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 13509, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 13510, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 13511, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 13512, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 13513, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 13514, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 13515, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:spruce_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5971, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5972, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5973, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5974, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5975, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5976, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5977, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5978, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5979, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5980, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5981, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5982, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5983, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5984, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5985, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5986, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5987, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 5988, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5989, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5990, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5991, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5992, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5993, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5994, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5995, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5996, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5997, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5998, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5999, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6000, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6001, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6002, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6003, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6004, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6005, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6006, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6007, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6008, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6009, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6010, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6011, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6012, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6013, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6014, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6015, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6016, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6017, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6018, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6019, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6020, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6021, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6022, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6023, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6024, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6025, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6026, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6027, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6028, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6029, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6030, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6031, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6032, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6033, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6034, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_leaves": { + "definition": { + "type": "minecraft:tinted_particle_leaves", + "leaf_particle_chance": 0.01, + "properties": {} + }, + "properties": { + "distance": [ + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ], + "persistent": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 280, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 281, + "properties": { + "distance": "1", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 282, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 283, + "properties": { + "distance": "1", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 284, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 285, + "properties": { + "distance": "2", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 286, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 287, + "properties": { + "distance": "2", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 288, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 289, + "properties": { + "distance": "3", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 290, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 291, + "properties": { + "distance": "3", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 292, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 293, + "properties": { + "distance": "4", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 294, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 295, + "properties": { + "distance": "4", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 296, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 297, + "properties": { + "distance": "5", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 298, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 299, + "properties": { + "distance": "5", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 300, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 301, + "properties": { + "distance": "6", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 302, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "id": 303, + "properties": { + "distance": "6", + "persistent": "false", + "waterlogged": "false" + } + }, + { + "id": 304, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "true" + } + }, + { + "id": 305, + "properties": { + "distance": "7", + "persistent": "true", + "waterlogged": "false" + } + }, + { + "id": 306, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 307, + "properties": { + "distance": "7", + "persistent": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 139, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 140, + "properties": { + "axis": "y" + } + }, + { + "id": 141, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:spruce_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 16 + } + ] + }, + "minecraft:spruce_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6863, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6864, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:spruce_sapling": { + "definition": { + "type": "minecraft:sapling", + "properties": {}, + "tree": "spruce" + }, + "properties": { + "stage": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 31, + "properties": { + "stage": "0" + } + }, + { + "id": 32, + "properties": { + "stage": "1" + } + } + ] + }, + "minecraft:spruce_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3240, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3241, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3242, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3243, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3244, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3245, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3246, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3247, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3248, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3249, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3250, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3251, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3252, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3253, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3254, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3255, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3256, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3257, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3258, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3259, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3260, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3261, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3262, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3263, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3264, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3265, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3266, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3267, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3268, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3269, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3270, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3271, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3272, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3273, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3274, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3275, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3276, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3277, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3278, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3279, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3280, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3281, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3282, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3283, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3284, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3285, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3286, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3287, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3288, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3289, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3290, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3291, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3292, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3293, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3294, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3295, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3296, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3297, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3298, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3299, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3300, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3301, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3302, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3303, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5367, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 5368, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 5369, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 5370, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 5371, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 5372, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 5373, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 5374, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 5375, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 5376, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 5377, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 5378, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 5379, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 5380, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 5381, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 5382, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 5383, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5384, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 5385, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 5386, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 5387, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 5388, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 5389, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 5390, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 5391, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 5392, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 5393, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 5394, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 5395, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 5396, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 5397, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 5398, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13336, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13337, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13338, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13339, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13340, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13341, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:spruce_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9728, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9729, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9730, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9731, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9732, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9733, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9734, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9735, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9736, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9737, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9738, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 9739, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9740, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9741, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9742, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9743, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9744, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9745, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9746, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9747, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9748, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9749, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9750, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9751, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9752, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9753, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9754, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9755, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9756, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9757, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9758, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9759, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9760, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9761, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9762, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9763, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9764, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9765, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9766, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9767, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9768, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9769, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9770, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9771, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9772, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9773, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9774, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9775, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9776, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9777, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9778, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9779, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9780, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9781, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9782, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9783, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9784, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9785, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9786, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9787, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9788, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9789, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9790, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9791, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9792, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9793, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9794, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9795, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9796, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9797, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 9798, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 9799, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 9800, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 9801, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 9802, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 9803, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 9804, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 9805, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 9806, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 9807, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "spruce", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 7178, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7179, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7180, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7181, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7182, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7183, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7184, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7185, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7186, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7187, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7188, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7189, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7190, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7191, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7192, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 7193, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7194, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7195, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7196, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7197, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7198, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7199, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7200, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7201, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7202, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7203, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7204, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7205, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7206, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7207, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7208, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7209, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7210, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7211, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7212, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7213, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7214, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7215, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7216, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7217, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7218, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7219, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7220, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7221, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7222, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7223, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7224, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7225, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7226, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7227, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7228, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7229, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7230, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7231, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7232, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7233, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7234, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7235, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7236, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7237, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 7238, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 7239, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 7240, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 7241, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6683, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6684, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6685, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6686, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6687, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6688, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6689, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6690, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "spruce" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 5835, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 5836, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 5837, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 5838, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 5839, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 5840, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 5841, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 5842, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 204, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 205, + "properties": { + "axis": "y" + } + }, + { + "id": 206, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:sticky_piston": { + "definition": { + "type": "minecraft:piston_base", + "properties": {}, + "sticky": true + }, + "properties": { + "extended": [ + "true", + "false" + ], + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 2235, + "properties": { + "extended": "true", + "facing": "north" + } + }, + { + "id": 2236, + "properties": { + "extended": "true", + "facing": "east" + } + }, + { + "id": 2237, + "properties": { + "extended": "true", + "facing": "south" + } + }, + { + "id": 2238, + "properties": { + "extended": "true", + "facing": "west" + } + }, + { + "id": 2239, + "properties": { + "extended": "true", + "facing": "up" + } + }, + { + "id": 2240, + "properties": { + "extended": "true", + "facing": "down" + } + }, + { + "default": true, + "id": 2241, + "properties": { + "extended": "false", + "facing": "north" + } + }, + { + "id": 2242, + "properties": { + "extended": "false", + "facing": "east" + } + }, + { + "id": 2243, + "properties": { + "extended": "false", + "facing": "south" + } + }, + { + "id": 2244, + "properties": { + "extended": "false", + "facing": "west" + } + }, + { + "id": 2245, + "properties": { + "extended": "false", + "facing": "up" + } + }, + { + "id": 2246, + "properties": { + "extended": "false", + "facing": "down" + } + } + ] + }, + "minecraft:stone": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 1 + } + ] + }, + "minecraft:stone_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13438, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13439, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13440, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13441, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13442, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13443, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8758, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8759, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8760, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8761, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8762, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8763, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8764, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8765, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8766, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8767, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8768, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8769, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8770, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8771, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8772, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8773, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8774, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8775, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8776, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8777, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8778, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8779, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8780, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8781, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8782, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8783, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8784, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8785, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8786, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8787, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8788, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8789, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8790, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8791, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8792, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8793, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8794, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8795, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8796, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8797, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8798, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8799, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8800, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8801, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8802, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8803, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8804, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8805, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8806, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8807, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8808, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8809, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8810, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8811, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8812, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8813, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8814, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8815, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8816, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8817, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8818, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8819, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8820, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8821, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8822, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8823, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8824, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8825, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8826, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8827, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 8828, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 8829, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 8830, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 8831, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 8832, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 8833, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 8834, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 8835, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 8836, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 8837, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 18114, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18115, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18116, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 18117, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18118, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18119, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18120, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18121, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18122, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18123, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18124, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18125, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18126, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18127, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18128, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18129, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18130, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18131, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18132, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18133, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18134, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18135, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18136, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18137, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18138, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18139, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18140, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18141, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18142, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18143, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18144, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18145, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18146, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18147, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18148, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18149, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18150, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18151, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18152, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18153, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18154, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18155, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18156, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18157, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18158, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18159, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18160, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18161, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18162, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18163, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18164, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18165, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18166, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18167, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18168, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18169, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18170, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18171, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18172, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18173, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18174, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18175, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18176, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18177, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18178, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18179, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18180, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18181, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18182, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18183, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18184, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18185, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18186, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18187, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18188, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18189, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18190, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18191, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18192, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18193, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18194, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18195, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18196, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18197, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18198, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18199, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18200, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18201, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18202, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18203, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18204, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18205, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18206, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18207, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18208, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18209, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18210, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18211, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18212, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18213, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18214, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18215, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18216, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18217, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18218, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18219, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18220, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18221, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18222, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18223, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18224, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18225, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18226, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18227, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18228, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18229, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18230, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18231, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18232, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18233, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18234, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18235, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18236, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18237, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18238, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18239, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18240, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18241, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18242, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18243, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18244, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18245, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18246, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18247, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18248, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18249, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18250, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18251, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18252, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18253, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18254, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18255, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18256, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18257, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18258, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18259, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18260, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18261, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18262, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18263, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18264, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18265, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18266, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18267, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18268, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18269, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18270, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18271, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18272, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18273, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18274, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18275, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18276, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18277, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18278, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18279, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18280, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18281, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18282, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18283, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18284, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18285, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18286, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18287, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18288, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18289, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18290, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18291, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18292, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18293, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18294, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18295, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18296, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18297, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18298, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18299, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18300, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18301, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18302, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18303, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18304, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18305, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18306, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18307, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18308, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18309, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18310, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18311, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18312, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18313, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18314, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18315, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18316, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18317, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18318, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18319, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18320, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18321, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18322, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18323, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18324, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18325, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18326, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18327, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18328, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18329, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18330, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18331, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18332, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18333, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18334, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18335, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18336, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18337, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18338, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18339, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18340, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18341, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18342, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18343, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18344, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18345, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18346, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18347, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18348, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18349, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18350, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18351, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18352, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18353, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18354, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18355, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18356, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18357, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18358, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18359, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18360, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18361, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18362, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18363, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18364, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18365, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18366, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18367, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18368, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18369, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18370, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18371, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18372, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18373, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18374, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18375, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18376, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18377, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18378, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18379, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18380, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18381, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18382, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18383, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18384, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18385, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18386, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18387, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18388, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18389, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18390, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18391, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18392, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18393, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18394, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18395, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18396, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18397, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18398, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18399, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18400, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18401, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18402, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18403, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18404, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18405, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18406, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18407, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18408, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18409, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18410, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18411, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18412, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18413, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18414, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18415, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18416, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18417, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18418, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18419, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18420, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18421, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18422, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18423, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18424, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18425, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18426, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18427, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18428, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18429, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18430, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18431, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 18432, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 18433, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 18434, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 18435, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 18436, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 18437, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:stone_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7754 + } + ] + }, + "minecraft:stone_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "stone", + "properties": {}, + "ticks_to_stay_pressed": 20 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6895, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6896, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6897, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6898, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6899, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6900, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6901, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6902, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6903, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 6904, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6905, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6906, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6907, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6908, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6909, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6910, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 6911, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 6912, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 6913, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 6914, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 6915, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 6916, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 6917, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 6918, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:stone_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "stone", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6795, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 6796, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:stone_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 13396, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 13397, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 13398, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 13399, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 13400, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 13401, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stone_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:stone" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 15776, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15777, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15778, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15779, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15780, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15781, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15782, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15783, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15784, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15785, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15786, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 15787, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15788, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15789, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15790, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15791, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15792, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15793, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15794, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15795, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15796, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15797, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15798, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15799, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15800, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15801, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15802, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15803, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15804, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15805, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15806, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15807, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15808, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15809, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15810, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15811, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15812, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15813, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15814, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15815, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15816, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15817, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15818, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15819, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15820, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15821, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15822, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15823, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15824, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15825, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15826, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15827, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15828, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15829, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15830, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15831, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15832, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15833, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15834, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15835, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15836, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15837, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15838, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15839, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15840, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15841, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15842, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15843, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15844, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15845, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 15846, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 15847, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 15848, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 15849, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 15850, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 15851, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 15852, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 15853, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 15854, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 15855, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:stonecutter": { + "definition": { + "type": "minecraft:stonecutter", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 20801, + "properties": { + "facing": "north" + } + }, + { + "id": 20802, + "properties": { + "facing": "south" + } + }, + { + "id": 20803, + "properties": { + "facing": "west" + } + }, + { + "id": 20804, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:stripped_acacia_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 180, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 181, + "properties": { + "axis": "y" + } + }, + { + "id": 182, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_acacia_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 237, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 238, + "properties": { + "axis": "y" + } + }, + { + "id": 239, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_bamboo_block": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 198, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 199, + "properties": { + "axis": "y" + } + }, + { + "id": 200, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 174, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 175, + "properties": { + "axis": "y" + } + }, + { + "id": 176, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_birch_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 231, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 232, + "properties": { + "axis": "y" + } + }, + { + "id": 233, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 183, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 184, + "properties": { + "axis": "y" + } + }, + { + "id": 185, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_cherry_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 240, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 241, + "properties": { + "axis": "y" + } + }, + { + "id": 242, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20971, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20972, + "properties": { + "axis": "y" + } + }, + { + "id": 20973, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_crimson_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20965, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20966, + "properties": { + "axis": "y" + } + }, + { + "id": 20967, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 186, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 187, + "properties": { + "axis": "y" + } + }, + { + "id": 188, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_dark_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 243, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 244, + "properties": { + "axis": "y" + } + }, + { + "id": 245, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 177, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 178, + "properties": { + "axis": "y" + } + }, + { + "id": 179, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_jungle_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 234, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 235, + "properties": { + "axis": "y" + } + }, + { + "id": 236, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 195, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 196, + "properties": { + "axis": "y" + } + }, + { + "id": 197, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_mangrove_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 249, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 250, + "properties": { + "axis": "y" + } + }, + { + "id": 251, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 192, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 193, + "properties": { + "axis": "y" + } + }, + { + "id": 194, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 225, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 226, + "properties": { + "axis": "y" + } + }, + { + "id": 227, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_pale_oak_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 189, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 190, + "properties": { + "axis": "y" + } + }, + { + "id": 191, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_pale_oak_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 246, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 247, + "properties": { + "axis": "y" + } + }, + { + "id": 248, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_log": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 171, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 172, + "properties": { + "axis": "y" + } + }, + { + "id": 173, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_spruce_wood": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 228, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 229, + "properties": { + "axis": "y" + } + }, + { + "id": 230, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20954, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20955, + "properties": { + "axis": "y" + } + }, + { + "id": 20956, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:stripped_warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20948, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20949, + "properties": { + "axis": "y" + } + }, + { + "id": 20950, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:structure_block": { + "definition": { + "type": "minecraft:structure", + "properties": {} + }, + "properties": { + "mode": [ + "save", + "load", + "corner", + "data" + ] + }, + "states": [ + { + "id": 21722, + "properties": { + "mode": "save" + } + }, + { + "default": true, + "id": 21723, + "properties": { + "mode": "load" + } + }, + { + "id": 21724, + "properties": { + "mode": "corner" + } + }, + { + "id": 21725, + "properties": { + "mode": "data" + } + } + ] + }, + "minecraft:structure_void": { + "definition": { + "type": "minecraft:structure_void", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 14851 + } + ] + }, + "minecraft:sugar_cane": { + "definition": { + "type": "minecraft:sugar_cane", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 6947, + "properties": { + "age": "0" + } + }, + { + "id": 6948, + "properties": { + "age": "1" + } + }, + { + "id": 6949, + "properties": { + "age": "2" + } + }, + { + "id": 6950, + "properties": { + "age": "3" + } + }, + { + "id": 6951, + "properties": { + "age": "4" + } + }, + { + "id": 6952, + "properties": { + "age": "5" + } + }, + { + "id": 6953, + "properties": { + "age": "6" + } + }, + { + "id": 6954, + "properties": { + "age": "7" + } + }, + { + "id": 6955, + "properties": { + "age": "8" + } + }, + { + "id": 6956, + "properties": { + "age": "9" + } + }, + { + "id": 6957, + "properties": { + "age": "10" + } + }, + { + "id": 6958, + "properties": { + "age": "11" + } + }, + { + "id": 6959, + "properties": { + "age": "12" + } + }, + { + "id": 6960, + "properties": { + "age": "13" + } + }, + { + "id": 6961, + "properties": { + "age": "14" + } + }, + { + "id": 6962, + "properties": { + "age": "15" + } + } + ] + }, + "minecraft:sulfur": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24687 + } + ] + }, + "minecraft:sulfur_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25515, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 25516, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 25517, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25518, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 25519, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 25520, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sulfur_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 25521, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25522, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25523, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25524, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25525, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25526, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25527, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25528, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25529, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25530, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25531, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 25532, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25533, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25534, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25535, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25536, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25537, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25538, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25539, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25540, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25541, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25542, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25543, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25544, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25545, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25546, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25547, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25548, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25549, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25550, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25551, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25552, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25553, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25554, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25555, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25556, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25557, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25558, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25559, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25560, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25561, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25562, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25563, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25564, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25565, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25566, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25567, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25568, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25569, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25570, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25571, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25572, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25573, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25574, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25575, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25576, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25577, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25578, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25579, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25580, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25581, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25582, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25583, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25584, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25585, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25586, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25587, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25588, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25589, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25590, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 25591, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 25592, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 25593, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 25594, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 25595, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 25596, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 25597, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 25598, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 25599, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 25600, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 25601, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25602, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25603, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 25604, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25605, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25606, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25607, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25608, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25609, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25610, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25611, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25612, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25613, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25614, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25615, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25616, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25617, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25618, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25619, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25620, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25621, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25622, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25623, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25624, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25625, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25626, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25627, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25628, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25629, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25630, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25631, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25632, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25633, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25634, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25635, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25636, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25637, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25638, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25639, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25640, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25641, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25642, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25643, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25644, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25645, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25646, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25647, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25648, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25649, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25650, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25651, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25652, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25653, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25654, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25655, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25656, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25657, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25658, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25659, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25660, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25661, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25662, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25663, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25664, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25665, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25666, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25667, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25668, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25669, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25670, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25671, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25672, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25673, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25674, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25675, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25676, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25677, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25678, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25679, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25680, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25681, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25682, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25683, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25684, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25685, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25686, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25687, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25688, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25689, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25690, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25691, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25692, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25693, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25694, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25695, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25696, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25697, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25698, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25699, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25700, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25701, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25702, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25703, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25704, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25705, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25706, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25707, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25708, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25709, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25710, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25711, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25712, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25713, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25714, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25715, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25716, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25717, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25718, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25719, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25720, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25721, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25722, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25723, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25724, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25725, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25726, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25727, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25728, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25729, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25730, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25731, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25732, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25733, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25734, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25735, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25736, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25737, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25738, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25739, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25740, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25741, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25742, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25743, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25744, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25745, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25746, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25747, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25748, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25749, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25750, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25751, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25752, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25753, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25754, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25755, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25756, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25757, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25758, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25759, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25760, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25761, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25762, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25763, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25764, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25765, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25766, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25767, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25768, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25769, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25770, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25771, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25772, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25773, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25774, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25775, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25776, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25777, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25778, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25779, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25780, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25781, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25782, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25783, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25784, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25785, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25786, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25787, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25788, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25789, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25790, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25791, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25792, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25793, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25794, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25795, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25796, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25797, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25798, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25799, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25800, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25801, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25802, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25803, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25804, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25805, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25806, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25807, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25808, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25809, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25810, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25811, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25812, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25813, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25814, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25815, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25816, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25817, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25818, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25819, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25820, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25821, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25822, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25823, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25824, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25825, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25826, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25827, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25828, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25829, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25830, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25831, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25832, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25833, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25834, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25835, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25836, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25837, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25838, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25839, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25840, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25841, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25842, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25843, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25844, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25845, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25846, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25847, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25848, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25849, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25850, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25851, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25852, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25853, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25854, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25855, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25856, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25857, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25858, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25859, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25860, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25861, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25862, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25863, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25864, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25865, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25866, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25867, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25868, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25869, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25870, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25871, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25872, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25873, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25874, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25875, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25876, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25877, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25878, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25879, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25880, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25881, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25882, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25883, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25884, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25885, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25886, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25887, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25888, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25889, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25890, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25891, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25892, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25893, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25894, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25895, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25896, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25897, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25898, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25899, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25900, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25901, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25902, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25903, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25904, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25905, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25906, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25907, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25908, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25909, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25910, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25911, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25912, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25913, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25914, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25915, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25916, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25917, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25918, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25919, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25920, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25921, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25922, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25923, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25924, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:sulfur_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 25514 + } + ] + }, + "minecraft:sulfur_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24693, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24694, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24695, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24696, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24697, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24698, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_spike": { + "definition": { + "type": "minecraft:sulfur_spike", + "block_to_grow_on": { + "Name": "minecraft:sulfur" + }, + "properties": {} + }, + "properties": { + "thickness": [ + "tip_merge", + "tip", + "frustum", + "middle", + "base" + ], + "vertical_direction": [ + "up", + "down" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30229, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30230, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30231, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30232, + "properties": { + "thickness": "tip_merge", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30233, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30234, + "properties": { + "thickness": "tip", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30235, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30236, + "properties": { + "thickness": "tip", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30237, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30238, + "properties": { + "thickness": "frustum", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30239, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30240, + "properties": { + "thickness": "frustum", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30241, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30242, + "properties": { + "thickness": "middle", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30243, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30244, + "properties": { + "thickness": "middle", + "vertical_direction": "down", + "waterlogged": "false" + } + }, + { + "id": 30245, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "true" + } + }, + { + "id": 30246, + "properties": { + "thickness": "base", + "vertical_direction": "up", + "waterlogged": "false" + } + }, + { + "id": 30247, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "true" + } + }, + { + "id": 30248, + "properties": { + "thickness": "base", + "vertical_direction": "down", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:sulfur" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24699, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24700, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24701, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24702, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24703, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24704, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24705, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24706, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24707, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24708, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24709, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24710, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24711, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24712, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24713, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24714, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24715, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24716, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24717, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24718, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24719, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24720, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24721, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24722, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24723, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24724, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24725, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24726, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24727, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24728, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24729, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24730, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24731, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24732, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24733, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24734, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24735, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24736, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24737, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24738, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24739, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24740, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24741, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24742, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24743, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24744, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24745, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24746, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24747, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24748, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24749, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24750, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24751, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24752, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24753, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24754, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24755, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24756, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24757, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24758, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24759, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24760, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24761, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24762, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24763, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24764, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24765, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24766, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24767, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24768, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24769, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24770, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24771, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24772, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24773, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24774, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24775, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24776, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24777, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24778, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:sulfur_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24779, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24780, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24781, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24782, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24783, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24784, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24785, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24786, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24787, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24788, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24789, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24790, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24791, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24792, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24793, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24794, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24795, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24796, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24797, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24798, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24799, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24800, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24801, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24802, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24803, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24804, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24805, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24806, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24807, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24808, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24809, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24810, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24811, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24812, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24813, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24814, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24815, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24816, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24817, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24818, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24819, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24820, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24821, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24822, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24823, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24824, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24825, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24826, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24827, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24828, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24829, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24830, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24831, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24832, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24833, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24834, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24835, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24836, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24837, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24838, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24839, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24840, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24841, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24842, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24843, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24844, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24845, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24846, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24847, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24848, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24849, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24850, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24851, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24852, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24853, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24854, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24855, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24856, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24857, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24858, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24859, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24860, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24861, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24862, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24863, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24864, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24865, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24866, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24867, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24868, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24869, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24870, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24871, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24872, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24873, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24874, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24875, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24876, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24877, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24878, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24879, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24880, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24881, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24882, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24883, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24884, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24885, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24886, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24887, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24888, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24889, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24890, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24891, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24892, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24893, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24894, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24895, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24896, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24897, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24898, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24899, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24900, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24901, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24902, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24903, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24904, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24905, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24906, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24907, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24908, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24909, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24910, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24911, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24912, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24913, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24914, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24915, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24916, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24917, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24918, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24919, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24920, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24921, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24922, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24923, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24924, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24925, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24926, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24927, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24928, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24929, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24930, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24931, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24932, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24933, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24934, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24935, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24936, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24937, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24938, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24939, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24940, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24941, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24942, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24943, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24944, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24945, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24946, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24947, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24948, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24949, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24950, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24951, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24952, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24953, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24954, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24955, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24956, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24957, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24958, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24959, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24960, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24961, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24962, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24963, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24964, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24965, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24966, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24967, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24968, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24969, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24970, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24971, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24972, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24973, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24974, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24975, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24976, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24977, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24978, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24979, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24980, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24981, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24982, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24983, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24984, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24985, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24986, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24987, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24988, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24989, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24990, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24991, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24992, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24993, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24994, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24995, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24996, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24997, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24998, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24999, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25000, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25001, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25002, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25003, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25004, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25005, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25006, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25007, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25008, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25009, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25010, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25011, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25012, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25013, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25014, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25015, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25016, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25017, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25018, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25019, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25020, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25021, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25022, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25023, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25024, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25025, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25026, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25027, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25028, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25029, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25030, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25031, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25032, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25033, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25034, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25035, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25036, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25037, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25038, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25039, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25040, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25041, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25042, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25043, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25044, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25045, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25046, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25047, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25048, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25049, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25050, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25051, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25052, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25053, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25054, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25055, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25056, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25057, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25058, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25059, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25060, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25061, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25062, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25063, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25064, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25065, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25066, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25067, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25068, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25069, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25070, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25071, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25072, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25073, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25074, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25075, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25076, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25077, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25078, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25079, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25080, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25081, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25082, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25083, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25084, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25085, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25086, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25087, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25088, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25089, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25090, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25091, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25092, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25093, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25094, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25095, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25096, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 25097, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 25098, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 25099, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 25100, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 25101, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 25102, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:sunflower": { + "definition": { + "type": "minecraft:tall_flower", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12915, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12916, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:suspicious_gravel": { + "definition": { + "type": "minecraft:brushable", + "brush_completed_sound": "minecraft:item.brush.brushing.gravel", + "brush_sound": "minecraft:item.brush.brushing.gravel", + "properties": {}, + "turns_into": "minecraft:gravel" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 125, + "properties": { + "dusted": "0" + } + }, + { + "id": 126, + "properties": { + "dusted": "1" + } + }, + { + "id": 127, + "properties": { + "dusted": "2" + } + }, + { + "id": 128, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:suspicious_sand": { + "definition": { + "type": "minecraft:brushable", + "brush_completed_sound": "minecraft:item.brush.brushing.sand", + "brush_sound": "minecraft:item.brush.brushing.sand", + "properties": {}, + "turns_into": "minecraft:sand" + }, + "properties": { + "dusted": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 119, + "properties": { + "dusted": "0" + } + }, + { + "id": 120, + "properties": { + "dusted": "1" + } + }, + { + "id": 121, + "properties": { + "dusted": "2" + } + }, + { + "id": 122, + "properties": { + "dusted": "3" + } + } + ] + }, + "minecraft:sweet_berry_bush": { + "definition": { + "type": "minecraft:sweet_berry_bush", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 20941, + "properties": { + "age": "0" + } + }, + { + "id": 20942, + "properties": { + "age": "1" + } + }, + { + "id": 20943, + "properties": { + "age": "2" + } + }, + { + "id": 20944, + "properties": { + "age": "3" + } + } + ] + }, + "minecraft:tall_dry_grass": { + "definition": { + "type": "minecraft:tall_dry_grass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2253 + } + ] + }, + "minecraft:tall_grass": { + "definition": { + "type": "minecraft:double_plant", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 12923, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 12924, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:tall_seagrass": { + "definition": { + "type": "minecraft:tall_seagrass", + "properties": {} + }, + "properties": { + "half": [ + "upper", + "lower" + ] + }, + "states": [ + { + "id": 2255, + "properties": { + "half": "upper" + } + }, + { + "default": true, + "id": 2256, + "properties": { + "half": "lower" + } + } + ] + }, + "minecraft:target": { + "definition": { + "type": "minecraft:target", + "properties": {} + }, + "properties": { + "power": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 21752, + "properties": { + "power": "0" + } + }, + { + "id": 21753, + "properties": { + "power": "1" + } + }, + { + "id": 21754, + "properties": { + "power": "2" + } + }, + { + "id": 21755, + "properties": { + "power": "3" + } + }, + { + "id": 21756, + "properties": { + "power": "4" + } + }, + { + "id": 21757, + "properties": { + "power": "5" + } + }, + { + "id": 21758, + "properties": { + "power": "6" + } + }, + { + "id": 21759, + "properties": { + "power": "7" + } + }, + { + "id": 21760, + "properties": { + "power": "8" + } + }, + { + "id": 21761, + "properties": { + "power": "9" + } + }, + { + "id": 21762, + "properties": { + "power": "10" + } + }, + { + "id": 21763, + "properties": { + "power": "11" + } + }, + { + "id": 21764, + "properties": { + "power": "12" + } + }, + { + "id": 21765, + "properties": { + "power": "13" + } + }, + { + "id": 21766, + "properties": { + "power": "14" + } + }, + { + "id": 21767, + "properties": { + "power": "15" + } + } + ] + }, + "minecraft:terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12912 + } + ] + }, + "minecraft:test_block": { + "definition": { + "type": "minecraft:test", + "properties": {} + }, + "properties": { + "mode": [ + "start", + "log", + "fail", + "accept" + ] + }, + "states": [ + { + "default": true, + "id": 21738, + "properties": { + "mode": "start" + } + }, + { + "id": 21739, + "properties": { + "mode": "log" + } + }, + { + "id": 21740, + "properties": { + "mode": "fail" + } + }, + { + "id": 21741, + "properties": { + "mode": "accept" + } + } + ] + }, + "minecraft:test_instance_block": { + "definition": { + "type": "minecraft:test_instance", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21742 + } + ] + }, + "minecraft:tinted_glass": { + "definition": { + "type": "minecraft:tinted_glass", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27161 + } + ] + }, + "minecraft:tnt": { + "definition": { + "type": "minecraft:tnt", + "properties": {} + }, + "properties": { + "unstable": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 2341, + "properties": { + "unstable": "true" + } + }, + { + "default": true, + "id": 2342, + "properties": { + "unstable": "false" + } + } + ] + }, + "minecraft:torch": { + "definition": { + "type": "minecraft:torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 3370 + } + ] + }, + "minecraft:torchflower": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 100, + "id": "minecraft:night_vision" + } + ] + }, + "states": [ + { + "default": true, + "id": 2323 + } + ] + }, + "minecraft:torchflower_crop": { + "definition": { + "type": "minecraft:torchflower_crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1" + ] + }, + "states": [ + { + "default": true, + "id": 14797, + "properties": { + "age": "0" + } + }, + { + "id": 14798, + "properties": { + "age": "1" + } + } + ] + }, + "minecraft:trapped_chest": { + "definition": { + "type": "minecraft:trapped_chest", + "properties": {} + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11207, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 11208, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11209, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 11210, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11211, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 11212, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 11213, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11214, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11215, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11216, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11217, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 11218, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 11219, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11220, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11221, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11222, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11223, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 11224, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 11225, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11226, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 11227, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11228, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 11229, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 11230, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:trial_spawner": { + "definition": { + "type": "minecraft:trial_spawner", + "properties": {} + }, + "properties": { + "ominous": [ + "true", + "false" + ], + "trial_spawner_state": [ + "inactive", + "waiting_for_players", + "active", + "waiting_for_reward_ejection", + "ejecting_reward", + "cooldown" + ] + }, + "states": [ + { + "id": 32150, + "properties": { + "ominous": "true", + "trial_spawner_state": "inactive" + } + }, + { + "id": 32151, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 32152, + "properties": { + "ominous": "true", + "trial_spawner_state": "active" + } + }, + { + "id": 32153, + "properties": { + "ominous": "true", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 32154, + "properties": { + "ominous": "true", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 32155, + "properties": { + "ominous": "true", + "trial_spawner_state": "cooldown" + } + }, + { + "default": true, + "id": 32156, + "properties": { + "ominous": "false", + "trial_spawner_state": "inactive" + } + }, + { + "id": 32157, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_players" + } + }, + { + "id": 32158, + "properties": { + "ominous": "false", + "trial_spawner_state": "active" + } + }, + { + "id": 32159, + "properties": { + "ominous": "false", + "trial_spawner_state": "waiting_for_reward_ejection" + } + }, + { + "id": 32160, + "properties": { + "ominous": "false", + "trial_spawner_state": "ejecting_reward" + } + }, + { + "id": 32161, + "properties": { + "ominous": "false", + "trial_spawner_state": "cooldown" + } + } + ] + }, + "minecraft:tripwire": { + "definition": { + "type": "minecraft:tripwire", + "hook": "minecraft:tripwire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "disarmed": [ + "true", + "false" + ], + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9599, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9600, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9601, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9602, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9603, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9604, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9605, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9606, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9607, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9608, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9609, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9610, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9611, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9612, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9613, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9614, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9615, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9616, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9617, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9618, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9619, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9620, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9621, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9622, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9623, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9624, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9625, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9626, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9627, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9628, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9629, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9630, + "properties": { + "attached": "true", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9631, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9632, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9633, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9634, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9635, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9636, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9637, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9638, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9639, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9640, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9641, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9642, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9643, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9644, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9645, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9646, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9647, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9648, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9649, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9650, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9651, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9652, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9653, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9654, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9655, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9656, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9657, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9658, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9659, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9660, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9661, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9662, + "properties": { + "attached": "true", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9663, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9664, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9665, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9666, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9667, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9668, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9669, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9670, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9671, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9672, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9673, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9674, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9675, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9676, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9677, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9678, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9679, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9680, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9681, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9682, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9683, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9684, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9685, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9686, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9687, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9688, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9689, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9690, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9691, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9692, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9693, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9694, + "properties": { + "attached": "false", + "disarmed": "true", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9695, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9696, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9697, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9698, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9699, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9700, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9701, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9702, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9703, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9704, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9705, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9706, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9707, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9708, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9709, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9710, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "true", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9711, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9712, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9713, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9714, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9715, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9716, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9717, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "id": 9718, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "true", + "powered": "false", + "south": "false", + "west": "false" + } + }, + { + "id": 9719, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "true" + } + }, + { + "id": 9720, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "true", + "west": "false" + } + }, + { + "id": 9721, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "true" + } + }, + { + "id": 9722, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "true", + "south": "false", + "west": "false" + } + }, + { + "id": 9723, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "true" + } + }, + { + "id": 9724, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "true", + "west": "false" + } + }, + { + "id": 9725, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "true" + } + }, + { + "default": true, + "id": 9726, + "properties": { + "attached": "false", + "disarmed": "false", + "east": "false", + "north": "false", + "powered": "false", + "south": "false", + "west": "false" + } + } + ] + }, + "minecraft:tripwire_hook": { + "definition": { + "type": "minecraft:trip_wire_hook", + "properties": {} + }, + "properties": { + "attached": [ + "true", + "false" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 9583, + "properties": { + "attached": "true", + "facing": "north", + "powered": "true" + } + }, + { + "id": 9584, + "properties": { + "attached": "true", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9585, + "properties": { + "attached": "true", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9586, + "properties": { + "attached": "true", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9587, + "properties": { + "attached": "true", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9588, + "properties": { + "attached": "true", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9589, + "properties": { + "attached": "true", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9590, + "properties": { + "attached": "true", + "facing": "east", + "powered": "false" + } + }, + { + "id": 9591, + "properties": { + "attached": "false", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 9592, + "properties": { + "attached": "false", + "facing": "north", + "powered": "false" + } + }, + { + "id": 9593, + "properties": { + "attached": "false", + "facing": "south", + "powered": "true" + } + }, + { + "id": 9594, + "properties": { + "attached": "false", + "facing": "south", + "powered": "false" + } + }, + { + "id": 9595, + "properties": { + "attached": "false", + "facing": "west", + "powered": "true" + } + }, + { + "id": 9596, + "properties": { + "attached": "false", + "facing": "west", + "powered": "false" + } + }, + { + "id": 9597, + "properties": { + "attached": "false", + "facing": "east", + "powered": "true" + } + }, + { + "id": 9598, + "properties": { + "attached": "false", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:tube_coral": { + "definition": { + "type": "minecraft:coral_plant", + "dead": "minecraft:dead_tube_coral", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15157, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15158, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_block": { + "definition": { + "type": "minecraft:coral", + "dead": "minecraft:dead_tube_coral_block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15142 + } + ] + }, + "minecraft:tube_coral_fan": { + "definition": { + "type": "minecraft:coral_fan", + "dead": "minecraft:dead_tube_coral_fan", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15177, + "properties": { + "waterlogged": "true" + } + }, + { + "id": 15178, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:tube_coral_wall_fan": { + "definition": { + "type": "minecraft:coral_wall_fan", + "dead": "minecraft:dead_tube_coral_wall_fan", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "default": true, + "id": 15227, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 15228, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 15229, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 15230, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 15231, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 15232, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 15233, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 15234, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 23452 + } + ] + }, + "minecraft:tuff_brick_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24276, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 24277, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 24278, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24279, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 24280, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 24281, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff_bricks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 24282, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24283, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24284, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24285, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24286, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24287, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24288, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24289, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24290, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24291, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24292, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 24293, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24294, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24295, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24296, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24297, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24302, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24303, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24304, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24305, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24306, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24307, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24308, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24309, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24310, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24311, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24312, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24313, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24314, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24315, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24316, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24317, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24322, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24323, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24324, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24325, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24326, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24327, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24328, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24329, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24330, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24331, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24332, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24333, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24334, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24335, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24336, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24337, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24342, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24343, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24344, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24345, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24346, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24347, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24348, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24349, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24350, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24351, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 24352, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 24353, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 24354, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 24355, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 24356, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 24357, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 24358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 24359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 24360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 24361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_brick_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 24362, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24363, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24364, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 24365, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24366, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24367, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24368, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24369, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24370, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24371, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24372, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24373, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24374, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24375, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24376, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24377, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24378, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24379, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24380, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24381, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24382, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24383, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24384, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24385, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24386, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24387, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24388, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24389, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24390, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24391, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24392, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24393, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24394, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24395, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24396, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24397, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24398, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24399, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24400, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24401, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24402, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24403, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24404, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24405, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24406, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24407, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24408, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24409, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24410, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24411, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24412, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24413, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24414, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24415, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24416, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24417, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24418, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24419, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24420, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24421, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24422, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24423, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24424, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24425, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24426, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24427, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24428, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24429, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24430, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24431, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24432, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24433, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24434, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24435, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24436, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24437, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24438, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24439, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24440, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24441, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24442, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24443, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24444, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24445, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24446, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24447, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24448, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24449, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24450, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24451, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24452, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24453, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24454, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24455, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24456, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24457, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24458, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24459, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24460, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24461, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24462, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24463, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24464, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24465, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24466, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24467, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24468, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24469, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24470, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24471, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24472, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24473, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24474, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24475, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24476, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24477, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24478, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24479, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24480, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24481, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24482, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24483, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24484, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24485, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24486, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24487, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24488, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24489, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24490, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24491, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24492, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24493, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24494, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24495, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24496, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24497, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24498, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24499, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24500, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24501, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24502, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24503, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24504, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24505, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24506, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24507, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24508, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24509, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24510, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24511, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24512, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24513, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24514, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24515, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24516, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24517, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24518, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24519, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24520, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24521, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24522, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24523, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24524, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24525, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24526, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24527, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24528, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24529, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24530, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24531, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24532, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24533, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24534, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24535, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24536, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24537, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24538, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24539, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24540, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24541, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24542, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24543, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24544, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24545, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24546, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24547, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24548, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24549, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24550, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24551, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24552, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24553, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24554, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24555, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24556, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24557, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24558, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24559, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24560, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24561, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24562, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24563, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24564, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24565, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24566, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24567, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24568, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24569, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24570, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24571, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24572, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24573, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24574, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24575, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24576, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24577, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24578, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24579, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24580, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24581, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24582, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24583, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24584, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24585, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24586, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24587, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24588, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24589, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24590, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24591, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24592, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24593, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24594, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24595, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24596, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24597, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24598, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24599, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24600, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24601, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24602, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24603, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24604, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24605, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24606, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24607, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24608, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24609, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24610, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24611, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24612, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24613, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24614, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24615, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24616, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24617, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24618, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24619, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24620, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24621, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24622, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24623, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24624, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24625, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24626, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24627, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24628, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24629, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24630, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24631, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24632, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24633, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24634, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24635, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24636, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24637, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24638, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24639, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24640, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24641, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24642, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24643, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24644, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24645, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24646, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24647, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24648, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24649, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24650, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24651, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24652, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24653, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24654, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24655, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24656, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24657, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24658, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24659, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24660, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24661, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24662, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24663, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24664, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24665, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24666, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24667, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24668, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24669, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24670, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24671, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24672, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24673, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24674, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24675, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24676, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24677, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24678, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24679, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 24680, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 24681, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 24682, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 24683, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 24684, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 24685, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:tuff_bricks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 24275 + } + ] + }, + "minecraft:tuff_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23453, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 23454, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 23455, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23456, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 23457, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 23458, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:tuff" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23459, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23460, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23461, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23462, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23463, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23464, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23465, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23466, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23467, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23468, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23469, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23470, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23471, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23472, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23473, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23474, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23475, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23476, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23477, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23478, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23479, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23480, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23481, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23482, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23483, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23484, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23485, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23486, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23487, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23488, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23489, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23490, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23491, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23492, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23493, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23494, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23495, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23496, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23497, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23498, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23499, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23500, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23501, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23502, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23503, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23504, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23505, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23506, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23507, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23508, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23509, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23510, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23511, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23512, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23513, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23514, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23515, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23516, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23517, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23518, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23519, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23520, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23521, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23522, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23523, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23524, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23525, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23526, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23527, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23528, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 23529, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 23530, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 23531, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 23532, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 23533, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 23534, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 23535, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 23536, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 23537, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 23538, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:tuff_wall": { + "definition": { + "type": "minecraft:wall", + "properties": {} + }, + "properties": { + "east": [ + "none", + "low", + "tall" + ], + "north": [ + "none", + "low", + "tall" + ], + "south": [ + "none", + "low", + "tall" + ], + "up": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "none", + "low", + "tall" + ] + }, + "states": [ + { + "id": 23539, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23540, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23541, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "default": true, + "id": 23542, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23543, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23544, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23545, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23546, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23547, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23548, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23549, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23550, + "properties": { + "east": "none", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23551, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23552, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23553, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23554, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23555, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23556, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23557, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23558, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23559, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23560, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23561, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23562, + "properties": { + "east": "none", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23563, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23564, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23565, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23566, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23567, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23568, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23569, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23570, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23571, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23572, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23573, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23574, + "properties": { + "east": "none", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23575, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23576, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23577, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23578, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23579, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23580, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23581, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23582, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23583, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23584, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23585, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23586, + "properties": { + "east": "none", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23587, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23588, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23589, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23590, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23591, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23592, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23593, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23594, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23595, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23596, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23597, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23598, + "properties": { + "east": "none", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23599, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23600, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23601, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23602, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23603, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23604, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23605, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23606, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23607, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23608, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23609, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23610, + "properties": { + "east": "none", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23611, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23612, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23613, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23614, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23615, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23616, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23617, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23618, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23619, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23620, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23621, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23622, + "properties": { + "east": "none", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23623, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23624, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23625, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23626, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23627, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23628, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23629, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23630, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23631, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23632, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23633, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23634, + "properties": { + "east": "none", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23635, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23636, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23637, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23638, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23639, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23640, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23641, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23642, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23643, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23644, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23645, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23646, + "properties": { + "east": "none", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23647, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23648, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23649, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23650, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23651, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23652, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23653, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23654, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23655, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23656, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23657, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23658, + "properties": { + "east": "low", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23659, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23660, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23661, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23662, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23663, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23664, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23665, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23666, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23667, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23668, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23669, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23670, + "properties": { + "east": "low", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23671, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23672, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23673, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23674, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23675, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23676, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23677, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23678, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23679, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23680, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23681, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23682, + "properties": { + "east": "low", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23683, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23684, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23685, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23686, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23687, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23688, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23689, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23690, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23691, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23692, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23693, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23694, + "properties": { + "east": "low", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23695, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23696, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23697, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23698, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23699, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23700, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23701, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23702, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23703, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23704, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23705, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23706, + "properties": { + "east": "low", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23707, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23708, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23709, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23710, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23711, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23712, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23713, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23714, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23715, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23716, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23717, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23718, + "properties": { + "east": "low", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23719, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23720, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23721, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23722, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23723, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23724, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23725, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23726, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23727, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23728, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23729, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23730, + "properties": { + "east": "low", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23731, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23732, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23733, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23734, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23735, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23736, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23737, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23738, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23739, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23740, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23741, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23742, + "properties": { + "east": "low", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23743, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23744, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23745, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23746, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23747, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23748, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23749, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23750, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23751, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23752, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23753, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23754, + "properties": { + "east": "low", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23755, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23756, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23757, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23758, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23759, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23760, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23761, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23762, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23763, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23764, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23765, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23766, + "properties": { + "east": "tall", + "north": "none", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23767, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23768, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23769, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23770, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23771, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23772, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23773, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23774, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23775, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23776, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23777, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23778, + "properties": { + "east": "tall", + "north": "none", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23779, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23780, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23781, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23782, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23783, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23784, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23785, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23786, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23787, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23788, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23789, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23790, + "properties": { + "east": "tall", + "north": "none", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23791, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23792, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23793, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23794, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23795, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23796, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23797, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23798, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23799, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23800, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23801, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23802, + "properties": { + "east": "tall", + "north": "low", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23803, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23804, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23805, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23806, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23807, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23808, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23809, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23810, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23811, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23812, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23813, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23814, + "properties": { + "east": "tall", + "north": "low", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23815, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23816, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23817, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23818, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23819, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23820, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23821, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23822, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23823, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23824, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23825, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23826, + "properties": { + "east": "tall", + "north": "low", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23827, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23828, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23829, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23830, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23831, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23832, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23833, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23834, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23835, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23836, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23837, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23838, + "properties": { + "east": "tall", + "north": "tall", + "south": "none", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23839, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23840, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23841, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23842, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23843, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23844, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23845, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23846, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23847, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23848, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23849, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23850, + "properties": { + "east": "tall", + "north": "tall", + "south": "low", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23851, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23852, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23853, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23854, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23855, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23856, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "true", + "waterlogged": "false", + "west": "tall" + } + }, + { + "id": 23857, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "none" + } + }, + { + "id": 23858, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "low" + } + }, + { + "id": 23859, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "true", + "west": "tall" + } + }, + { + "id": 23860, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "none" + } + }, + { + "id": 23861, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "low" + } + }, + { + "id": 23862, + "properties": { + "east": "tall", + "north": "tall", + "south": "tall", + "up": "false", + "waterlogged": "false", + "west": "tall" + } + } + ] + }, + "minecraft:turtle_egg": { + "definition": { + "type": "minecraft:turtle_egg", + "properties": {} + }, + "properties": { + "eggs": [ + "1", + "2", + "3", + "4" + ], + "hatch": [ + "0", + "1", + "2" + ] + }, + "states": [ + { + "default": true, + "id": 15090, + "properties": { + "eggs": "1", + "hatch": "0" + } + }, + { + "id": 15091, + "properties": { + "eggs": "1", + "hatch": "1" + } + }, + { + "id": 15092, + "properties": { + "eggs": "1", + "hatch": "2" + } + }, + { + "id": 15093, + "properties": { + "eggs": "2", + "hatch": "0" + } + }, + { + "id": 15094, + "properties": { + "eggs": "2", + "hatch": "1" + } + }, + { + "id": 15095, + "properties": { + "eggs": "2", + "hatch": "2" + } + }, + { + "id": 15096, + "properties": { + "eggs": "3", + "hatch": "0" + } + }, + { + "id": 15097, + "properties": { + "eggs": "3", + "hatch": "1" + } + }, + { + "id": 15098, + "properties": { + "eggs": "3", + "hatch": "2" + } + }, + { + "id": 15099, + "properties": { + "eggs": "4", + "hatch": "0" + } + }, + { + "id": 15100, + "properties": { + "eggs": "4", + "hatch": "1" + } + }, + { + "id": 15101, + "properties": { + "eggs": "4", + "hatch": "2" + } + } + ] + }, + "minecraft:twisting_vines": { + "definition": { + "type": "minecraft:twisting_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 21004, + "properties": { + "age": "0" + } + }, + { + "id": 21005, + "properties": { + "age": "1" + } + }, + { + "id": 21006, + "properties": { + "age": "2" + } + }, + { + "id": 21007, + "properties": { + "age": "3" + } + }, + { + "id": 21008, + "properties": { + "age": "4" + } + }, + { + "id": 21009, + "properties": { + "age": "5" + } + }, + { + "id": 21010, + "properties": { + "age": "6" + } + }, + { + "id": 21011, + "properties": { + "age": "7" + } + }, + { + "id": 21012, + "properties": { + "age": "8" + } + }, + { + "id": 21013, + "properties": { + "age": "9" + } + }, + { + "id": 21014, + "properties": { + "age": "10" + } + }, + { + "id": 21015, + "properties": { + "age": "11" + } + }, + { + "id": 21016, + "properties": { + "age": "12" + } + }, + { + "id": 21017, + "properties": { + "age": "13" + } + }, + { + "id": 21018, + "properties": { + "age": "14" + } + }, + { + "id": 21019, + "properties": { + "age": "15" + } + }, + { + "id": 21020, + "properties": { + "age": "16" + } + }, + { + "id": 21021, + "properties": { + "age": "17" + } + }, + { + "id": 21022, + "properties": { + "age": "18" + } + }, + { + "id": 21023, + "properties": { + "age": "19" + } + }, + { + "id": 21024, + "properties": { + "age": "20" + } + }, + { + "id": 21025, + "properties": { + "age": "21" + } + }, + { + "id": 21026, + "properties": { + "age": "22" + } + }, + { + "id": 21027, + "properties": { + "age": "23" + } + }, + { + "id": 21028, + "properties": { + "age": "24" + } + }, + { + "id": 21029, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:twisting_vines_plant": { + "definition": { + "type": "minecraft:twisting_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21030 + } + ] + }, + "minecraft:vault": { + "definition": { + "type": "minecraft:vault", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "ominous": [ + "true", + "false" + ], + "vault_state": [ + "inactive", + "active", + "unlocking", + "ejecting" + ] + }, + "states": [ + { + "id": 32162, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 32163, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 32164, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 32165, + "properties": { + "facing": "north", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "default": true, + "id": 32166, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 32167, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 32168, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 32169, + "properties": { + "facing": "north", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 32170, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 32171, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 32172, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 32173, + "properties": { + "facing": "south", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 32174, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 32175, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 32176, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 32177, + "properties": { + "facing": "south", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 32178, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 32179, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 32180, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 32181, + "properties": { + "facing": "west", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 32182, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 32183, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 32184, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 32185, + "properties": { + "facing": "west", + "ominous": "false", + "vault_state": "ejecting" + } + }, + { + "id": 32186, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "inactive" + } + }, + { + "id": 32187, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "active" + } + }, + { + "id": 32188, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "unlocking" + } + }, + { + "id": 32189, + "properties": { + "facing": "east", + "ominous": "true", + "vault_state": "ejecting" + } + }, + { + "id": 32190, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "inactive" + } + }, + { + "id": 32191, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "active" + } + }, + { + "id": 32192, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "unlocking" + } + }, + { + "id": 32193, + "properties": { + "facing": "east", + "ominous": "false", + "vault_state": "ejecting" + } + } + ] + }, + "minecraft:verdant_froglight": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 32078, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 32079, + "properties": { + "axis": "y" + } + }, + { + "id": 32080, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:vine": { + "definition": { + "type": "minecraft:vine", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "up": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8358, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8359, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8360, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8361, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8362, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8363, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8364, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8365, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8366, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8367, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8368, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8369, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8370, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8371, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8372, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8373, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8374, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8375, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8376, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8377, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8378, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8379, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8380, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "id": 8381, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "up": "false", + "west": "false" + } + }, + { + "id": 8382, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "true" + } + }, + { + "id": 8383, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "true", + "west": "false" + } + }, + { + "id": 8384, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "true" + } + }, + { + "id": 8385, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "up": "false", + "west": "false" + } + }, + { + "id": 8386, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "true" + } + }, + { + "id": 8387, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "true", + "west": "false" + } + }, + { + "id": 8388, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8389, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "up": "false", + "west": "false" + } + } + ] + }, + "minecraft:void_air": { + "definition": { + "type": "minecraft:air", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15292 + } + ] + }, + "minecraft:wall_torch": { + "definition": { + "type": "minecraft:wall_torch", + "particle_options": "minecraft:flame", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 3371, + "properties": { + "facing": "north" + } + }, + { + "id": 3372, + "properties": { + "facing": "south" + } + }, + { + "id": 3373, + "properties": { + "facing": "west" + } + }, + { + "id": 3374, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:warped_button": { + "definition": { + "type": "minecraft:button", + "block_set_type": "warped", + "properties": {}, + "ticks_to_stay_pressed": 30 + }, + "properties": { + "face": [ + "floor", + "wall", + "ceiling" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21490, + "properties": { + "face": "floor", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21491, + "properties": { + "face": "floor", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21492, + "properties": { + "face": "floor", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21493, + "properties": { + "face": "floor", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21494, + "properties": { + "face": "floor", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21495, + "properties": { + "face": "floor", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21496, + "properties": { + "face": "floor", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21497, + "properties": { + "face": "floor", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21498, + "properties": { + "face": "wall", + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 21499, + "properties": { + "face": "wall", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21500, + "properties": { + "face": "wall", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21501, + "properties": { + "face": "wall", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21502, + "properties": { + "face": "wall", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21503, + "properties": { + "face": "wall", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21504, + "properties": { + "face": "wall", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21505, + "properties": { + "face": "wall", + "facing": "east", + "powered": "false" + } + }, + { + "id": 21506, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "true" + } + }, + { + "id": 21507, + "properties": { + "face": "ceiling", + "facing": "north", + "powered": "false" + } + }, + { + "id": 21508, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "true" + } + }, + { + "id": 21509, + "properties": { + "face": "ceiling", + "facing": "south", + "powered": "false" + } + }, + { + "id": 21510, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "true" + } + }, + { + "id": 21511, + "properties": { + "face": "ceiling", + "facing": "west", + "powered": "false" + } + }, + { + "id": 21512, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "true" + } + }, + { + "id": 21513, + "properties": { + "face": "ceiling", + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:warped_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21578, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21579, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21580, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21581, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21582, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21583, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21584, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21585, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21586, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21587, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21588, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21589, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21590, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21591, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21592, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21593, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21594, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21595, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21596, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21597, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21598, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21599, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21600, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21601, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21602, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21603, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21604, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21605, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21606, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21607, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21608, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21609, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21610, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21611, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21612, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21613, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21614, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21615, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21616, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21617, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21618, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21619, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21620, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21621, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21622, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21623, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21624, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21625, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21626, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21627, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21628, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21629, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21630, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21631, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21632, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21633, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 21634, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 21635, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 21636, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 21637, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 21638, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 21639, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 21640, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 21641, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fence": { + "definition": { + "type": "minecraft:fence", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21082, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21083, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21084, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21085, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21086, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21087, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21088, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21089, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21090, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21091, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21092, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21093, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21094, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21095, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21096, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21097, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21098, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21099, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21100, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21101, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21102, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21103, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21104, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21105, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21106, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21107, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21108, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 21109, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 21110, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 21111, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 21112, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 21113, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:warped_fence_gate": { + "definition": { + "type": "minecraft:fence_gate", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "in_wall": [ + "true", + "false" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21274, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21275, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21276, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21277, + "properties": { + "facing": "north", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21278, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21279, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21280, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 21281, + "properties": { + "facing": "north", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21282, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21283, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21284, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21285, + "properties": { + "facing": "south", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21286, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21287, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21288, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21289, + "properties": { + "facing": "south", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21290, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21291, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21292, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21293, + "properties": { + "facing": "west", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21294, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21295, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21296, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21297, + "properties": { + "facing": "west", + "in_wall": "false", + "open": "false", + "powered": "false" + } + }, + { + "id": 21298, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "true" + } + }, + { + "id": 21299, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "true", + "powered": "false" + } + }, + { + "id": 21300, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "true" + } + }, + { + "id": 21301, + "properties": { + "facing": "east", + "in_wall": "true", + "open": "false", + "powered": "false" + } + }, + { + "id": 21302, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "true" + } + }, + { + "id": 21303, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "true", + "powered": "false" + } + }, + { + "id": 21304, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "true" + } + }, + { + "id": 21305, + "properties": { + "facing": "east", + "in_wall": "false", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:warped_fungus": { + "definition": { + "type": "minecraft:nether_fungus", + "feature": "minecraft:warped_fungus_planted", + "grows_on": "minecraft:warped_nylium", + "properties": {}, + "support_blocks": "minecraft:supports_warped_fungus" + }, + "states": [ + { + "default": true, + "id": 20958 + } + ] + }, + "minecraft:warped_hanging_sign": { + "definition": { + "type": "minecraft:ceiling_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "attached": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6483, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6484, + "properties": { + "attached": "true", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6485, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6486, + "properties": { + "attached": "true", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6487, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6488, + "properties": { + "attached": "true", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6489, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6490, + "properties": { + "attached": "true", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6491, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6492, + "properties": { + "attached": "true", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6493, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6494, + "properties": { + "attached": "true", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6495, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6496, + "properties": { + "attached": "true", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6497, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6498, + "properties": { + "attached": "true", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6499, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "id": 6500, + "properties": { + "attached": "true", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6501, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6502, + "properties": { + "attached": "true", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6503, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6504, + "properties": { + "attached": "true", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6505, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6506, + "properties": { + "attached": "true", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6507, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6508, + "properties": { + "attached": "true", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6509, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6510, + "properties": { + "attached": "true", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6511, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6512, + "properties": { + "attached": "true", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6513, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6514, + "properties": { + "attached": "true", + "rotation": "15", + "waterlogged": "false" + } + }, + { + "id": 6515, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 6516, + "properties": { + "attached": "false", + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 6517, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 6518, + "properties": { + "attached": "false", + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 6519, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 6520, + "properties": { + "attached": "false", + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 6521, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 6522, + "properties": { + "attached": "false", + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 6523, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 6524, + "properties": { + "attached": "false", + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 6525, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 6526, + "properties": { + "attached": "false", + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 6527, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 6528, + "properties": { + "attached": "false", + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 6529, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 6530, + "properties": { + "attached": "false", + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 6531, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6532, + "properties": { + "attached": "false", + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 6533, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 6534, + "properties": { + "attached": "false", + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 6535, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 6536, + "properties": { + "attached": "false", + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 6537, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 6538, + "properties": { + "attached": "false", + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 6539, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 6540, + "properties": { + "attached": "false", + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 6541, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 6542, + "properties": { + "attached": "false", + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 6543, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 6544, + "properties": { + "attached": "false", + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 6545, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 6546, + "properties": { + "attached": "false", + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_hyphae": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20951, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20952, + "properties": { + "axis": "y" + } + }, + { + "id": 20953, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_nylium": { + "definition": { + "type": "minecraft:nylium", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20957 + } + ] + }, + "minecraft:warped_planks": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21033 + } + ] + }, + "minecraft:warped_pressure_plate": { + "definition": { + "type": "minecraft:pressure_plate", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21048, + "properties": { + "powered": "true" + } + }, + { + "default": true, + "id": 21049, + "properties": { + "powered": "false" + } + } + ] + }, + "minecraft:warped_roots": { + "definition": { + "type": "minecraft:nether_roots", + "properties": {}, + "support_blocks": "minecraft:supports_warped_roots" + }, + "states": [ + { + "default": true, + "id": 20960 + } + ] + }, + "minecraft:warped_shelf": { + "definition": { + "type": "minecraft:shelf", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ], + "side_chain": [ + "unconnected", + "right", + "center", + "left" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 3304, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3305, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3306, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3307, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3308, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3309, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3310, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3311, + "properties": { + "facing": "north", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3312, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 3313, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3314, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3315, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3316, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3317, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3318, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3319, + "properties": { + "facing": "north", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3320, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3321, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3322, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3323, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3324, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3325, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3326, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3327, + "properties": { + "facing": "south", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3328, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3329, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3330, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3331, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3332, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3333, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3334, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3335, + "properties": { + "facing": "south", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3336, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3337, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3338, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3339, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3340, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3341, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3342, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3343, + "properties": { + "facing": "west", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3344, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3345, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3346, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3347, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3348, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3349, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3350, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3351, + "properties": { + "facing": "west", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3352, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3353, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3354, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3355, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3356, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3357, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3358, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3359, + "properties": { + "facing": "east", + "powered": "true", + "side_chain": "left", + "waterlogged": "false" + } + }, + { + "id": 3360, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "true" + } + }, + { + "id": 3361, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "unconnected", + "waterlogged": "false" + } + }, + { + "id": 3362, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "true" + } + }, + { + "id": 3363, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "right", + "waterlogged": "false" + } + }, + { + "id": 3364, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "true" + } + }, + { + "id": 3365, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "center", + "waterlogged": "false" + } + }, + { + "id": 3366, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "true" + } + }, + { + "id": 3367, + "properties": { + "facing": "east", + "powered": "false", + "side_chain": "left", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_sign": { + "definition": { + "type": "minecraft:standing_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21674, + "properties": { + "rotation": "0", + "waterlogged": "true" + } + }, + { + "id": 21675, + "properties": { + "rotation": "0", + "waterlogged": "false" + } + }, + { + "id": 21676, + "properties": { + "rotation": "1", + "waterlogged": "true" + } + }, + { + "id": 21677, + "properties": { + "rotation": "1", + "waterlogged": "false" + } + }, + { + "id": 21678, + "properties": { + "rotation": "2", + "waterlogged": "true" + } + }, + { + "id": 21679, + "properties": { + "rotation": "2", + "waterlogged": "false" + } + }, + { + "id": 21680, + "properties": { + "rotation": "3", + "waterlogged": "true" + } + }, + { + "id": 21681, + "properties": { + "rotation": "3", + "waterlogged": "false" + } + }, + { + "id": 21682, + "properties": { + "rotation": "4", + "waterlogged": "true" + } + }, + { + "id": 21683, + "properties": { + "rotation": "4", + "waterlogged": "false" + } + }, + { + "id": 21684, + "properties": { + "rotation": "5", + "waterlogged": "true" + } + }, + { + "id": 21685, + "properties": { + "rotation": "5", + "waterlogged": "false" + } + }, + { + "id": 21686, + "properties": { + "rotation": "6", + "waterlogged": "true" + } + }, + { + "id": 21687, + "properties": { + "rotation": "6", + "waterlogged": "false" + } + }, + { + "id": 21688, + "properties": { + "rotation": "7", + "waterlogged": "true" + } + }, + { + "id": 21689, + "properties": { + "rotation": "7", + "waterlogged": "false" + } + }, + { + "id": 21690, + "properties": { + "rotation": "8", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21691, + "properties": { + "rotation": "8", + "waterlogged": "false" + } + }, + { + "id": 21692, + "properties": { + "rotation": "9", + "waterlogged": "true" + } + }, + { + "id": 21693, + "properties": { + "rotation": "9", + "waterlogged": "false" + } + }, + { + "id": 21694, + "properties": { + "rotation": "10", + "waterlogged": "true" + } + }, + { + "id": 21695, + "properties": { + "rotation": "10", + "waterlogged": "false" + } + }, + { + "id": 21696, + "properties": { + "rotation": "11", + "waterlogged": "true" + } + }, + { + "id": 21697, + "properties": { + "rotation": "11", + "waterlogged": "false" + } + }, + { + "id": 21698, + "properties": { + "rotation": "12", + "waterlogged": "true" + } + }, + { + "id": 21699, + "properties": { + "rotation": "12", + "waterlogged": "false" + } + }, + { + "id": 21700, + "properties": { + "rotation": "13", + "waterlogged": "true" + } + }, + { + "id": 21701, + "properties": { + "rotation": "13", + "waterlogged": "false" + } + }, + { + "id": 21702, + "properties": { + "rotation": "14", + "waterlogged": "true" + } + }, + { + "id": 21703, + "properties": { + "rotation": "14", + "waterlogged": "false" + } + }, + { + "id": 21704, + "properties": { + "rotation": "15", + "waterlogged": "true" + } + }, + { + "id": 21705, + "properties": { + "rotation": "15", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21040, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 21041, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 21042, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21043, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 21044, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 21045, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:warped_planks" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21386, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21387, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21388, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21389, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21390, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21391, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21392, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21393, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21394, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21395, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21396, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21397, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21398, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21399, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21400, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21401, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21402, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21403, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21404, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21405, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21406, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21407, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21408, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21409, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21410, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21411, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21412, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21413, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21414, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21415, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21416, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21417, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21418, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21419, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21420, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21421, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21422, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21423, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21424, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21425, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21426, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21427, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21428, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21429, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21430, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21431, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21432, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21433, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21434, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21435, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21436, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21437, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21438, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21439, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21440, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21441, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21442, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21443, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21444, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21445, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21446, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21447, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21448, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21449, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21450, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21451, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21452, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21453, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21454, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21455, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 21456, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 21457, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 21458, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 21459, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 21460, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 21461, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 21462, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 21463, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 21464, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 21465, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_stem": { + "definition": { + "type": "minecraft:rotated_pillar", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ] + }, + "states": [ + { + "id": 20945, + "properties": { + "axis": "x" + } + }, + { + "default": true, + "id": 20946, + "properties": { + "axis": "y" + } + }, + { + "id": 20947, + "properties": { + "axis": "z" + } + } + ] + }, + "minecraft:warped_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "warped", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21178, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21179, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21180, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21181, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21182, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21183, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21184, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21185, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21186, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21187, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21188, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21189, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21190, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21191, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21192, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21193, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21194, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21195, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21196, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21197, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21198, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21199, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21200, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21201, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21202, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21203, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21204, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21205, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21206, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21207, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21208, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21209, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21210, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21211, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21212, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21213, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21214, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21215, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21216, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21217, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21218, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21219, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21220, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21221, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21222, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21223, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21224, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21225, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21226, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21227, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21228, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21229, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21230, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21231, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21232, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21233, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21234, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21235, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21236, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21237, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 21238, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 21239, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 21240, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 21241, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_hanging_sign": { + "definition": { + "type": "minecraft:wall_hanging_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 6755, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 6756, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 6757, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 6758, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 6759, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 6760, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 6761, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 6762, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wall_sign": { + "definition": { + "type": "minecraft:wall_sign", + "properties": {}, + "wood_type": "warped" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 21714, + "properties": { + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 21715, + "properties": { + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 21716, + "properties": { + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 21717, + "properties": { + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 21718, + "properties": { + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 21719, + "properties": { + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 21720, + "properties": { + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 21721, + "properties": { + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:warped_wart_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 20959 + } + ] + }, + "minecraft:water": { + "definition": { + "type": "minecraft:liquid", + "fluid": "minecraft:water", + "properties": {} + }, + "properties": { + "level": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "default": true, + "id": 86, + "properties": { + "level": "0" + } + }, + { + "id": 87, + "properties": { + "level": "1" + } + }, + { + "id": 88, + "properties": { + "level": "2" + } + }, + { + "id": 89, + "properties": { + "level": "3" + } + }, + { + "id": 90, + "properties": { + "level": "4" + } + }, + { + "id": 91, + "properties": { + "level": "5" + } + }, + { + "id": 92, + "properties": { + "level": "6" + } + }, + { + "id": 93, + "properties": { + "level": "7" + } + }, + { + "id": 94, + "properties": { + "level": "8" + } + }, + { + "id": 95, + "properties": { + "level": "9" + } + }, + { + "id": 96, + "properties": { + "level": "10" + } + }, + { + "id": 97, + "properties": { + "level": "11" + } + }, + { + "id": 98, + "properties": { + "level": "12" + } + }, + { + "id": 99, + "properties": { + "level": "13" + } + }, + { + "id": 100, + "properties": { + "level": "14" + } + }, + { + "id": 101, + "properties": { + "level": "15" + } + } + ] + }, + "minecraft:water_cauldron": { + "definition": { + "type": "minecraft:layered_cauldron", + "interactions": "water", + "precipitation": "rain", + "properties": {} + }, + "properties": { + "level": [ + "1", + "2", + "3" + ] + }, + "states": [ + { + "default": true, + "id": 9461, + "properties": { + "level": "1" + } + }, + { + "id": 9462, + "properties": { + "level": "2" + } + }, + { + "id": 9463, + "properties": { + "level": "3" + } + } + ] + }, + "minecraft:waxed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27804 + } + ] + }, + "minecraft:waxed_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8118, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8119, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8120, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8121, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8122, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8123, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8124, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8125, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8126, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8127, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8128, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8129, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8130, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8131, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8132, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8133, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8134, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8135, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8136, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8137, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8138, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8139, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8140, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8141, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8142, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8143, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8144, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8145, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8146, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8147, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8148, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8149, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_copper_block": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27786 + } + ] + }, + "minecraft:waxed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29552, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29553, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29554, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29555, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8276, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8277, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8278, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8279, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8280, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8281, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29664, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29665, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29666, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29667, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29668, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29669, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29670, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29671, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29672, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29673, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29674, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29675, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29676, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29677, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29678, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29679, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29680, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29681, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29682, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29683, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29684, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29685, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29686, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29687, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28752, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28753, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28754, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28755, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28756, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28757, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28758, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28759, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28760, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28761, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28762, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28763, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28764, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28765, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28766, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28767, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28768, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28769, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28770, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28771, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28772, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28773, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28774, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28775, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28776, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28777, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28778, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28779, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28780, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28781, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28782, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28783, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28784, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28785, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28786, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28787, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28788, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28789, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28790, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28791, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28792, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28793, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28794, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28795, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28796, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28797, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28798, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28799, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28800, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28801, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28802, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28803, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28804, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28805, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28806, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28807, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28808, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28809, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28810, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28811, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28812, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28813, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28814, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28815, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "unaffected" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29888, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29889, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29890, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29891, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29892, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29893, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29894, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29895, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29896, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29897, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29898, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29899, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29900, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29901, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29902, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29903, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29904, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29905, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29906, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29907, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29908, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29909, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29910, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29911, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29912, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29913, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29914, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29915, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29916, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29917, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29918, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29919, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29528, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29529, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20861, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20862, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20863, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20864, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29264, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29265, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29266, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29267, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29268, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29269, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29270, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29271, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29272, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29273, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29274, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29275, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29276, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29277, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29278, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29279, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29280, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29281, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29282, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29283, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29284, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29285, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29286, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29287, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29288, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29289, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29290, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29291, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29292, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29293, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29294, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29295, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29296, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29297, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29298, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29299, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29300, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29301, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29302, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29303, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29304, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29305, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29306, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29307, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29308, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29309, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29310, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29311, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29312, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29313, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29314, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29315, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29316, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29317, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29318, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29319, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29320, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29321, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29322, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29323, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29324, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29325, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29326, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29327, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27796 + } + ] + }, + "minecraft:waxed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28472, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28473, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28474, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28475, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28476, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28477, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28128, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28129, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28130, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28131, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28132, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28133, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28134, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28135, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28136, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28137, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28138, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28139, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28140, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28141, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28142, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28143, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28144, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28145, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28146, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28147, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28148, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28149, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28150, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28151, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28152, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28153, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28154, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28155, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28156, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28157, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28158, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28159, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28160, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28161, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28162, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28163, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28164, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28165, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28166, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28167, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28168, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28169, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28170, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28171, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28172, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28173, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28174, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28175, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28176, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28177, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28178, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28179, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28180, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28181, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28182, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28183, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28184, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28185, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28186, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28187, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28188, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28189, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28190, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28191, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28192, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28193, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28194, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28195, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28196, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28197, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28198, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28199, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28200, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28201, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28202, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28203, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28204, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28205, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28206, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28207, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27805 + } + ] + }, + "minecraft:waxed_exposed_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27787 + } + ] + }, + "minecraft:waxed_exposed_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8150, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8151, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8152, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8153, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8154, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8155, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8156, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8157, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8158, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8159, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8160, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8161, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8162, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8163, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8164, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8165, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8166, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8167, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8168, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8169, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8170, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8171, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8172, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8173, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8174, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8175, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8176, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8177, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8178, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8179, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8180, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8181, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29556, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29557, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29558, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29559, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8282, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8283, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8284, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8285, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8286, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8287, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest.close", + "open_sound": "minecraft:block.copper_chest.open", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29688, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29689, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29690, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29691, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29692, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29693, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29694, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29695, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29696, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29697, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29698, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29699, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29700, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29701, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29702, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29703, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29704, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29705, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29706, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29707, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29708, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29709, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29710, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29711, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28816, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28817, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28818, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28819, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28820, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28821, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28822, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28823, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28824, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28825, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28826, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28827, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28828, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28829, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28830, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28831, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28832, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28833, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28834, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28835, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28836, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28837, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28838, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28839, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28840, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28841, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28842, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28843, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28844, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28845, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28846, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28847, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28848, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28849, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28850, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28851, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28852, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28853, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28854, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28855, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28856, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28857, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28858, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28859, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28860, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28861, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28862, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28863, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28864, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28865, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28866, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28867, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28868, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28869, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28870, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28871, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28872, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28873, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28874, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28875, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28876, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28877, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28878, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28879, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "exposed" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29920, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29921, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29922, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29923, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29924, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29925, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29926, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29927, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29928, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29929, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29930, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29931, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29932, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29933, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29934, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29935, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29936, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29937, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29938, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29939, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29940, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29941, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29942, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29943, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29944, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29945, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29946, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29947, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29948, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29949, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29950, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29951, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29530, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29531, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20865, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20866, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20867, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20868, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29328, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29329, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29330, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29331, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29332, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29333, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29334, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29335, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29336, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29337, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29338, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29339, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29340, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29341, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29342, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29343, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29344, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29345, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29346, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29347, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29348, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29349, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29350, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29351, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29352, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29353, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29354, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29355, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29356, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29357, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29358, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29359, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29360, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29361, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29362, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29363, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29364, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29365, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29366, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29367, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29368, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29369, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29370, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29371, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29372, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29373, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29374, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29375, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29376, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29377, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29378, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29379, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29380, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29381, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29382, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29383, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29384, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29385, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29386, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29387, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29388, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29389, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29390, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29391, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27797 + } + ] + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28478, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28479, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28480, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28481, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28482, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28483, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_exposed_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28208, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28209, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28210, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28211, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28212, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28213, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28214, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28215, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28216, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28217, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28218, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28219, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28220, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28221, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28222, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28223, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28224, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28225, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28226, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28227, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28228, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28229, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28230, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28231, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28232, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28233, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28234, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28235, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28236, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28237, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28238, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28239, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28240, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28241, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28242, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28243, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28244, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28245, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28246, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28247, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28248, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28249, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28250, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28251, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28252, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28253, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28254, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28255, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28256, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28257, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28258, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28259, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28260, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28261, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28262, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28263, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28264, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28265, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28266, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28267, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28268, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28269, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28270, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28271, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28272, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28273, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28274, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28275, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28276, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28277, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28278, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28279, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28280, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28281, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28282, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28283, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28284, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28285, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28286, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28287, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_exposed_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30136, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30137, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30138, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30139, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30140, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30141, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30142, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30143, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30144, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30145, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30146, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30147, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30148, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30149, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30150, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30151, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30152, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30153, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30154, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30155, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30156, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30157, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30158, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30159, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30112, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30113, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30114, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30115, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30116, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30117, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30118, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30119, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30120, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30121, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30122, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30123, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30124, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30125, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30126, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30127, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30128, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30129, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30130, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30131, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30132, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30133, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30134, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30135, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27807 + } + ] + }, + "minecraft:waxed_oxidized_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27789 + } + ] + }, + "minecraft:waxed_oxidized_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8214, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8215, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8216, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8217, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8218, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8219, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8220, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8221, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8222, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8223, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8224, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8225, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8226, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8227, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8228, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8229, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8230, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8231, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8232, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8233, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8234, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8235, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8236, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8237, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8238, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8239, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8240, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8241, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8242, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8243, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8244, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8245, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29564, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29565, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29566, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29567, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8294, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8295, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8296, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8297, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8298, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8299, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest_oxidized.close", + "open_sound": "minecraft:block.copper_chest_oxidized.open", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29736, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29737, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29738, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29739, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29740, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29741, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29742, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29743, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29744, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29745, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29746, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29747, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29748, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29749, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29750, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29751, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29752, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29753, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29754, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29755, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29756, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29757, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29758, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29759, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28944, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28945, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28946, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28947, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28948, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28949, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28950, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28951, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28952, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28953, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28954, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28955, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28956, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28957, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28958, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28959, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28960, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28961, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28962, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28963, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28964, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28965, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28966, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28967, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28968, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28969, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28970, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28971, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28972, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28973, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28974, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28975, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28976, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28977, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28978, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28979, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28980, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28981, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28982, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28983, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28984, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28985, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28986, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28987, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28988, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28989, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28990, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28991, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28992, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28993, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28994, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28995, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28996, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28997, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28998, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28999, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 29000, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 29001, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 29002, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 29003, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 29004, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 29005, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 29006, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 29007, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "oxidized" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29984, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29985, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29986, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29987, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29988, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29989, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29990, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29991, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29992, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29993, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29994, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29995, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29996, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29997, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29998, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29999, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 30000, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 30001, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 30002, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 30003, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 30004, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 30005, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 30006, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 30007, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 30008, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 30009, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 30010, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 30011, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 30012, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 30013, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 30014, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 30015, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29534, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29535, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20873, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20874, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20875, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20876, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29456, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29457, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29458, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29459, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29460, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29461, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29462, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29463, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29464, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29465, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29466, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29467, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29468, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29469, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29470, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29471, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29472, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29473, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29474, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29475, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29476, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29477, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29478, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29479, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29480, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29481, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29482, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29483, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29484, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29485, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29486, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29487, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29488, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29489, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29490, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29491, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29492, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29493, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29494, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29495, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29496, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29497, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29498, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29499, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29500, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29501, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29502, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29503, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29504, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29505, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29506, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29507, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29508, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29509, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29510, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29511, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29512, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29513, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29514, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29515, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29516, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29517, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29518, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29519, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27799 + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28490, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28491, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28492, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28493, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28494, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28495, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_oxidized_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28368, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28369, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28370, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28371, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28372, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28373, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28374, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28375, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28376, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28377, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28378, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28379, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28380, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28381, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28382, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28383, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28384, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28385, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28386, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28387, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28388, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28389, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28390, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28391, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28392, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28393, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28394, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28395, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28396, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28397, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28398, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28399, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28400, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28401, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28402, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28403, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28404, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28405, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28406, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28407, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28408, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28409, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28410, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28411, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28412, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28413, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28414, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28415, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28416, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28417, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28418, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28419, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28420, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28421, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28422, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28423, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28424, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28425, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28426, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28427, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28428, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28429, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28430, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28431, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28432, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28433, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28434, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28435, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28436, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28437, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28438, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28439, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28440, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28441, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28442, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28443, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28444, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28445, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28446, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28447, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_oxidized_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30184, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30185, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30186, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30187, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30188, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30189, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30190, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30191, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30192, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30193, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30194, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30195, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30196, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30197, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30198, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30199, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30200, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30201, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30202, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30203, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30204, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30205, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30206, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30207, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_chiseled_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27806 + } + ] + }, + "minecraft:waxed_weathered_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27788 + } + ] + }, + "minecraft:waxed_weathered_copper_bars": { + "definition": { + "type": "minecraft:iron_bars", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8182, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8183, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8184, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8185, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8186, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8187, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8188, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8189, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8190, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8191, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8192, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8193, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8194, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8195, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8196, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8197, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8198, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8199, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8200, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8201, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8202, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8203, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8204, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8205, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8206, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8207, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8208, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8209, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8210, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8211, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8212, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8213, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_bulb": { + "definition": { + "type": "minecraft:copper_bulb_block", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29560, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29561, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29562, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29563, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_chain": { + "definition": { + "type": "minecraft:chain", + "properties": {} + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8288, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8289, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8290, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8291, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8292, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8293, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_chest": { + "definition": { + "type": "minecraft:copper_chest", + "close_sound": "minecraft:block.copper_chest_weathered.close", + "open_sound": "minecraft:block.copper_chest_weathered.open", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29712, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29713, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29714, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29715, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29716, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29717, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29718, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29719, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29720, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29721, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29722, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29723, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29724, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29725, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29726, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29727, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29728, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29729, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29730, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29731, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29732, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29733, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29734, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29735, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_door": { + "definition": { + "type": "minecraft:door", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28880, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28881, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28882, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28883, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28884, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28885, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28886, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28887, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28888, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28889, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28890, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28891, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28892, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28893, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28894, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28895, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28896, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28897, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28898, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28899, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28900, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28901, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28902, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28903, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28904, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28905, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28906, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28907, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28908, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28909, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28910, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28911, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28912, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28913, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28914, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28915, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28916, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28917, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28918, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28919, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28920, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28921, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28922, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28923, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28924, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28925, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28926, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28927, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28928, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28929, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28930, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28931, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28932, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28933, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28934, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28935, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28936, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28937, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28938, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28939, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28940, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28941, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28942, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28943, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "definition": { + "type": "minecraft:copper_golem_statue", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29952, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29953, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29954, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29955, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29956, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29957, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29958, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29959, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29960, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29961, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29962, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29963, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29964, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29965, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29966, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29967, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29968, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29969, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29970, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29971, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29972, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29973, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29974, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29975, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29976, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29977, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29978, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29979, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29980, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29981, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29982, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29983, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_grate": { + "definition": { + "type": "minecraft:waterlogged_transparent", + "properties": {} + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29532, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29533, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_lantern": { + "definition": { + "type": "minecraft:lantern", + "properties": {} + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20869, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20870, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20871, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20872, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:trapdoor", + "block_set_type": "copper", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29392, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29393, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29394, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29395, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29396, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29397, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29398, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29399, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29400, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29401, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29402, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29403, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29404, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29405, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29406, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29407, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29408, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29409, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29410, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29411, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29412, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29413, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29414, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29415, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29416, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29417, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29418, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29419, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29420, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29421, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29422, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29423, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29424, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29425, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29426, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29427, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29428, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29429, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29430, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29431, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29432, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29433, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29434, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29435, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29436, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29437, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29438, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29439, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29440, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29441, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29442, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29443, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29444, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29445, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29446, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29447, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29448, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29449, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29450, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29451, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29452, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29453, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29454, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29455, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 27798 + } + ] + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:slab", + "properties": {} + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28484, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28485, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28486, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28487, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28488, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28489, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:stair", + "base_state": { + "Name": "minecraft:waxed_weathered_cut_copper" + }, + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28288, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28289, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28290, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28291, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28292, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28293, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28294, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28295, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28296, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28297, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28298, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28299, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28300, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28301, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28302, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28303, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28304, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28305, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28306, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28307, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28308, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28309, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28310, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28311, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28312, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28313, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28314, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28315, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28316, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28317, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28318, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28319, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28320, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28321, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28322, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28323, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28324, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28325, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28326, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28327, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28328, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28329, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28330, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28331, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28332, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28333, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28334, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28335, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28336, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28337, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28338, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28339, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28340, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28341, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28342, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28343, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28344, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28345, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28346, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28347, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28348, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28349, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28350, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28351, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28352, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28353, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28354, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28355, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28356, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28357, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28358, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28359, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28360, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28361, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28362, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28363, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28364, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28365, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28366, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28367, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:waxed_weathered_lightning_rod": { + "definition": { + "type": "minecraft:lightning_rod", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30160, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30161, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30162, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30163, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30164, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30165, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30166, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30167, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30168, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30169, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30170, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30171, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30172, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30173, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30174, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30175, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30176, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30177, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30178, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30179, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30180, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30181, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30182, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30183, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_chiseled_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 27802 + } + ] + }, + "minecraft:weathered_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 27784 + } + ] + }, + "minecraft:weathered_copper_bars": { + "definition": { + "type": "minecraft:weathering_copper_bar", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8054, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8055, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8056, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8057, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8058, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8059, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8060, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8061, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8062, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8063, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8064, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8065, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8066, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8067, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8068, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8069, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8070, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8071, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8072, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8073, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8074, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8075, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8076, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8077, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8078, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8079, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8080, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 8081, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 8082, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 8083, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 8084, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 8085, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:weathered_copper_bulb": { + "definition": { + "type": "minecraft:weathering_copper_bulb", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "lit": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29544, + "properties": { + "lit": "true", + "powered": "true" + } + }, + { + "id": 29545, + "properties": { + "lit": "true", + "powered": "false" + } + }, + { + "id": 29546, + "properties": { + "lit": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 29547, + "properties": { + "lit": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_chain": { + "definition": { + "type": "minecraft:weathering_copper_chain", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "axis": [ + "x", + "y", + "z" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 8264, + "properties": { + "axis": "x", + "waterlogged": "true" + } + }, + { + "id": 8265, + "properties": { + "axis": "x", + "waterlogged": "false" + } + }, + { + "id": 8266, + "properties": { + "axis": "y", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 8267, + "properties": { + "axis": "y", + "waterlogged": "false" + } + }, + { + "id": 8268, + "properties": { + "axis": "z", + "waterlogged": "true" + } + }, + { + "id": 8269, + "properties": { + "axis": "z", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_chest": { + "definition": { + "type": "minecraft:weathering_copper_chest", + "close_sound": "minecraft:block.copper_chest_weathered.close", + "open_sound": "minecraft:block.copper_chest_weathered.open", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "single", + "left", + "right" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29616, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29617, + "properties": { + "type": "single", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29618, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29619, + "properties": { + "type": "left", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29620, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29621, + "properties": { + "type": "right", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29622, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29623, + "properties": { + "type": "single", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29624, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29625, + "properties": { + "type": "left", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29626, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29627, + "properties": { + "type": "right", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29628, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29629, + "properties": { + "type": "single", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29630, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29631, + "properties": { + "type": "left", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29632, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29633, + "properties": { + "type": "right", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29634, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29635, + "properties": { + "type": "single", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29636, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29637, + "properties": { + "type": "left", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29638, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29639, + "properties": { + "type": "right", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_door": { + "definition": { + "type": "minecraft:weathering_copper_door", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "upper", + "lower" + ], + "hinge": [ + "left", + "right" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28624, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28625, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28626, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28627, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28628, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28629, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28630, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28631, + "properties": { + "facing": "north", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28632, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28633, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28634, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "default": true, + "id": 28635, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28636, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28637, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28638, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28639, + "properties": { + "facing": "north", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28640, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28641, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28642, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28643, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28644, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28645, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28646, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28647, + "properties": { + "facing": "south", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28648, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28649, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28650, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28651, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28652, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28653, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28654, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28655, + "properties": { + "facing": "south", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28656, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28657, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28658, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28659, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28660, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28661, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28662, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28663, + "properties": { + "facing": "west", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28664, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28665, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28666, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28667, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28668, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28669, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28670, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28671, + "properties": { + "facing": "west", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28672, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28673, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28674, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28675, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28676, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28677, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28678, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28679, + "properties": { + "facing": "east", + "half": "upper", + "hinge": "right", + "open": "false", + "powered": "false" + } + }, + { + "id": 28680, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "true" + } + }, + { + "id": 28681, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "true", + "powered": "false" + } + }, + { + "id": 28682, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "true" + } + }, + { + "id": 28683, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "left", + "open": "false", + "powered": "false" + } + }, + { + "id": 28684, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "true" + } + }, + { + "id": 28685, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "true", + "powered": "false" + } + }, + { + "id": 28686, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "true" + } + }, + { + "id": 28687, + "properties": { + "facing": "east", + "half": "lower", + "hinge": "right", + "open": "false", + "powered": "false" + } + } + ] + }, + "minecraft:weathered_copper_golem_statue": { + "definition": { + "type": "minecraft:weathering_copper_golem_statue", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "copper_golem_pose": [ + "standing", + "sitting", + "running", + "star" + ], + "facing": [ + "north", + "south", + "west", + "east" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29824, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29825, + "properties": { + "copper_golem_pose": "standing", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29826, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29827, + "properties": { + "copper_golem_pose": "standing", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29828, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29829, + "properties": { + "copper_golem_pose": "standing", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29830, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29831, + "properties": { + "copper_golem_pose": "standing", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29832, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29833, + "properties": { + "copper_golem_pose": "sitting", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29834, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29835, + "properties": { + "copper_golem_pose": "sitting", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29836, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29837, + "properties": { + "copper_golem_pose": "sitting", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29838, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29839, + "properties": { + "copper_golem_pose": "sitting", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29840, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29841, + "properties": { + "copper_golem_pose": "running", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29842, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29843, + "properties": { + "copper_golem_pose": "running", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29844, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29845, + "properties": { + "copper_golem_pose": "running", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29846, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29847, + "properties": { + "copper_golem_pose": "running", + "facing": "east", + "waterlogged": "false" + } + }, + { + "id": 29848, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "true" + } + }, + { + "id": 29849, + "properties": { + "copper_golem_pose": "star", + "facing": "north", + "waterlogged": "false" + } + }, + { + "id": 29850, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "true" + } + }, + { + "id": 29851, + "properties": { + "copper_golem_pose": "star", + "facing": "south", + "waterlogged": "false" + } + }, + { + "id": 29852, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "true" + } + }, + { + "id": 29853, + "properties": { + "copper_golem_pose": "star", + "facing": "west", + "waterlogged": "false" + } + }, + { + "id": 29854, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "true" + } + }, + { + "id": 29855, + "properties": { + "copper_golem_pose": "star", + "facing": "east", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_grate": { + "definition": { + "type": "minecraft:weathering_copper_grate", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29524, + "properties": { + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29525, + "properties": { + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_lantern": { + "definition": { + "type": "minecraft:weathering_lantern", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "hanging": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 20853, + "properties": { + "hanging": "true", + "waterlogged": "true" + } + }, + { + "id": 20854, + "properties": { + "hanging": "true", + "waterlogged": "false" + } + }, + { + "id": 20855, + "properties": { + "hanging": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 20856, + "properties": { + "hanging": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_copper_trapdoor": { + "definition": { + "type": "minecraft:weathering_copper_trapdoor", + "block_set_type": "copper", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "open": [ + "true", + "false" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 29136, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29137, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29138, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29139, + "properties": { + "facing": "north", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29140, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29141, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29142, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29143, + "properties": { + "facing": "north", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29144, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29145, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29146, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29147, + "properties": { + "facing": "north", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29148, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29149, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29150, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 29151, + "properties": { + "facing": "north", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29152, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29153, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29154, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29155, + "properties": { + "facing": "south", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29156, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29157, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29158, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29159, + "properties": { + "facing": "south", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29160, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29161, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29162, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29163, + "properties": { + "facing": "south", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29164, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29165, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29166, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29167, + "properties": { + "facing": "south", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29168, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29169, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29170, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29171, + "properties": { + "facing": "west", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29172, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29173, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29174, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29175, + "properties": { + "facing": "west", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29176, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29177, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29178, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29179, + "properties": { + "facing": "west", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29180, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29181, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29182, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29183, + "properties": { + "facing": "west", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29184, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29185, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29186, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29187, + "properties": { + "facing": "east", + "half": "top", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29188, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29189, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29190, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29191, + "properties": { + "facing": "east", + "half": "top", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29192, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29193, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29194, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29195, + "properties": { + "facing": "east", + "half": "bottom", + "open": "true", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 29196, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 29197, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 29198, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 29199, + "properties": { + "facing": "east", + "half": "bottom", + "open": "false", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper": { + "definition": { + "type": "minecraft:weathering_copper_full", + "properties": {}, + "weathering_state": "weathered" + }, + "states": [ + { + "default": true, + "id": 27794 + } + ] + }, + "minecraft:weathered_cut_copper_slab": { + "definition": { + "type": "minecraft:weathering_copper_slab", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "type": [ + "top", + "bottom", + "double" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 28460, + "properties": { + "type": "top", + "waterlogged": "true" + } + }, + { + "id": 28461, + "properties": { + "type": "top", + "waterlogged": "false" + } + }, + { + "id": 28462, + "properties": { + "type": "bottom", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 28463, + "properties": { + "type": "bottom", + "waterlogged": "false" + } + }, + { + "id": 28464, + "properties": { + "type": "double", + "waterlogged": "true" + } + }, + { + "id": 28465, + "properties": { + "type": "double", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_cut_copper_stairs": { + "definition": { + "type": "minecraft:weathering_copper_stair", + "base_state": { + "Name": "minecraft:weathered_cut_copper" + }, + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "half": [ + "top", + "bottom" + ], + "shape": [ + "straight", + "inner_left", + "inner_right", + "outer_left", + "outer_right" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 27968, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27969, + "properties": { + "facing": "north", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27970, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27971, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27972, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27973, + "properties": { + "facing": "north", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27974, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27975, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27976, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27977, + "properties": { + "facing": "north", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27978, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 27979, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27980, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27981, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27982, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27983, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27984, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27985, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27986, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27987, + "properties": { + "facing": "north", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27988, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27989, + "properties": { + "facing": "south", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 27990, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 27991, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 27992, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 27993, + "properties": { + "facing": "south", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 27994, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 27995, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 27996, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 27997, + "properties": { + "facing": "south", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 27998, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 27999, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28000, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28001, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28002, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28003, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28004, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28005, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28006, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28007, + "properties": { + "facing": "south", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28008, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28009, + "properties": { + "facing": "west", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28010, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28011, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28012, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28013, + "properties": { + "facing": "west", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28014, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28015, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28016, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28017, + "properties": { + "facing": "west", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28018, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28019, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28020, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28021, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28022, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28023, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28024, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28025, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28026, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28027, + "properties": { + "facing": "west", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28028, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28029, + "properties": { + "facing": "east", + "half": "top", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28030, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28031, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28032, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28033, + "properties": { + "facing": "east", + "half": "top", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28034, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28035, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28036, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28037, + "properties": { + "facing": "east", + "half": "top", + "shape": "outer_right", + "waterlogged": "false" + } + }, + { + "id": 28038, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "true" + } + }, + { + "id": 28039, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "straight", + "waterlogged": "false" + } + }, + { + "id": 28040, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "true" + } + }, + { + "id": 28041, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_left", + "waterlogged": "false" + } + }, + { + "id": 28042, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "true" + } + }, + { + "id": 28043, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "inner_right", + "waterlogged": "false" + } + }, + { + "id": 28044, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "true" + } + }, + { + "id": 28045, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_left", + "waterlogged": "false" + } + }, + { + "id": 28046, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "true" + } + }, + { + "id": 28047, + "properties": { + "facing": "east", + "half": "bottom", + "shape": "outer_right", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weathered_lightning_rod": { + "definition": { + "type": "minecraft:weathering_lightning_rod", + "properties": {}, + "weathering_state": "weathered" + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ], + "powered": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 30064, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30065, + "properties": { + "facing": "north", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30066, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30067, + "properties": { + "facing": "north", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30068, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30069, + "properties": { + "facing": "east", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30070, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30071, + "properties": { + "facing": "east", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30072, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30073, + "properties": { + "facing": "south", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30074, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30075, + "properties": { + "facing": "south", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30076, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30077, + "properties": { + "facing": "west", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30078, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30079, + "properties": { + "facing": "west", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30080, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30081, + "properties": { + "facing": "up", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30082, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 30083, + "properties": { + "facing": "up", + "powered": "false", + "waterlogged": "false" + } + }, + { + "id": 30084, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "true" + } + }, + { + "id": 30085, + "properties": { + "facing": "down", + "powered": "true", + "waterlogged": "false" + } + }, + { + "id": 30086, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "true" + } + }, + { + "id": 30087, + "properties": { + "facing": "down", + "powered": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:weeping_vines": { + "definition": { + "type": "minecraft:weeping_vines", + "properties": {} + }, + "properties": { + "age": [ + "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" + ] + }, + "states": [ + { + "default": true, + "id": 20977, + "properties": { + "age": "0" + } + }, + { + "id": 20978, + "properties": { + "age": "1" + } + }, + { + "id": 20979, + "properties": { + "age": "2" + } + }, + { + "id": 20980, + "properties": { + "age": "3" + } + }, + { + "id": 20981, + "properties": { + "age": "4" + } + }, + { + "id": 20982, + "properties": { + "age": "5" + } + }, + { + "id": 20983, + "properties": { + "age": "6" + } + }, + { + "id": 20984, + "properties": { + "age": "7" + } + }, + { + "id": 20985, + "properties": { + "age": "8" + } + }, + { + "id": 20986, + "properties": { + "age": "9" + } + }, + { + "id": 20987, + "properties": { + "age": "10" + } + }, + { + "id": 20988, + "properties": { + "age": "11" + } + }, + { + "id": 20989, + "properties": { + "age": "12" + } + }, + { + "id": 20990, + "properties": { + "age": "13" + } + }, + { + "id": 20991, + "properties": { + "age": "14" + } + }, + { + "id": 20992, + "properties": { + "age": "15" + } + }, + { + "id": 20993, + "properties": { + "age": "16" + } + }, + { + "id": 20994, + "properties": { + "age": "17" + } + }, + { + "id": 20995, + "properties": { + "age": "18" + } + }, + { + "id": 20996, + "properties": { + "age": "19" + } + }, + { + "id": 20997, + "properties": { + "age": "20" + } + }, + { + "id": 20998, + "properties": { + "age": "21" + } + }, + { + "id": 20999, + "properties": { + "age": "22" + } + }, + { + "id": 21000, + "properties": { + "age": "23" + } + }, + { + "id": 21001, + "properties": { + "age": "24" + } + }, + { + "id": 21002, + "properties": { + "age": "25" + } + } + ] + }, + "minecraft:weeping_vines_plant": { + "definition": { + "type": "minecraft:weeping_vines_plant", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 21003 + } + ] + }, + "minecraft:wet_sponge": { + "definition": { + "type": "minecraft:wet_sponge", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 561 + } + ] + }, + "minecraft:wheat": { + "definition": { + "type": "minecraft:crop", + "properties": {} + }, + "properties": { + "age": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7" + ] + }, + "states": [ + { + "default": true, + "id": 5311, + "properties": { + "age": "0" + } + }, + { + "id": 5312, + "properties": { + "age": "1" + } + }, + { + "id": 5313, + "properties": { + "age": "2" + } + }, + { + "id": 5314, + "properties": { + "age": "3" + } + }, + { + "id": 5315, + "properties": { + "age": "4" + } + }, + { + "id": 5316, + "properties": { + "age": "5" + } + }, + { + "id": 5317, + "properties": { + "age": "6" + } + }, + { + "id": 5318, + "properties": { + "age": "7" + } + } + ] + }, + "minecraft:white_banner": { + "definition": { + "type": "minecraft:banner", + "color": "white", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12927, + "properties": { + "rotation": "0" + } + }, + { + "id": 12928, + "properties": { + "rotation": "1" + } + }, + { + "id": 12929, + "properties": { + "rotation": "2" + } + }, + { + "id": 12930, + "properties": { + "rotation": "3" + } + }, + { + "id": 12931, + "properties": { + "rotation": "4" + } + }, + { + "id": 12932, + "properties": { + "rotation": "5" + } + }, + { + "id": 12933, + "properties": { + "rotation": "6" + } + }, + { + "id": 12934, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12935, + "properties": { + "rotation": "8" + } + }, + { + "id": 12936, + "properties": { + "rotation": "9" + } + }, + { + "id": 12937, + "properties": { + "rotation": "10" + } + }, + { + "id": 12938, + "properties": { + "rotation": "11" + } + }, + { + "id": 12939, + "properties": { + "rotation": "12" + } + }, + { + "id": 12940, + "properties": { + "rotation": "13" + } + }, + { + "id": 12941, + "properties": { + "rotation": "14" + } + }, + { + "id": 12942, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:white_bed": { + "definition": { + "type": "minecraft:bed", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1931, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1932, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1933, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1934, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1935, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1936, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1937, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1938, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1939, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1940, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1941, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1942, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1943, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1944, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1945, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 1946, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:white_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23112, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23113, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23114, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23115, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23116, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23117, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23118, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23119, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23120, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23121, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23122, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23123, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23124, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23125, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23126, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23127, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:white_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:white_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23370, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23371, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:white_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12896 + } + ] + }, + "minecraft:white_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15030 + } + ] + }, + "minecraft:white_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:white_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15046 + } + ] + }, + "minecraft:white_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14966, + "properties": { + "facing": "north" + } + }, + { + "id": 14967, + "properties": { + "facing": "south" + } + }, + { + "id": 14968, + "properties": { + "facing": "west" + } + }, + { + "id": 14969, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14870, + "properties": { + "facing": "north" + } + }, + { + "id": 14871, + "properties": { + "facing": "east" + } + }, + { + "id": 14872, + "properties": { + "facing": "south" + } + }, + { + "id": 14873, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14874, + "properties": { + "facing": "up" + } + }, + { + "id": 14875, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:white_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "white", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7098 + } + ] + }, + "minecraft:white_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "white", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11460, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11461, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11462, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11463, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11464, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11465, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11466, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11467, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11468, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11469, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11470, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11471, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11472, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11473, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11474, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11475, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11476, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11477, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11478, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11479, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11480, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11481, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11482, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11483, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11484, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11485, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11486, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11487, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11488, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11489, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11490, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11491, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:white_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11444 + } + ] + }, + "minecraft:white_tulip": { + "definition": { + "type": "minecraft:flower", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:weakness" + } + ] + }, + "states": [ + { + "default": true, + "id": 2330 + } + ] + }, + "minecraft:white_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "white", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13183, + "properties": { + "facing": "north" + } + }, + { + "id": 13184, + "properties": { + "facing": "south" + } + }, + { + "id": 13185, + "properties": { + "facing": "west" + } + }, + { + "id": 13186, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:white_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2293 + } + ] + }, + "minecraft:wildflowers": { + "definition": { + "type": "minecraft:flower_bed", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "flower_amount": [ + "1", + "2", + "3", + "4" + ] + }, + "states": [ + { + "default": true, + "id": 30323, + "properties": { + "facing": "north", + "flower_amount": "1" + } + }, + { + "id": 30324, + "properties": { + "facing": "north", + "flower_amount": "2" + } + }, + { + "id": 30325, + "properties": { + "facing": "north", + "flower_amount": "3" + } + }, + { + "id": 30326, + "properties": { + "facing": "north", + "flower_amount": "4" + } + }, + { + "id": 30327, + "properties": { + "facing": "south", + "flower_amount": "1" + } + }, + { + "id": 30328, + "properties": { + "facing": "south", + "flower_amount": "2" + } + }, + { + "id": 30329, + "properties": { + "facing": "south", + "flower_amount": "3" + } + }, + { + "id": 30330, + "properties": { + "facing": "south", + "flower_amount": "4" + } + }, + { + "id": 30331, + "properties": { + "facing": "west", + "flower_amount": "1" + } + }, + { + "id": 30332, + "properties": { + "facing": "west", + "flower_amount": "2" + } + }, + { + "id": 30333, + "properties": { + "facing": "west", + "flower_amount": "3" + } + }, + { + "id": 30334, + "properties": { + "facing": "west", + "flower_amount": "4" + } + }, + { + "id": 30335, + "properties": { + "facing": "east", + "flower_amount": "1" + } + }, + { + "id": 30336, + "properties": { + "facing": "east", + "flower_amount": "2" + } + }, + { + "id": 30337, + "properties": { + "facing": "east", + "flower_amount": "3" + } + }, + { + "id": 30338, + "properties": { + "facing": "east", + "flower_amount": "4" + } + } + ] + }, + "minecraft:wither_rose": { + "definition": { + "type": "minecraft:wither_rose", + "properties": {}, + "suspicious_stew_effects": [ + { + "duration": 140, + "id": "minecraft:wither" + } + ] + }, + "states": [ + { + "default": true, + "id": 2334 + } + ] + }, + "minecraft:wither_skeleton_skull": { + "definition": { + "type": "minecraft:wither_skull", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10955, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10956, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10957, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10958, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10959, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 10960, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 10961, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 10962, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 10963, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 10964, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 10965, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 10966, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 10967, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 10968, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 10969, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 10970, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 10971, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 10972, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 10973, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 10974, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 10975, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 10976, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 10977, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 10978, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 10979, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 10980, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 10981, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 10982, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 10983, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 10984, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 10985, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 10986, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:wither_skeleton_wall_skull": { + "definition": { + "type": "minecraft:wither_wall_skull", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 10987, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 10988, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 10989, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 10990, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 10991, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 10992, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 10993, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 10994, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + }, + "minecraft:yellow_banner": { + "definition": { + "type": "minecraft:banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 12991, + "properties": { + "rotation": "0" + } + }, + { + "id": 12992, + "properties": { + "rotation": "1" + } + }, + { + "id": 12993, + "properties": { + "rotation": "2" + } + }, + { + "id": 12994, + "properties": { + "rotation": "3" + } + }, + { + "id": 12995, + "properties": { + "rotation": "4" + } + }, + { + "id": 12996, + "properties": { + "rotation": "5" + } + }, + { + "id": 12997, + "properties": { + "rotation": "6" + } + }, + { + "id": 12998, + "properties": { + "rotation": "7" + } + }, + { + "default": true, + "id": 12999, + "properties": { + "rotation": "8" + } + }, + { + "id": 13000, + "properties": { + "rotation": "9" + } + }, + { + "id": 13001, + "properties": { + "rotation": "10" + } + }, + { + "id": 13002, + "properties": { + "rotation": "11" + } + }, + { + "id": 13003, + "properties": { + "rotation": "12" + } + }, + { + "id": 13004, + "properties": { + "rotation": "13" + } + }, + { + "id": 13005, + "properties": { + "rotation": "14" + } + }, + { + "id": 13006, + "properties": { + "rotation": "15" + } + } + ] + }, + "minecraft:yellow_bed": { + "definition": { + "type": "minecraft:bed", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "occupied": [ + "true", + "false" + ], + "part": [ + "head", + "foot" + ] + }, + "states": [ + { + "id": 1995, + "properties": { + "facing": "north", + "occupied": "true", + "part": "head" + } + }, + { + "id": 1996, + "properties": { + "facing": "north", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 1997, + "properties": { + "facing": "north", + "occupied": "false", + "part": "head" + } + }, + { + "default": true, + "id": 1998, + "properties": { + "facing": "north", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 1999, + "properties": { + "facing": "south", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2000, + "properties": { + "facing": "south", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2001, + "properties": { + "facing": "south", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2002, + "properties": { + "facing": "south", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2003, + "properties": { + "facing": "west", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2004, + "properties": { + "facing": "west", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2005, + "properties": { + "facing": "west", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2006, + "properties": { + "facing": "west", + "occupied": "false", + "part": "foot" + } + }, + { + "id": 2007, + "properties": { + "facing": "east", + "occupied": "true", + "part": "head" + } + }, + { + "id": 2008, + "properties": { + "facing": "east", + "occupied": "true", + "part": "foot" + } + }, + { + "id": 2009, + "properties": { + "facing": "east", + "occupied": "false", + "part": "head" + } + }, + { + "id": 2010, + "properties": { + "facing": "east", + "occupied": "false", + "part": "foot" + } + } + ] + }, + "minecraft:yellow_candle": { + "definition": { + "type": "minecraft:candle", + "properties": {} + }, + "properties": { + "candles": [ + "1", + "2", + "3", + "4" + ], + "lit": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23176, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23177, + "properties": { + "candles": "1", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23178, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "true" + } + }, + { + "default": true, + "id": 23179, + "properties": { + "candles": "1", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23180, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23181, + "properties": { + "candles": "2", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23182, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23183, + "properties": { + "candles": "2", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23184, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23185, + "properties": { + "candles": "3", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23186, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23187, + "properties": { + "candles": "3", + "lit": "false", + "waterlogged": "false" + } + }, + { + "id": 23188, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "true" + } + }, + { + "id": 23189, + "properties": { + "candles": "4", + "lit": "true", + "waterlogged": "false" + } + }, + { + "id": 23190, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "true" + } + }, + { + "id": 23191, + "properties": { + "candles": "4", + "lit": "false", + "waterlogged": "false" + } + } + ] + }, + "minecraft:yellow_candle_cake": { + "definition": { + "type": "minecraft:candle_cake", + "candle": "minecraft:yellow_candle", + "properties": {} + }, + "properties": { + "lit": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 23378, + "properties": { + "lit": "true" + } + }, + { + "default": true, + "id": 23379, + "properties": { + "lit": "false" + } + } + ] + }, + "minecraft:yellow_carpet": { + "definition": { + "type": "minecraft:wool_carpet", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 12900 + } + ] + }, + "minecraft:yellow_concrete": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15034 + } + ] + }, + "minecraft:yellow_concrete_powder": { + "definition": { + "type": "minecraft:concrete_powder", + "concrete": "minecraft:yellow_concrete", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 15050 + } + ] + }, + "minecraft:yellow_glazed_terracotta": { + "definition": { + "type": "minecraft:glazed_terracotta", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 14982, + "properties": { + "facing": "north" + } + }, + { + "id": 14983, + "properties": { + "facing": "south" + } + }, + { + "id": 14984, + "properties": { + "facing": "west" + } + }, + { + "id": 14985, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_shulker_box": { + "definition": { + "type": "minecraft:shulker_box", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "east", + "south", + "west", + "up", + "down" + ] + }, + "states": [ + { + "id": 14894, + "properties": { + "facing": "north" + } + }, + { + "id": 14895, + "properties": { + "facing": "east" + } + }, + { + "id": 14896, + "properties": { + "facing": "south" + } + }, + { + "id": 14897, + "properties": { + "facing": "west" + } + }, + { + "default": true, + "id": 14898, + "properties": { + "facing": "up" + } + }, + { + "id": 14899, + "properties": { + "facing": "down" + } + } + ] + }, + "minecraft:yellow_stained_glass": { + "definition": { + "type": "minecraft:stained_glass", + "color": "yellow", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 7102 + } + ] + }, + "minecraft:yellow_stained_glass_pane": { + "definition": { + "type": "minecraft:stained_glass_pane", + "color": "yellow", + "properties": {} + }, + "properties": { + "east": [ + "true", + "false" + ], + "north": [ + "true", + "false" + ], + "south": [ + "true", + "false" + ], + "waterlogged": [ + "true", + "false" + ], + "west": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11588, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11589, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11590, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11591, + "properties": { + "east": "true", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11592, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11593, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11594, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11595, + "properties": { + "east": "true", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11596, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11597, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11598, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11599, + "properties": { + "east": "true", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11600, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11601, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11602, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11603, + "properties": { + "east": "true", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11604, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11605, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11606, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11607, + "properties": { + "east": "false", + "north": "true", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11608, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11609, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11610, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11611, + "properties": { + "east": "false", + "north": "true", + "south": "false", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11612, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11613, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11614, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "true" + } + }, + { + "id": 11615, + "properties": { + "east": "false", + "north": "false", + "south": "true", + "waterlogged": "false", + "west": "false" + } + }, + { + "id": 11616, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "true" + } + }, + { + "id": 11617, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "true", + "west": "false" + } + }, + { + "id": 11618, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "true" + } + }, + { + "default": true, + "id": 11619, + "properties": { + "east": "false", + "north": "false", + "south": "false", + "waterlogged": "false", + "west": "false" + } + } + ] + }, + "minecraft:yellow_terracotta": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 11448 + } + ] + }, + "minecraft:yellow_wall_banner": { + "definition": { + "type": "minecraft:wall_banner", + "color": "yellow", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ] + }, + "states": [ + { + "default": true, + "id": 13199, + "properties": { + "facing": "north" + } + }, + { + "id": 13200, + "properties": { + "facing": "south" + } + }, + { + "id": 13201, + "properties": { + "facing": "west" + } + }, + { + "id": 13202, + "properties": { + "facing": "east" + } + } + ] + }, + "minecraft:yellow_wool": { + "definition": { + "type": "minecraft:block", + "properties": {} + }, + "states": [ + { + "default": true, + "id": 2297 + } + ] + }, + "minecraft:zombie_head": { + "definition": { + "type": "minecraft:skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "powered": [ + "true", + "false" + ], + "rotation": [ + "0", + "1", + "2", + "3", + "4", + "5", + "6", + "7", + "8", + "9", + "10", + "11", + "12", + "13", + "14", + "15" + ] + }, + "states": [ + { + "id": 10995, + "properties": { + "powered": "true", + "rotation": "0" + } + }, + { + "id": 10996, + "properties": { + "powered": "true", + "rotation": "1" + } + }, + { + "id": 10997, + "properties": { + "powered": "true", + "rotation": "2" + } + }, + { + "id": 10998, + "properties": { + "powered": "true", + "rotation": "3" + } + }, + { + "id": 10999, + "properties": { + "powered": "true", + "rotation": "4" + } + }, + { + "id": 11000, + "properties": { + "powered": "true", + "rotation": "5" + } + }, + { + "id": 11001, + "properties": { + "powered": "true", + "rotation": "6" + } + }, + { + "id": 11002, + "properties": { + "powered": "true", + "rotation": "7" + } + }, + { + "id": 11003, + "properties": { + "powered": "true", + "rotation": "8" + } + }, + { + "id": 11004, + "properties": { + "powered": "true", + "rotation": "9" + } + }, + { + "id": 11005, + "properties": { + "powered": "true", + "rotation": "10" + } + }, + { + "id": 11006, + "properties": { + "powered": "true", + "rotation": "11" + } + }, + { + "id": 11007, + "properties": { + "powered": "true", + "rotation": "12" + } + }, + { + "id": 11008, + "properties": { + "powered": "true", + "rotation": "13" + } + }, + { + "id": 11009, + "properties": { + "powered": "true", + "rotation": "14" + } + }, + { + "id": 11010, + "properties": { + "powered": "true", + "rotation": "15" + } + }, + { + "default": true, + "id": 11011, + "properties": { + "powered": "false", + "rotation": "0" + } + }, + { + "id": 11012, + "properties": { + "powered": "false", + "rotation": "1" + } + }, + { + "id": 11013, + "properties": { + "powered": "false", + "rotation": "2" + } + }, + { + "id": 11014, + "properties": { + "powered": "false", + "rotation": "3" + } + }, + { + "id": 11015, + "properties": { + "powered": "false", + "rotation": "4" + } + }, + { + "id": 11016, + "properties": { + "powered": "false", + "rotation": "5" + } + }, + { + "id": 11017, + "properties": { + "powered": "false", + "rotation": "6" + } + }, + { + "id": 11018, + "properties": { + "powered": "false", + "rotation": "7" + } + }, + { + "id": 11019, + "properties": { + "powered": "false", + "rotation": "8" + } + }, + { + "id": 11020, + "properties": { + "powered": "false", + "rotation": "9" + } + }, + { + "id": 11021, + "properties": { + "powered": "false", + "rotation": "10" + } + }, + { + "id": 11022, + "properties": { + "powered": "false", + "rotation": "11" + } + }, + { + "id": 11023, + "properties": { + "powered": "false", + "rotation": "12" + } + }, + { + "id": 11024, + "properties": { + "powered": "false", + "rotation": "13" + } + }, + { + "id": 11025, + "properties": { + "powered": "false", + "rotation": "14" + } + }, + { + "id": 11026, + "properties": { + "powered": "false", + "rotation": "15" + } + } + ] + }, + "minecraft:zombie_wall_head": { + "definition": { + "type": "minecraft:wall_skull", + "kind": "zombie", + "properties": {} + }, + "properties": { + "facing": [ + "north", + "south", + "west", + "east" + ], + "powered": [ + "true", + "false" + ] + }, + "states": [ + { + "id": 11027, + "properties": { + "facing": "north", + "powered": "true" + } + }, + { + "default": true, + "id": 11028, + "properties": { + "facing": "north", + "powered": "false" + } + }, + { + "id": 11029, + "properties": { + "facing": "south", + "powered": "true" + } + }, + { + "id": 11030, + "properties": { + "facing": "south", + "powered": "false" + } + }, + { + "id": 11031, + "properties": { + "facing": "west", + "powered": "true" + } + }, + { + "id": 11032, + "properties": { + "facing": "west", + "powered": "false" + } + }, + { + "id": 11033, + "properties": { + "facing": "east", + "powered": "true" + } + }, + { + "id": 11034, + "properties": { + "facing": "east", + "powered": "false" + } + } + ] + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/commands.json b/data/generated/V26_2/reports/commands.json new file mode 100644 index 00000000..0ccc8c39 --- /dev/null +++ b/data/generated/V26_2/reports/commands.json @@ -0,0 +1,13261 @@ +{ + "type": "root", + "children": { + "advancement": { + "type": "literal", + "children": { + "grant": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "everything": { + "type": "literal", + "executable": true + }, + "from": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "only": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "children": { + "criterion": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "through": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "until": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "revoke": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "everything": { + "type": "literal", + "executable": true + }, + "from": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "only": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "children": { + "criterion": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "through": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + }, + "until": { + "type": "literal", + "children": { + "advancement": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:advancement" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "attribute": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "attribute": { + "type": "argument", + "children": { + "base": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true + }, + "reset": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + } + } + } + }, + "get": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true + }, + "modifier": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "value": { + "type": "argument", + "children": { + "add_multiplied_base": { + "type": "literal", + "executable": true + }, + "add_multiplied_total": { + "type": "literal", + "executable": true + }, + "add_value": { + "type": "literal", + "executable": true + } + }, + "parser": "brigadier:double" + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "value": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + } + } + }, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:attribute" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "ban": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "ban-ip": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "banlist": { + "type": "literal", + "children": { + "ips": { + "type": "literal", + "executable": true + }, + "players": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "get": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "executable": true + }, + "players": { + "type": "literal", + "executable": true + }, + "value": { + "type": "literal", + "executable": true + }, + "visible": { + "type": "literal", + "executable": true + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "set": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "color": { + "type": "literal", + "children": { + "blue": { + "type": "literal", + "executable": true + }, + "green": { + "type": "literal", + "executable": true + }, + "pink": { + "type": "literal", + "executable": true + }, + "purple": { + "type": "literal", + "executable": true + }, + "red": { + "type": "literal", + "executable": true + }, + "white": { + "type": "literal", + "executable": true + }, + "yellow": { + "type": "literal", + "executable": true + } + } + }, + "max": { + "type": "literal", + "children": { + "max": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + } + }, + "name": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "players": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "style": { + "type": "literal", + "children": { + "notched_10": { + "type": "literal", + "executable": true + }, + "notched_12": { + "type": "literal", + "executable": true + }, + "notched_20": { + "type": "literal", + "executable": true + }, + "notched_6": { + "type": "literal", + "executable": true + }, + "progress": { + "type": "literal", + "executable": true + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + } + }, + "visible": { + "type": "literal", + "children": { + "visible": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + } + }, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "item": { + "type": "argument", + "children": { + "maxCount": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:item_predicate" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "clone": { + "type": "literal", + "children": { + "begin": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + }, + "to": { + "type": "literal", + "children": { + "targetDimension": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + }, + "from": { + "type": "literal", + "children": { + "sourceDimension": { + "type": "argument", + "children": { + "begin": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + }, + "to": { + "type": "literal", + "children": { + "targetDimension": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "children": { + "filtered": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + } + }, + "masked": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "force": { + "type": "literal", + "executable": true + }, + "move": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:dimension" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "damage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "damageType": { + "type": "argument", + "children": { + "at": { + "type": "literal", + "children": { + "location": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "by": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "cause": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:damage_type" + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "data": { + "type": "literal", + "children": { + "get": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "merge": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "modify": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetPath": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "index": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + }, + "parser": "brigadier:integer" + } + } + }, + "merge": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "prepend": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + }, + "set": { + "type": "literal", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "string": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourcePath": { + "type": "argument", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "value": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_tag" + } + } + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "remove": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "datapack": { + "type": "literal", + "children": { + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "description": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "disable": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "enable": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "after": { + "type": "literal", + "children": { + "existing": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "before": { + "type": "literal", + "children": { + "existing": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "first": { + "type": "literal", + "executable": true + }, + "last": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "available": { + "type": "literal", + "executable": true + }, + "enabled": { + "type": "literal", + "executable": true + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "debug": { + "type": "literal", + "children": { + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:function" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "defaultgamemode": { + "type": "literal", + "children": { + "gamemode": { + "type": "argument", + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "deop": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "dialog": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "show": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "dialog": { + "type": "argument", + "executable": true, + "parser": "minecraft:dialog" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "difficulty": { + "type": "literal", + "children": { + "easy": { + "type": "literal", + "executable": true + }, + "hard": { + "type": "literal", + "executable": true + }, + "normal": { + "type": "literal", + "executable": true + }, + "peaceful": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "effect": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "effect": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:mob_effect" + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true + }, + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "effect": { + "type": "argument", + "children": { + "infinite": { + "type": "literal", + "children": { + "amplifier": { + "type": "argument", + "children": { + "hideParticles": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 255, + "min": 0 + } + } + }, + "executable": true + }, + "seconds": { + "type": "argument", + "children": { + "amplifier": { + "type": "argument", + "children": { + "hideParticles": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 255, + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000000, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:mob_effect" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "enchant": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "enchantment": { + "type": "argument", + "children": { + "level": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:enchantment" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "execute": { + "type": "literal", + "children": { + "align": { + "type": "literal", + "children": { + "axes": { + "type": "argument", + "parser": "minecraft:swizzle", + "redirect": [ + "execute" + ] + } + } + }, + "anchored": { + "type": "literal", + "children": { + "anchor": { + "type": "argument", + "parser": "minecraft:entity_anchor", + "redirect": [ + "execute" + ] + } + } + }, + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "at": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "anchor": { + "type": "argument", + "parser": "minecraft:entity_anchor", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + }, + "pos": { + "type": "argument", + "parser": "minecraft:vec3", + "redirect": [ + "execute" + ] + } + } + }, + "if": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + }, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "blocks": { + "type": "literal", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "all": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + }, + "masked": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "data": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "dimension": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "executable": true, + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "parser": "minecraft:function", + "redirect": [ + "execute" + ] + } + } + }, + "items": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "loaded": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos", + "redirect": [ + "execute" + ] + } + } + }, + "predicate": { + "type": "literal", + "children": { + "predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_predicate", + "redirect": [ + "execute" + ] + } + } + }, + "score": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "<": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "<=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "matches": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:int_range", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:float_range", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "in": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "on": { + "type": "literal", + "children": { + "attacker": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "controller": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "leasher": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "origin": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "owner": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "passengers": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "target": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "vehicle": { + "type": "literal", + "redirect": [ + "execute" + ] + } + } + }, + "positioned": { + "type": "literal", + "children": { + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "over": { + "type": "literal", + "children": { + "heightmap": { + "type": "argument", + "parser": "minecraft:heightmap", + "redirect": [ + "execute" + ] + } + } + }, + "pos": { + "type": "argument", + "parser": "minecraft:vec3", + "redirect": [ + "execute" + ] + } + } + }, + "rotated": { + "type": "literal", + "children": { + "as": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "rot": { + "type": "argument", + "parser": "minecraft:rotation", + "redirect": [ + "execute" + ] + } + } + }, + "run": { + "type": "literal" + }, + "store": { + "type": "literal", + "children": { + "result": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "value": { + "type": "literal", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "score": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "success": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "bossbar": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "max": { + "type": "literal", + "redirect": [ + "execute" + ] + }, + "value": { + "type": "literal", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + }, + "entity": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "score": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "children": { + "byte": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "double": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "float": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "int": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "long": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + }, + "short": { + "type": "literal", + "children": { + "scale": { + "type": "argument", + "parser": "brigadier:double", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:nbt_path" + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + } + }, + "summon": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:entity_type" + }, + "redirect": [ + "execute" + ] + } + } + }, + "unless": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + }, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "blocks": { + "type": "literal", + "children": { + "start": { + "type": "argument", + "children": { + "end": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "children": { + "all": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + }, + "masked": { + "type": "literal", + "executable": true, + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "data": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + }, + "dimension": { + "type": "literal", + "children": { + "dimension": { + "type": "argument", + "executable": true, + "parser": "minecraft:dimension", + "redirect": [ + "execute" + ] + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + }, + "redirect": [ + "execute" + ] + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "parser": "minecraft:function", + "redirect": [ + "execute" + ] + } + } + }, + "items": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slots": { + "type": "argument", + "children": { + "item_predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_predicate", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:item_slots" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "loaded": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos", + "redirect": [ + "execute" + ] + } + } + }, + "predicate": { + "type": "literal", + "children": { + "predicate": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_predicate", + "redirect": [ + "execute" + ] + } + } + }, + "score": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "<": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "<=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + ">=": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "matches": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:int_range", + "redirect": [ + "execute" + ] + } + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "range": { + "type": "argument", + "executable": true, + "parser": "minecraft:float_range", + "redirect": [ + "execute" + ] + } + }, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "experience": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "query": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "single" + } + } + } + }, + "set": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "children": { + "levels": { + "type": "literal", + "executable": true + }, + "points": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fetchprofile": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "id": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:uuid" + } + } + }, + "name": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fill": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "hollow": { + "type": "literal", + "executable": true + }, + "keep": { + "type": "literal", + "executable": true + }, + "outline": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "hollow": { + "type": "literal", + "executable": true + }, + "outline": { + "type": "literal", + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_predicate" + } + }, + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_state" + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "fillbiome": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "children": { + "biome": { + "type": "argument", + "children": { + "replace": { + "type": "literal", + "children": { + "filter": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + } + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + }, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "forceload": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true, + "parser": "minecraft:column_pos" + } + } + }, + "query": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "all": { + "type": "literal", + "executable": true + }, + "from": { + "type": "argument", + "children": { + "to": { + "type": "argument", + "executable": true, + "parser": "minecraft:column_pos" + } + }, + "executable": true, + "parser": "minecraft:column_pos" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "function": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "arguments": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + }, + "with": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "sourcePos": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "storage": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "path": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_path" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "executable": true, + "parser": "minecraft:function" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "gamemode": { + "type": "literal", + "children": { + "gamemode": { + "type": "argument", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "gamerule": { + "type": "literal", + "children": { + "advance_time": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "advance_weather": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "allow_entering_nether_using_portals": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "block_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "block_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "command_block_output": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "command_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "drowning_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "elytra_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "ender_pearls_vanish_on_death": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "entity_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fall_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fire_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "fire_spread_radius_around_player": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": -1 + } + } + }, + "executable": true + }, + "forgive_dead_players": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "freeze_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "global_sound_events": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "immediate_respawn": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "keep_inventory": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "lava_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "limited_crafting": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "locator_bar": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "log_admin_commands": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "max_block_modifications": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "max_command_forks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_command_sequence_length": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_entity_cramming": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "max_minecart_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000, + "min": 1 + } + } + }, + "executable": true + }, + "max_snow_accumulation_height": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 8, + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:advance_time": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:advance_weather": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:allow_entering_nether_using_portals": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:block_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:block_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:command_block_output": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:command_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:drowning_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:elytra_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:ender_pearls_vanish_on_death": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:entity_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fall_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fire_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:fire_spread_radius_around_player": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": -1 + } + } + }, + "executable": true + }, + "minecraft:forgive_dead_players": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:freeze_damage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:global_sound_events": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:immediate_respawn": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:keep_inventory": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:lava_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:limited_crafting": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:locator_bar": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:log_admin_commands": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:max_block_modifications": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "minecraft:max_command_forks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_command_sequence_length": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_entity_cramming": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:max_minecart_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 1000, + "min": 1 + } + } + }, + "executable": true + }, + "minecraft:max_snow_accumulation_height": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 8, + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:mob_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:mob_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:mob_griefing": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:natural_health_regeneration": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:player_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:players_nether_portal_creative_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:players_nether_portal_default_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:players_sleeping_percentage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:projectiles_can_break_blocks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:pvp": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:raids": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:random_tick_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:reduced_debug_info": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:respawn_radius": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "minecraft:send_command_feedback": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:show_advancement_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:show_death_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_mobs": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_monsters": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_patrols": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_phantoms": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_wandering_traders": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawn_wardens": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spawner_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spectators_generate_chunks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:spread_vines": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:tnt_explodes": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:tnt_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:universal_anger": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "minecraft:water_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_drops": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "mob_griefing": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "natural_health_regeneration": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "player_movement_check": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "players_nether_portal_creative_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "players_nether_portal_default_delay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "players_sleeping_percentage": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "projectiles_can_break_blocks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "pvp": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "raids": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "random_tick_speed": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "reduced_debug_info": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "respawn_radius": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "send_command_feedback": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "show_advancement_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "show_death_messages": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_mobs": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_monsters": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_patrols": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_phantoms": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_wandering_traders": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawn_wardens": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spawner_blocks_work": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spectators_generate_chunks": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "spread_vines": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "tnt_explodes": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "tnt_explosion_drop_decay": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "universal_anger": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "water_source_conversion": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "help": { + "type": "literal", + "children": { + "command": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + }, + "executable": true + }, + "item": { + "type": "literal", + "children": { + "modify": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "replace": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + } + }, + "with": { + "type": "literal", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 99, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "from": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "source": { + "type": "argument", + "children": { + "sourceSlot": { + "type": "argument", + "children": { + "modifier": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_modifier" + } + }, + "executable": true, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + } + }, + "with": { + "type": "literal", + "children": { + "item": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 99, + "min": 1 + } + } + }, + "executable": true, + "parser": "minecraft:item_stack" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "jfr": { + "type": "literal", + "children": { + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "kick": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "reason": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "kill": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "list": { + "type": "literal", + "children": { + "uuids": { + "type": "literal", + "executable": true + } + }, + "executable": true + }, + "locate": { + "type": "literal", + "children": { + "biome": { + "type": "literal", + "children": { + "biome": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:worldgen/biome" + } + } + } + }, + "poi": { + "type": "literal", + "children": { + "poi": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag", + "properties": { + "registry": "minecraft:point_of_interest_type" + } + } + } + }, + "structure": { + "type": "literal", + "children": { + "structure": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_or_tag_key", + "properties": { + "registry": "minecraft:worldgen/structure" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "loot": { + "type": "literal", + "children": { + "give": { + "type": "literal", + "children": { + "players": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "insert": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "replace": { + "type": "literal", + "children": { + "block": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:block_pos" + } + } + }, + "entity": { + "type": "literal", + "children": { + "entities": { + "type": "argument", + "children": { + "slot": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:item_slot" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + } + } + } + }, + "spawn": { + "type": "literal", + "children": { + "targetPos": { + "type": "argument", + "children": { + "fish": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "parser": "minecraft:loot_table" + } + } + }, + "kill": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "loot": { + "type": "literal", + "children": { + "loot_table": { + "type": "argument", + "executable": true, + "parser": "minecraft:loot_table" + } + } + }, + "mine": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + }, + "tool": { + "type": "argument", + "executable": true, + "parser": "minecraft:item_stack" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + } + } + }, + "parser": "minecraft:vec3" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "me": { + "type": "literal", + "children": { + "action": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + } + }, + "msg": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "op": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "pardon": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "pardon-ip": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "particle": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "delta": { + "type": "argument", + "children": { + "speed": { + "type": "argument", + "children": { + "count": { + "type": "argument", + "children": { + "force": { + "type": "literal", + "children": { + "viewers": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "normal": { + "type": "literal", + "children": { + "viewers": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:particle" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "perf": { + "type": "literal", + "children": { + "start": { + "type": "literal", + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "place": { + "type": "literal", + "children": { + "feature": { + "type": "literal", + "children": { + "feature": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/configured_feature" + } + } + } + }, + "jigsaw": { + "type": "literal", + "children": { + "pool": { + "type": "argument", + "children": { + "target": { + "type": "argument", + "children": { + "max_depth": { + "type": "argument", + "children": { + "position": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 20, + "min": 1 + } + } + }, + "parser": "minecraft:resource_location" + } + }, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/template_pool" + } + } + } + }, + "structure": { + "type": "literal", + "children": { + "structure": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:worldgen/structure" + } + } + } + }, + "template": { + "type": "literal", + "children": { + "template": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "children": { + "mirror": { + "type": "argument", + "children": { + "integrity": { + "type": "argument", + "children": { + "seed": { + "type": "argument", + "children": { + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:template_mirror" + } + }, + "executable": true, + "parser": "minecraft:template_rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "playsound": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "children": { + "ambient": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "block": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "hostile": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "master": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "music": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "neutral": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "player": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "record": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "ui": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "voice": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + }, + "weather": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "volume": { + "type": "argument", + "children": { + "pitch": { + "type": "argument", + "children": { + "minVolume": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 2.0, + "min": 0.0 + } + } + }, + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "publish": { + "type": "literal", + "children": { + "allowCommands": { + "type": "argument", + "children": { + "gamemode": { + "type": "argument", + "children": { + "port": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 65535, + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:gamemode" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "random": { + "type": "literal", + "children": { + "reset": { + "type": "literal", + "children": { + "*": { + "type": "literal", + "children": { + "seed": { + "type": "argument", + "children": { + "includeWorldSeed": { + "type": "argument", + "children": { + "includeSequenceId": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true + }, + "sequence": { + "type": "argument", + "children": { + "seed": { + "type": "argument", + "children": { + "includeWorldSeed": { + "type": "argument", + "children": { + "includeSequenceId": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "roll": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "children": { + "sequence": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + } + }, + "executable": true, + "parser": "minecraft:int_range" + } + } + }, + "value": { + "type": "literal", + "children": { + "range": { + "type": "argument", + "children": { + "sequence": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + } + }, + "executable": true, + "parser": "minecraft:int_range" + } + } + } + } + }, + "recipe": { + "type": "literal", + "children": { + "give": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "executable": true + }, + "recipe": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:recipe" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + }, + "take": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "executable": true + }, + "recipe": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_key", + "properties": { + "registry": "minecraft:recipe" + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "reload": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "return": { + "type": "literal", + "children": { + "fail": { + "type": "literal", + "executable": true + }, + "run": { + "type": "literal" + }, + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "ride": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "dismount": { + "type": "literal", + "executable": true + }, + "mount": { + "type": "literal", + "children": { + "vehicle": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "rotate": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "facingEntity": { + "type": "argument", + "children": { + "facingAnchor": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity_anchor" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "facingLocation": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "save-all": { + "type": "literal", + "children": { + "flush": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "save-off": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "save-on": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "say": { + "type": "literal", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "schedule": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "function": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "greedy" + } + } + } + }, + "function": { + "type": "literal", + "children": { + "function": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "children": { + "append": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:function" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "scoreboard": { + "type": "literal", + "children": { + "objectives": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "criteria": { + "type": "argument", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "minecraft:objective_criteria" + } + }, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "displayautoupdate": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "displayname": { + "type": "literal", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "numberformat": { + "type": "literal", + "children": { + "blank": { + "type": "literal", + "executable": true + }, + "fixed": { + "type": "literal", + "children": { + "contents": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "styled": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:style" + } + } + } + }, + "executable": true + }, + "rendertype": { + "type": "literal", + "children": { + "hearts": { + "type": "literal", + "executable": true + }, + "integer": { + "type": "literal", + "executable": true + } + } + } + }, + "parser": "minecraft:objective" + } + } + }, + "remove": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + } + }, + "setdisplay": { + "type": "literal", + "children": { + "slot": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "executable": true, + "parser": "minecraft:scoreboard_slot" + } + } + } + } + }, + "players": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "display": { + "type": "literal", + "children": { + "name": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "numberformat": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "blank": { + "type": "literal", + "executable": true + }, + "fixed": { + "type": "literal", + "children": { + "contents": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "styled": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:style" + } + } + } + }, + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + } + } + }, + "enable": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "get": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "single" + } + } + }, + "executable": true + }, + "operation": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "targetObjective": { + "type": "argument", + "children": { + "operation": { + "type": "argument", + "children": { + "source": { + "type": "argument", + "children": { + "sourceObjective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + }, + "parser": "minecraft:operation" + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "remove": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "reset": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "executable": true, + "parser": "minecraft:objective" + } + }, + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "set": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "objective": { + "type": "argument", + "children": { + "score": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "minecraft:objective" + } + }, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "seed": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "setblock": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "block": { + "type": "argument", + "children": { + "destroy": { + "type": "literal", + "executable": true + }, + "keep": { + "type": "literal", + "executable": true + }, + "replace": { + "type": "literal", + "executable": true + }, + "strict": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:block_state" + } + }, + "parser": "minecraft:block_pos" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "setidletimeout": { + "type": "literal", + "children": { + "minutes": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "setworldspawn": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spawnpoint": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:block_pos" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spectate": { + "type": "literal", + "children": { + "target": { + "type": "argument", + "children": { + "player": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "single" + } + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "spreadplayers": { + "type": "literal", + "children": { + "center": { + "type": "argument", + "children": { + "spreadDistance": { + "type": "argument", + "children": { + "maxRange": { + "type": "argument", + "children": { + "respectTeams": { + "type": "argument", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "parser": "brigadier:bool" + }, + "under": { + "type": "literal", + "children": { + "maxHeight": { + "type": "argument", + "children": { + "respectTeams": { + "type": "argument", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "parser": "brigadier:bool" + } + }, + "parser": "brigadier:integer" + } + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 1.0 + } + } + }, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + }, + "parser": "minecraft:vec2" + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "stop": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "stopsound": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "*": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "ambient": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "block": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "hostile": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "master": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "music": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "neutral": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "player": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "record": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "ui": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "voice": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + }, + "weather": { + "type": "literal", + "children": { + "sound": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + }, + "executable": true + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "stopwatch": { + "type": "literal", + "children": { + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "query": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "scale": { + "type": "argument", + "executable": true, + "parser": "brigadier:double" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "remove": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "restart": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "summon": { + "type": "literal", + "children": { + "entity": { + "type": "argument", + "children": { + "pos": { + "type": "argument", + "children": { + "nbt": { + "type": "argument", + "executable": true, + "parser": "minecraft:nbt_compound_tag" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:entity_type" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "swing": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "mainhand": { + "type": "literal", + "executable": true + }, + "offhand": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tag": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "name": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "team": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + } + }, + "empty": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + } + }, + "join": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "members": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "minecraft:team" + } + } + }, + "leave": { + "type": "literal", + "children": { + "members": { + "type": "argument", + "executable": true, + "parser": "minecraft:score_holder", + "properties": { + "amount": "multiple" + } + } + } + }, + "list": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + }, + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "children": { + "collisionRule": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + }, + "pushOtherTeams": { + "type": "literal", + "executable": true + }, + "pushOwnTeam": { + "type": "literal", + "executable": true + } + } + }, + "color": { + "type": "literal", + "children": { + "reset": { + "type": "literal", + "executable": true + }, + "value": { + "type": "argument", + "executable": true, + "parser": "minecraft:team_color" + } + } + }, + "deathMessageVisibility": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "hideForOtherTeams": { + "type": "literal", + "executable": true + }, + "hideForOwnTeam": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + } + } + }, + "displayName": { + "type": "literal", + "children": { + "displayName": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "friendlyFire": { + "type": "literal", + "children": { + "allowed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "nametagVisibility": { + "type": "literal", + "children": { + "always": { + "type": "literal", + "executable": true + }, + "hideForOtherTeams": { + "type": "literal", + "executable": true + }, + "hideForOwnTeam": { + "type": "literal", + "executable": true + }, + "never": { + "type": "literal", + "executable": true + } + } + }, + "prefix": { + "type": "literal", + "children": { + "prefix": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "seeFriendlyInvisibles": { + "type": "literal", + "children": { + "allowed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + } + }, + "suffix": { + "type": "literal", + "children": { + "suffix": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + } + }, + "parser": "minecraft:team" + } + } + }, + "remove": { + "type": "literal", + "children": { + "team": { + "type": "argument", + "executable": true, + "parser": "minecraft:team" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "teammsg": { + "type": "literal", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:message" + } + } + }, + "teleport": { + "type": "literal", + "children": { + "destination": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + }, + "location": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + }, + "targets": { + "type": "argument", + "children": { + "destination": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + }, + "location": { + "type": "argument", + "children": { + "facing": { + "type": "literal", + "children": { + "entity": { + "type": "literal", + "children": { + "facingEntity": { + "type": "argument", + "children": { + "facingAnchor": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity_anchor" + } + }, + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + }, + "facingLocation": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec3" + } + } + }, + "rotation": { + "type": "argument", + "executable": true, + "parser": "minecraft:rotation" + } + }, + "executable": true, + "parser": "minecraft:vec3" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tell": { + "type": "literal", + "redirect": [ + "msg" + ] + }, + "tellraw": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "message": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "test": { + "type": "literal", + "children": { + "clearall": { + "type": "literal", + "children": { + "radius": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true + }, + "clearthat": { + "type": "literal", + "executable": true + }, + "clearthese": { + "type": "literal", + "executable": true + }, + "create": { + "type": "literal", + "children": { + "id": { + "type": "argument", + "children": { + "width": { + "type": "argument", + "children": { + "height": { + "type": "argument", + "children": { + "depth": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_location" + } + } + }, + "locate": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "pos": { + "type": "literal", + "children": { + "var": { + "type": "argument", + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "word" + } + } + }, + "executable": true + }, + "resetclosest": { + "type": "literal", + "executable": true + }, + "resetthat": { + "type": "literal", + "executable": true + }, + "resetthese": { + "type": "literal", + "executable": true + }, + "run": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "runclosest": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "runfailed": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + }, + "onlyRequiredTests": { + "type": "argument", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "children": { + "rotationSteps": { + "type": "argument", + "children": { + "testsPerRow": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true + }, + "runmultiple": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "children": { + "amount": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + }, + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + }, + "runthat": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "runthese": { + "type": "literal", + "children": { + "numberOfTimes": { + "type": "argument", + "children": { + "untilFailed": { + "type": "argument", + "executable": true, + "parser": "brigadier:bool" + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + }, + "executable": true + }, + "stop": { + "type": "literal", + "executable": true + }, + "verify": { + "type": "literal", + "children": { + "tests": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_selector", + "properties": { + "registry": "minecraft:test_instance" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tick": { + "type": "literal", + "children": { + "freeze": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "executable": true + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 10000.0, + "min": 1.0 + } + } + } + }, + "sprint": { + "type": "literal", + "children": { + "stop": { + "type": "literal", + "executable": true + }, + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + } + }, + "step": { + "type": "literal", + "children": { + "stop": { + "type": "literal", + "executable": true + }, + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "unfreeze": { + "type": "literal", + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "time": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": -2147483648 + } + } + } + }, + "of": { + "type": "literal", + "children": { + "clock": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": -2147483648 + } + } + } + }, + "pause": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "children": { + "time": { + "type": "literal", + "executable": true + }, + "timeline": { + "type": "argument", + "children": { + "repetition": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:timeline" + } + } + } + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1000.0, + "min": 1.0E-5 + } + } + } + }, + "resume": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + }, + "timemarker": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:world_clock" + } + } + } + }, + "pause": { + "type": "literal", + "executable": true + }, + "query": { + "type": "literal", + "children": { + "gametime": { + "type": "literal", + "executable": true + }, + "time": { + "type": "literal", + "executable": true + }, + "timeline": { + "type": "argument", + "children": { + "repetition": { + "type": "literal", + "executable": true + } + }, + "executable": true, + "parser": "minecraft:resource", + "properties": { + "registry": "minecraft:timeline" + } + } + } + }, + "rate": { + "type": "literal", + "children": { + "rate": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "max": 1000.0, + "min": 1.0E-5 + } + } + } + }, + "resume": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + }, + "timemarker": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "title": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "children": { + "actionbar": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "clear": { + "type": "literal", + "executable": true + }, + "reset": { + "type": "literal", + "executable": true + }, + "subtitle": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + }, + "times": { + "type": "literal", + "children": { + "fadeIn": { + "type": "argument", + "children": { + "stay": { + "type": "argument", + "children": { + "fadeOut": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + } + }, + "title": { + "type": "literal", + "children": { + "title": { + "type": "argument", + "executable": true, + "parser": "minecraft:component" + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "tm": { + "type": "literal", + "redirect": [ + "teammsg" + ] + }, + "tp": { + "type": "literal", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + }, + "redirect": [ + "teleport" + ] + }, + "transfer": { + "type": "literal", + "children": { + "hostname": { + "type": "argument", + "children": { + "port": { + "type": "argument", + "children": { + "players": { + "type": "argument", + "executable": true, + "parser": "minecraft:entity", + "properties": { + "type": "players", + "amount": "multiple" + } + } + }, + "executable": true, + "parser": "brigadier:integer", + "properties": { + "max": 65535, + "min": 1 + } + } + }, + "executable": true, + "parser": "brigadier:string", + "properties": { + "type": "phrase" + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "trigger": { + "type": "literal", + "children": { + "objective": { + "type": "argument", + "children": { + "add": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + } + }, + "set": { + "type": "literal", + "children": { + "value": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer" + } + } + } + }, + "executable": true, + "parser": "minecraft:objective" + } + } + }, + "unpublish": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "owners" + } + } + }, + "version": { + "type": "literal", + "executable": true, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "w": { + "type": "literal", + "redirect": [ + "msg" + ] + }, + "waypoint": { + "type": "literal", + "children": { + "list": { + "type": "literal", + "executable": true + }, + "modify": { + "type": "literal", + "children": { + "waypoint": { + "type": "argument", + "children": { + "color": { + "type": "literal", + "children": { + "color": { + "type": "argument", + "executable": true, + "parser": "minecraft:team_color" + }, + "hex": { + "type": "literal", + "children": { + "color": { + "type": "argument", + "executable": true, + "parser": "minecraft:hex_color" + } + } + }, + "reset": { + "type": "literal", + "executable": true + } + } + }, + "style": { + "type": "literal", + "children": { + "reset": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "style": { + "type": "argument", + "executable": true, + "parser": "minecraft:resource_location" + } + } + } + } + } + }, + "parser": "minecraft:entity", + "properties": { + "type": "entities", + "amount": "single" + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "weather": { + "type": "literal", + "children": { + "clear": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "rain": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + }, + "thunder": { + "type": "literal", + "children": { + "duration": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 1 + } + } + }, + "executable": true + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "whitelist": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + } + }, + "list": { + "type": "literal", + "executable": true + }, + "off": { + "type": "literal", + "executable": true + }, + "on": { + "type": "literal", + "executable": true + }, + "reload": { + "type": "literal", + "executable": true + }, + "remove": { + "type": "literal", + "children": { + "targets": { + "type": "argument", + "executable": true, + "parser": "minecraft:game_profile" + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "admins" + } + } + }, + "worldborder": { + "type": "literal", + "children": { + "add": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:double", + "properties": { + "max": 5.9999968E7, + "min": -5.9999968E7 + } + } + } + }, + "center": { + "type": "literal", + "children": { + "pos": { + "type": "argument", + "executable": true, + "parser": "minecraft:vec2" + } + } + }, + "damage": { + "type": "literal", + "children": { + "amount": { + "type": "literal", + "children": { + "damagePerBlock": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + } + }, + "buffer": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "executable": true, + "parser": "brigadier:float", + "properties": { + "min": 0.0 + } + } + } + } + } + }, + "get": { + "type": "literal", + "executable": true + }, + "set": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + }, + "executable": true, + "parser": "brigadier:double", + "properties": { + "max": 5.9999968E7, + "min": -5.9999968E7 + } + } + } + }, + "warning": { + "type": "literal", + "children": { + "distance": { + "type": "literal", + "children": { + "distance": { + "type": "argument", + "executable": true, + "parser": "brigadier:integer", + "properties": { + "min": 0 + } + } + } + }, + "time": { + "type": "literal", + "children": { + "time": { + "type": "argument", + "executable": true, + "parser": "minecraft:time", + "properties": { + "min": 0 + } + } + } + } + } + } + }, + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + } + }, + "xp": { + "type": "literal", + "permissions": { + "type": "minecraft:require", + "permission": { + "type": "minecraft:command_level", + "level": "gamemasters" + } + }, + "redirect": [ + "experience" + ] + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/datapack.json b/data/generated/V26_2/reports/datapack.json new file mode 100644 index 00000000..22305218 --- /dev/null +++ b/data/generated/V26_2/reports/datapack.json @@ -0,0 +1,753 @@ +{ + "others": { + "function": { + "elements": true, + "format": "mcfunction", + "stable": true, + "tags": true + }, + "structure": { + "elements": true, + "format": "structure", + "stable": true, + "tags": false + } + }, + "registries": { + "minecraft:activity": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:advancement": { + "elements": true, + "stable": true, + "tags": false + }, + "minecraft:attribute": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:attribute_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:banner_pattern": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:block": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_entity_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:block_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:cat_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:cat_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chat_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chicken_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chicken_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:chunk_status": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:command_argument_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:consume_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:cow_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:cow_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:creative_mode_tab": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:custom_stat": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:damage_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:data_component_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:data_component_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:debug_subscription": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:decorated_pot_pattern": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:dialog_action_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog_body_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dialog_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:dimension": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:dimension_type": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment_effect_component_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_entity_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_level_based_value_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_location_based_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_provider": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:enchantment_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:enchantment_value_effect_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:entity_sub_predicate_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:entity_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:environment_attribute": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:float_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:fluid": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:frog_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:game_event": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:game_rule": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:height_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:incoming_rpc_methods": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:input_control_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:instrument": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:int_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:item": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:item_modifier": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:jukebox_song": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:loot_condition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_function_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_nbt_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_number_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_pool_entry_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_score_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:loot_table": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:map_decoration_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:memory_module_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:menu": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:mob_effect": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:number_format_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:outgoing_rpc_methods": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:painting_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:particle_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:permission_check_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:permission_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:pig_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:pig_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:point_of_interest_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:pos_rule_test": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:position_source_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:potion": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:predicate": { + "elements": true, + "stable": true, + "tags": true + }, + "minecraft:recipe": { + "elements": true, + "stable": true, + "tags": false + }, + "minecraft:recipe_book_category": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_display": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_serializer": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:recipe_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:rule_block_entity_modifier": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:rule_test": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:sensor_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:slot_display": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:slot_source_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:sound_event": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:spawn_condition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:stat_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:sulfur_cube_archetype": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:test_environment": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:test_environment_definition_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:test_function": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:test_instance": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:test_instance_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:ticket_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:timeline": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trade_set": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trial_spawner": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trigger_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:trim_material": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:trim_pattern": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:villager_profession": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:villager_trade": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:villager_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:wolf_sound_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:wolf_variant": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:world_clock": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/biome": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/biome_source": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/block_state_provider_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/carver": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/chunk_generator": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/configured_carver": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/configured_feature": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/density_function": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/density_function_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/feature": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/feature_size_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/flat_level_generator_preset": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/foliage_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/material_condition": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/material_rule": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/multi_noise_biome_source_parameter_list": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/noise": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/noise_settings": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/placed_feature": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/placement_modifier_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/pool_alias_binding": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/processor_list": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/root_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/structure_piece": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_placement": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_pool_element": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_processor": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/structure_set": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/structure_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/template_pool": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:worldgen/tree_decorator_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/trunk_placer_type": { + "elements": false, + "stable": true, + "tags": true + }, + "minecraft:worldgen/world_preset": { + "elements": true, + "stable": false, + "tags": true + }, + "minecraft:zombie_nautilus_variant": { + "elements": true, + "stable": false, + "tags": true + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/json-rpc-api-schema.json b/data/generated/V26_2/reports/json-rpc-api-schema.json new file mode 100644 index 00000000..ce91e3c9 --- /dev/null +++ b/data/generated/V26_2/reports/json-rpc-api-schema.json @@ -0,0 +1,1543 @@ +{ + "components": { + "schemas": { + "difficulty": { + "type": "string", + "enum": [ + "peaceful", + "easy", + "normal", + "hard" + ] + }, + "game_type": { + "type": "string", + "enum": [ + "survival", + "creative", + "adventure", + "spectator" + ] + }, + "incoming_ip_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "player": { + "$ref": "#/components/schemas/player" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "ip_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "ip": { + "type": "string" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "kick_player": { + "type": "object", + "properties": { + "message": { + "$ref": "#/components/schemas/message" + }, + "player": { + "$ref": "#/components/schemas/player" + } + } + }, + "message": { + "type": "object", + "properties": { + "literal": { + "type": "string" + }, + "translatable": { + "type": "string" + }, + "translatableParams": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "operator": { + "type": "object", + "properties": { + "bypassesPlayerLimit": { + "type": "boolean" + }, + "permissionLevel": { + "type": "integer" + }, + "player": { + "$ref": "#/components/schemas/player" + } + } + }, + "player": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + } + }, + "server_state": { + "type": "object", + "properties": { + "players": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + }, + "started": { + "type": "boolean" + }, + "version": { + "$ref": "#/components/schemas/version" + } + } + }, + "system_message": { + "type": "object", + "properties": { + "message": { + "$ref": "#/components/schemas/message" + }, + "overlay": { + "type": "boolean" + }, + "receivingPlayers": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + "typed_game_rule": { + "type": "object", + "properties": { + "type": { + "type": "string", + "enum": [ + "integer", + "boolean" + ] + }, + "key": { + "type": "string" + }, + "value": { + "type": [ + "boolean", + "integer" + ] + } + } + }, + "untyped_game_rule": { + "type": "object", + "properties": { + "key": { + "type": "string" + }, + "value": { + "type": [ + "boolean", + "integer" + ] + } + } + }, + "user_ban": { + "type": "object", + "properties": { + "expires": { + "type": "string" + }, + "player": { + "$ref": "#/components/schemas/player" + }, + "reason": { + "type": "string" + }, + "source": { + "type": "string" + } + } + }, + "version": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "protocol": { + "type": "integer" + } + } + } + } + }, + "info": { + "title": "Minecraft Server JSON-RPC", + "version": "3.0.0" + }, + "methods": [ + { + "description": "Get the allowlist", + "name": "minecraft:allowlist", + "params": [], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Set the allowlist", + "name": "minecraft:allowlist/set", + "params": [ + { + "name": "players", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Add players to allowlist", + "name": "minecraft:allowlist/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Remove players from allowlist", + "name": "minecraft:allowlist/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Clear all players in allowlist", + "name": "minecraft:allowlist/clear", + "params": [], + "result": { + "name": "allowlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Get the ban list", + "name": "minecraft:bans", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Set the banlist", + "name": "minecraft:bans/set", + "params": [ + { + "name": "bans", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Add players to ban list", + "name": "minecraft:bans/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Remove players from ban list", + "name": "minecraft:bans/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Clear all players in ban list", + "name": "minecraft:bans/clear", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/user_ban" + } + } + } + }, + { + "description": "Get the ip ban list", + "name": "minecraft:ip_bans", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Set the ip banlist", + "name": "minecraft:ip_bans/set", + "params": [ + { + "name": "banlist", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Add ip to ban list", + "name": "minecraft:ip_bans/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/incoming_ip_ban" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Remove ip from ban list", + "name": "minecraft:ip_bans/remove", + "params": [ + { + "name": "ip", + "required": true, + "schema": { + "type": "array", + "items": { + "type": "string" + } + } + } + ], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Clear all ips in ban list", + "name": "minecraft:ip_bans/clear", + "params": [], + "result": { + "name": "banlist", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ip_ban" + } + } + } + }, + { + "description": "Get all connected players", + "name": "minecraft:players", + "params": [], + "result": { + "name": "players", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Kick players", + "name": "minecraft:players/kick", + "params": [ + { + "name": "kick", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/kick_player" + } + } + } + ], + "result": { + "name": "kicked", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + }, + { + "description": "Get all oped players", + "name": "minecraft:operators", + "params": [], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Set all oped players", + "name": "minecraft:operators/set", + "params": [ + { + "name": "operators", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Op players", + "name": "minecraft:operators/add", + "params": [ + { + "name": "add", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Deop players", + "name": "minecraft:operators/remove", + "params": [ + { + "name": "remove", + "required": true, + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/player" + } + } + } + ], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Deop all players", + "name": "minecraft:operators/clear", + "params": [], + "result": { + "name": "operators", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/operator" + } + } + } + }, + { + "description": "Get server status", + "name": "minecraft:server/status", + "params": [], + "result": { + "name": "status", + "schema": { + "$ref": "#/components/schemas/server_state" + } + } + }, + { + "description": "Save server state", + "name": "minecraft:server/save", + "params": [ + { + "name": "flush", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "saving", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Stop server", + "name": "minecraft:server/stop", + "params": [], + "result": { + "name": "stopping", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Send a system message", + "name": "minecraft:server/system_message", + "params": [ + { + "name": "message", + "required": true, + "schema": { + "$ref": "#/components/schemas/system_message" + } + } + ], + "result": { + "name": "sent", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether automatic world saving is enabled on the server", + "name": "minecraft:serversettings/autosave", + "params": [], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable automatic world saving on the server", + "name": "minecraft:serversettings/autosave/set", + "params": [ + { + "name": "enable", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the current difficulty level of the server", + "name": "minecraft:serversettings/difficulty", + "params": [], + "result": { + "name": "difficulty", + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + }, + { + "description": "Set the difficulty level of the server", + "name": "minecraft:serversettings/difficulty/set", + "params": [ + { + "name": "difficulty", + "required": true, + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + ], + "result": { + "name": "difficulty", + "schema": { + "$ref": "#/components/schemas/difficulty" + } + } + }, + { + "description": "Get whether allowlist enforcement is enabled (kicks players immediately when removed from allowlist)", + "name": "minecraft:serversettings/enforce_allowlist", + "params": [], + "result": { + "name": "enforced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable allowlist enforcement (when enabled, players are kicked immediately upon removal from allowlist)", + "name": "minecraft:serversettings/enforce_allowlist/set", + "params": [ + { + "name": "enforce", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enforced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether the allowlist is enabled on the server", + "name": "minecraft:serversettings/use_allowlist", + "params": [], + "result": { + "name": "used", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable the allowlist on the server (controls whether only allowlisted players can join)", + "name": "minecraft:serversettings/use_allowlist/set", + "params": [ + { + "name": "use", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "used", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the maximum number of players allowed to connect to the server", + "name": "minecraft:serversettings/max_players", + "params": [], + "result": { + "name": "max", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the maximum number of players allowed to connect to the server", + "name": "minecraft:serversettings/max_players/set", + "params": [ + { + "name": "max", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "max", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the number of seconds before the game is automatically paused when no players are online", + "name": "minecraft:serversettings/pause_when_empty_seconds", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the number of seconds before the game is automatically paused when no players are online", + "name": "minecraft:serversettings/pause_when_empty_seconds/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the number of seconds before idle players are automatically kicked from the server", + "name": "minecraft:serversettings/player_idle_timeout", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the number of seconds before idle players are automatically kicked from the server", + "name": "minecraft:serversettings/player_idle_timeout/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether flight is allowed for players in Survival mode", + "name": "minecraft:serversettings/allow_flight", + "params": [], + "result": { + "name": "allowed", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Allow or disallow flight for players in Survival mode", + "name": "minecraft:serversettings/allow_flight/set", + "params": [ + { + "name": "allow", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "allowed", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the server's message of the day displayed to players", + "name": "minecraft:serversettings/motd", + "params": [], + "result": { + "name": "message", + "schema": { + "type": "string" + } + } + }, + { + "description": "Set the server's message of the day displayed to players", + "name": "minecraft:serversettings/motd/set", + "params": [ + { + "name": "message", + "required": true, + "schema": { + "type": "string" + } + } + ], + "result": { + "name": "message", + "schema": { + "type": "string" + } + } + }, + { + "description": "Get the spawn protection radius in blocks (only operators can edit within this area)", + "name": "minecraft:serversettings/spawn_protection_radius", + "params": [], + "result": { + "name": "radius", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the spawn protection radius in blocks (only operators can edit within this area)", + "name": "minecraft:serversettings/spawn_protection_radius/set", + "params": [ + { + "name": "radius", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "radius", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether players are forced to use the server's default game mode", + "name": "minecraft:serversettings/force_game_mode", + "params": [], + "result": { + "name": "forced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable forcing players to use the server's default game mode", + "name": "minecraft:serversettings/force_game_mode/set", + "params": [ + { + "name": "force", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "forced", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the server's default game mode", + "name": "minecraft:serversettings/game_mode", + "params": [], + "result": { + "name": "mode", + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + }, + { + "description": "Set the server's default game mode", + "name": "minecraft:serversettings/game_mode/set", + "params": [ + { + "name": "mode", + "required": true, + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + ], + "result": { + "name": "mode", + "schema": { + "$ref": "#/components/schemas/game_type" + } + } + }, + { + "description": "Get the server's view distance in chunks", + "name": "minecraft:serversettings/view_distance", + "params": [], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the server's view distance in chunks", + "name": "minecraft:serversettings/view_distance/set", + "params": [ + { + "name": "distance", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the server's simulation distance in chunks", + "name": "minecraft:serversettings/simulation_distance", + "params": [], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the server's simulation distance in chunks", + "name": "minecraft:serversettings/simulation_distance/set", + "params": [ + { + "name": "distance", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "distance", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether the server accepts player transfers from other servers", + "name": "minecraft:serversettings/accept_transfers", + "params": [], + "result": { + "name": "accepted", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable accepting player transfers from other servers", + "name": "minecraft:serversettings/accept_transfers/set", + "params": [ + { + "name": "accept", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "accepted", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the interval in seconds between server status heartbeats", + "name": "minecraft:serversettings/status_heartbeat_interval", + "params": [], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the interval in seconds between server status heartbeats", + "name": "minecraft:serversettings/status_heartbeat_interval/set", + "params": [ + { + "name": "seconds", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "seconds", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get default operator permission level", + "name": "minecraft:serversettings/operator_user_permission_level", + "params": [], + "result": { + "name": "level", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set default operator permission level", + "name": "minecraft:serversettings/operator_user_permission_level/set", + "params": [ + { + "name": "level", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "level", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get whether the server hides online player information from status queries", + "name": "minecraft:serversettings/hide_online_players", + "params": [], + "result": { + "name": "hidden", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable hiding online player information from status queries", + "name": "minecraft:serversettings/hide_online_players/set", + "params": [ + { + "name": "hide", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "hidden", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get whether the server responds to connection status requests", + "name": "minecraft:serversettings/status_replies", + "params": [], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Enable or disable the server responding to connection status requests", + "name": "minecraft:serversettings/status_replies/set", + "params": [ + { + "name": "enable", + "required": true, + "schema": { + "type": "boolean" + } + } + ], + "result": { + "name": "enabled", + "schema": { + "type": "boolean" + } + } + }, + { + "description": "Get the entity broadcast range as a percentage", + "name": "minecraft:serversettings/entity_broadcast_range", + "params": [], + "result": { + "name": "percentage_points", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Set the entity broadcast range as a percentage", + "name": "minecraft:serversettings/entity_broadcast_range/set", + "params": [ + { + "name": "percentage_points", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "result": { + "name": "percentage_points", + "schema": { + "type": "integer" + } + } + }, + { + "description": "Get the available game rule keys and their current values", + "name": "minecraft:gamerules", + "params": [], + "result": { + "name": "gamerules", + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + } + }, + { + "description": "Update game rule value", + "name": "minecraft:gamerules/update", + "params": [ + { + "name": "gamerule", + "required": true, + "schema": { + "$ref": "#/components/schemas/untyped_game_rule" + } + } + ], + "result": { + "name": "gamerule", + "schema": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + }, + { + "description": "Server started", + "name": "minecraft:notification/server/started", + "params": [] + }, + { + "description": "Server shutting down", + "name": "minecraft:notification/server/stopping", + "params": [] + }, + { + "description": "Server save started", + "name": "minecraft:notification/server/saving", + "params": [] + }, + { + "description": "Server save completed", + "name": "minecraft:notification/server/saved", + "params": [] + }, + { + "description": "Server activity occurred. Rate limited to 1 notification per 30 seconds", + "name": "minecraft:notification/server/activity", + "params": [] + }, + { + "description": "Player joined", + "name": "minecraft:notification/players/joined", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player left", + "name": "minecraft:notification/players/left", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player was oped", + "name": "minecraft:notification/operators/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/operator" + } + } + ] + }, + { + "description": "Player was deoped", + "name": "minecraft:notification/operators/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/operator" + } + } + ] + }, + { + "description": "Player was added to allowlist", + "name": "minecraft:notification/allowlist/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Player was removed from allowlist", + "name": "minecraft:notification/allowlist/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Ip was added to ip ban list", + "name": "minecraft:notification/ip_bans/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/ip_ban" + } + } + ] + }, + { + "description": "Ip was removed from ip ban list", + "name": "minecraft:notification/ip_bans/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "type": "string" + } + } + ] + }, + { + "description": "Player was added to ban list", + "name": "minecraft:notification/bans/added", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/user_ban" + } + } + ] + }, + { + "description": "Player was removed from ban list", + "name": "minecraft:notification/bans/removed", + "params": [ + { + "name": "player", + "required": true, + "schema": { + "$ref": "#/components/schemas/player" + } + } + ] + }, + { + "description": "Gamerule was changed", + "name": "minecraft:notification/gamerules/updated", + "params": [ + { + "name": "gamerule", + "required": true, + "schema": { + "$ref": "#/components/schemas/typed_game_rule" + } + } + ] + }, + { + "description": "Server status heartbeat, including before the server has spun up", + "name": "minecraft:notification/server/status", + "params": [ + { + "name": "status", + "required": true, + "schema": { + "$ref": "#/components/schemas/server_state" + } + } + ] + } + ], + "openrpc": "1.3.2" +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_boat.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_boat.json new file mode 100644 index 00000000..bb3ab271 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_boat", + "minecraft:item_name": { + "translate": "item.minecraft.acacia_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_button.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_button.json new file mode 100644 index 00000000..d50d8a02 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_button", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_chest_boat.json new file mode 100644 index 00000000..ae14d203 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.acacia_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_door.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_door.json new file mode 100644 index 00000000..52503765 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_door", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_fence.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_fence.json new file mode 100644 index 00000000..4333a724 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_fence", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_fence_gate.json new file mode 100644 index 00000000..98d377e4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_hanging_sign.json new file mode 100644 index 00000000..91f9526b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_leaves.json new file mode 100644 index 00000000..dcf706cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_log.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_log.json new file mode 100644 index 00000000..a6d6ee99 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_log", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_planks.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_planks.json new file mode 100644 index 00000000..0e5a5409 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_planks", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_pressure_plate.json new file mode 100644 index 00000000..d03d9bf9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_sapling.json new file mode 100644 index 00000000..8c489eae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_shelf.json new file mode 100644 index 00000000..d189e5c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_sign.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_sign.json new file mode 100644 index 00000000..9bd2adc7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_sign", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_slab.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_slab.json new file mode 100644 index 00000000..b27f7c9a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_slab", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_stairs.json new file mode 100644 index 00000000..98206d7d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_trapdoor.json new file mode 100644 index 00000000..39014819 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/acacia_wood.json b/data/generated/V26_2/reports/minecraft/components/item/acacia_wood.json new file mode 100644 index 00000000..03dda0c2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/acacia_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:acacia_wood", + "minecraft:item_name": { + "translate": "block.minecraft.acacia_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/activator_rail.json b/data/generated/V26_2/reports/minecraft/components/item/activator_rail.json new file mode 100644 index 00000000..f595f18b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/activator_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:activator_rail", + "minecraft:item_name": { + "translate": "block.minecraft.activator_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/air.json b/data/generated/V26_2/reports/minecraft/components/item/air.json new file mode 100644 index 00000000..3b4e0f74 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/air.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:air", + "minecraft:item_name": { + "translate": "block.minecraft.air" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/allay_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/allay_spawn_egg.json new file mode 100644 index 00000000..2f3a0cc5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/allay_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:allay" + }, + "minecraft:item_model": "minecraft:allay_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.allay_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/allium.json b/data/generated/V26_2/reports/minecraft/components/item/allium.json new file mode 100644 index 00000000..f2538a69 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/allium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:allium", + "minecraft:item_name": { + "translate": "block.minecraft.allium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/amethyst_block.json b/data/generated/V26_2/reports/minecraft/components/item/amethyst_block.json new file mode 100644 index 00000000..9f6b7ea2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/amethyst_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_block", + "minecraft:item_name": { + "translate": "block.minecraft.amethyst_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/amethyst_cluster.json b/data/generated/V26_2/reports/minecraft/components/item/amethyst_cluster.json new file mode 100644 index 00000000..2e0907a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/amethyst_cluster.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_cluster", + "minecraft:item_name": { + "translate": "block.minecraft.amethyst_cluster" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/amethyst_shard.json b/data/generated/V26_2/reports/minecraft/components/item/amethyst_shard.json new file mode 100644 index 00000000..99376c87 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/amethyst_shard.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:amethyst_shard", + "minecraft:item_name": { + "translate": "item.minecraft.amethyst_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:amethyst", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ancient_debris.json b/data/generated/V26_2/reports/minecraft/components/item/ancient_debris.json new file mode 100644 index 00000000..84bd45cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ancient_debris.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ancient_debris", + "minecraft:item_name": { + "translate": "block.minecraft.ancient_debris" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/andesite.json b/data/generated/V26_2/reports/minecraft/components/item/andesite.json new file mode 100644 index 00000000..19d4e768 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/andesite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite", + "minecraft:item_name": { + "translate": "block.minecraft.andesite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/andesite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/andesite_slab.json new file mode 100644 index 00000000..29cb734e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/andesite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/andesite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/andesite_stairs.json new file mode 100644 index 00000000..9f5034d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/andesite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/andesite_wall.json b/data/generated/V26_2/reports/minecraft/components/item/andesite_wall.json new file mode 100644 index 00000000..626d335c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/andesite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:andesite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.andesite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/angler_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/angler_pottery_sherd.json new file mode 100644 index 00000000..68f1c7d5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/angler_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:angler_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.angler_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/anvil.json b/data/generated/V26_2/reports/minecraft/components/item/anvil.json new file mode 100644 index 00000000..35149369 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:anvil", + "minecraft:item_name": { + "translate": "block.minecraft.anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/apple.json b/data/generated/V26_2/reports/minecraft/components/item/apple.json new file mode 100644 index 00000000..170f55ac --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/apple.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 4, + "saturation": 2.4 + }, + "minecraft:item_model": "minecraft:apple", + "minecraft:item_name": { + "translate": "item.minecraft.apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/archer_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/archer_pottery_sherd.json new file mode 100644 index 00000000..932c169d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/archer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:archer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.archer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/armadillo_scute.json b/data/generated/V26_2/reports/minecraft/components/item/armadillo_scute.json new file mode 100644 index 00000000..97e20a56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/armadillo_scute.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:armadillo_scute", + "minecraft:item_name": { + "translate": "item.minecraft.armadillo_scute" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/armadillo_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/armadillo_spawn_egg.json new file mode 100644 index 00000000..eeeda2dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/armadillo_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:armadillo" + }, + "minecraft:item_model": "minecraft:armadillo_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.armadillo_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/armor_stand.json b/data/generated/V26_2/reports/minecraft/components/item/armor_stand.json new file mode 100644 index 00000000..45412099 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/armor_stand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:armor_stand", + "minecraft:item_name": { + "translate": "item.minecraft.armor_stand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/arms_up_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/arms_up_pottery_sherd.json new file mode 100644 index 00000000..96ca2b35 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/arms_up_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:arms_up_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.arms_up_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/arrow.json b/data/generated/V26_2/reports/minecraft/components/item/arrow.json new file mode 100644 index 00000000..724423df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/arrow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:arrow", + "minecraft:item_name": { + "translate": "item.minecraft.arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/axolotl_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/axolotl_bucket.json new file mode 100644 index 00000000..610508a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/axolotl_bucket.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:axolotl_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.axolotl_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/axolotl_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/axolotl_spawn_egg.json new file mode 100644 index 00000000..0e957313 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/axolotl_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:axolotl" + }, + "minecraft:item_model": "minecraft:axolotl_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.axolotl_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/azalea.json b/data/generated/V26_2/reports/minecraft/components/item/azalea.json new file mode 100644 index 00000000..852283b3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/azalea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azalea", + "minecraft:item_name": { + "translate": "block.minecraft.azalea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/azalea_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/azalea_leaves.json new file mode 100644 index 00000000..9e470b12 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/azalea_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azalea_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.azalea_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/azure_bluet.json b/data/generated/V26_2/reports/minecraft/components/item/azure_bluet.json new file mode 100644 index 00000000..83863213 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/azure_bluet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:azure_bluet", + "minecraft:item_name": { + "translate": "block.minecraft.azure_bluet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/baked_potato.json b/data/generated/V26_2/reports/minecraft/components/item/baked_potato.json new file mode 100644 index 00000000..51025383 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/baked_potato.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:baked_potato", + "minecraft:item_name": { + "translate": "item.minecraft.baked_potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo.json new file mode 100644 index 00000000..8b998f48 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_block.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_block.json new file mode 100644 index 00000000..f10ea1ea --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_block", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_button.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_button.json new file mode 100644 index 00000000..67df99be --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_button", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_chest_raft.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_chest_raft.json new file mode 100644 index 00000000..004960c5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_chest_raft.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_chest_raft", + "minecraft:item_name": { + "translate": "item.minecraft.bamboo_chest_raft" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_door.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_door.json new file mode 100644 index 00000000..e04bd0f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_door", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence.json new file mode 100644 index 00000000..e8ac2a50 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_fence", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence_gate.json new file mode 100644 index 00000000..8ffd703a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_hanging_sign.json new file mode 100644 index 00000000..85e42cfb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic.json new file mode 100644 index 00000000..cd5713aa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_slab.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_slab.json new file mode 100644 index 00000000..9a7eff8a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic_slab", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_stairs.json new file mode 100644 index 00000000..1286c778 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_mosaic_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_mosaic_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_mosaic_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_planks.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_planks.json new file mode 100644 index 00000000..58d917cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_planks", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_pressure_plate.json new file mode 100644 index 00000000..69a01b17 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_raft.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_raft.json new file mode 100644 index 00000000..49f70180 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_raft.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_raft", + "minecraft:item_name": { + "translate": "item.minecraft.bamboo_raft" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_shelf.json new file mode 100644 index 00000000..9c0712c7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_sign.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_sign.json new file mode 100644 index 00000000..f0e303d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_sign", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_slab.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_slab.json new file mode 100644 index 00000000..9b78761a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_slab", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_stairs.json new file mode 100644 index 00000000..65969294 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bamboo_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/bamboo_trapdoor.json new file mode 100644 index 00000000..f1fd8779 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bamboo_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bamboo_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.bamboo_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/barrel.json b/data/generated/V26_2/reports/minecraft/components/item/barrel.json new file mode 100644 index 00000000..36a7c971 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/barrel.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:barrel", + "minecraft:item_name": { + "translate": "block.minecraft.barrel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/barrier.json b/data/generated/V26_2/reports/minecraft/components/item/barrier.json new file mode 100644 index 00000000..6e51b455 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/barrier.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:barrier", + "minecraft:item_name": { + "translate": "block.minecraft.barrier" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/basalt.json b/data/generated/V26_2/reports/minecraft/components/item/basalt.json new file mode 100644 index 00000000..5b255dca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:basalt", + "minecraft:item_name": { + "translate": "block.minecraft.basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bat_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/bat_spawn_egg.json new file mode 100644 index 00000000..c7be8c75 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bat" + }, + "minecraft:item_model": "minecraft:bat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beacon.json b/data/generated/V26_2/reports/minecraft/components/item/beacon.json new file mode 100644 index 00000000..4820d6a2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beacon.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beacon", + "minecraft:item_name": { + "translate": "block.minecraft.beacon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bedrock.json b/data/generated/V26_2/reports/minecraft/components/item/bedrock.json new file mode 100644 index 00000000..501cf471 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bedrock.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bedrock", + "minecraft:item_name": { + "translate": "block.minecraft.bedrock" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bee_nest.json b/data/generated/V26_2/reports/minecraft/components/item/bee_nest.json new file mode 100644 index 00000000..afd9e9a4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bee_nest.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:bees": [], + "minecraft:block_state": { + "honey_level": "0" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bee_nest", + "minecraft:item_name": { + "translate": "block.minecraft.bee_nest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bee_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/bee_spawn_egg.json new file mode 100644 index 00000000..2d79827b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bee_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bee" + }, + "minecraft:item_model": "minecraft:bee_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bee_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beef.json b/data/generated/V26_2/reports/minecraft/components/item/beef.json new file mode 100644 index 00000000..b641fcad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beef.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:beef", + "minecraft:item_name": { + "translate": "item.minecraft.beef" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beehive.json b/data/generated/V26_2/reports/minecraft/components/item/beehive.json new file mode 100644 index 00000000..9d094cda --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beehive.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:bees": [], + "minecraft:block_state": { + "honey_level": "0" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beehive", + "minecraft:item_name": { + "translate": "block.minecraft.beehive" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beetroot.json b/data/generated/V26_2/reports/minecraft/components/item/beetroot.json new file mode 100644 index 00000000..501f79c4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beetroot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:beetroot", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beetroot_seeds.json b/data/generated/V26_2/reports/minecraft/components/item/beetroot_seeds.json new file mode 100644 index 00000000..7f4771a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beetroot_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:beetroot_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/beetroot_soup.json b/data/generated/V26_2/reports/minecraft/components/item/beetroot_soup.json new file mode 100644 index 00000000..3e289d15 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/beetroot_soup.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:beetroot_soup", + "minecraft:item_name": { + "translate": "item.minecraft.beetroot_soup" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bell.json b/data/generated/V26_2/reports/minecraft/components/item/bell.json new file mode 100644 index 00000000..395f497d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bell", + "minecraft:item_name": { + "translate": "block.minecraft.bell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/big_dripleaf.json b/data/generated/V26_2/reports/minecraft/components/item/big_dripleaf.json new file mode 100644 index 00000000..343b5684 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/big_dripleaf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:big_dripleaf", + "minecraft:item_name": { + "translate": "block.minecraft.big_dripleaf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_boat.json b/data/generated/V26_2/reports/minecraft/components/item/birch_boat.json new file mode 100644 index 00000000..3590e3df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_boat", + "minecraft:item_name": { + "translate": "item.minecraft.birch_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_button.json b/data/generated/V26_2/reports/minecraft/components/item/birch_button.json new file mode 100644 index 00000000..6ae9dbe5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_button", + "minecraft:item_name": { + "translate": "block.minecraft.birch_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/birch_chest_boat.json new file mode 100644 index 00000000..fb7cd7c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.birch_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_door.json b/data/generated/V26_2/reports/minecraft/components/item/birch_door.json new file mode 100644 index 00000000..2b21a34a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_door", + "minecraft:item_name": { + "translate": "block.minecraft.birch_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_fence.json b/data/generated/V26_2/reports/minecraft/components/item/birch_fence.json new file mode 100644 index 00000000..6262097e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_fence", + "minecraft:item_name": { + "translate": "block.minecraft.birch_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/birch_fence_gate.json new file mode 100644 index 00000000..b1526453 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.birch_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/birch_hanging_sign.json new file mode 100644 index 00000000..66cab3c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.birch_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/birch_leaves.json new file mode 100644 index 00000000..775cfe27 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.birch_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_log.json b/data/generated/V26_2/reports/minecraft/components/item/birch_log.json new file mode 100644 index 00000000..14854a22 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_log", + "minecraft:item_name": { + "translate": "block.minecraft.birch_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_planks.json b/data/generated/V26_2/reports/minecraft/components/item/birch_planks.json new file mode 100644 index 00000000..30c6b4e7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_planks", + "minecraft:item_name": { + "translate": "block.minecraft.birch_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/birch_pressure_plate.json new file mode 100644 index 00000000..55959ea4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.birch_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/birch_sapling.json new file mode 100644 index 00000000..3a3ee018 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.birch_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/birch_shelf.json new file mode 100644 index 00000000..036915b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.birch_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_sign.json b/data/generated/V26_2/reports/minecraft/components/item/birch_sign.json new file mode 100644 index 00000000..a453f651 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_sign", + "minecraft:item_name": { + "translate": "block.minecraft.birch_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_slab.json b/data/generated/V26_2/reports/minecraft/components/item/birch_slab.json new file mode 100644 index 00000000..24aeaaa2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_slab", + "minecraft:item_name": { + "translate": "block.minecraft.birch_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/birch_stairs.json new file mode 100644 index 00000000..d739b8cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.birch_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/birch_trapdoor.json new file mode 100644 index 00000000..85df4f2a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.birch_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/birch_wood.json b/data/generated/V26_2/reports/minecraft/components/item/birch_wood.json new file mode 100644 index 00000000..0bc049b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/birch_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:birch_wood", + "minecraft:item_name": { + "translate": "block.minecraft.birch_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_banner.json b/data/generated/V26_2/reports/minecraft/components/item/black_banner.json new file mode 100644 index 00000000..c5b687fd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_banner", + "minecraft:item_name": { + "translate": "block.minecraft.black_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_bed.json b/data/generated/V26_2/reports/minecraft/components/item/black_bed.json new file mode 100644 index 00000000..507e6259 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_bed", + "minecraft:item_name": { + "translate": "block.minecraft.black_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/black_bundle.json new file mode 100644 index 00000000..5ca84cf3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.black_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_candle.json b/data/generated/V26_2/reports/minecraft/components/item/black_candle.json new file mode 100644 index 00000000..39a96ed1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_candle", + "minecraft:item_name": { + "translate": "block.minecraft.black_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/black_carpet.json new file mode 100644 index 00000000..3b3ea655 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:black_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:black_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.black_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/black_concrete.json new file mode 100644 index 00000000..4f281fdb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.black_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/black_concrete_powder.json new file mode 100644 index 00000000..557e8ebb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.black_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_dye.json b/data/generated/V26_2/reports/minecraft/components/item/black_dye.json new file mode 100644 index 00000000..40ec03ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "black", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_dye", + "minecraft:item_name": { + "translate": "item.minecraft.black_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/black_glazed_terracotta.json new file mode 100644 index 00000000..ef798e0c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.black_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_harness.json b/data/generated/V26_2/reports/minecraft/components/item/black_harness.json new file mode 100644 index 00000000..661357ad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:black_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:black_harness", + "minecraft:item_name": { + "translate": "item.minecraft.black_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/black_shulker_box.json new file mode 100644 index 00000000..11fc9e93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.black_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass.json new file mode 100644 index 00000000..05ed001a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.black_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass_pane.json new file mode 100644 index 00000000..7c469062 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.black_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/black_terracotta.json new file mode 100644 index 00000000..dabc3e8e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.black_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/black_wool.json b/data/generated/V26_2/reports/minecraft/components/item/black_wool.json new file mode 100644 index 00000000..5e6f288d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/black_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:black_wool", + "minecraft:item_name": { + "translate": "block.minecraft.black_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blackstone.json b/data/generated/V26_2/reports/minecraft/components/item/blackstone.json new file mode 100644 index 00000000..5e8e9f91 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blackstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/blackstone_slab.json new file mode 100644 index 00000000..97fd9afa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blackstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blackstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/blackstone_stairs.json new file mode 100644 index 00000000..1eb0d61b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blackstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blackstone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/blackstone_wall.json new file mode 100644 index 00000000..031e0de3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blackstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blackstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.blackstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blade_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/blade_pottery_sherd.json new file mode 100644 index 00000000..b78bcd6c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blade_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blade_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.blade_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blast_furnace.json b/data/generated/V26_2/reports/minecraft/components/item/blast_furnace.json new file mode 100644 index 00000000..5ecd404d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blast_furnace.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blast_furnace", + "minecraft:item_name": { + "translate": "block.minecraft.blast_furnace" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blaze_powder.json b/data/generated/V26_2/reports/minecraft/components/item/blaze_powder.json new file mode 100644 index 00000000..2ef8e4fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blaze_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blaze_powder", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blaze_rod.json b/data/generated/V26_2/reports/minecraft/components/item/blaze_rod.json new file mode 100644 index 00000000..d4dc26a9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blaze_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blaze_rod", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blaze_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/blaze_spawn_egg.json new file mode 100644 index 00000000..68d33b57 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blaze_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:blaze" + }, + "minecraft:item_model": "minecraft:blaze_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.blaze_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_banner.json b/data/generated/V26_2/reports/minecraft/components/item/blue_banner.json new file mode 100644 index 00000000..fe9a703d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_banner", + "minecraft:item_name": { + "translate": "block.minecraft.blue_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_bed.json b/data/generated/V26_2/reports/minecraft/components/item/blue_bed.json new file mode 100644 index 00000000..d7e09103 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_bed", + "minecraft:item_name": { + "translate": "block.minecraft.blue_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/blue_bundle.json new file mode 100644 index 00000000..851b5239 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.blue_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_candle.json b/data/generated/V26_2/reports/minecraft/components/item/blue_candle.json new file mode 100644 index 00000000..7bc66d14 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_candle", + "minecraft:item_name": { + "translate": "block.minecraft.blue_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/blue_carpet.json new file mode 100644 index 00000000..c3ac3cf0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:blue_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:blue_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.blue_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/blue_concrete.json new file mode 100644 index 00000000..c4034f01 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.blue_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/blue_concrete_powder.json new file mode 100644 index 00000000..4e7bb19f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.blue_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_dye.json b/data/generated/V26_2/reports/minecraft/components/item/blue_dye.json new file mode 100644 index 00000000..7843ea3a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "blue", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_dye", + "minecraft:item_name": { + "translate": "item.minecraft.blue_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_egg.json b/data/generated/V26_2/reports/minecraft/components/item/blue_egg.json new file mode 100644 index 00000000..9d9077b9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:cold", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_egg", + "minecraft:item_name": { + "translate": "item.minecraft.blue_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/blue_glazed_terracotta.json new file mode 100644 index 00000000..1696f616 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.blue_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_harness.json b/data/generated/V26_2/reports/minecraft/components/item/blue_harness.json new file mode 100644 index 00000000..6b5e8af6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:blue_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:blue_harness", + "minecraft:item_name": { + "translate": "item.minecraft.blue_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_ice.json b/data/generated/V26_2/reports/minecraft/components/item/blue_ice.json new file mode 100644 index 00000000..6f1cc66f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_ice", + "minecraft:item_name": { + "translate": "block.minecraft.blue_ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_orchid.json b/data/generated/V26_2/reports/minecraft/components/item/blue_orchid.json new file mode 100644 index 00000000..ef9fb3bc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_orchid.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_orchid", + "minecraft:item_name": { + "translate": "block.minecraft.blue_orchid" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/blue_shulker_box.json new file mode 100644 index 00000000..87ba4705 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.blue_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass.json new file mode 100644 index 00000000..3beca555 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.blue_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass_pane.json new file mode 100644 index 00000000..0f2c2f15 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.blue_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/blue_terracotta.json new file mode 100644 index 00000000..161527fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.blue_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/blue_wool.json b/data/generated/V26_2/reports/minecraft/components/item/blue_wool.json new file mode 100644 index 00000000..24aba645 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/blue_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:blue_wool", + "minecraft:item_name": { + "translate": "block.minecraft.blue_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bogged_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/bogged_spawn_egg.json new file mode 100644 index 00000000..0630b166 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bogged_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:bogged" + }, + "minecraft:item_model": "minecraft:bogged_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.bogged_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json new file mode 100644 index 00000000..c038550b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bolt_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bolt_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.bolt_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bone.json b/data/generated/V26_2/reports/minecraft/components/item/bone.json new file mode 100644 index 00000000..031239da --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone", + "minecraft:item_name": { + "translate": "item.minecraft.bone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bone_block.json b/data/generated/V26_2/reports/minecraft/components/item/bone_block.json new file mode 100644 index 00000000..1e684124 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone_block", + "minecraft:item_name": { + "translate": "block.minecraft.bone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bone_meal.json b/data/generated/V26_2/reports/minecraft/components/item/bone_meal.json new file mode 100644 index 00000000..4224e05b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bone_meal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bone_meal", + "minecraft:item_name": { + "translate": "item.minecraft.bone_meal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/book.json b/data/generated/V26_2/reports/minecraft/components/item/book.json new file mode 100644 index 00000000..3d39acaf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/book.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:book", + "minecraft:item_name": { + "translate": "item.minecraft.book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bookshelf.json b/data/generated/V26_2/reports/minecraft/components/item/bookshelf.json new file mode 100644 index 00000000..57305c27 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bookshelf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bookshelf", + "minecraft:item_name": { + "translate": "block.minecraft.bookshelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bordure_indented_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/bordure_indented_banner_pattern.json new file mode 100644 index 00000000..edc98b4d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bordure_indented_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bordure_indented_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.bordure_indented_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/bordure_indented", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bow.json b/data/generated/V26_2/reports/minecraft/components/item/bow.json new file mode 100644 index 00000000..66702520 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bow.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bow", + "minecraft:item_name": { + "translate": "item.minecraft.bow" + }, + "minecraft:lore": [], + "minecraft:max_damage": 384, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bowl.json b/data/generated/V26_2/reports/minecraft/components/item/bowl.json new file mode 100644 index 00000000..4174e5ab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bowl.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bowl", + "minecraft:item_name": { + "translate": "item.minecraft.bowl" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brain_coral.json b/data/generated/V26_2/reports/minecraft/components/item/brain_coral.json new file mode 100644 index 00000000..375fcaef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brain_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brain_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/brain_coral_block.json new file mode 100644 index 00000000..0fecbd9f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brain_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brain_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/brain_coral_fan.json new file mode 100644 index 00000000..d252e206 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brain_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brain_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.brain_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bread.json b/data/generated/V26_2/reports/minecraft/components/item/bread.json new file mode 100644 index 00000000..ef19e6fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bread.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:bread", + "minecraft:item_name": { + "translate": "item.minecraft.bread" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/breeze_rod.json b/data/generated/V26_2/reports/minecraft/components/item/breeze_rod.json new file mode 100644 index 00000000..0d0eb4fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/breeze_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:breeze_rod", + "minecraft:item_name": { + "translate": "item.minecraft.breeze_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/breeze_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/breeze_spawn_egg.json new file mode 100644 index 00000000..8a3fc6d4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/breeze_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:breeze" + }, + "minecraft:item_model": "minecraft:breeze_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.breeze_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brewer_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/brewer_pottery_sherd.json new file mode 100644 index 00000000..f0c5024a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brewer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brewer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.brewer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brewing_stand.json b/data/generated/V26_2/reports/minecraft/components/item/brewing_stand.json new file mode 100644 index 00000000..5e88cc77 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brewing_stand.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brewing_stand", + "minecraft:item_name": { + "translate": "block.minecraft.brewing_stand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brick.json b/data/generated/V26_2/reports/minecraft/components/item/brick.json new file mode 100644 index 00000000..90e0b27b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick", + "minecraft:item_name": { + "translate": "item.minecraft.brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/brick_slab.json new file mode 100644 index 00000000..461c4079 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/brick_stairs.json new file mode 100644 index 00000000..55bb3834 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/brick_wall.json new file mode 100644 index 00000000..f6528a03 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bricks.json b/data/generated/V26_2/reports/minecraft/components/item/bricks.json new file mode 100644 index 00000000..6e2ce023 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bricks", + "minecraft:item_name": { + "translate": "block.minecraft.bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_banner.json b/data/generated/V26_2/reports/minecraft/components/item/brown_banner.json new file mode 100644 index 00000000..fb1e0a6a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_banner", + "minecraft:item_name": { + "translate": "block.minecraft.brown_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_bed.json b/data/generated/V26_2/reports/minecraft/components/item/brown_bed.json new file mode 100644 index 00000000..783b915b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_bed", + "minecraft:item_name": { + "translate": "block.minecraft.brown_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/brown_bundle.json new file mode 100644 index 00000000..0ee27105 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.brown_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_candle.json b/data/generated/V26_2/reports/minecraft/components/item/brown_candle.json new file mode 100644 index 00000000..0670279e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_candle", + "minecraft:item_name": { + "translate": "block.minecraft.brown_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/brown_carpet.json new file mode 100644 index 00000000..b7dca398 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:brown_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:brown_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.brown_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/brown_concrete.json new file mode 100644 index 00000000..a62fda3c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.brown_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/brown_concrete_powder.json new file mode 100644 index 00000000..fc146eb3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.brown_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_dye.json b/data/generated/V26_2/reports/minecraft/components/item/brown_dye.json new file mode 100644 index 00000000..02520630 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "brown", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_dye", + "minecraft:item_name": { + "translate": "item.minecraft.brown_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_egg.json b/data/generated/V26_2/reports/minecraft/components/item/brown_egg.json new file mode 100644 index 00000000..570ff735 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:warm", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_egg", + "minecraft:item_name": { + "translate": "item.minecraft.brown_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/brown_glazed_terracotta.json new file mode 100644 index 00000000..4b81f715 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.brown_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_harness.json b/data/generated/V26_2/reports/minecraft/components/item/brown_harness.json new file mode 100644 index 00000000..389beb82 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:brown_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:brown_harness", + "minecraft:item_name": { + "translate": "item.minecraft.brown_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom.json b/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom.json new file mode 100644 index 00000000..37c8d2ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_mushroom", + "minecraft:item_name": { + "translate": "block.minecraft.brown_mushroom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom_block.json b/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom_block.json new file mode 100644 index 00000000..effa0a35 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_mushroom_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_mushroom_block", + "minecraft:item_name": { + "translate": "block.minecraft.brown_mushroom_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/brown_shulker_box.json new file mode 100644 index 00000000..aabd531d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.brown_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass.json new file mode 100644 index 00000000..277b3c96 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.brown_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass_pane.json new file mode 100644 index 00000000..84c19d9f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.brown_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/brown_terracotta.json new file mode 100644 index 00000000..fe39ffa0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.brown_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brown_wool.json b/data/generated/V26_2/reports/minecraft/components/item/brown_wool.json new file mode 100644 index 00000000..0b77c750 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brown_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brown_wool", + "minecraft:item_name": { + "translate": "block.minecraft.brown_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/brush.json b/data/generated/V26_2/reports/minecraft/components/item/brush.json new file mode 100644 index 00000000..eccac433 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/brush.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:brush", + "minecraft:item_name": { + "translate": "item.minecraft.brush" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bubble_coral.json b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral.json new file mode 100644 index 00000000..53768f3a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_block.json new file mode 100644 index 00000000..45a50d56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_fan.json new file mode 100644 index 00000000..702d9a52 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bubble_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bubble_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.bubble_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bucket.json b/data/generated/V26_2/reports/minecraft/components/item/bucket.json new file mode 100644 index 00000000..f7f8b1fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bucket", + "minecraft:item_name": { + "translate": "item.minecraft.bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/budding_amethyst.json b/data/generated/V26_2/reports/minecraft/components/item/budding_amethyst.json new file mode 100644 index 00000000..d789a6bc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/budding_amethyst.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:budding_amethyst", + "minecraft:item_name": { + "translate": "block.minecraft.budding_amethyst" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bundle.json b/data/generated/V26_2/reports/minecraft/components/item/bundle.json new file mode 100644 index 00000000..e99702b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bundle", + "minecraft:item_name": { + "translate": "item.minecraft.bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/burn_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/burn_pottery_sherd.json new file mode 100644 index 00000000..cb9775d3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/burn_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:burn_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.burn_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/bush.json b/data/generated/V26_2/reports/minecraft/components/item/bush.json new file mode 100644 index 00000000..8bce5461 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:bush", + "minecraft:item_name": { + "translate": "block.minecraft.bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cactus.json b/data/generated/V26_2/reports/minecraft/components/item/cactus.json new file mode 100644 index 00000000..2a37acd3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cactus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cactus", + "minecraft:item_name": { + "translate": "block.minecraft.cactus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cactus_flower.json b/data/generated/V26_2/reports/minecraft/components/item/cactus_flower.json new file mode 100644 index 00000000..61b10f28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cactus_flower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cactus_flower", + "minecraft:item_name": { + "translate": "block.minecraft.cactus_flower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cake.json b/data/generated/V26_2/reports/minecraft/components/item/cake.json new file mode 100644 index 00000000..7893f3c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cake.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cake", + "minecraft:item_name": { + "translate": "block.minecraft.cake" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/calcite.json b/data/generated/V26_2/reports/minecraft/components/item/calcite.json new file mode 100644 index 00000000..91232ffb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/calcite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:calcite", + "minecraft:item_name": { + "translate": "block.minecraft.calcite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/calibrated_sculk_sensor.json b/data/generated/V26_2/reports/minecraft/components/item/calibrated_sculk_sensor.json new file mode 100644 index 00000000..bc4823e6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/calibrated_sculk_sensor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:calibrated_sculk_sensor", + "minecraft:item_name": { + "translate": "block.minecraft.calibrated_sculk_sensor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/camel_husk_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/camel_husk_spawn_egg.json new file mode 100644 index 00000000..08e384cb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/camel_husk_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:camel_husk" + }, + "minecraft:item_model": "minecraft:camel_husk_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.camel_husk_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/camel_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/camel_spawn_egg.json new file mode 100644 index 00000000..f8d25d2f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/camel_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:camel" + }, + "minecraft:item_model": "minecraft:camel_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.camel_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/campfire.json b/data/generated/V26_2/reports/minecraft/components/item/campfire.json new file mode 100644 index 00000000..a1ceebcb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/campfire.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:campfire", + "minecraft:item_name": { + "translate": "block.minecraft.campfire" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/candle.json b/data/generated/V26_2/reports/minecraft/components/item/candle.json new file mode 100644 index 00000000..41b991ed --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:candle", + "minecraft:item_name": { + "translate": "block.minecraft.candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/carrot.json b/data/generated/V26_2/reports/minecraft/components/item/carrot.json new file mode 100644 index 00000000..0f31509a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/carrot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 3.6000001 + }, + "minecraft:item_model": "minecraft:carrot", + "minecraft:item_name": { + "translate": "item.minecraft.carrot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/carrot_on_a_stick.json b/data/generated/V26_2/reports/minecraft/components/item/carrot_on_a_stick.json new file mode 100644 index 00000000..56df973c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/carrot_on_a_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:carrot_on_a_stick", + "minecraft:item_name": { + "translate": "item.minecraft.carrot_on_a_stick" + }, + "minecraft:lore": [], + "minecraft:max_damage": 25, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cartography_table.json b/data/generated/V26_2/reports/minecraft/components/item/cartography_table.json new file mode 100644 index 00000000..98a1b1e2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cartography_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cartography_table", + "minecraft:item_name": { + "translate": "block.minecraft.cartography_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/carved_pumpkin.json b/data/generated/V26_2/reports/minecraft/components/item/carved_pumpkin.json new file mode 100644 index 00000000..c1de669a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/carved_pumpkin.json @@ -0,0 +1,34 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "camera_overlay": "minecraft:misc/pumpkinblur", + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:carved_pumpkin", + "minecraft:item_name": { + "translate": "block.minecraft.carved_pumpkin" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cat_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/cat_spawn_egg.json new file mode 100644 index 00000000..f5e4d1ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cat" + }, + "minecraft:item_model": "minecraft:cat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cauldron.json b/data/generated/V26_2/reports/minecraft/components/item/cauldron.json new file mode 100644 index 00000000..86867fb3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cauldron.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cauldron", + "minecraft:item_name": { + "translate": "block.minecraft.cauldron" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cave_spider_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/cave_spider_spawn_egg.json new file mode 100644 index 00000000..db80973d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cave_spider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cave_spider" + }, + "minecraft:item_model": "minecraft:cave_spider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cave_spider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chain_command_block.json b/data/generated/V26_2/reports/minecraft/components/item/chain_command_block.json new file mode 100644 index 00000000..23ee4a1e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chain_command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chain_command_block", + "minecraft:item_name": { + "translate": "block.minecraft.chain_command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chainmail_boots.json b/data/generated/V26_2/reports/minecraft/components/item/chainmail_boots.json new file mode 100644 index 00000000..0c9fcc25 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chainmail_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:chainmail_boots", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 195, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chainmail_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/chainmail_chestplate.json new file mode 100644 index 00000000..af401174 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chainmail_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:chainmail_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 240, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chainmail_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/chainmail_helmet.json new file mode 100644 index 00000000..fd482cad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chainmail_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "head" + }, + "minecraft:item_model": "minecraft:chainmail_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chainmail_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/chainmail_leggings.json new file mode 100644 index 00000000..1f085a16 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chainmail_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 12 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:chainmail", + "equip_sound": "minecraft:item.armor.equip_chain", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:chainmail_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.chainmail_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 225, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_chain_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/charcoal.json b/data/generated/V26_2/reports/minecraft/components/item/charcoal.json new file mode 100644 index 00000000..bf43f68b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/charcoal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:charcoal", + "minecraft:item_name": { + "translate": "item.minecraft.charcoal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_boat.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_boat.json new file mode 100644 index 00000000..d49b88b0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_boat", + "minecraft:item_name": { + "translate": "item.minecraft.cherry_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_button.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_button.json new file mode 100644 index 00000000..05bc454b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_button", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_chest_boat.json new file mode 100644 index 00000000..68435580 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.cherry_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_door.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_door.json new file mode 100644 index 00000000..0b62e945 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_door", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_fence.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_fence.json new file mode 100644 index 00000000..bb77eb35 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_fence", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_fence_gate.json new file mode 100644 index 00000000..68f07e44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_hanging_sign.json new file mode 100644 index 00000000..28db2acd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_leaves.json new file mode 100644 index 00000000..d055cbb0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_log.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_log.json new file mode 100644 index 00000000..fa1d1843 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_log", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_planks.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_planks.json new file mode 100644 index 00000000..f5002e4a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_planks", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_pressure_plate.json new file mode 100644 index 00000000..82f37335 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_sapling.json new file mode 100644 index 00000000..48adef17 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_shelf.json new file mode 100644 index 00000000..cda5e532 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_sign.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_sign.json new file mode 100644 index 00000000..3a66778d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_sign", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_slab.json new file mode 100644 index 00000000..aebe7e01 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_stairs.json new file mode 100644 index 00000000..ed191e96 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_trapdoor.json new file mode 100644 index 00000000..955a452f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cherry_wood.json b/data/generated/V26_2/reports/minecraft/components/item/cherry_wood.json new file mode 100644 index 00000000..a66dcc63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cherry_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cherry_wood", + "minecraft:item_name": { + "translate": "block.minecraft.cherry_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chest.json b/data/generated/V26_2/reports/minecraft/components/item/chest.json new file mode 100644 index 00000000..a3035efc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chest.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chest", + "minecraft:item_name": { + "translate": "block.minecraft.chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chest_minecart.json b/data/generated/V26_2/reports/minecraft/components/item/chest_minecart.json new file mode 100644 index 00000000..86305ec4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chest_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chest_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.chest_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chicken.json b/data/generated/V26_2/reports/minecraft/components/item/chicken.json new file mode 100644 index 00000000..2b0367ca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chicken.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 600, + "id": "minecraft:hunger", + "show_icon": true + } + ], + "probability": 0.3 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:chicken", + "minecraft:item_name": { + "translate": "item.minecraft.chicken" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chicken_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/chicken_spawn_egg.json new file mode 100644 index 00000000..8f493556 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chicken_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:chicken" + }, + "minecraft:item_model": "minecraft:chicken_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.chicken_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chipped_anvil.json b/data/generated/V26_2/reports/minecraft/components/item/chipped_anvil.json new file mode 100644 index 00000000..01f8ade2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chipped_anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chipped_anvil", + "minecraft:item_name": { + "translate": "block.minecraft.chipped_anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_bookshelf.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_bookshelf.json new file mode 100644 index 00000000..598dadd7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_bookshelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_bookshelf", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_bookshelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_cinnabar.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_cinnabar.json new file mode 100644 index 00000000..96c36e92 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_cinnabar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_cinnabar", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_cinnabar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_copper.json new file mode 100644 index 00000000..ce9e1bb0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_deepslate.json new file mode 100644 index 00000000..c0d00d8b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_nether_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_nether_bricks.json new file mode 100644 index 00000000..cc75a487 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_polished_blackstone.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_polished_blackstone.json new file mode 100644 index 00000000..2c099e1c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_polished_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_polished_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_polished_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_quartz_block.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_quartz_block.json new file mode 100644 index 00000000..2b599e83 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_quartz_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_quartz_block", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_quartz_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_red_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_red_sandstone.json new file mode 100644 index 00000000..3a6c9404 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_resin_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_resin_bricks.json new file mode 100644 index 00000000..b6fb4586 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_resin_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_resin_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_resin_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_sandstone.json new file mode 100644 index 00000000..ce3d81da --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_stone_bricks.json new file mode 100644 index 00000000..77ebe858 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_sulfur.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_sulfur.json new file mode 100644 index 00000000..68289a52 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_sulfur.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_sulfur", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_sulfur" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff.json new file mode 100644 index 00000000..75ad3c1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_tuff", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff_bricks.json new file mode 100644 index 00000000..cf9d0edd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chiseled_tuff_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chiseled_tuff_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.chiseled_tuff_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chorus_flower.json b/data/generated/V26_2/reports/minecraft/components/item/chorus_flower.json new file mode 100644 index 00000000..eaa87b43 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chorus_flower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chorus_flower", + "minecraft:item_name": { + "translate": "block.minecraft.chorus_flower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chorus_fruit.json b/data/generated/V26_2/reports/minecraft/components/item/chorus_fruit.json new file mode 100644 index 00000000..c828e42b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chorus_fruit.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:teleport_randomly" + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 2.4 + }, + "minecraft:item_model": "minecraft:chorus_fruit", + "minecraft:item_name": { + "translate": "item.minecraft.chorus_fruit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 1.0 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/chorus_plant.json b/data/generated/V26_2/reports/minecraft/components/item/chorus_plant.json new file mode 100644 index 00000000..4d268e7e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/chorus_plant.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:chorus_plant", + "minecraft:item_name": { + "translate": "block.minecraft.chorus_plant" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar.json new file mode 100644 index 00000000..342824e9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_slab.json new file mode 100644 index 00000000..65750109 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_stairs.json new file mode 100644 index 00000000..cca23a8c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_wall.json new file mode 100644 index 00000000..4ad52cdc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_bricks.json new file mode 100644 index 00000000..da5d8acf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_slab.json new file mode 100644 index 00000000..cb463f64 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_stairs.json new file mode 100644 index 00000000..82fcccf5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cinnabar_wall.json b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_wall.json new file mode 100644 index 00000000..f4490262 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cinnabar_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cinnabar_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cinnabar_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/clay.json b/data/generated/V26_2/reports/minecraft/components/item/clay.json new file mode 100644 index 00000000..7256223e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/clay.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clay", + "minecraft:item_name": { + "translate": "block.minecraft.clay" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/clay_ball.json b/data/generated/V26_2/reports/minecraft/components/item/clay_ball.json new file mode 100644 index 00000000..4dbe00e3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/clay_ball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clay_ball", + "minecraft:item_name": { + "translate": "item.minecraft.clay_ball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/clock.json b/data/generated/V26_2/reports/minecraft/components/item/clock.json new file mode 100644 index 00000000..3d890538 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/clock.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:clock", + "minecraft:item_name": { + "translate": "item.minecraft.clock" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/closed_eyeblossom.json b/data/generated/V26_2/reports/minecraft/components/item/closed_eyeblossom.json new file mode 100644 index 00000000..71105fed --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/closed_eyeblossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:closed_eyeblossom", + "minecraft:item_name": { + "translate": "block.minecraft.closed_eyeblossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/coal.json b/data/generated/V26_2/reports/minecraft/components/item/coal.json new file mode 100644 index 00000000..74139cab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/coal.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal", + "minecraft:item_name": { + "translate": "item.minecraft.coal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/coal_block.json b/data/generated/V26_2/reports/minecraft/components/item/coal_block.json new file mode 100644 index 00000000..4afb4084 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/coal_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal_block", + "minecraft:item_name": { + "translate": "block.minecraft.coal_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/coal_ore.json b/data/generated/V26_2/reports/minecraft/components/item/coal_ore.json new file mode 100644 index 00000000..be6b079f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/coal_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coal_ore", + "minecraft:item_name": { + "translate": "block.minecraft.coal_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/coarse_dirt.json b/data/generated/V26_2/reports/minecraft/components/item/coarse_dirt.json new file mode 100644 index 00000000..c5a73815 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/coarse_dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coarse_dirt", + "minecraft:item_name": { + "translate": "block.minecraft.coarse_dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/coast_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/coast_armor_trim_smithing_template.json new file mode 100644 index 00000000..922a85bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/coast_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:coast_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.coast_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate.json new file mode 100644 index 00000000..9fe7bcff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_slab.json new file mode 100644 index 00000000..9fa8649a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_stairs.json new file mode 100644 index 00000000..3010a9dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_wall.json b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_wall.json new file mode 100644 index 00000000..c934d6e2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobbled_deepslate_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobbled_deepslate_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cobbled_deepslate_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobblestone.json b/data/generated/V26_2/reports/minecraft/components/item/cobblestone.json new file mode 100644 index 00000000..2197553e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobblestone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_slab.json new file mode 100644 index 00000000..2c7d4e10 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobblestone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_stairs.json new file mode 100644 index 00000000..fe0c5f3d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobblestone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_wall.json new file mode 100644 index 00000000..207d7215 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobblestone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobblestone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.cobblestone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cobweb.json b/data/generated/V26_2/reports/minecraft/components/item/cobweb.json new file mode 100644 index 00000000..b8537954 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cobweb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cobweb", + "minecraft:item_name": { + "translate": "block.minecraft.cobweb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cocoa_beans.json b/data/generated/V26_2/reports/minecraft/components/item/cocoa_beans.json new file mode 100644 index 00000000..2b8e0b5e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cocoa_beans.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cocoa_beans", + "minecraft:item_name": { + "translate": "item.minecraft.cocoa_beans" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cod.json b/data/generated/V26_2/reports/minecraft/components/item/cod.json new file mode 100644 index 00000000..6bdcfbc4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cod", + "minecraft:item_name": { + "translate": "item.minecraft.cod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cod_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/cod_bucket.json new file mode 100644 index 00000000..05bb48a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cod_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cod_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.cod_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cod_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/cod_spawn_egg.json new file mode 100644 index 00000000..79a786fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cod_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cod" + }, + "minecraft:item_model": "minecraft:cod_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cod_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/command_block.json b/data/generated/V26_2/reports/minecraft/components/item/command_block.json new file mode 100644 index 00000000..f88693a3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:command_block", + "minecraft:item_name": { + "translate": "block.minecraft.command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/command_block_minecart.json b/data/generated/V26_2/reports/minecraft/components/item/command_block_minecart.json new file mode 100644 index 00000000..8a70a9f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/command_block_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:command_block_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.command_block_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/comparator.json b/data/generated/V26_2/reports/minecraft/components/item/comparator.json new file mode 100644 index 00000000..ccce4143 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/comparator.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:comparator", + "minecraft:item_name": { + "translate": "block.minecraft.comparator" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/compass.json b/data/generated/V26_2/reports/minecraft/components/item/compass.json new file mode 100644 index 00000000..a9dacec4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/compass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:compass", + "minecraft:item_name": { + "translate": "item.minecraft.compass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/composter.json b/data/generated/V26_2/reports/minecraft/components/item/composter.json new file mode 100644 index 00000000..20295be1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/composter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:composter", + "minecraft:item_name": { + "translate": "block.minecraft.composter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/conduit.json b/data/generated/V26_2/reports/minecraft/components/item/conduit.json new file mode 100644 index 00000000..6bc974c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/conduit.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:conduit", + "minecraft:item_name": { + "translate": "block.minecraft.conduit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_beef.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_beef.json new file mode 100644 index 00000000..b8daafea --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_beef.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 12.8 + }, + "minecraft:item_model": "minecraft:cooked_beef", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_beef" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_chicken.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_chicken.json new file mode 100644 index 00000000..2f6c77dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_chicken.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:cooked_chicken", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_chicken" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_cod.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_cod.json new file mode 100644 index 00000000..560f7905 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_cod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:cooked_cod", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_cod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_mutton.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_mutton.json new file mode 100644 index 00000000..5f9fc2d5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_mutton.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:cooked_mutton", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_mutton" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_porkchop.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_porkchop.json new file mode 100644 index 00000000..6bc2645f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_porkchop.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 12.8 + }, + "minecraft:item_model": "minecraft:cooked_porkchop", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_porkchop" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_rabbit.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_rabbit.json new file mode 100644 index 00000000..137c5fce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_rabbit.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 5, + "saturation": 6.0 + }, + "minecraft:item_model": "minecraft:cooked_rabbit", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_rabbit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cooked_salmon.json b/data/generated/V26_2/reports/minecraft/components/item/cooked_salmon.json new file mode 100644 index 00000000..847ad2c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cooked_salmon.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:cooked_salmon", + "minecraft:item_name": { + "translate": "item.minecraft.cooked_salmon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cookie.json b/data/generated/V26_2/reports/minecraft/components/item/cookie.json new file mode 100644 index 00000000..ee93de90 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cookie.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:cookie", + "minecraft:item_name": { + "translate": "item.minecraft.cookie" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_axe.json b/data/generated/V26_2/reports/minecraft/components/item/copper_axe.json new file mode 100644 index 00000000..9ff77368 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_axe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/copper_bars.json new file mode 100644 index 00000000..4c92bccb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_block.json b/data/generated/V26_2/reports/minecraft/components/item/copper_block.json new file mode 100644 index 00000000..da719abf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_boots.json b/data/generated/V26_2/reports/minecraft/components/item/copper_boots.json new file mode 100644 index 00000000..fa57b2c0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:copper_boots", + "minecraft:item_name": { + "translate": "item.minecraft.copper_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 143, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/copper_bulb.json new file mode 100644 index 00000000..bc875424 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/copper_chain.json new file mode 100644 index 00000000..d4f55648 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/copper_chest.json new file mode 100644 index 00000000..7e269681 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/copper_chestplate.json new file mode 100644 index 00000000..84ca47b9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:copper_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.copper_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 176, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/copper_door.json new file mode 100644 index 00000000..b6fe7b29 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_golem_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/copper_golem_spawn_egg.json new file mode 100644 index 00000000..c55bdfe3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:copper_golem" + }, + "minecraft:item_model": "minecraft:copper_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.copper_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/copper_golem_statue.json new file mode 100644 index 00000000..6e76a2d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/copper_grate.json new file mode 100644 index 00000000..cd157670 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/copper_helmet.json new file mode 100644 index 00000000..c7cad45c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "head" + }, + "minecraft:item_model": "minecraft:copper_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.copper_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 121, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/copper_hoe.json new file mode 100644 index 00000000..5b44742b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/copper_horse_armor.json new file mode 100644 index 00000000..845babed --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:copper", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:copper_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.copper_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_ingot.json b/data/generated/V26_2/reports/minecraft/components/item/copper_ingot.json new file mode 100644 index 00000000..ce1521fa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.copper_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:copper", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/copper_lantern.json new file mode 100644 index 00000000..d045f94a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/copper_leggings.json new file mode 100644 index 00000000..4a4952f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 8 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:copper", + "equip_sound": "minecraft:item.armor.equip_copper", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:copper_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.copper_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_copper_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_nautilus_armor.json b/data/generated/V26_2/reports/minecraft/components/item/copper_nautilus_armor.json new file mode 100644 index 00000000..4619765c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 4.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:copper", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:copper_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.copper_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_nugget.json b/data/generated/V26_2/reports/minecraft/components/item/copper_nugget.json new file mode 100644 index 00000000..d26d82ab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.copper_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_ore.json b/data/generated/V26_2/reports/minecraft/components/item/copper_ore.json new file mode 100644 index 00000000..d729d36d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_ore", + "minecraft:item_name": { + "translate": "block.minecraft.copper_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/copper_pickaxe.json new file mode 100644 index 00000000..3bc33757 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.copper_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/copper_shovel.json new file mode 100644 index 00000000..3e883e8c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.copper_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_copper_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 5.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_spear.json b/data/generated/V26_2/reports/minecraft/components/item/copper_spear.json new file mode 100644 index 00000000..33af7e9e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.8235294818878174, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_spear", + "minecraft:item_name": { + "translate": "item.minecraft.copper_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 250, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.82, + "delay_ticks": 13, + "dismount_conditions": { + "max_duration_ticks": 80, + "min_speed": 12.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 165, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 17 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_sword.json b/data/generated/V26_2/reports/minecraft/components/item/copper_sword.json new file mode 100644 index 00000000..2e95d9d3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 13 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_sword", + "minecraft:item_name": { + "translate": "item.minecraft.copper_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 190, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:copper_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_torch.json b/data/generated/V26_2/reports/minecraft/components/item/copper_torch.json new file mode 100644 index 00000000..65ef1c9a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_torch", + "minecraft:item_name": { + "translate": "block.minecraft.copper_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/copper_trapdoor.json new file mode 100644 index 00000000..d2fccd5c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cornflower.json b/data/generated/V26_2/reports/minecraft/components/item/cornflower.json new file mode 100644 index 00000000..5b93a1fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cornflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cornflower", + "minecraft:item_name": { + "translate": "block.minecraft.cornflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cow_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/cow_spawn_egg.json new file mode 100644 index 00000000..f5cad2cf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cow_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:cow" + }, + "minecraft:item_model": "minecraft:cow_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.cow_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_bricks.json new file mode 100644 index 00000000..67f58be4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_deepslate_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_deepslate_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_tiles.json b/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_tiles.json new file mode 100644 index 00000000..bab1d599 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cracked_deepslate_tiles.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_deepslate_tiles", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_deepslate_tiles" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cracked_nether_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/cracked_nether_bricks.json new file mode 100644 index 00000000..c449432b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cracked_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json new file mode 100644 index 00000000..0370c623 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cracked_polished_blackstone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_polished_blackstone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_polished_blackstone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cracked_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/cracked_stone_bricks.json new file mode 100644 index 00000000..b2f741de --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cracked_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cracked_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.cracked_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crafter.json b/data/generated/V26_2/reports/minecraft/components/item/crafter.json new file mode 100644 index 00000000..0ca32488 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crafter.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crafter", + "minecraft:item_name": { + "translate": "block.minecraft.crafter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crafting_table.json b/data/generated/V26_2/reports/minecraft/components/item/crafting_table.json new file mode 100644 index 00000000..88112121 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crafting_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crafting_table", + "minecraft:item_name": { + "translate": "block.minecraft.crafting_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/creaking_heart.json b/data/generated/V26_2/reports/minecraft/components/item/creaking_heart.json new file mode 100644 index 00000000..0a63942e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/creaking_heart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:creaking_heart", + "minecraft:item_name": { + "translate": "block.minecraft.creaking_heart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/creaking_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/creaking_spawn_egg.json new file mode 100644 index 00000000..d50cb296 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/creaking_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:creaking" + }, + "minecraft:item_model": "minecraft:creaking_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.creaking_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/creeper_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/creeper_banner_pattern.json new file mode 100644 index 00000000..2ecfce74 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/creeper_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:creeper_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.creeper_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/creeper", + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/creeper_head.json b/data/generated/V26_2/reports/minecraft/components/item/creeper_head.json new file mode 100644 index 00000000..02e6f53e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/creeper_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:creeper_head", + "minecraft:item_name": { + "translate": "block.minecraft.creeper_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/creeper_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/creeper_spawn_egg.json new file mode 100644 index 00000000..487b6d3d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/creeper_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:creeper" + }, + "minecraft:item_model": "minecraft:creeper_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.creeper_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_button.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_button.json new file mode 100644 index 00000000..0e4a39b7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_button", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_door.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_door.json new file mode 100644 index 00000000..12506bd1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_door", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_fence.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_fence.json new file mode 100644 index 00000000..ec844f0e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fence", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_fence_gate.json new file mode 100644 index 00000000..47975a6f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_fungus.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_fungus.json new file mode 100644 index 00000000..c8979de3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_fungus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_fungus", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_fungus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_hanging_sign.json new file mode 100644 index 00000000..08875898 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_hyphae.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_hyphae.json new file mode 100644 index 00000000..e31c0703 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_nylium.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_nylium.json new file mode 100644 index 00000000..16ddb042 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_nylium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_nylium", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_nylium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_planks.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_planks.json new file mode 100644 index 00000000..48c14340 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_planks", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_pressure_plate.json new file mode 100644 index 00000000..f83cf98b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_roots.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_roots.json new file mode 100644 index 00000000..c473d1df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_roots", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_shelf.json new file mode 100644 index 00000000..68be267a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_sign.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_sign.json new file mode 100644 index 00000000..2685d53b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_sign", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_slab.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_slab.json new file mode 100644 index 00000000..75b84c1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_slab", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_stairs.json new file mode 100644 index 00000000..eb35600c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_stem.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_stem.json new file mode 100644 index 00000000..bb6d8ad9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_stem", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crimson_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/crimson_trapdoor.json new file mode 100644 index 00000000..0db2f9f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crimson_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crimson_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.crimson_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crossbow.json b/data/generated/V26_2/reports/minecraft/components/item/crossbow.json new file mode 100644 index 00000000..fb1cada1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crossbow.json @@ -0,0 +1,24 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:charged_projectiles": [], + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crossbow", + "minecraft:item_name": { + "translate": "item.minecraft.crossbow" + }, + "minecraft:lore": [], + "minecraft:max_damage": 465, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/crying_obsidian.json b/data/generated/V26_2/reports/minecraft/components/item/crying_obsidian.json new file mode 100644 index 00000000..edd462b5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/crying_obsidian.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:crying_obsidian", + "minecraft:item_name": { + "translate": "block.minecraft.crying_obsidian" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/cut_copper.json new file mode 100644 index 00000000..fb9353cb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cut_copper_slab.json new file mode 100644 index 00000000..1c02bf33 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/cut_copper_stairs.json new file mode 100644 index 00000000..e37d132a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone.json new file mode 100644 index 00000000..9e5194fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.cut_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone_slab.json new file mode 100644 index 00000000..fd01abbf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone.json new file mode 100644 index 00000000..09b30c9c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.cut_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone_slab.json new file mode 100644 index 00000000..6ee999d9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cut_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cut_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.cut_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_banner.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_banner.json new file mode 100644 index 00000000..10d3bce7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_banner", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_bed.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_bed.json new file mode 100644 index 00000000..6d27cb7d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_bed", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_bundle.json new file mode 100644 index 00000000..4eb5d0ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_candle.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_candle.json new file mode 100644 index 00000000..e296ec50 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_candle", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_carpet.json new file mode 100644 index 00000000..730fab60 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:cyan_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:cyan_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete.json new file mode 100644 index 00000000..80b1e0de --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete_powder.json new file mode 100644 index 00000000..6fa4bf7a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_dye.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_dye.json new file mode 100644 index 00000000..a606514e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "cyan", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_dye", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_glazed_terracotta.json new file mode 100644 index 00000000..19db3e47 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_harness.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_harness.json new file mode 100644 index 00000000..c0d11c42 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:cyan_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:cyan_harness", + "minecraft:item_name": { + "translate": "item.minecraft.cyan_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_shulker_box.json new file mode 100644 index 00000000..f76c322b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass.json new file mode 100644 index 00000000..d43fd554 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass_pane.json new file mode 100644 index 00000000..96977e63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_terracotta.json new file mode 100644 index 00000000..4098f540 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/cyan_wool.json b/data/generated/V26_2/reports/minecraft/components/item/cyan_wool.json new file mode 100644 index 00000000..8ae1cb44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/cyan_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:cyan_wool", + "minecraft:item_name": { + "translate": "block.minecraft.cyan_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/damaged_anvil.json b/data/generated/V26_2/reports/minecraft/components/item/damaged_anvil.json new file mode 100644 index 00000000..420ee1c5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/damaged_anvil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:damaged_anvil", + "minecraft:item_name": { + "translate": "block.minecraft.damaged_anvil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dandelion.json b/data/generated/V26_2/reports/minecraft/components/item/dandelion.json new file mode 100644 index 00000000..efc6163a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dandelion.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dandelion", + "minecraft:item_name": { + "translate": "block.minecraft.dandelion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/danger_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/danger_pottery_sherd.json new file mode 100644 index 00000000..15b75a93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/danger_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:danger_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.danger_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_boat.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_boat.json new file mode 100644 index 00000000..d9ac1b63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.dark_oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_button.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_button.json new file mode 100644 index 00000000..e83b2b6a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_chest_boat.json new file mode 100644 index 00000000..2fdb84c1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.dark_oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_door.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_door.json new file mode 100644 index 00000000..4912eafa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence.json new file mode 100644 index 00000000..cb17d0d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence_gate.json new file mode 100644 index 00000000..b63da4f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_hanging_sign.json new file mode 100644 index 00000000..d8d4062b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_leaves.json new file mode 100644 index 00000000..62c61415 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_log.json new file mode 100644 index 00000000..d5e7c739 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_planks.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_planks.json new file mode 100644 index 00000000..b1cb9f90 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_pressure_plate.json new file mode 100644 index 00000000..8a8b393e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sapling.json new file mode 100644 index 00000000..311bba95 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_shelf.json new file mode 100644 index 00000000..46f2cd77 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sign.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sign.json new file mode 100644 index 00000000..3941b031 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_slab.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_slab.json new file mode 100644 index 00000000..46d9dde9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_stairs.json new file mode 100644 index 00000000..5080b6d7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_trapdoor.json new file mode 100644 index 00000000..6cd4bf97 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_wood.json new file mode 100644 index 00000000..8e6d7b13 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.dark_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine.json b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine.json new file mode 100644 index 00000000..4ae97feb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_slab.json b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_slab.json new file mode 100644 index 00000000..2ee96605 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine_slab", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_stairs.json new file mode 100644 index 00000000..565d9dd1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dark_prismarine_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dark_prismarine_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.dark_prismarine_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/daylight_detector.json b/data/generated/V26_2/reports/minecraft/components/item/daylight_detector.json new file mode 100644 index 00000000..35a58af7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/daylight_detector.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:daylight_detector", + "minecraft:item_name": { + "translate": "block.minecraft.daylight_detector" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral.json b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral.json new file mode 100644 index 00000000..faac86fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_block.json new file mode 100644 index 00000000..42d98d18 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_fan.json new file mode 100644 index 00000000..6106beef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_brain_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_brain_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_brain_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral.json b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral.json new file mode 100644 index 00000000..a832e5c1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_block.json new file mode 100644 index 00000000..1f51567f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_fan.json new file mode 100644 index 00000000..d88b9e8e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_bubble_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bubble_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bubble_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_bush.json b/data/generated/V26_2/reports/minecraft/components/item/dead_bush.json new file mode 100644 index 00000000..3e37d6eb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_bush", + "minecraft:item_name": { + "translate": "block.minecraft.dead_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral.json b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral.json new file mode 100644 index 00000000..9ab05295 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_block.json new file mode 100644 index 00000000..59652f54 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_fan.json new file mode 100644 index 00000000..c2d364d7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_fire_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_fire_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_fire_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral.json b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral.json new file mode 100644 index 00000000..4ec0862d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_block.json new file mode 100644 index 00000000..5c59da54 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_fan.json new file mode 100644 index 00000000..2e5f115b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_horn_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_horn_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_horn_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral.json b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral.json new file mode 100644 index 00000000..1c6535e3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_block.json new file mode 100644 index 00000000..92a5b559 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_fan.json new file mode 100644 index 00000000..2c7bd5c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dead_tube_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dead_tube_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.dead_tube_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/debug_stick.json b/data/generated/V26_2/reports/minecraft/components/item/debug_stick.json new file mode 100644 index 00000000..d5fcdfbc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/debug_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:debug_stick_state": {}, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:debug_stick", + "minecraft:item_name": { + "translate": "item.minecraft.debug_stick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/decorated_pot.json b/data/generated/V26_2/reports/minecraft/components/item/decorated_pot.json new file mode 100644 index 00000000..2e2ec8b4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/decorated_pot.json @@ -0,0 +1,25 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:decorated_pot", + "minecraft:item_name": { + "translate": "block.minecraft.decorated_pot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:pot_decorations": [ + "minecraft:brick", + "minecraft:brick", + "minecraft:brick", + "minecraft:brick" + ], + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate.json new file mode 100644 index 00000000..4b186505 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_slab.json new file mode 100644 index 00000000..cd2b0924 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_stairs.json new file mode 100644 index 00000000..88857624 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_wall.json new file mode 100644 index 00000000..902830af --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_bricks.json new file mode 100644 index 00000000..a7327d0e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_coal_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_coal_ore.json new file mode 100644 index 00000000..0d83e4df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_coal_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_coal_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_coal_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_copper_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_copper_ore.json new file mode 100644 index 00000000..244bf048 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_copper_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_copper_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_copper_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_diamond_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_diamond_ore.json new file mode 100644 index 00000000..95c7d120 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_diamond_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_diamond_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_diamond_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_emerald_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_emerald_ore.json new file mode 100644 index 00000000..a6e87d89 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_emerald_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_emerald_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_emerald_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_gold_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_gold_ore.json new file mode 100644 index 00000000..c16dedfa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_iron_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_iron_ore.json new file mode 100644 index 00000000..b7840543 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_iron_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_iron_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_iron_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_lapis_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_lapis_ore.json new file mode 100644 index 00000000..5261d532 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_lapis_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_lapis_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_lapis_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_redstone_ore.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_redstone_ore.json new file mode 100644 index 00000000..ef6c86f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_redstone_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_redstone_ore", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_redstone_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_slab.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_slab.json new file mode 100644 index 00000000..5c784ac4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_slab", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_stairs.json new file mode 100644 index 00000000..1e1b095d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_wall.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_wall.json new file mode 100644 index 00000000..2735b750 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tile_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tile_wall", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tile_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/deepslate_tiles.json b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tiles.json new file mode 100644 index 00000000..b955828d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/deepslate_tiles.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:deepslate_tiles", + "minecraft:item_name": { + "translate": "block.minecraft.deepslate_tiles" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/detector_rail.json b/data/generated/V26_2/reports/minecraft/components/item/detector_rail.json new file mode 100644 index 00000000..ae5f400a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/detector_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:detector_rail", + "minecraft:item_name": { + "translate": "block.minecraft.detector_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond.json b/data/generated/V26_2/reports/minecraft/components/item/diamond.json new file mode 100644 index 00000000..367cfed6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond", + "minecraft:item_name": { + "translate": "item.minecraft.diamond" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:diamond", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_axe.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_axe.json new file mode 100644 index 00000000..55378ace --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_axe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_block.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_block.json new file mode 100644 index 00000000..4209bb47 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_block", + "minecraft:item_name": { + "translate": "block.minecraft.diamond_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_boots.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_boots.json new file mode 100644 index 00000000..fd5d0386 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:diamond_boots", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 429, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_chestplate.json new file mode 100644 index 00000000..0b272833 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 8.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:diamond_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 528, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_helmet.json new file mode 100644 index 00000000..8cd8a261 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "head" + }, + "minecraft:item_model": "minecraft:diamond_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 363, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_hoe.json new file mode 100644 index 00000000..718e3047 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": 0.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_horse_armor.json new file mode 100644 index 00000000..00bc64ab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:diamond", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:diamond_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_leggings.json new file mode 100644 index 00000000..279bbf15 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:diamond", + "equip_sound": "minecraft:item.armor.equip_diamond", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:diamond_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 495, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_diamond_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_nautilus_armor.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_nautilus_armor.json new file mode 100644 index 00000000..4eff5958 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 2.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:diamond", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:diamond_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_ore.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_ore.json new file mode 100644 index 00000000..dd1a0f72 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_ore", + "minecraft:item_name": { + "translate": "block.minecraft.diamond_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_pickaxe.json new file mode 100644 index 00000000..c88b8e9a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_shovel.json new file mode 100644 index 00000000..c32a66ed --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_diamond_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 8.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_spear.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_spear.json new file mode 100644 index 00000000..51a3a73c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0476189851760864, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_spear", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 200, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 1.075, + "delay_ticks": 10, + "dismount_conditions": { + "max_duration_ticks": 60, + "min_speed": 10.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 130, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 21 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diamond_sword.json b/data/generated/V26_2/reports/minecraft/components/item/diamond_sword.json new file mode 100644 index 00000000..41caaef1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diamond_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 10 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diamond_sword", + "minecraft:item_name": { + "translate": "item.minecraft.diamond_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 1561, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:diamond_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diorite.json b/data/generated/V26_2/reports/minecraft/components/item/diorite.json new file mode 100644 index 00000000..65047d87 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diorite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite", + "minecraft:item_name": { + "translate": "block.minecraft.diorite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diorite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/diorite_slab.json new file mode 100644 index 00000000..87ca35c4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diorite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diorite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/diorite_stairs.json new file mode 100644 index 00000000..e6c452b1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diorite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/diorite_wall.json b/data/generated/V26_2/reports/minecraft/components/item/diorite_wall.json new file mode 100644 index 00000000..693e419f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/diorite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:diorite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.diorite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dirt.json b/data/generated/V26_2/reports/minecraft/components/item/dirt.json new file mode 100644 index 00000000..36ccb548 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dirt", + "minecraft:item_name": { + "translate": "block.minecraft.dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dirt_path.json b/data/generated/V26_2/reports/minecraft/components/item/dirt_path.json new file mode 100644 index 00000000..2f9883b2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dirt_path.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dirt_path", + "minecraft:item_name": { + "translate": "block.minecraft.dirt_path" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/disc_fragment_5.json b/data/generated/V26_2/reports/minecraft/components/item/disc_fragment_5.json new file mode 100644 index 00000000..9e05559b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/disc_fragment_5.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:disc_fragment_5", + "minecraft:item_name": { + "translate": "item.minecraft.disc_fragment_5" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dispenser.json b/data/generated/V26_2/reports/minecraft/components/item/dispenser.json new file mode 100644 index 00000000..cc747389 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dispenser.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dispenser", + "minecraft:item_name": { + "translate": "block.minecraft.dispenser" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dolphin_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/dolphin_spawn_egg.json new file mode 100644 index 00000000..5efb6d10 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dolphin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:dolphin" + }, + "minecraft:item_model": "minecraft:dolphin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.dolphin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/donkey_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/donkey_spawn_egg.json new file mode 100644 index 00000000..3b86e4ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/donkey_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:donkey" + }, + "minecraft:item_model": "minecraft:donkey_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.donkey_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dragon_breath.json b/data/generated/V26_2/reports/minecraft/components/item/dragon_breath.json new file mode 100644 index 00000000..8d47ba1c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dragon_breath.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dragon_breath", + "minecraft:item_name": { + "translate": "item.minecraft.dragon_breath" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dragon_egg.json b/data/generated/V26_2/reports/minecraft/components/item/dragon_egg.json new file mode 100644 index 00000000..aa206875 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dragon_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dragon_egg", + "minecraft:item_name": { + "translate": "block.minecraft.dragon_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dragon_head.json b/data/generated/V26_2/reports/minecraft/components/item/dragon_head.json new file mode 100644 index 00000000..ecf3cd1a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dragon_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:dragon_head", + "minecraft:item_name": { + "translate": "block.minecraft.dragon_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dried_ghast.json b/data/generated/V26_2/reports/minecraft/components/item/dried_ghast.json new file mode 100644 index 00000000..8d73fdc0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dried_ghast.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dried_ghast", + "minecraft:item_name": { + "translate": "block.minecraft.dried_ghast" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dried_kelp.json b/data/generated/V26_2/reports/minecraft/components/item/dried_kelp.json new file mode 100644 index 00000000..e4e02db6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dried_kelp.json @@ -0,0 +1,25 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "consume_seconds": 0.8 + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.6 + }, + "minecraft:item_model": "minecraft:dried_kelp", + "minecraft:item_name": { + "translate": "item.minecraft.dried_kelp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dried_kelp_block.json b/data/generated/V26_2/reports/minecraft/components/item/dried_kelp_block.json new file mode 100644 index 00000000..db17624f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dried_kelp_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dried_kelp_block", + "minecraft:item_name": { + "translate": "block.minecraft.dried_kelp_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dripstone_block.json b/data/generated/V26_2/reports/minecraft/components/item/dripstone_block.json new file mode 100644 index 00000000..581e6188 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dripstone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dripstone_block", + "minecraft:item_name": { + "translate": "block.minecraft.dripstone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dropper.json b/data/generated/V26_2/reports/minecraft/components/item/dropper.json new file mode 100644 index 00000000..cb90fa16 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dropper.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dropper", + "minecraft:item_name": { + "translate": "block.minecraft.dropper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/drowned_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/drowned_spawn_egg.json new file mode 100644 index 00000000..a681f248 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/drowned_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:drowned" + }, + "minecraft:item_model": "minecraft:drowned_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.drowned_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/dune_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/dune_armor_trim_smithing_template.json new file mode 100644 index 00000000..92725f74 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/dune_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:dune_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.dune_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/echo_shard.json b/data/generated/V26_2/reports/minecraft/components/item/echo_shard.json new file mode 100644 index 00000000..4326007e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/echo_shard.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:echo_shard", + "minecraft:item_name": { + "translate": "item.minecraft.echo_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/egg.json b/data/generated/V26_2/reports/minecraft/components/item/egg.json new file mode 100644 index 00000000..14e6cb86 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/egg.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:chicken/variant": "minecraft:temperate", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:egg", + "minecraft:item_name": { + "translate": "item.minecraft.egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/elder_guardian_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/elder_guardian_spawn_egg.json new file mode 100644 index 00000000..2b85602d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/elder_guardian_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:elder_guardian" + }, + "minecraft:item_model": "minecraft:elder_guardian_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.elder_guardian_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/elytra.json b/data/generated/V26_2/reports/minecraft/components/item/elytra.json new file mode 100644 index 00000000..746b2ba3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/elytra.json @@ -0,0 +1,30 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:elytra", + "damage_on_hurt": false, + "equip_sound": "minecraft:item.armor.equip_elytra", + "slot": "chest" + }, + "minecraft:glider": {}, + "minecraft:item_model": "minecraft:elytra", + "minecraft:item_name": { + "translate": "item.minecraft.elytra" + }, + "minecraft:lore": [], + "minecraft:max_damage": 432, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "minecraft:phantom_membrane" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/emerald.json b/data/generated/V26_2/reports/minecraft/components/item/emerald.json new file mode 100644 index 00000000..54040e30 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/emerald.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald", + "minecraft:item_name": { + "translate": "item.minecraft.emerald" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:emerald", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/emerald_block.json b/data/generated/V26_2/reports/minecraft/components/item/emerald_block.json new file mode 100644 index 00000000..2df1b2e9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/emerald_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald_block", + "minecraft:item_name": { + "translate": "block.minecraft.emerald_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/emerald_ore.json b/data/generated/V26_2/reports/minecraft/components/item/emerald_ore.json new file mode 100644 index 00000000..c10c702e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/emerald_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:emerald_ore", + "minecraft:item_name": { + "translate": "block.minecraft.emerald_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/enchanted_book.json b/data/generated/V26_2/reports/minecraft/components/item/enchanted_book.json new file mode 100644 index 00000000..37037e1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/enchanted_book.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:enchanted_book", + "minecraft:item_name": { + "translate": "item.minecraft.enchanted_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:stored_enchantments": {}, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/enchanted_golden_apple.json b/data/generated/V26_2/reports/minecraft/components/item/enchanted_golden_apple.json new file mode 100644 index 00000000..5e8c9db5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/enchanted_golden_apple.json @@ -0,0 +1,55 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 400, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "duration": 6000, + "id": "minecraft:resistance", + "show_icon": true + }, + { + "duration": 6000, + "id": "minecraft:fire_resistance", + "show_icon": true + }, + { + "amplifier": 3, + "duration": 2400, + "id": "minecraft:absorption", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:enchanted_golden_apple", + "minecraft:item_name": { + "translate": "item.minecraft.enchanted_golden_apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/enchanting_table.json b/data/generated/V26_2/reports/minecraft/components/item/enchanting_table.json new file mode 100644 index 00000000..ca69dd42 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/enchanting_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:enchanting_table", + "minecraft:item_name": { + "translate": "block.minecraft.enchanting_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_crystal.json b/data/generated/V26_2/reports/minecraft/components/item/end_crystal.json new file mode 100644 index 00000000..b20f6cfe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_crystal.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_crystal", + "minecraft:item_name": { + "translate": "item.minecraft.end_crystal" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_portal_frame.json b/data/generated/V26_2/reports/minecraft/components/item/end_portal_frame.json new file mode 100644 index 00000000..bf3bcf63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_portal_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_portal_frame", + "minecraft:item_name": { + "translate": "block.minecraft.end_portal_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_rod.json b/data/generated/V26_2/reports/minecraft/components/item/end_rod.json new file mode 100644 index 00000000..4615e78d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_rod", + "minecraft:item_name": { + "translate": "block.minecraft.end_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_stone.json b/data/generated/V26_2/reports/minecraft/components/item/end_stone.json new file mode 100644 index 00000000..0219aef8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_slab.json new file mode 100644 index 00000000..d1584b3f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_stairs.json new file mode 100644 index 00000000..be362263 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_wall.json new file mode 100644 index 00000000..eb51b77b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/end_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/end_stone_bricks.json new file mode 100644 index 00000000..227aa978 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/end_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:end_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.end_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ender_chest.json b/data/generated/V26_2/reports/minecraft/components/item/ender_chest.json new file mode 100644 index 00000000..9cee909e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ender_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_chest", + "minecraft:item_name": { + "translate": "block.minecraft.ender_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ender_dragon_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/ender_dragon_spawn_egg.json new file mode 100644 index 00000000..9acf36be --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ender_dragon_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ender_dragon" + }, + "minecraft:item_model": "minecraft:ender_dragon_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ender_dragon_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ender_eye.json b/data/generated/V26_2/reports/minecraft/components/item/ender_eye.json new file mode 100644 index 00000000..1e06ced9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ender_eye.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_eye", + "minecraft:item_name": { + "translate": "item.minecraft.ender_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ender_pearl.json b/data/generated/V26_2/reports/minecraft/components/item/ender_pearl.json new file mode 100644 index 00000000..083f6f34 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ender_pearl.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ender_pearl", + "minecraft:item_name": { + "translate": "item.minecraft.ender_pearl" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 1.0 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/enderman_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/enderman_spawn_egg.json new file mode 100644 index 00000000..8751f59d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/enderman_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:enderman" + }, + "minecraft:item_model": "minecraft:enderman_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.enderman_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/endermite_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/endermite_spawn_egg.json new file mode 100644 index 00000000..60216021 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/endermite_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:endermite" + }, + "minecraft:item_model": "minecraft:endermite_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.endermite_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/evoker_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/evoker_spawn_egg.json new file mode 100644 index 00000000..46c50615 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/evoker_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:evoker" + }, + "minecraft:item_model": "minecraft:evoker_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.evoker_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/experience_bottle.json b/data/generated/V26_2/reports/minecraft/components/item/experience_bottle.json new file mode 100644 index 00000000..4bbdac4d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/experience_bottle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:experience_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.experience_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/explorer_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/explorer_pottery_sherd.json new file mode 100644 index 00000000..ba2e529b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/explorer_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:explorer_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.explorer_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_chiseled_copper.json new file mode 100644 index 00000000..ddaaa054 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper.json new file mode 100644 index 00000000..8f918611 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bars.json new file mode 100644 index 00000000..77b94dfc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bulb.json new file mode 100644 index 00000000..af111efc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chain.json new file mode 100644 index 00000000..98de6b53 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chest.json new file mode 100644 index 00000000..c88dc117 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_door.json new file mode 100644 index 00000000..6c4502a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_golem_statue.json new file mode 100644 index 00000000..0a7aa4b1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_grate.json new file mode 100644 index 00000000..78652f28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_lantern.json new file mode 100644 index 00000000..f7b72cb5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_trapdoor.json new file mode 100644 index 00000000..3e325f47 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper.json new file mode 100644 index 00000000..6a6ebb45 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_slab.json new file mode 100644 index 00000000..9adc09b4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_stairs.json new file mode 100644 index 00000000..04547a25 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/exposed_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/exposed_lightning_rod.json new file mode 100644 index 00000000..db19da73 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/exposed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:exposed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.exposed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/eye_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/eye_armor_trim_smithing_template.json new file mode 100644 index 00000000..97fc0caa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/eye_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:eye_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.eye_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/farmland.json b/data/generated/V26_2/reports/minecraft/components/item/farmland.json new file mode 100644 index 00000000..6765ea09 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/farmland.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:farmland", + "minecraft:item_name": { + "translate": "block.minecraft.farmland" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/feather.json b/data/generated/V26_2/reports/minecraft/components/item/feather.json new file mode 100644 index 00000000..27052ab1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/feather.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:feather", + "minecraft:item_name": { + "translate": "item.minecraft.feather" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fermented_spider_eye.json b/data/generated/V26_2/reports/minecraft/components/item/fermented_spider_eye.json new file mode 100644 index 00000000..29a1c420 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fermented_spider_eye.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fermented_spider_eye", + "minecraft:item_name": { + "translate": "item.minecraft.fermented_spider_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fern.json b/data/generated/V26_2/reports/minecraft/components/item/fern.json new file mode 100644 index 00000000..87f3d78d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fern", + "minecraft:item_name": { + "translate": "block.minecraft.fern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/field_masoned_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/field_masoned_banner_pattern.json new file mode 100644 index 00000000..301e1415 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/field_masoned_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:field_masoned_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.field_masoned_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/field_masoned", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/filled_map.json b/data/generated/V26_2/reports/minecraft/components/item/filled_map.json new file mode 100644 index 00000000..c7062e94 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/filled_map.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:filled_map", + "minecraft:item_name": { + "translate": "item.minecraft.filled_map" + }, + "minecraft:lore": [], + "minecraft:map_color": 4603950, + "minecraft:map_decorations": {}, + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fire_charge.json b/data/generated/V26_2/reports/minecraft/components/item/fire_charge.json new file mode 100644 index 00000000..64518653 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fire_charge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_charge", + "minecraft:item_name": { + "translate": "item.minecraft.fire_charge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fire_coral.json b/data/generated/V26_2/reports/minecraft/components/item/fire_coral.json new file mode 100644 index 00000000..5486cb73 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fire_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fire_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/fire_coral_block.json new file mode 100644 index 00000000..50fe6beb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fire_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fire_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/fire_coral_fan.json new file mode 100644 index 00000000..855f2ea6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fire_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fire_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.fire_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/firefly_bush.json b/data/generated/V26_2/reports/minecraft/components/item/firefly_bush.json new file mode 100644 index 00000000..247af935 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/firefly_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:firefly_bush", + "minecraft:item_name": { + "translate": "block.minecraft.firefly_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/firework_rocket.json b/data/generated/V26_2/reports/minecraft/components/item/firework_rocket.json new file mode 100644 index 00000000..9d4e6bab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/firework_rocket.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:fireworks": { + "flight_duration": 1 + }, + "minecraft:item_model": "minecraft:firework_rocket", + "minecraft:item_name": { + "translate": "item.minecraft.firework_rocket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/firework_star.json b/data/generated/V26_2/reports/minecraft/components/item/firework_star.json new file mode 100644 index 00000000..4f13e9bf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/firework_star.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:firework_star", + "minecraft:item_name": { + "translate": "item.minecraft.firework_star" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fishing_rod.json b/data/generated/V26_2/reports/minecraft/components/item/fishing_rod.json new file mode 100644 index 00000000..b0a908f3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fishing_rod.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fishing_rod", + "minecraft:item_name": { + "translate": "item.minecraft.fishing_rod" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fletching_table.json b/data/generated/V26_2/reports/minecraft/components/item/fletching_table.json new file mode 100644 index 00000000..7c277ce0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fletching_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:fletching_table", + "minecraft:item_name": { + "translate": "block.minecraft.fletching_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flint.json b/data/generated/V26_2/reports/minecraft/components/item/flint.json new file mode 100644 index 00000000..adbf864d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flint.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flint", + "minecraft:item_name": { + "translate": "item.minecraft.flint" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flint_and_steel.json b/data/generated/V26_2/reports/minecraft/components/item/flint_and_steel.json new file mode 100644 index 00000000..896e9469 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flint_and_steel.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flint_and_steel", + "minecraft:item_name": { + "translate": "item.minecraft.flint_and_steel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flow_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/flow_armor_trim_smithing_template.json new file mode 100644 index 00000000..c04a6f13 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flow_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.flow_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flow_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/flow_banner_pattern.json new file mode 100644 index 00000000..cc541ad1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flow_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.flow_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/flow", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flow_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/flow_pottery_sherd.json new file mode 100644 index 00000000..89f8b4ac --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flow_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flow_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.flow_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flower_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/flower_banner_pattern.json new file mode 100644 index 00000000..644042fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flower_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flower_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.flower_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/flower", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flower_pot.json b/data/generated/V26_2/reports/minecraft/components/item/flower_pot.json new file mode 100644 index 00000000..8edb290e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flower_pot.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flower_pot", + "minecraft:item_name": { + "translate": "block.minecraft.flower_pot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea.json b/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea.json new file mode 100644 index 00000000..a540bcf3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flowering_azalea", + "minecraft:item_name": { + "translate": "block.minecraft.flowering_azalea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea_leaves.json new file mode 100644 index 00000000..54e23707 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/flowering_azalea_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:flowering_azalea_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.flowering_azalea_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/fox_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/fox_spawn_egg.json new file mode 100644 index 00000000..485eb6c4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/fox_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:fox" + }, + "minecraft:item_model": "minecraft:fox_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.fox_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/friend_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/friend_pottery_sherd.json new file mode 100644 index 00000000..c534da6e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/friend_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:friend_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.friend_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/frog_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/frog_spawn_egg.json new file mode 100644 index 00000000..ad637dc3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/frog_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:frog" + }, + "minecraft:item_model": "minecraft:frog_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.frog_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/frogspawn.json b/data/generated/V26_2/reports/minecraft/components/item/frogspawn.json new file mode 100644 index 00000000..f2f0f923 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/frogspawn.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:frogspawn", + "minecraft:item_name": { + "translate": "block.minecraft.frogspawn" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/furnace.json b/data/generated/V26_2/reports/minecraft/components/item/furnace.json new file mode 100644 index 00000000..af6d7c9d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/furnace.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:furnace", + "minecraft:item_name": { + "translate": "block.minecraft.furnace" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/furnace_minecart.json b/data/generated/V26_2/reports/minecraft/components/item/furnace_minecart.json new file mode 100644 index 00000000..ab54bc0a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/furnace_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:furnace_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.furnace_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ghast_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/ghast_spawn_egg.json new file mode 100644 index 00000000..1864a63e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ghast_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ghast" + }, + "minecraft:item_model": "minecraft:ghast_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ghast_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ghast_tear.json b/data/generated/V26_2/reports/minecraft/components/item/ghast_tear.json new file mode 100644 index 00000000..faf7b43a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ghast_tear.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ghast_tear", + "minecraft:item_name": { + "translate": "item.minecraft.ghast_tear" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gilded_blackstone.json b/data/generated/V26_2/reports/minecraft/components/item/gilded_blackstone.json new file mode 100644 index 00000000..d1c0e327 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gilded_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gilded_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.gilded_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glass.json b/data/generated/V26_2/reports/minecraft/components/item/glass.json new file mode 100644 index 00000000..27de43e3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass", + "minecraft:item_name": { + "translate": "block.minecraft.glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glass_bottle.json b/data/generated/V26_2/reports/minecraft/components/item/glass_bottle.json new file mode 100644 index 00000000..79be6eb4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glass_bottle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.glass_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/glass_pane.json new file mode 100644 index 00000000..4c79192a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glistering_melon_slice.json b/data/generated/V26_2/reports/minecraft/components/item/glistering_melon_slice.json new file mode 100644 index 00000000..3eeee3ae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glistering_melon_slice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glistering_melon_slice", + "minecraft:item_name": { + "translate": "item.minecraft.glistering_melon_slice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/globe_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/globe_banner_pattern.json new file mode 100644 index 00000000..e42ebb44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/globe_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:globe_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.globe_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/globe", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glow_berries.json b/data/generated/V26_2/reports/minecraft/components/item/glow_berries.json new file mode 100644 index 00000000..e01067af --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glow_berries.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:glow_berries", + "minecraft:item_name": { + "translate": "item.minecraft.glow_berries" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glow_ink_sac.json b/data/generated/V26_2/reports/minecraft/components/item/glow_ink_sac.json new file mode 100644 index 00000000..257e5432 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glow_ink_sac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_ink_sac", + "minecraft:item_name": { + "translate": "item.minecraft.glow_ink_sac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glow_item_frame.json b/data/generated/V26_2/reports/minecraft/components/item/glow_item_frame.json new file mode 100644 index 00000000..616076eb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glow_item_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_item_frame", + "minecraft:item_name": { + "translate": "item.minecraft.glow_item_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glow_lichen.json b/data/generated/V26_2/reports/minecraft/components/item/glow_lichen.json new file mode 100644 index 00000000..1ac7c50a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glow_lichen.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glow_lichen", + "minecraft:item_name": { + "translate": "block.minecraft.glow_lichen" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glow_squid_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/glow_squid_spawn_egg.json new file mode 100644 index 00000000..470fde28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glow_squid_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:glow_squid" + }, + "minecraft:item_model": "minecraft:glow_squid_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.glow_squid_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glowstone.json b/data/generated/V26_2/reports/minecraft/components/item/glowstone.json new file mode 100644 index 00000000..660bf774 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glowstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glowstone", + "minecraft:item_name": { + "translate": "block.minecraft.glowstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/glowstone_dust.json b/data/generated/V26_2/reports/minecraft/components/item/glowstone_dust.json new file mode 100644 index 00000000..a0fca94e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/glowstone_dust.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:glowstone_dust", + "minecraft:item_name": { + "translate": "item.minecraft.glowstone_dust" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/goat_horn.json b/data/generated/V26_2/reports/minecraft/components/item/goat_horn.json new file mode 100644 index 00000000..a4120f56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/goat_horn.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:instrument": "minecraft:ponder_goat_horn", + "minecraft:item_model": "minecraft:goat_horn", + "minecraft:item_name": { + "translate": "item.minecraft.goat_horn" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/goat_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/goat_spawn_egg.json new file mode 100644 index 00000000..e2f079e2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/goat_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:goat" + }, + "minecraft:item_model": "minecraft:goat_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.goat_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gold_block.json b/data/generated/V26_2/reports/minecraft/components/item/gold_block.json new file mode 100644 index 00000000..0e6bd63e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gold_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_block", + "minecraft:item_name": { + "translate": "block.minecraft.gold_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gold_ingot.json b/data/generated/V26_2/reports/minecraft/components/item/gold_ingot.json new file mode 100644 index 00000000..401d51a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gold_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.gold_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:gold", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gold_nugget.json b/data/generated/V26_2/reports/minecraft/components/item/gold_nugget.json new file mode 100644 index 00000000..1394341b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gold_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.gold_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gold_ore.json b/data/generated/V26_2/reports/minecraft/components/item/gold_ore.json new file mode 100644 index 00000000..0fae32c7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_apple.json b/data/generated/V26_2/reports/minecraft/components/item/golden_apple.json new file mode 100644 index 00000000..b7887228 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_apple.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 100, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "duration": 2400, + "id": "minecraft:absorption", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 4, + "saturation": 9.6 + }, + "minecraft:item_model": "minecraft:golden_apple", + "minecraft:item_name": { + "translate": "item.minecraft.golden_apple" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_axe.json b/data/generated/V26_2/reports/minecraft/components/item/golden_axe.json new file mode 100644 index 00000000..a2ad92ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_axe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_boots.json b/data/generated/V26_2/reports/minecraft/components/item/golden_boots.json new file mode 100644 index 00000000..e6c97d33 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:golden_boots", + "minecraft:item_name": { + "translate": "item.minecraft.golden_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 91, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_carrot.json b/data/generated/V26_2/reports/minecraft/components/item/golden_carrot.json new file mode 100644 index 00000000..f0c7a44e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_carrot.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 14.400001 + }, + "minecraft:item_model": "minecraft:golden_carrot", + "minecraft:item_name": { + "translate": "item.minecraft.golden_carrot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/golden_chestplate.json new file mode 100644 index 00000000..a5e1ce53 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:golden_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.golden_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 112, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_dandelion.json b/data/generated/V26_2/reports/minecraft/components/item/golden_dandelion.json new file mode 100644 index 00000000..a4102d77 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_dandelion.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_dandelion", + "minecraft:item_name": { + "translate": "block.minecraft.golden_dandelion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/golden_helmet.json new file mode 100644 index 00000000..e9b9bc77 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "head" + }, + "minecraft:item_model": "minecraft:golden_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.golden_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 77, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/golden_hoe.json new file mode 100644 index 00000000..4ca324b3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/golden_horse_armor.json new file mode 100644 index 00000000..d0e5bd32 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 7.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:gold", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:golden_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.golden_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/golden_leggings.json new file mode 100644 index 00000000..970e8791 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 25 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:gold", + "equip_sound": "minecraft:item.armor.equip_gold", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:golden_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.golden_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 105, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_gold_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_nautilus_armor.json b/data/generated/V26_2/reports/minecraft/components/item/golden_nautilus_armor.json new file mode 100644 index 00000000..7618604c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 7.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:gold", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:golden_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.golden_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/golden_pickaxe.json new file mode 100644 index 00000000..bc20ba56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.golden_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/golden_shovel.json new file mode 100644 index 00000000..738d56f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.golden_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_gold_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 12.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_spear.json b/data/generated/V26_2/reports/minecraft/components/item/golden_spear.json new file mode 100644 index 00000000..4b525893 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9473683834075928, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_spear", + "minecraft:item_name": { + "translate": "item.minecraft.golden_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 275, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.7, + "delay_ticks": 14, + "dismount_conditions": { + "max_duration_ticks": 70, + "min_speed": 13.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 170, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 19 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/golden_sword.json b/data/generated/V26_2/reports/minecraft/components/item/golden_sword.json new file mode 100644 index 00000000..4c2b10b1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/golden_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 22 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:golden_sword", + "minecraft:item_name": { + "translate": "item.minecraft.golden_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 32, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:gold_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/granite.json b/data/generated/V26_2/reports/minecraft/components/item/granite.json new file mode 100644 index 00000000..9b764cb2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/granite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite", + "minecraft:item_name": { + "translate": "block.minecraft.granite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/granite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/granite_slab.json new file mode 100644 index 00000000..a9dd16b5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/granite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.granite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/granite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/granite_stairs.json new file mode 100644 index 00000000..ee64f895 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/granite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.granite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/granite_wall.json b/data/generated/V26_2/reports/minecraft/components/item/granite_wall.json new file mode 100644 index 00000000..9698fa1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/granite_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:granite_wall", + "minecraft:item_name": { + "translate": "block.minecraft.granite_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/grass_block.json b/data/generated/V26_2/reports/minecraft/components/item/grass_block.json new file mode 100644 index 00000000..1dac4186 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/grass_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:grass_block", + "minecraft:item_name": { + "translate": "block.minecraft.grass_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gravel.json b/data/generated/V26_2/reports/minecraft/components/item/gravel.json new file mode 100644 index 00000000..7faf6dce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gravel.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gravel", + "minecraft:item_name": { + "translate": "block.minecraft.gravel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_banner.json b/data/generated/V26_2/reports/minecraft/components/item/gray_banner.json new file mode 100644 index 00000000..0b57e8ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_banner", + "minecraft:item_name": { + "translate": "block.minecraft.gray_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_bed.json b/data/generated/V26_2/reports/minecraft/components/item/gray_bed.json new file mode 100644 index 00000000..b164bc59 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_bed", + "minecraft:item_name": { + "translate": "block.minecraft.gray_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/gray_bundle.json new file mode 100644 index 00000000..2505c00e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.gray_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_candle.json b/data/generated/V26_2/reports/minecraft/components/item/gray_candle.json new file mode 100644 index 00000000..91a174f8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_candle", + "minecraft:item_name": { + "translate": "block.minecraft.gray_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/gray_carpet.json new file mode 100644 index 00000000..f32cf989 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:gray_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:gray_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.gray_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/gray_concrete.json new file mode 100644 index 00000000..4e0b3fbf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.gray_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/gray_concrete_powder.json new file mode 100644 index 00000000..7df34ad6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.gray_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_dye.json b/data/generated/V26_2/reports/minecraft/components/item/gray_dye.json new file mode 100644 index 00000000..362869b0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "gray", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_dye", + "minecraft:item_name": { + "translate": "item.minecraft.gray_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/gray_glazed_terracotta.json new file mode 100644 index 00000000..7b303fe5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.gray_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_harness.json b/data/generated/V26_2/reports/minecraft/components/item/gray_harness.json new file mode 100644 index 00000000..f8957b8d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:gray_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:gray_harness", + "minecraft:item_name": { + "translate": "item.minecraft.gray_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/gray_shulker_box.json new file mode 100644 index 00000000..fff01537 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.gray_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass.json new file mode 100644 index 00000000..5f9aae4a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.gray_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass_pane.json new file mode 100644 index 00000000..e0614dcc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.gray_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/gray_terracotta.json new file mode 100644 index 00000000..afba8cab --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.gray_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gray_wool.json b/data/generated/V26_2/reports/minecraft/components/item/gray_wool.json new file mode 100644 index 00000000..9a558f57 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gray_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gray_wool", + "minecraft:item_name": { + "translate": "block.minecraft.gray_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_banner.json b/data/generated/V26_2/reports/minecraft/components/item/green_banner.json new file mode 100644 index 00000000..e542d66a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_banner", + "minecraft:item_name": { + "translate": "block.minecraft.green_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_bed.json b/data/generated/V26_2/reports/minecraft/components/item/green_bed.json new file mode 100644 index 00000000..149c16a1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_bed", + "minecraft:item_name": { + "translate": "block.minecraft.green_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/green_bundle.json new file mode 100644 index 00000000..f8564c09 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.green_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_candle.json b/data/generated/V26_2/reports/minecraft/components/item/green_candle.json new file mode 100644 index 00000000..86b5203d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_candle", + "minecraft:item_name": { + "translate": "block.minecraft.green_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/green_carpet.json new file mode 100644 index 00000000..fe685cdf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:green_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:green_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.green_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/green_concrete.json new file mode 100644 index 00000000..f1019cd8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.green_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/green_concrete_powder.json new file mode 100644 index 00000000..9894c66f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.green_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_dye.json b/data/generated/V26_2/reports/minecraft/components/item/green_dye.json new file mode 100644 index 00000000..1b91849a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "green", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_dye", + "minecraft:item_name": { + "translate": "item.minecraft.green_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/green_glazed_terracotta.json new file mode 100644 index 00000000..ab288dcf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.green_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_harness.json b/data/generated/V26_2/reports/minecraft/components/item/green_harness.json new file mode 100644 index 00000000..701cfe5e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:green_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:green_harness", + "minecraft:item_name": { + "translate": "item.minecraft.green_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/green_shulker_box.json new file mode 100644 index 00000000..9934e923 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.green_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass.json new file mode 100644 index 00000000..ac00effe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.green_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass_pane.json new file mode 100644 index 00000000..513b7284 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.green_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/green_terracotta.json new file mode 100644 index 00000000..c50af7cf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.green_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/green_wool.json b/data/generated/V26_2/reports/minecraft/components/item/green_wool.json new file mode 100644 index 00000000..9b32e0dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/green_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:green_wool", + "minecraft:item_name": { + "translate": "block.minecraft.green_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/grindstone.json b/data/generated/V26_2/reports/minecraft/components/item/grindstone.json new file mode 100644 index 00000000..a56b85b5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/grindstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:grindstone", + "minecraft:item_name": { + "translate": "block.minecraft.grindstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/guardian_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/guardian_spawn_egg.json new file mode 100644 index 00000000..eb1a6e92 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/guardian_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:guardian" + }, + "minecraft:item_model": "minecraft:guardian_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.guardian_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/gunpowder.json b/data/generated/V26_2/reports/minecraft/components/item/gunpowder.json new file mode 100644 index 00000000..46286ed5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/gunpowder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:gunpowder", + "minecraft:item_name": { + "translate": "item.minecraft.gunpowder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/guster_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/guster_banner_pattern.json new file mode 100644 index 00000000..867130a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/guster_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:guster_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.guster_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/guster", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/guster_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/guster_pottery_sherd.json new file mode 100644 index 00000000..8bd7760c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/guster_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:guster_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.guster_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/hanging_roots.json b/data/generated/V26_2/reports/minecraft/components/item/hanging_roots.json new file mode 100644 index 00000000..812402a4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/hanging_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hanging_roots", + "minecraft:item_name": { + "translate": "block.minecraft.hanging_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/happy_ghast_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/happy_ghast_spawn_egg.json new file mode 100644 index 00000000..94bb585c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/happy_ghast_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:happy_ghast" + }, + "minecraft:item_model": "minecraft:happy_ghast_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.happy_ghast_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/hay_block.json b/data/generated/V26_2/reports/minecraft/components/item/hay_block.json new file mode 100644 index 00000000..cb6810b1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/hay_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hay_block", + "minecraft:item_name": { + "translate": "block.minecraft.hay_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/heart_of_the_sea.json b/data/generated/V26_2/reports/minecraft/components/item/heart_of_the_sea.json new file mode 100644 index 00000000..9294902f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/heart_of_the_sea.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heart_of_the_sea", + "minecraft:item_name": { + "translate": "item.minecraft.heart_of_the_sea" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/heart_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/heart_pottery_sherd.json new file mode 100644 index 00000000..d6ee6211 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/heart_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heart_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.heart_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/heartbreak_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/heartbreak_pottery_sherd.json new file mode 100644 index 00000000..52c4bcff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/heartbreak_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heartbreak_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.heartbreak_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/heavy_core.json b/data/generated/V26_2/reports/minecraft/components/item/heavy_core.json new file mode 100644 index 00000000..df9ec65e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/heavy_core.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heavy_core", + "minecraft:item_name": { + "translate": "block.minecraft.heavy_core" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/heavy_weighted_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/heavy_weighted_pressure_plate.json new file mode 100644 index 00000000..839d9910 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/heavy_weighted_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:heavy_weighted_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.heavy_weighted_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/hoglin_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/hoglin_spawn_egg.json new file mode 100644 index 00000000..9587faa9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/hoglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:hoglin" + }, + "minecraft:item_model": "minecraft:hoglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.hoglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/honey_block.json b/data/generated/V26_2/reports/minecraft/components/item/honey_block.json new file mode 100644 index 00000000..f44d2c67 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/honey_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honey_block", + "minecraft:item_name": { + "translate": "block.minecraft.honey_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/honey_bottle.json b/data/generated/V26_2/reports/minecraft/components/item/honey_bottle.json new file mode 100644 index 00000000..4288ce11 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/honey_bottle.json @@ -0,0 +1,38 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "consume_seconds": 2.0, + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:remove_effects", + "effects": "minecraft:poison" + } + ], + "sound": "minecraft:item.honey_bottle.drink" + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 6, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:honey_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.honey_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:glass_bottle" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/honeycomb.json b/data/generated/V26_2/reports/minecraft/components/item/honeycomb.json new file mode 100644 index 00000000..f406c900 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/honeycomb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honeycomb", + "minecraft:item_name": { + "translate": "item.minecraft.honeycomb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/honeycomb_block.json b/data/generated/V26_2/reports/minecraft/components/item/honeycomb_block.json new file mode 100644 index 00000000..8db12186 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/honeycomb_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:honeycomb_block", + "minecraft:item_name": { + "translate": "block.minecraft.honeycomb_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/hopper.json b/data/generated/V26_2/reports/minecraft/components/item/hopper.json new file mode 100644 index 00000000..ee221472 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/hopper.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hopper", + "minecraft:item_name": { + "translate": "block.minecraft.hopper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/hopper_minecart.json b/data/generated/V26_2/reports/minecraft/components/item/hopper_minecart.json new file mode 100644 index 00000000..f8e38ea4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/hopper_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:hopper_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.hopper_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/horn_coral.json b/data/generated/V26_2/reports/minecraft/components/item/horn_coral.json new file mode 100644 index 00000000..9066c6bb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/horn_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/horn_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/horn_coral_block.json new file mode 100644 index 00000000..365871d2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/horn_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/horn_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/horn_coral_fan.json new file mode 100644 index 00000000..3bf90eee --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/horn_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:horn_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.horn_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/horse_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/horse_spawn_egg.json new file mode 100644 index 00000000..81a02b75 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:horse" + }, + "minecraft:item_model": "minecraft:horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/host_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/host_armor_trim_smithing_template.json new file mode 100644 index 00000000..f6f33313 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/host_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:host_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.host_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/howl_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/howl_pottery_sherd.json new file mode 100644 index 00000000..672c32fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/howl_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:howl_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.howl_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/husk_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/husk_spawn_egg.json new file mode 100644 index 00000000..96f99767 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/husk_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:husk" + }, + "minecraft:item_model": "minecraft:husk_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.husk_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ice.json b/data/generated/V26_2/reports/minecraft/components/item/ice.json new file mode 100644 index 00000000..137399bc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ice", + "minecraft:item_name": { + "translate": "block.minecraft.ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_chiseled_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/infested_chiseled_stone_bricks.json new file mode 100644 index 00000000..2eb5eb73 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_chiseled_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_chiseled_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_chiseled_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_cobblestone.json b/data/generated/V26_2/reports/minecraft/components/item/infested_cobblestone.json new file mode 100644 index 00000000..0df12fce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.infested_cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_cracked_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/infested_cracked_stone_bricks.json new file mode 100644 index 00000000..016d8ae3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_cracked_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_cracked_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_cracked_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/infested_deepslate.json new file mode 100644 index 00000000..99d81ac7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.infested_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_mossy_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/infested_mossy_stone_bricks.json new file mode 100644 index 00000000..5ae79021 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_mossy_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_mossy_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_mossy_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_stone.json b/data/generated/V26_2/reports/minecraft/components/item/infested_stone.json new file mode 100644 index 00000000..a157744a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_stone", + "minecraft:item_name": { + "translate": "block.minecraft.infested_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/infested_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/infested_stone_bricks.json new file mode 100644 index 00000000..9f9339ea --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/infested_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:infested_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.infested_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ink_sac.json b/data/generated/V26_2/reports/minecraft/components/item/ink_sac.json new file mode 100644 index 00000000..96b7b4a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ink_sac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ink_sac", + "minecraft:item_name": { + "translate": "item.minecraft.ink_sac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_axe.json b/data/generated/V26_2/reports/minecraft/components/item/iron_axe.json new file mode 100644 index 00000000..fad4e5fa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0999999046325684, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_axe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_bars.json b/data/generated/V26_2/reports/minecraft/components/item/iron_bars.json new file mode 100644 index 00000000..929ef203 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_bars", + "minecraft:item_name": { + "translate": "block.minecraft.iron_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_block.json b/data/generated/V26_2/reports/minecraft/components/item/iron_block.json new file mode 100644 index 00000000..49b155d9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_block", + "minecraft:item_name": { + "translate": "block.minecraft.iron_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_boots.json b/data/generated/V26_2/reports/minecraft/components/item/iron_boots.json new file mode 100644 index 00000000..46ca43d5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:iron_boots", + "minecraft:item_name": { + "translate": "item.minecraft.iron_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 195, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_chain.json b/data/generated/V26_2/reports/minecraft/components/item/iron_chain.json new file mode 100644 index 00000000..d53370f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_chain", + "minecraft:item_name": { + "translate": "block.minecraft.iron_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/iron_chestplate.json new file mode 100644 index 00000000..0b040e9e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:iron_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.iron_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 240, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_door.json b/data/generated/V26_2/reports/minecraft/components/item/iron_door.json new file mode 100644 index 00000000..ce0129be --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_door", + "minecraft:item_name": { + "translate": "block.minecraft.iron_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_golem_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/iron_golem_spawn_egg.json new file mode 100644 index 00000000..a04c045a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:iron_golem" + }, + "minecraft:item_model": "minecraft:iron_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.iron_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/iron_helmet.json new file mode 100644 index 00000000..427355ca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "head" + }, + "minecraft:item_model": "minecraft:iron_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.iron_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 165, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/iron_hoe.json new file mode 100644 index 00000000..1e0474ac --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -1.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/iron_horse_armor.json new file mode 100644 index 00000000..ce5037f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:iron", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:iron_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.iron_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_ingot.json b/data/generated/V26_2/reports/minecraft/components/item/iron_ingot.json new file mode 100644 index 00000000..54389223 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_ingot.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.iron_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:iron", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/iron_leggings.json new file mode 100644 index 00000000..52b43b46 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:iron", + "equip_sound": "minecraft:item.armor.equip_iron", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:iron_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.iron_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 225, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_iron_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_nautilus_armor.json b/data/generated/V26_2/reports/minecraft/components/item/iron_nautilus_armor.json new file mode 100644 index 00000000..a16c53f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_nautilus_armor.json @@ -0,0 +1,43 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 5.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:iron", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:iron_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.iron_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_nugget.json b/data/generated/V26_2/reports/minecraft/components/item/iron_nugget.json new file mode 100644 index 00000000..889646b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_nugget.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_nugget", + "minecraft:item_name": { + "translate": "item.minecraft.iron_nugget" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_ore.json b/data/generated/V26_2/reports/minecraft/components/item/iron_ore.json new file mode 100644 index 00000000..055a556f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_ore", + "minecraft:item_name": { + "translate": "block.minecraft.iron_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/iron_pickaxe.json new file mode 100644 index 00000000..da0dbe13 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.iron_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/iron_shovel.json new file mode 100644 index 00000000..8dd3674d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.iron_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_iron_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 6.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_spear.json b/data/generated/V26_2/reports/minecraft/components/item/iron_spear.json new file mode 100644 index 00000000..f3f3d186 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9473683834075928, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_spear", + "minecraft:item_name": { + "translate": "item.minecraft.iron_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 225, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.95, + "delay_ticks": 12, + "dismount_conditions": { + "max_duration_ticks": 50, + "min_speed": 11.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 135, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 19 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_sword.json b/data/generated/V26_2/reports/minecraft/components/item/iron_sword.json new file mode 100644 index 00000000..e0bcaeb2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 14 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_sword", + "minecraft:item_name": { + "translate": "item.minecraft.iron_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:iron_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/iron_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/iron_trapdoor.json new file mode 100644 index 00000000..530c49a9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/iron_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:iron_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.iron_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/item_frame.json b/data/generated/V26_2/reports/minecraft/components/item/item_frame.json new file mode 100644 index 00000000..d209e091 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/item_frame.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:item_frame", + "minecraft:item_name": { + "translate": "item.minecraft.item_frame" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jack_o_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/jack_o_lantern.json new file mode 100644 index 00000000..8f1957fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jack_o_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jack_o_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.jack_o_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jigsaw.json b/data/generated/V26_2/reports/minecraft/components/item/jigsaw.json new file mode 100644 index 00000000..e378ddd8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jigsaw.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jigsaw", + "minecraft:item_name": { + "translate": "block.minecraft.jigsaw" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jukebox.json b/data/generated/V26_2/reports/minecraft/components/item/jukebox.json new file mode 100644 index 00000000..76b8a43f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jukebox.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jukebox", + "minecraft:item_name": { + "translate": "block.minecraft.jukebox" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_boat.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_boat.json new file mode 100644 index 00000000..f2a2bc25 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_boat", + "minecraft:item_name": { + "translate": "item.minecraft.jungle_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_button.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_button.json new file mode 100644 index 00000000..dd6c1732 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_button", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_chest_boat.json new file mode 100644 index 00000000..7b6d128d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.jungle_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_door.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_door.json new file mode 100644 index 00000000..2107023a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_door", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_fence.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_fence.json new file mode 100644 index 00000000..fa1449d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_fence", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_fence_gate.json new file mode 100644 index 00000000..7d3363a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_hanging_sign.json new file mode 100644 index 00000000..c440f554 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_leaves.json new file mode 100644 index 00000000..a1ebd890 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_log.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_log.json new file mode 100644 index 00000000..e50f079b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_log", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_planks.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_planks.json new file mode 100644 index 00000000..17ec6185 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_planks", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_pressure_plate.json new file mode 100644 index 00000000..3f9297bb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_sapling.json new file mode 100644 index 00000000..250a1d14 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_shelf.json new file mode 100644 index 00000000..cae6188a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_sign.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_sign.json new file mode 100644 index 00000000..15704b82 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_sign", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_slab.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_slab.json new file mode 100644 index 00000000..38b90474 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_slab", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_stairs.json new file mode 100644 index 00000000..dadb8bf7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_trapdoor.json new file mode 100644 index 00000000..21d80667 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/jungle_wood.json b/data/generated/V26_2/reports/minecraft/components/item/jungle_wood.json new file mode 100644 index 00000000..8e5678b0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/jungle_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:jungle_wood", + "minecraft:item_name": { + "translate": "block.minecraft.jungle_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/kelp.json b/data/generated/V26_2/reports/minecraft/components/item/kelp.json new file mode 100644 index 00000000..c9d7b23d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/kelp.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:kelp", + "minecraft:item_name": { + "translate": "block.minecraft.kelp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/knowledge_book.json b/data/generated/V26_2/reports/minecraft/components/item/knowledge_book.json new file mode 100644 index 00000000..dda434c6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/knowledge_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:knowledge_book", + "minecraft:item_name": { + "translate": "item.minecraft.knowledge_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:recipes": [], + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ladder.json b/data/generated/V26_2/reports/minecraft/components/item/ladder.json new file mode 100644 index 00000000..22373e38 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ladder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ladder", + "minecraft:item_name": { + "translate": "block.minecraft.ladder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lantern.json b/data/generated/V26_2/reports/minecraft/components/item/lantern.json new file mode 100644 index 00000000..f78eaf5d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lantern", + "minecraft:item_name": { + "translate": "block.minecraft.lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lapis_block.json b/data/generated/V26_2/reports/minecraft/components/item/lapis_block.json new file mode 100644 index 00000000..1c95a0a9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lapis_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_block", + "minecraft:item_name": { + "translate": "block.minecraft.lapis_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lapis_lazuli.json b/data/generated/V26_2/reports/minecraft/components/item/lapis_lazuli.json new file mode 100644 index 00000000..52bac577 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lapis_lazuli.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_lazuli", + "minecraft:item_name": { + "translate": "item.minecraft.lapis_lazuli" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:lapis", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lapis_ore.json b/data/generated/V26_2/reports/minecraft/components/item/lapis_ore.json new file mode 100644 index 00000000..839aa78c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lapis_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lapis_ore", + "minecraft:item_name": { + "translate": "block.minecraft.lapis_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/large_amethyst_bud.json b/data/generated/V26_2/reports/minecraft/components/item/large_amethyst_bud.json new file mode 100644 index 00000000..04b67f7d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/large_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:large_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.large_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/large_fern.json b/data/generated/V26_2/reports/minecraft/components/item/large_fern.json new file mode 100644 index 00000000..5d2d2815 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/large_fern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:large_fern", + "minecraft:item_name": { + "translate": "block.minecraft.large_fern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lava_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/lava_bucket.json new file mode 100644 index 00000000..92843e50 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lava_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lava_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.lava_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lead.json b/data/generated/V26_2/reports/minecraft/components/item/lead.json new file mode 100644 index 00000000..ac8f702a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lead.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lead", + "minecraft:item_name": { + "translate": "item.minecraft.lead" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leaf_litter.json b/data/generated/V26_2/reports/minecraft/components/item/leaf_litter.json new file mode 100644 index 00000000..52c94dd6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leaf_litter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:leaf_litter", + "minecraft:item_name": { + "translate": "block.minecraft.leaf_litter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather.json b/data/generated/V26_2/reports/minecraft/components/item/leather.json new file mode 100644 index 00000000..60bbeafe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:leather", + "minecraft:item_name": { + "translate": "item.minecraft.leather" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather_boots.json b/data/generated/V26_2/reports/minecraft/components/item/leather_boots.json new file mode 100644 index 00000000..1c4bb9d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather_boots.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:leather_boots", + "minecraft:item_name": { + "translate": "item.minecraft.leather_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 65, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/leather_chestplate.json new file mode 100644 index 00000000..a692e6fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather_chestplate.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:leather_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.leather_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 80, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/leather_helmet.json new file mode 100644 index 00000000..35a77c34 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 1.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "head" + }, + "minecraft:item_model": "minecraft:leather_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.leather_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 55, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/leather_horse_armor.json new file mode 100644 index 00000000..42dfcc83 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather_horse_armor.json @@ -0,0 +1,42 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:leather", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:leather_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.leather_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/leather_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/leather_leggings.json new file mode 100644 index 00000000..019790d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/leather_leggings.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:leather", + "equip_sound": "minecraft:item.armor.equip_leather", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:leather_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.leather_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 75, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_leather_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lectern.json b/data/generated/V26_2/reports/minecraft/components/item/lectern.json new file mode 100644 index 00000000..62e8e219 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lectern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lectern", + "minecraft:item_name": { + "translate": "block.minecraft.lectern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lever.json b/data/generated/V26_2/reports/minecraft/components/item/lever.json new file mode 100644 index 00000000..81cbe9cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lever.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lever", + "minecraft:item_name": { + "translate": "block.minecraft.lever" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light.json b/data/generated/V26_2/reports/minecraft/components/item/light.json new file mode 100644 index 00000000..3493c513 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "level": "15" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light", + "minecraft:item_name": { + "translate": "block.minecraft.light" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_banner.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_banner.json new file mode 100644 index 00000000..932bb85e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_banner", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_bed.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_bed.json new file mode 100644 index 00000000..d0a595a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_bed", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_bundle.json new file mode 100644 index 00000000..c4288dd7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_candle.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_candle.json new file mode 100644 index 00000000..d1b4728f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_candle", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_carpet.json new file mode 100644 index 00000000..551f1758 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:light_blue_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_blue_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete.json new file mode 100644 index 00000000..7dd212a9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete_powder.json new file mode 100644 index 00000000..ee023ee3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_dye.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_dye.json new file mode 100644 index 00000000..7be5f79c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "light_blue", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_dye", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_glazed_terracotta.json new file mode 100644 index 00000000..a7f0c0d2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_harness.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_harness.json new file mode 100644 index 00000000..1d559c24 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:light_blue_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_blue_harness", + "minecraft:item_name": { + "translate": "item.minecraft.light_blue_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_shulker_box.json new file mode 100644 index 00000000..cb282af4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass.json new file mode 100644 index 00000000..29331408 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass_pane.json new file mode 100644 index 00000000..d86a9d85 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_terracotta.json new file mode 100644 index 00000000..93464721 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_blue_wool.json b/data/generated/V26_2/reports/minecraft/components/item/light_blue_wool.json new file mode 100644 index 00000000..906610d7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_blue_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_blue_wool", + "minecraft:item_name": { + "translate": "block.minecraft.light_blue_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_banner.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_banner.json new file mode 100644 index 00000000..5507f8a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_banner", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_bed.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_bed.json new file mode 100644 index 00000000..fe8bcd30 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_bed", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_bundle.json new file mode 100644 index 00000000..77df3e64 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_candle.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_candle.json new file mode 100644 index 00000000..3fb60ae7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_candle", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_carpet.json new file mode 100644 index 00000000..40fbf736 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:light_gray_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_gray_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete.json new file mode 100644 index 00000000..7d1175e8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete_powder.json new file mode 100644 index 00000000..75cdfa6f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_dye.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_dye.json new file mode 100644 index 00000000..9dee3b2a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "light_gray", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_dye", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_glazed_terracotta.json new file mode 100644 index 00000000..fafcae8c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_harness.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_harness.json new file mode 100644 index 00000000..65230747 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:light_gray_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:light_gray_harness", + "minecraft:item_name": { + "translate": "item.minecraft.light_gray_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_shulker_box.json new file mode 100644 index 00000000..2b33e9e2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass.json new file mode 100644 index 00000000..1e14fd09 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass_pane.json new file mode 100644 index 00000000..73d6f1f4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_terracotta.json new file mode 100644 index 00000000..31545192 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_gray_wool.json b/data/generated/V26_2/reports/minecraft/components/item/light_gray_wool.json new file mode 100644 index 00000000..6c592ad7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_gray_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_gray_wool", + "minecraft:item_name": { + "translate": "block.minecraft.light_gray_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/light_weighted_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/light_weighted_pressure_plate.json new file mode 100644 index 00000000..6a4ff27c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/light_weighted_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:light_weighted_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.light_weighted_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/lightning_rod.json new file mode 100644 index 00000000..cd3f0830 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lilac.json b/data/generated/V26_2/reports/minecraft/components/item/lilac.json new file mode 100644 index 00000000..62591206 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lilac.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lilac", + "minecraft:item_name": { + "translate": "block.minecraft.lilac" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lily_of_the_valley.json b/data/generated/V26_2/reports/minecraft/components/item/lily_of_the_valley.json new file mode 100644 index 00000000..03062ecb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lily_of_the_valley.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lily_of_the_valley", + "minecraft:item_name": { + "translate": "block.minecraft.lily_of_the_valley" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lily_pad.json b/data/generated/V26_2/reports/minecraft/components/item/lily_pad.json new file mode 100644 index 00000000..9535c597 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lily_pad.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lily_pad", + "minecraft:item_name": { + "translate": "block.minecraft.lily_pad" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_banner.json b/data/generated/V26_2/reports/minecraft/components/item/lime_banner.json new file mode 100644 index 00000000..cc8b2cad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_banner", + "minecraft:item_name": { + "translate": "block.minecraft.lime_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_bed.json b/data/generated/V26_2/reports/minecraft/components/item/lime_bed.json new file mode 100644 index 00000000..621c00f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_bed", + "minecraft:item_name": { + "translate": "block.minecraft.lime_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/lime_bundle.json new file mode 100644 index 00000000..e0d1ce15 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.lime_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_candle.json b/data/generated/V26_2/reports/minecraft/components/item/lime_candle.json new file mode 100644 index 00000000..833cc06f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_candle", + "minecraft:item_name": { + "translate": "block.minecraft.lime_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/lime_carpet.json new file mode 100644 index 00000000..000b4a4f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:lime_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:lime_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.lime_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/lime_concrete.json new file mode 100644 index 00000000..e1e61dd6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.lime_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/lime_concrete_powder.json new file mode 100644 index 00000000..5cd4f052 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.lime_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_dye.json b/data/generated/V26_2/reports/minecraft/components/item/lime_dye.json new file mode 100644 index 00000000..4bccf83a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "lime", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_dye", + "minecraft:item_name": { + "translate": "item.minecraft.lime_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/lime_glazed_terracotta.json new file mode 100644 index 00000000..bdb6ae58 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.lime_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_harness.json b/data/generated/V26_2/reports/minecraft/components/item/lime_harness.json new file mode 100644 index 00000000..9585ab4f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:lime_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:lime_harness", + "minecraft:item_name": { + "translate": "item.minecraft.lime_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/lime_shulker_box.json new file mode 100644 index 00000000..2e323d9d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.lime_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass.json new file mode 100644 index 00000000..8e47c9ef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.lime_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass_pane.json new file mode 100644 index 00000000..c06d52e5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.lime_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/lime_terracotta.json new file mode 100644 index 00000000..70633dfd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.lime_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lime_wool.json b/data/generated/V26_2/reports/minecraft/components/item/lime_wool.json new file mode 100644 index 00000000..441db9d2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lime_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lime_wool", + "minecraft:item_name": { + "translate": "block.minecraft.lime_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lingering_potion.json b/data/generated/V26_2/reports/minecraft/components/item/lingering_potion.json new file mode 100644 index 00000000..704501a6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lingering_potion.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lingering_potion", + "minecraft:item_name": { + "translate": "item.minecraft.lingering_potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:potion_duration_scale": 0.25, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/llama_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/llama_spawn_egg.json new file mode 100644 index 00000000..1529289f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/llama_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:llama" + }, + "minecraft:item_model": "minecraft:llama_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.llama_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/lodestone.json b/data/generated/V26_2/reports/minecraft/components/item/lodestone.json new file mode 100644 index 00000000..ccdf19d0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/lodestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:lodestone", + "minecraft:item_name": { + "translate": "block.minecraft.lodestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/loom.json b/data/generated/V26_2/reports/minecraft/components/item/loom.json new file mode 100644 index 00000000..3a7dd4f0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/loom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:loom", + "minecraft:item_name": { + "translate": "block.minecraft.loom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mace.json b/data/generated/V26_2/reports/minecraft/components/item/mace.json new file mode 100644 index 00000000..e8c79181 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mace.json @@ -0,0 +1,47 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mace", + "minecraft:item_name": { + "translate": "item.minecraft.mace" + }, + "minecraft:lore": [], + "minecraft:max_damage": 500, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "minecraft:breeze_rod" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_banner.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_banner.json new file mode 100644 index 00000000..dd867b90 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_banner", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_bed.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_bed.json new file mode 100644 index 00000000..61c8ed4c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_bed", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_bundle.json new file mode 100644 index 00000000..3149d378 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_candle.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_candle.json new file mode 100644 index 00000000..75fe874d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_candle", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_carpet.json new file mode 100644 index 00000000..fffc1d22 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:magenta_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:magenta_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete.json new file mode 100644 index 00000000..ff3fc325 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete_powder.json new file mode 100644 index 00000000..1d92f6d6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_dye.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_dye.json new file mode 100644 index 00000000..848ff43e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "magenta", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_dye", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_glazed_terracotta.json new file mode 100644 index 00000000..8f2c58a3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_harness.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_harness.json new file mode 100644 index 00000000..4e74c925 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:magenta_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:magenta_harness", + "minecraft:item_name": { + "translate": "item.minecraft.magenta_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_shulker_box.json new file mode 100644 index 00000000..ebdacdff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass.json new file mode 100644 index 00000000..6c23dfa3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass_pane.json new file mode 100644 index 00000000..2fd6ae65 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_terracotta.json new file mode 100644 index 00000000..8599bf64 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magenta_wool.json b/data/generated/V26_2/reports/minecraft/components/item/magenta_wool.json new file mode 100644 index 00000000..8f361285 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magenta_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magenta_wool", + "minecraft:item_name": { + "translate": "block.minecraft.magenta_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magma_block.json b/data/generated/V26_2/reports/minecraft/components/item/magma_block.json new file mode 100644 index 00000000..2113d54b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magma_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magma_block", + "minecraft:item_name": { + "translate": "block.minecraft.magma_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magma_cream.json b/data/generated/V26_2/reports/minecraft/components/item/magma_cream.json new file mode 100644 index 00000000..71761c9b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magma_cream.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:magma_cream", + "minecraft:item_name": { + "translate": "item.minecraft.magma_cream" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/magma_cube_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/magma_cube_spawn_egg.json new file mode 100644 index 00000000..96449b3b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/magma_cube_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:magma_cube" + }, + "minecraft:item_model": "minecraft:magma_cube_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.magma_cube_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_boat.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_boat.json new file mode 100644 index 00000000..49bd97b2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_boat", + "minecraft:item_name": { + "translate": "item.minecraft.mangrove_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_button.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_button.json new file mode 100644 index 00000000..c2eb9ed2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_button", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_chest_boat.json new file mode 100644 index 00000000..e2d3c2a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.mangrove_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_door.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_door.json new file mode 100644 index 00000000..4395b75b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_door", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence.json new file mode 100644 index 00000000..497d8279 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_fence", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence_gate.json new file mode 100644 index 00000000..70380dae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_hanging_sign.json new file mode 100644 index 00000000..01eb2622 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_leaves.json new file mode 100644 index 00000000..baf9352d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_log.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_log.json new file mode 100644 index 00000000..46407df2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_log", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_planks.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_planks.json new file mode 100644 index 00000000..366c2f68 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_planks", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_pressure_plate.json new file mode 100644 index 00000000..692bd728 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_propagule.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_propagule.json new file mode 100644 index 00000000..40d20624 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_propagule.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_propagule", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_propagule" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_roots.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_roots.json new file mode 100644 index 00000000..988894d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_roots", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_shelf.json new file mode 100644 index 00000000..9616922c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_sign.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_sign.json new file mode 100644 index 00000000..f692e830 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_sign", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_slab.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_slab.json new file mode 100644 index 00000000..4cb0aeb2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_stairs.json new file mode 100644 index 00000000..8b3a2c8c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_trapdoor.json new file mode 100644 index 00000000..145f06f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mangrove_wood.json b/data/generated/V26_2/reports/minecraft/components/item/mangrove_wood.json new file mode 100644 index 00000000..7a06bba3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mangrove_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mangrove_wood", + "minecraft:item_name": { + "translate": "block.minecraft.mangrove_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/map.json b/data/generated/V26_2/reports/minecraft/components/item/map.json new file mode 100644 index 00000000..dfdfe3f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/map.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:map", + "minecraft:item_name": { + "translate": "item.minecraft.map" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/medium_amethyst_bud.json b/data/generated/V26_2/reports/minecraft/components/item/medium_amethyst_bud.json new file mode 100644 index 00000000..19c4febf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/medium_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:medium_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.medium_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/melon.json b/data/generated/V26_2/reports/minecraft/components/item/melon.json new file mode 100644 index 00000000..3615e2c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/melon.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:melon", + "minecraft:item_name": { + "translate": "block.minecraft.melon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/melon_seeds.json b/data/generated/V26_2/reports/minecraft/components/item/melon_seeds.json new file mode 100644 index 00000000..c62e4ed6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/melon_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:melon_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.melon_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/melon_slice.json b/data/generated/V26_2/reports/minecraft/components/item/melon_slice.json new file mode 100644 index 00000000..42af3104 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/melon_slice.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:melon_slice", + "minecraft:item_name": { + "translate": "item.minecraft.melon_slice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/milk_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/milk_bucket.json new file mode 100644 index 00000000..007a7bb1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/milk_bucket.json @@ -0,0 +1,31 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:clear_all_effects" + } + ], + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:milk_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.milk_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bucket" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/minecart.json b/data/generated/V26_2/reports/minecraft/components/item/minecart.json new file mode 100644 index 00000000..6908a5b7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:minecart", + "minecraft:item_name": { + "translate": "item.minecraft.minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/miner_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/miner_pottery_sherd.json new file mode 100644 index 00000000..b1ff38ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/miner_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:miner_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.miner_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mojang_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/mojang_banner_pattern.json new file mode 100644 index 00000000..8e334bf6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mojang_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mojang_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.mojang_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/mojang", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mooshroom_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/mooshroom_spawn_egg.json new file mode 100644 index 00000000..83bc293d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mooshroom_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:mooshroom" + }, + "minecraft:item_model": "minecraft:mooshroom_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.mooshroom_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/moss_block.json b/data/generated/V26_2/reports/minecraft/components/item/moss_block.json new file mode 100644 index 00000000..6b7ec8cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/moss_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:moss_block", + "minecraft:item_name": { + "translate": "block.minecraft.moss_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/moss_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/moss_carpet.json new file mode 100644 index 00000000..0ee18338 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/moss_carpet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:moss_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.moss_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone.json new file mode 100644 index 00000000..267d1148 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_slab.json new file mode 100644 index 00000000..1ab8b1ec --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_stairs.json new file mode 100644 index 00000000..2c58ef51 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_wall.json new file mode 100644 index 00000000..afe6114e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_cobblestone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_cobblestone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_cobblestone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_slab.json new file mode 100644 index 00000000..b937c2c2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_stairs.json new file mode 100644 index 00000000..f3a0aeda --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_wall.json new file mode 100644 index 00000000..5c246c72 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_bricks.json new file mode 100644 index 00000000..e2df710d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mossy_stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mossy_stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.mossy_stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mourner_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/mourner_pottery_sherd.json new file mode 100644 index 00000000..a3966abc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mourner_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mourner_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.mourner_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mud.json b/data/generated/V26_2/reports/minecraft/components/item/mud.json new file mode 100644 index 00000000..0b8ec342 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud", + "minecraft:item_name": { + "translate": "block.minecraft.mud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mud_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_slab.json new file mode 100644 index 00000000..f8b586ae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mud_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_stairs.json new file mode 100644 index 00000000..5c12a6a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mud_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_wall.json new file mode 100644 index 00000000..e1a48e83 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mud_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.mud_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mud_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/mud_bricks.json new file mode 100644 index 00000000..58c7e385 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mud_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mud_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.mud_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/muddy_mangrove_roots.json b/data/generated/V26_2/reports/minecraft/components/item/muddy_mangrove_roots.json new file mode 100644 index 00000000..7e911e8d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/muddy_mangrove_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:muddy_mangrove_roots", + "minecraft:item_name": { + "translate": "block.minecraft.muddy_mangrove_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mule_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/mule_spawn_egg.json new file mode 100644 index 00000000..ef543d28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mule_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:mule" + }, + "minecraft:item_model": "minecraft:mule_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.mule_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mushroom_stem.json b/data/generated/V26_2/reports/minecraft/components/item/mushroom_stem.json new file mode 100644 index 00000000..a33833bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mushroom_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mushroom_stem", + "minecraft:item_name": { + "translate": "block.minecraft.mushroom_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mushroom_stew.json b/data/generated/V26_2/reports/minecraft/components/item/mushroom_stew.json new file mode 100644 index 00000000..c3a79d8b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mushroom_stew.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:mushroom_stew", + "minecraft:item_name": { + "translate": "item.minecraft.mushroom_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_11.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_11.json new file mode 100644 index 00000000..1d0de02c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_11.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_11", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_11" + }, + "minecraft:jukebox_playable": "minecraft:11", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_13.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_13.json new file mode 100644 index 00000000..72557d8c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_13.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_13", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_13" + }, + "minecraft:jukebox_playable": "minecraft:13", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_5.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_5.json new file mode 100644 index 00000000..5ebc32df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_5.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_5", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_5" + }, + "minecraft:jukebox_playable": "minecraft:5", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_blocks.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_blocks.json new file mode 100644 index 00000000..e5ce2310 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_blocks.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_blocks", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_blocks" + }, + "minecraft:jukebox_playable": "minecraft:blocks", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_bounce.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_bounce.json new file mode 100644 index 00000000..6ab93a7b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_bounce.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_bounce", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_bounce" + }, + "minecraft:jukebox_playable": "minecraft:bounce", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_cat.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_cat.json new file mode 100644 index 00000000..c850e592 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_cat.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_cat", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_cat" + }, + "minecraft:jukebox_playable": "minecraft:cat", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_chirp.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_chirp.json new file mode 100644 index 00000000..0c51e230 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_chirp.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_chirp", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_chirp" + }, + "minecraft:jukebox_playable": "minecraft:chirp", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator.json new file mode 100644 index 00000000..d4e75a22 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_creator", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_creator" + }, + "minecraft:jukebox_playable": "minecraft:creator", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator_music_box.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator_music_box.json new file mode 100644 index 00000000..873e9bf9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_creator_music_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_creator_music_box", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_creator_music_box" + }, + "minecraft:jukebox_playable": "minecraft:creator_music_box", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_far.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_far.json new file mode 100644 index 00000000..5f77951e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_far.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_far", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_far" + }, + "minecraft:jukebox_playable": "minecraft:far", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_lava_chicken.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_lava_chicken.json new file mode 100644 index 00000000..f1ac74d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_lava_chicken.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_lava_chicken", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_lava_chicken" + }, + "minecraft:jukebox_playable": "minecraft:lava_chicken", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_mall.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_mall.json new file mode 100644 index 00000000..0cd2cb95 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_mall.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_mall", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_mall" + }, + "minecraft:jukebox_playable": "minecraft:mall", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_mellohi.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_mellohi.json new file mode 100644 index 00000000..f95906dd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_mellohi.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_mellohi", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_mellohi" + }, + "minecraft:jukebox_playable": "minecraft:mellohi", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_otherside.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_otherside.json new file mode 100644 index 00000000..698b4925 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_otherside.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_otherside", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_otherside" + }, + "minecraft:jukebox_playable": "minecraft:otherside", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_pigstep.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_pigstep.json new file mode 100644 index 00000000..5418495b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_pigstep.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_pigstep", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_pigstep" + }, + "minecraft:jukebox_playable": "minecraft:pigstep", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_precipice.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_precipice.json new file mode 100644 index 00000000..f3659acd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_precipice.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_precipice", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_precipice" + }, + "minecraft:jukebox_playable": "minecraft:precipice", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_relic.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_relic.json new file mode 100644 index 00000000..2e567500 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_relic.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_relic", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_relic" + }, + "minecraft:jukebox_playable": "minecraft:relic", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_stal.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_stal.json new file mode 100644 index 00000000..df700401 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_stal.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_stal", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_stal" + }, + "minecraft:jukebox_playable": "minecraft:stal", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_strad.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_strad.json new file mode 100644 index 00000000..dbd3de23 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_strad.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_strad", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_strad" + }, + "minecraft:jukebox_playable": "minecraft:strad", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_tears.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_tears.json new file mode 100644 index 00000000..218c1757 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_tears.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_tears", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_tears" + }, + "minecraft:jukebox_playable": "minecraft:tears", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_wait.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_wait.json new file mode 100644 index 00000000..0ba66b11 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_wait.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_wait", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_wait" + }, + "minecraft:jukebox_playable": "minecraft:wait", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/music_disc_ward.json b/data/generated/V26_2/reports/minecraft/components/item/music_disc_ward.json new file mode 100644 index 00000000..518a336d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/music_disc_ward.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:music_disc_ward", + "minecraft:item_name": { + "translate": "item.minecraft.music_disc_ward" + }, + "minecraft:jukebox_playable": "minecraft:ward", + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mutton.json b/data/generated/V26_2/reports/minecraft/components/item/mutton.json new file mode 100644 index 00000000..01f15c42 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mutton.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:mutton", + "minecraft:item_name": { + "translate": "item.minecraft.mutton" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/mycelium.json b/data/generated/V26_2/reports/minecraft/components/item/mycelium.json new file mode 100644 index 00000000..72672b0f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/mycelium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:mycelium", + "minecraft:item_name": { + "translate": "block.minecraft.mycelium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/name_tag.json b/data/generated/V26_2/reports/minecraft/components/item/name_tag.json new file mode 100644 index 00000000..480333e6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/name_tag.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:name_tag", + "minecraft:item_name": { + "translate": "item.minecraft.name_tag" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nautilus_shell.json b/data/generated/V26_2/reports/minecraft/components/item/nautilus_shell.json new file mode 100644 index 00000000..441e78b1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nautilus_shell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nautilus_shell", + "minecraft:item_name": { + "translate": "item.minecraft.nautilus_shell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nautilus_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/nautilus_spawn_egg.json new file mode 100644 index 00000000..6888512a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nautilus_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:nautilus" + }, + "minecraft:item_model": "minecraft:nautilus_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.nautilus_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_brick.json b/data/generated/V26_2/reports/minecraft/components/item/nether_brick.json new file mode 100644 index 00000000..b6adfa48 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_brick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick", + "minecraft:item_name": { + "translate": "item.minecraft.nether_brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_brick_fence.json b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_fence.json new file mode 100644 index 00000000..93971870 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_fence", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_slab.json new file mode 100644 index 00000000..4761281a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_stairs.json new file mode 100644 index 00000000..99233f05 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_wall.json new file mode 100644 index 00000000..ab94fa18 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.nether_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/nether_bricks.json new file mode 100644 index 00000000..41778971 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_gold_ore.json b/data/generated/V26_2/reports/minecraft/components/item/nether_gold_ore.json new file mode 100644 index 00000000..69228ec1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_gold_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_gold_ore", + "minecraft:item_name": { + "translate": "block.minecraft.nether_gold_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_quartz_ore.json b/data/generated/V26_2/reports/minecraft/components/item/nether_quartz_ore.json new file mode 100644 index 00000000..cdebf9e2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_quartz_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_quartz_ore", + "minecraft:item_name": { + "translate": "block.minecraft.nether_quartz_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_sprouts.json b/data/generated/V26_2/reports/minecraft/components/item/nether_sprouts.json new file mode 100644 index 00000000..360db123 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_sprouts.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_sprouts", + "minecraft:item_name": { + "translate": "block.minecraft.nether_sprouts" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_star.json b/data/generated/V26_2/reports/minecraft/components/item/nether_star.json new file mode 100644 index 00000000..5f6a8b4b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_star.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_explosion" + }, + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_star", + "minecraft:item_name": { + "translate": "item.minecraft.nether_star" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_wart.json b/data/generated/V26_2/reports/minecraft/components/item/nether_wart.json new file mode 100644 index 00000000..ac6697a3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_wart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_wart", + "minecraft:item_name": { + "translate": "item.minecraft.nether_wart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/nether_wart_block.json b/data/generated/V26_2/reports/minecraft/components/item/nether_wart_block.json new file mode 100644 index 00000000..ee35fe24 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/nether_wart_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:nether_wart_block", + "minecraft:item_name": { + "translate": "block.minecraft.nether_wart_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_axe.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_axe.json new file mode 100644 index 00000000..f29a67d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_axe.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 9.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_axe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_block.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_block.json new file mode 100644 index 00000000..abcc407e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_block.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_block", + "minecraft:item_name": { + "translate": "block.minecraft.netherite_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_boots.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_boots.json new file mode 100644 index 00000000..d7161310 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_boots.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.boots", + "operation": "add_value", + "slot": "feet" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "feet" + }, + "minecraft:item_model": "minecraft:netherite_boots", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_boots" + }, + "minecraft:lore": [], + "minecraft:max_damage": 481, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_chestplate.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_chestplate.json new file mode 100644 index 00000000..774d8f98 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_chestplate.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 8.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.chestplate", + "operation": "add_value", + "slot": "chest" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "chest" + }, + "minecraft:item_model": "minecraft:netherite_chestplate", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_chestplate" + }, + "minecraft:lore": [], + "minecraft:max_damage": 592, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_helmet.json new file mode 100644 index 00000000..850389c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_helmet.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "head" + }, + "minecraft:item_model": "minecraft:netherite_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 407, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_hoe.json new file mode 100644 index 00000000..b077a931 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_hoe.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": 0.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_horse_armor.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_horse_armor.json new file mode 100644 index 00000000..2eba719c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_horse_armor.json @@ -0,0 +1,52 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 19.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_horse_armor", + "asset_id": "minecraft:netherite", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_sound": "minecraft:entity.horse.armor", + "shearing_sound": "minecraft:item.horse_armor.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:netherite_horse_armor", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_horse_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_ingot.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_ingot.json new file mode 100644 index 00000000..e9eb0a61 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_ingot.json @@ -0,0 +1,22 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_ingot", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_ingot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:netherite", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_leggings.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_leggings.json new file mode 100644 index 00000000..42502497 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_leggings.json @@ -0,0 +1,56 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 6.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.leggings", + "operation": "add_value", + "slot": "legs" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:netherite", + "equip_sound": "minecraft:item.armor.equip_netherite", + "slot": "legs" + }, + "minecraft:item_model": "minecraft:netherite_leggings", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_leggings" + }, + "minecraft:lore": [], + "minecraft:max_damage": 555, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_netherite_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_nautilus_armor.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_nautilus_armor.json new file mode 100644 index 00000000..840c8f40 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_nautilus_armor.json @@ -0,0 +1,53 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 19.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 3.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:knockback_resistance", + "amount": 0.10000000149011612, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_wear_nautilus_armor", + "asset_id": "minecraft:netherite", + "can_be_sheared": true, + "damage_on_hurt": false, + "equip_on_interact": true, + "equip_sound": "minecraft:item.armor.equip_nautilus", + "shearing_sound": "minecraft:item.armor.unequip_nautilus", + "slot": "body" + }, + "minecraft:item_model": "minecraft:netherite_nautilus_armor", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_nautilus_armor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_pickaxe.json new file mode 100644 index 00000000..47e869cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_pickaxe.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_scrap.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_scrap.json new file mode 100644 index 00000000..8c82d2f0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_scrap.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_scrap", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_scrap" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_shovel.json new file mode 100644 index 00000000..74b5536f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_shovel.json @@ -0,0 +1,60 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 5.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_netherite_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 9.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_spear.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_spear.json new file mode 100644 index 00000000..bf621480 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_spear.json @@ -0,0 +1,85 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.13043475151062, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_spear", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 175, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 1.2, + "delay_ticks": 8, + "dismount_conditions": { + "max_duration_ticks": 50, + "min_speed": 9.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 110, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 23 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_sword.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_sword.json new file mode 100644 index 00000000..89004ca7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_sword.json @@ -0,0 +1,64 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 7.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_resistant": { + "types": "#minecraft:is_fire" + }, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_sword", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 2031, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:netherite_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherite_upgrade_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/netherite_upgrade_smithing_template.json new file mode 100644 index 00000000..95597f68 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherite_upgrade_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherite_upgrade_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.netherite_upgrade_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/netherrack.json b/data/generated/V26_2/reports/minecraft/components/item/netherrack.json new file mode 100644 index 00000000..fde9c405 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/netherrack.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:netherrack", + "minecraft:item_name": { + "translate": "block.minecraft.netherrack" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/note_block.json b/data/generated/V26_2/reports/minecraft/components/item/note_block.json new file mode 100644 index 00000000..aea35abc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/note_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:note_block", + "minecraft:item_name": { + "translate": "block.minecraft.note_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_boat.json b/data/generated/V26_2/reports/minecraft/components/item/oak_boat.json new file mode 100644 index 00000000..10f1df14 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_button.json b/data/generated/V26_2/reports/minecraft/components/item/oak_button.json new file mode 100644 index 00000000..9238ce44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/oak_chest_boat.json new file mode 100644 index 00000000..fcd33444 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_door.json b/data/generated/V26_2/reports/minecraft/components/item/oak_door.json new file mode 100644 index 00000000..c7cb232b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_fence.json b/data/generated/V26_2/reports/minecraft/components/item/oak_fence.json new file mode 100644 index 00000000..077ddf70 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/oak_fence_gate.json new file mode 100644 index 00000000..f8ff60f3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/oak_hanging_sign.json new file mode 100644 index 00000000..db076d00 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/oak_leaves.json new file mode 100644 index 00000000..6273ddc0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/oak_log.json new file mode 100644 index 00000000..6137fda5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_planks.json b/data/generated/V26_2/reports/minecraft/components/item/oak_planks.json new file mode 100644 index 00000000..06be034f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/oak_pressure_plate.json new file mode 100644 index 00000000..7c9f29a6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/oak_sapling.json new file mode 100644 index 00000000..c475c0e5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/oak_shelf.json new file mode 100644 index 00000000..bcb2a001 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_sign.json b/data/generated/V26_2/reports/minecraft/components/item/oak_sign.json new file mode 100644 index 00000000..cff2b564 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_slab.json b/data/generated/V26_2/reports/minecraft/components/item/oak_slab.json new file mode 100644 index 00000000..0202d509 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/oak_stairs.json new file mode 100644 index 00000000..3c06db4e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/oak_trapdoor.json new file mode 100644 index 00000000..05fcf446 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/oak_wood.json new file mode 100644 index 00000000..6cb76ca5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/observer.json b/data/generated/V26_2/reports/minecraft/components/item/observer.json new file mode 100644 index 00000000..cb7d61cd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/observer.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:observer", + "minecraft:item_name": { + "translate": "block.minecraft.observer" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/obsidian.json b/data/generated/V26_2/reports/minecraft/components/item/obsidian.json new file mode 100644 index 00000000..4514dd22 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/obsidian.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:obsidian", + "minecraft:item_name": { + "translate": "block.minecraft.obsidian" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ocelot_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/ocelot_spawn_egg.json new file mode 100644 index 00000000..dcc91059 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ocelot_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ocelot" + }, + "minecraft:item_model": "minecraft:ocelot_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ocelot_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ochre_froglight.json b/data/generated/V26_2/reports/minecraft/components/item/ochre_froglight.json new file mode 100644 index 00000000..73c8ff32 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ochre_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ochre_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.ochre_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ominous_bottle.json b/data/generated/V26_2/reports/minecraft/components/item/ominous_bottle.json new file mode 100644 index 00000000..01805085 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ominous_bottle.json @@ -0,0 +1,30 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "on_consume_effects": [ + { + "type": "minecraft:play_sound", + "sound": "minecraft:item.ominous_bottle.dispose" + } + ], + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ominous_bottle", + "minecraft:item_name": { + "translate": "item.minecraft.ominous_bottle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:ominous_bottle_amplifier": 0, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ominous_trial_key.json b/data/generated/V26_2/reports/minecraft/components/item/ominous_trial_key.json new file mode 100644 index 00000000..4a7d2662 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ominous_trial_key.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ominous_trial_key", + "minecraft:item_name": { + "translate": "item.minecraft.ominous_trial_key" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/open_eyeblossom.json b/data/generated/V26_2/reports/minecraft/components/item/open_eyeblossom.json new file mode 100644 index 00000000..49c69395 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/open_eyeblossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:open_eyeblossom", + "minecraft:item_name": { + "translate": "block.minecraft.open_eyeblossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_banner.json b/data/generated/V26_2/reports/minecraft/components/item/orange_banner.json new file mode 100644 index 00000000..41999b93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_banner", + "minecraft:item_name": { + "translate": "block.minecraft.orange_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_bed.json b/data/generated/V26_2/reports/minecraft/components/item/orange_bed.json new file mode 100644 index 00000000..a026d0ee --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_bed", + "minecraft:item_name": { + "translate": "block.minecraft.orange_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/orange_bundle.json new file mode 100644 index 00000000..48835a73 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.orange_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_candle.json b/data/generated/V26_2/reports/minecraft/components/item/orange_candle.json new file mode 100644 index 00000000..cb1bc0a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_candle", + "minecraft:item_name": { + "translate": "block.minecraft.orange_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/orange_carpet.json new file mode 100644 index 00000000..5f98588f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:orange_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:orange_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.orange_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/orange_concrete.json new file mode 100644 index 00000000..6132100e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.orange_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/orange_concrete_powder.json new file mode 100644 index 00000000..2972d2df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.orange_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_dye.json b/data/generated/V26_2/reports/minecraft/components/item/orange_dye.json new file mode 100644 index 00000000..717b6c69 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "orange", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_dye", + "minecraft:item_name": { + "translate": "item.minecraft.orange_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/orange_glazed_terracotta.json new file mode 100644 index 00000000..4437e5da --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.orange_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_harness.json b/data/generated/V26_2/reports/minecraft/components/item/orange_harness.json new file mode 100644 index 00000000..dc6a3cc9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:orange_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:orange_harness", + "minecraft:item_name": { + "translate": "item.minecraft.orange_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/orange_shulker_box.json new file mode 100644 index 00000000..c91ccb3a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.orange_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass.json new file mode 100644 index 00000000..fb906951 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.orange_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass_pane.json new file mode 100644 index 00000000..09f5ea05 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.orange_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/orange_terracotta.json new file mode 100644 index 00000000..7cb859d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.orange_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_tulip.json b/data/generated/V26_2/reports/minecraft/components/item/orange_tulip.json new file mode 100644 index 00000000..e900b9f9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.orange_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/orange_wool.json b/data/generated/V26_2/reports/minecraft/components/item/orange_wool.json new file mode 100644 index 00000000..e8462556 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/orange_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:orange_wool", + "minecraft:item_name": { + "translate": "block.minecraft.orange_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxeye_daisy.json b/data/generated/V26_2/reports/minecraft/components/item/oxeye_daisy.json new file mode 100644 index 00000000..7cb5d6ea --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxeye_daisy.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxeye_daisy", + "minecraft:item_name": { + "translate": "block.minecraft.oxeye_daisy" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_chiseled_copper.json new file mode 100644 index 00000000..c5d2c743 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper.json new file mode 100644 index 00000000..b7d32c31 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bars.json new file mode 100644 index 00000000..37e3a1d0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bulb.json new file mode 100644 index 00000000..6d62bcd3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chain.json new file mode 100644 index 00000000..7d0bd0ad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chest.json new file mode 100644 index 00000000..e284078c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_door.json new file mode 100644 index 00000000..a48edcff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_golem_statue.json new file mode 100644 index 00000000..b0d9ea32 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_grate.json new file mode 100644 index 00000000..b68668f8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_lantern.json new file mode 100644 index 00000000..5ad5141b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_trapdoor.json new file mode 100644 index 00000000..4c8e2a08 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper.json new file mode 100644 index 00000000..6615c39e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_slab.json new file mode 100644 index 00000000..8acdd191 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..0c5220cf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/oxidized_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/oxidized_lightning_rod.json new file mode 100644 index 00000000..143f64a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/oxidized_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:oxidized_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.oxidized_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/packed_ice.json b/data/generated/V26_2/reports/minecraft/components/item/packed_ice.json new file mode 100644 index 00000000..d2642ac4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/packed_ice.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:packed_ice", + "minecraft:item_name": { + "translate": "block.minecraft.packed_ice" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/packed_mud.json b/data/generated/V26_2/reports/minecraft/components/item/packed_mud.json new file mode 100644 index 00000000..b4a31047 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/packed_mud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:packed_mud", + "minecraft:item_name": { + "translate": "block.minecraft.packed_mud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/painting.json b/data/generated/V26_2/reports/minecraft/components/item/painting.json new file mode 100644 index 00000000..7fe45020 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/painting.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:painting", + "minecraft:item_name": { + "translate": "item.minecraft.painting" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_hanging_moss.json b/data/generated/V26_2/reports/minecraft/components/item/pale_hanging_moss.json new file mode 100644 index 00000000..73a21ca4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_hanging_moss.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_hanging_moss", + "minecraft:item_name": { + "translate": "block.minecraft.pale_hanging_moss" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_moss_block.json b/data/generated/V26_2/reports/minecraft/components/item/pale_moss_block.json new file mode 100644 index 00000000..215dc340 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_moss_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_moss_block", + "minecraft:item_name": { + "translate": "block.minecraft.pale_moss_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_moss_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/pale_moss_carpet.json new file mode 100644 index 00000000..ae5aeaa9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_moss_carpet.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_moss_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.pale_moss_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_boat.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_boat.json new file mode 100644 index 00000000..de90a924 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_boat", + "minecraft:item_name": { + "translate": "item.minecraft.pale_oak_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_button.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_button.json new file mode 100644 index 00000000..d748081a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_button", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_chest_boat.json new file mode 100644 index 00000000..6b63c854 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.pale_oak_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_door.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_door.json new file mode 100644 index 00000000..3ba87ec7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_door", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence.json new file mode 100644 index 00000000..74192c3f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_fence", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence_gate.json new file mode 100644 index 00000000..73dfbc93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_hanging_sign.json new file mode 100644 index 00000000..81fce508 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_leaves.json new file mode 100644 index 00000000..4d60db39 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_log.json new file mode 100644 index 00000000..c8c1cfac --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_planks.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_planks.json new file mode 100644 index 00000000..be053b9a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_planks", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_pressure_plate.json new file mode 100644 index 00000000..17590f71 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sapling.json new file mode 100644 index 00000000..251613f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_shelf.json new file mode 100644 index 00000000..38d338bb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sign.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sign.json new file mode 100644 index 00000000..ae1643b4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_sign", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_slab.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_slab.json new file mode 100644 index 00000000..e85483f9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_stairs.json new file mode 100644 index 00000000..680ac35b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_trapdoor.json new file mode 100644 index 00000000..ad6e73ba --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pale_oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_wood.json new file mode 100644 index 00000000..af8b9047 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pale_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pale_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.pale_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/panda_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/panda_spawn_egg.json new file mode 100644 index 00000000..dc4700c5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/panda_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:panda" + }, + "minecraft:item_model": "minecraft:panda_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.panda_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/paper.json b/data/generated/V26_2/reports/minecraft/components/item/paper.json new file mode 100644 index 00000000..4624462b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/paper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:paper", + "minecraft:item_name": { + "translate": "item.minecraft.paper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/parched_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/parched_spawn_egg.json new file mode 100644 index 00000000..5bbb9874 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/parched_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:parched" + }, + "minecraft:item_model": "minecraft:parched_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.parched_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/parrot_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/parrot_spawn_egg.json new file mode 100644 index 00000000..dc142448 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/parrot_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:parrot" + }, + "minecraft:item_model": "minecraft:parrot_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.parrot_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pearlescent_froglight.json b/data/generated/V26_2/reports/minecraft/components/item/pearlescent_froglight.json new file mode 100644 index 00000000..8da2b38f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pearlescent_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pearlescent_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.pearlescent_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/peony.json b/data/generated/V26_2/reports/minecraft/components/item/peony.json new file mode 100644 index 00000000..f7a375e8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/peony.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:peony", + "minecraft:item_name": { + "translate": "block.minecraft.peony" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/petrified_oak_slab.json b/data/generated/V26_2/reports/minecraft/components/item/petrified_oak_slab.json new file mode 100644 index 00000000..9af291c1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/petrified_oak_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:petrified_oak_slab", + "minecraft:item_name": { + "translate": "block.minecraft.petrified_oak_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/phantom_membrane.json b/data/generated/V26_2/reports/minecraft/components/item/phantom_membrane.json new file mode 100644 index 00000000..857f5984 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/phantom_membrane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:phantom_membrane", + "minecraft:item_name": { + "translate": "item.minecraft.phantom_membrane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/phantom_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/phantom_spawn_egg.json new file mode 100644 index 00000000..9061eaca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/phantom_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:phantom" + }, + "minecraft:item_model": "minecraft:phantom_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.phantom_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pig_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/pig_spawn_egg.json new file mode 100644 index 00000000..f6ca9e2c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pig_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pig" + }, + "minecraft:item_model": "minecraft:pig_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pig_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/piglin_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/piglin_banner_pattern.json new file mode 100644 index 00000000..eb45ed4e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/piglin_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:piglin_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/piglin", + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/piglin_brute_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/piglin_brute_spawn_egg.json new file mode 100644 index 00000000..8f0777e1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/piglin_brute_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:piglin_brute" + }, + "minecraft:item_model": "minecraft:piglin_brute_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_brute_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/piglin_head.json b/data/generated/V26_2/reports/minecraft/components/item/piglin_head.json new file mode 100644 index 00000000..9be03f39 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/piglin_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:piglin_head", + "minecraft:item_name": { + "translate": "block.minecraft.piglin_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/piglin_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/piglin_spawn_egg.json new file mode 100644 index 00000000..ab01fcaf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/piglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:piglin" + }, + "minecraft:item_model": "minecraft:piglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.piglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pillager_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/pillager_spawn_egg.json new file mode 100644 index 00000000..1513fc44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pillager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pillager" + }, + "minecraft:item_model": "minecraft:pillager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pillager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_banner.json b/data/generated/V26_2/reports/minecraft/components/item/pink_banner.json new file mode 100644 index 00000000..1dc70b00 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_banner", + "minecraft:item_name": { + "translate": "block.minecraft.pink_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_bed.json b/data/generated/V26_2/reports/minecraft/components/item/pink_bed.json new file mode 100644 index 00000000..08967ba3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_bed", + "minecraft:item_name": { + "translate": "block.minecraft.pink_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/pink_bundle.json new file mode 100644 index 00000000..c899058e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.pink_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_candle.json b/data/generated/V26_2/reports/minecraft/components/item/pink_candle.json new file mode 100644 index 00000000..0444828e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_candle", + "minecraft:item_name": { + "translate": "block.minecraft.pink_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/pink_carpet.json new file mode 100644 index 00000000..e236b7f7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:pink_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:pink_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.pink_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/pink_concrete.json new file mode 100644 index 00000000..9aa49fdd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.pink_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/pink_concrete_powder.json new file mode 100644 index 00000000..adcd333f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.pink_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_dye.json b/data/generated/V26_2/reports/minecraft/components/item/pink_dye.json new file mode 100644 index 00000000..fd7205a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "pink", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_dye", + "minecraft:item_name": { + "translate": "item.minecraft.pink_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/pink_glazed_terracotta.json new file mode 100644 index 00000000..c5f24929 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.pink_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_harness.json b/data/generated/V26_2/reports/minecraft/components/item/pink_harness.json new file mode 100644 index 00000000..b8c19079 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:pink_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:pink_harness", + "minecraft:item_name": { + "translate": "item.minecraft.pink_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_petals.json b/data/generated/V26_2/reports/minecraft/components/item/pink_petals.json new file mode 100644 index 00000000..484af5d2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_petals.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_petals", + "minecraft:item_name": { + "translate": "block.minecraft.pink_petals" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/pink_shulker_box.json new file mode 100644 index 00000000..3bba7c69 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.pink_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass.json new file mode 100644 index 00000000..6a8fc02f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.pink_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass_pane.json new file mode 100644 index 00000000..a7c06447 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.pink_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/pink_terracotta.json new file mode 100644 index 00000000..3d3e7db6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.pink_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_tulip.json b/data/generated/V26_2/reports/minecraft/components/item/pink_tulip.json new file mode 100644 index 00000000..4e89a887 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.pink_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pink_wool.json b/data/generated/V26_2/reports/minecraft/components/item/pink_wool.json new file mode 100644 index 00000000..1d8b0b62 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pink_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pink_wool", + "minecraft:item_name": { + "translate": "block.minecraft.pink_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/piston.json b/data/generated/V26_2/reports/minecraft/components/item/piston.json new file mode 100644 index 00000000..2b1ac24b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/piston.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:piston", + "minecraft:item_name": { + "translate": "block.minecraft.piston" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pitcher_plant.json b/data/generated/V26_2/reports/minecraft/components/item/pitcher_plant.json new file mode 100644 index 00000000..a1d8c03b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pitcher_plant.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pitcher_plant", + "minecraft:item_name": { + "translate": "block.minecraft.pitcher_plant" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pitcher_pod.json b/data/generated/V26_2/reports/minecraft/components/item/pitcher_pod.json new file mode 100644 index 00000000..fae7e897 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pitcher_pod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pitcher_pod", + "minecraft:item_name": { + "translate": "item.minecraft.pitcher_pod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/player_head.json b/data/generated/V26_2/reports/minecraft/components/item/player_head.json new file mode 100644 index 00000000..15eccf5b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/player_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:player_head", + "minecraft:item_name": { + "translate": "block.minecraft.player_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/plenty_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/plenty_pottery_sherd.json new file mode 100644 index 00000000..1079878e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/plenty_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:plenty_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.plenty_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/podzol.json b/data/generated/V26_2/reports/minecraft/components/item/podzol.json new file mode 100644 index 00000000..62e6cd30 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/podzol.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:podzol", + "minecraft:item_name": { + "translate": "block.minecraft.podzol" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pointed_dripstone.json b/data/generated/V26_2/reports/minecraft/components/item/pointed_dripstone.json new file mode 100644 index 00000000..53467165 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pointed_dripstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pointed_dripstone", + "minecraft:item_name": { + "translate": "block.minecraft.pointed_dripstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/poisonous_potato.json b/data/generated/V26_2/reports/minecraft/components/item/poisonous_potato.json new file mode 100644 index 00000000..1755136a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/poisonous_potato.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 100, + "id": "minecraft:poison", + "show_icon": true + } + ], + "probability": 0.6 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 1.2 + }, + "minecraft:item_model": "minecraft:poisonous_potato", + "minecraft:item_name": { + "translate": "item.minecraft.poisonous_potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polar_bear_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/polar_bear_spawn_egg.json new file mode 100644 index 00000000..64a9b873 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polar_bear_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:polar_bear" + }, + "minecraft:item_model": "minecraft:polar_bear_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.polar_bear_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_andesite.json b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite.json new file mode 100644 index 00000000..1f5b0f75 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_slab.json new file mode 100644 index 00000000..ed208221 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_stairs.json new file mode 100644 index 00000000..eaa264a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_andesite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_andesite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_andesite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_basalt.json b/data/generated/V26_2/reports/minecraft/components/item/polished_basalt.json new file mode 100644 index 00000000..061af1b4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_basalt", + "minecraft:item_name": { + "translate": "block.minecraft.polished_basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone.json new file mode 100644 index 00000000..2312bdda --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_slab.json new file mode 100644 index 00000000..d91ed4b9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_stairs.json new file mode 100644 index 00000000..e80168d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_wall.json new file mode 100644 index 00000000..e7e05634 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_bricks.json new file mode 100644 index 00000000..093202dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_button.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_button.json new file mode 100644 index 00000000..3535ff63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_button", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_pressure_plate.json new file mode 100644 index 00000000..8eb21f4f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_slab.json new file mode 100644 index 00000000..4fb56d23 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_stairs.json new file mode 100644 index 00000000..10c5f2a6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_wall.json new file mode 100644 index 00000000..557d83b2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_blackstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_blackstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_blackstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar.json b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar.json new file mode 100644 index 00000000..4aab4a5b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_cinnabar", + "minecraft:item_name": { + "translate": "block.minecraft.polished_cinnabar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_slab.json new file mode 100644 index 00000000..d237f7d8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_cinnabar_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_cinnabar_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_stairs.json new file mode 100644 index 00000000..2d97028b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_cinnabar_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_cinnabar_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_wall.json new file mode 100644 index 00000000..88133f47 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_cinnabar_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_cinnabar_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_cinnabar_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate.json new file mode 100644 index 00000000..0de1ce40 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_slab.json new file mode 100644 index 00000000..09792271 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_stairs.json new file mode 100644 index 00000000..a8d500a2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_wall.json new file mode 100644 index 00000000..e0eb182f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_deepslate_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_deepslate_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_deepslate_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_diorite.json b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite.json new file mode 100644 index 00000000..708d1ce5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_slab.json new file mode 100644 index 00000000..da40dfda --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_stairs.json new file mode 100644 index 00000000..9c9e2b8e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_diorite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_diorite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_diorite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_granite.json b/data/generated/V26_2/reports/minecraft/components/item/polished_granite.json new file mode 100644 index 00000000..36c97935 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_granite.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_granite_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_granite_slab.json new file mode 100644 index 00000000..fb4db036 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_granite_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_granite_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_granite_stairs.json new file mode 100644 index 00000000..41cb6aef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_granite_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_granite_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_granite_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur.json b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur.json new file mode 100644 index 00000000..6ef36bfc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_sulfur", + "minecraft:item_name": { + "translate": "block.minecraft.polished_sulfur" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_slab.json new file mode 100644 index 00000000..ea9dbde7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_sulfur_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_sulfur_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_stairs.json new file mode 100644 index 00000000..f26c1357 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_sulfur_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_sulfur_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_wall.json new file mode 100644 index 00000000..43f28d2d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_sulfur_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_sulfur_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_sulfur_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_tuff.json b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff.json new file mode 100644 index 00000000..22268614 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_slab.json b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_slab.json new file mode 100644 index 00000000..39d40594 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_slab", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_stairs.json new file mode 100644 index 00000000..9d3767fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_wall.json b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_wall.json new file mode 100644 index 00000000..2220822e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/polished_tuff_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:polished_tuff_wall", + "minecraft:item_name": { + "translate": "block.minecraft.polished_tuff_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/popped_chorus_fruit.json b/data/generated/V26_2/reports/minecraft/components/item/popped_chorus_fruit.json new file mode 100644 index 00000000..4f1f0a86 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/popped_chorus_fruit.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:popped_chorus_fruit", + "minecraft:item_name": { + "translate": "item.minecraft.popped_chorus_fruit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/poppy.json b/data/generated/V26_2/reports/minecraft/components/item/poppy.json new file mode 100644 index 00000000..11447e1f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/poppy.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:poppy", + "minecraft:item_name": { + "translate": "block.minecraft.poppy" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/porkchop.json b/data/generated/V26_2/reports/minecraft/components/item/porkchop.json new file mode 100644 index 00000000..da3401c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/porkchop.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:porkchop", + "minecraft:item_name": { + "translate": "item.minecraft.porkchop" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/potato.json b/data/generated/V26_2/reports/minecraft/components/item/potato.json new file mode 100644 index 00000000..d00704e6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/potato.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.6 + }, + "minecraft:item_model": "minecraft:potato", + "minecraft:item_name": { + "translate": "item.minecraft.potato" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/potent_sulfur.json b/data/generated/V26_2/reports/minecraft/components/item/potent_sulfur.json new file mode 100644 index 00000000..8274f42f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/potent_sulfur.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:potent_sulfur", + "minecraft:item_name": { + "translate": "block.minecraft.potent_sulfur" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/potion.json b/data/generated/V26_2/reports/minecraft/components/item/potion.json new file mode 100644 index 00000000..e6d79cf7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/potion.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "animation": "drink", + "has_consume_particles": false, + "sound": "minecraft:entity.generic.drink" + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:potion", + "minecraft:item_name": { + "translate": "item.minecraft.potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:glass_bottle" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/powder_snow_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/powder_snow_bucket.json new file mode 100644 index 00000000..e9934f80 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/powder_snow_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:powder_snow_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.powder_snow_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/powered_rail.json b/data/generated/V26_2/reports/minecraft/components/item/powered_rail.json new file mode 100644 index 00000000..eb666f13 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/powered_rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:powered_rail", + "minecraft:item_name": { + "translate": "block.minecraft.powered_rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine.json new file mode 100644 index 00000000..a8a157b3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_slab.json new file mode 100644 index 00000000..e8e418b6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_stairs.json new file mode 100644 index 00000000..4d4a5676 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_bricks.json new file mode 100644 index 00000000..1e3c182f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_crystals.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_crystals.json new file mode 100644 index 00000000..8c769b51 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_crystals.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_crystals", + "minecraft:item_name": { + "translate": "item.minecraft.prismarine_crystals" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_shard.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_shard.json new file mode 100644 index 00000000..ba3221f2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_shard.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_shard", + "minecraft:item_name": { + "translate": "item.minecraft.prismarine_shard" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_slab.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_slab.json new file mode 100644 index 00000000..d73ca58d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_slab", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_stairs.json new file mode 100644 index 00000000..47c5613c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prismarine_wall.json b/data/generated/V26_2/reports/minecraft/components/item/prismarine_wall.json new file mode 100644 index 00000000..0d452299 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prismarine_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prismarine_wall", + "minecraft:item_name": { + "translate": "block.minecraft.prismarine_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/prize_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/prize_pottery_sherd.json new file mode 100644 index 00000000..203b344b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/prize_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:prize_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.prize_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pufferfish.json b/data/generated/V26_2/reports/minecraft/components/item/pufferfish.json new file mode 100644 index 00000000..05b528da --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pufferfish.json @@ -0,0 +1,48 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 1200, + "id": "minecraft:poison", + "show_icon": true + }, + { + "amplifier": 2, + "duration": 300, + "id": "minecraft:hunger", + "show_icon": true + }, + { + "duration": 300, + "id": "minecraft:nausea", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:pufferfish", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pufferfish_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/pufferfish_bucket.json new file mode 100644 index 00000000..d06408ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pufferfish_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:pufferfish_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pufferfish_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/pufferfish_spawn_egg.json new file mode 100644 index 00000000..32c5a2ca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pufferfish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:pufferfish" + }, + "minecraft:item_model": "minecraft:pufferfish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.pufferfish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pumpkin.json b/data/generated/V26_2/reports/minecraft/components/item/pumpkin.json new file mode 100644 index 00000000..1f3ac745 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pumpkin.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pumpkin", + "minecraft:item_name": { + "translate": "block.minecraft.pumpkin" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pumpkin_pie.json b/data/generated/V26_2/reports/minecraft/components/item/pumpkin_pie.json new file mode 100644 index 00000000..f8e90e53 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pumpkin_pie.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 8, + "saturation": 4.8 + }, + "minecraft:item_model": "minecraft:pumpkin_pie", + "minecraft:item_name": { + "translate": "item.minecraft.pumpkin_pie" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/pumpkin_seeds.json b/data/generated/V26_2/reports/minecraft/components/item/pumpkin_seeds.json new file mode 100644 index 00000000..0ac27643 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/pumpkin_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:pumpkin_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.pumpkin_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_banner.json b/data/generated/V26_2/reports/minecraft/components/item/purple_banner.json new file mode 100644 index 00000000..6aa916b5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_banner", + "minecraft:item_name": { + "translate": "block.minecraft.purple_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_bed.json b/data/generated/V26_2/reports/minecraft/components/item/purple_bed.json new file mode 100644 index 00000000..05fcad42 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_bed", + "minecraft:item_name": { + "translate": "block.minecraft.purple_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/purple_bundle.json new file mode 100644 index 00000000..61dcc8e9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.purple_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_candle.json b/data/generated/V26_2/reports/minecraft/components/item/purple_candle.json new file mode 100644 index 00000000..53420346 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_candle", + "minecraft:item_name": { + "translate": "block.minecraft.purple_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/purple_carpet.json new file mode 100644 index 00000000..ee69a72e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:purple_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:purple_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.purple_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/purple_concrete.json new file mode 100644 index 00000000..3b38f212 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.purple_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/purple_concrete_powder.json new file mode 100644 index 00000000..4e6eef6e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.purple_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_dye.json b/data/generated/V26_2/reports/minecraft/components/item/purple_dye.json new file mode 100644 index 00000000..70503a61 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "purple", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_dye", + "minecraft:item_name": { + "translate": "item.minecraft.purple_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/purple_glazed_terracotta.json new file mode 100644 index 00000000..2dd25da5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.purple_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_harness.json b/data/generated/V26_2/reports/minecraft/components/item/purple_harness.json new file mode 100644 index 00000000..0bca1c28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:purple_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:purple_harness", + "minecraft:item_name": { + "translate": "item.minecraft.purple_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/purple_shulker_box.json new file mode 100644 index 00000000..4c7a053f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.purple_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass.json new file mode 100644 index 00000000..0e4a8886 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.purple_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass_pane.json new file mode 100644 index 00000000..9b612e7d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.purple_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/purple_terracotta.json new file mode 100644 index 00000000..dd9366ae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.purple_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purple_wool.json b/data/generated/V26_2/reports/minecraft/components/item/purple_wool.json new file mode 100644 index 00000000..0ec98a93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purple_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purple_wool", + "minecraft:item_name": { + "translate": "block.minecraft.purple_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purpur_block.json b/data/generated/V26_2/reports/minecraft/components/item/purpur_block.json new file mode 100644 index 00000000..c14556b0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purpur_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_block", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purpur_pillar.json b/data/generated/V26_2/reports/minecraft/components/item/purpur_pillar.json new file mode 100644 index 00000000..70f2d15b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purpur_pillar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_pillar", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_pillar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purpur_slab.json b/data/generated/V26_2/reports/minecraft/components/item/purpur_slab.json new file mode 100644 index 00000000..64ba7df4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purpur_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_slab", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/purpur_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/purpur_stairs.json new file mode 100644 index 00000000..fc0884fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/purpur_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:purpur_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.purpur_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz.json b/data/generated/V26_2/reports/minecraft/components/item/quartz.json new file mode 100644 index 00000000..fc44e575 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz", + "minecraft:item_name": { + "translate": "item.minecraft.quartz" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:quartz", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz_block.json b/data/generated/V26_2/reports/minecraft/components/item/quartz_block.json new file mode 100644 index 00000000..a53a685c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_block", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/quartz_bricks.json new file mode 100644 index 00000000..edc360ee --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz_pillar.json b/data/generated/V26_2/reports/minecraft/components/item/quartz_pillar.json new file mode 100644 index 00000000..6273e5ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz_pillar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_pillar", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_pillar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz_slab.json b/data/generated/V26_2/reports/minecraft/components/item/quartz_slab.json new file mode 100644 index 00000000..4cc5b39e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_slab", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/quartz_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/quartz_stairs.json new file mode 100644 index 00000000..c0883d44 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/quartz_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:quartz_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.quartz_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rabbit.json b/data/generated/V26_2/reports/minecraft/components/item/rabbit.json new file mode 100644 index 00000000..3db325fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rabbit.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 3, + "saturation": 1.8000001 + }, + "minecraft:item_model": "minecraft:rabbit", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rabbit_foot.json b/data/generated/V26_2/reports/minecraft/components/item/rabbit_foot.json new file mode 100644 index 00000000..f833e51f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rabbit_foot.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rabbit_foot", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_foot" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rabbit_hide.json b/data/generated/V26_2/reports/minecraft/components/item/rabbit_hide.json new file mode 100644 index 00000000..c927daeb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rabbit_hide.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rabbit_hide", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_hide" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rabbit_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/rabbit_spawn_egg.json new file mode 100644 index 00000000..2c8f27fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rabbit_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:rabbit" + }, + "minecraft:item_model": "minecraft:rabbit_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rabbit_stew.json b/data/generated/V26_2/reports/minecraft/components/item/rabbit_stew.json new file mode 100644 index 00000000..0a3847d1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rabbit_stew.json @@ -0,0 +1,26 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 10, + "saturation": 12.0 + }, + "minecraft:item_model": "minecraft:rabbit_stew", + "minecraft:item_name": { + "translate": "item.minecraft.rabbit_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rail.json b/data/generated/V26_2/reports/minecraft/components/item/rail.json new file mode 100644 index 00000000..78ab7409 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rail.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rail", + "minecraft:item_name": { + "translate": "block.minecraft.rail" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json new file mode 100644 index 00000000..91483811 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raiser_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raiser_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.raiser_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ravager_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/ravager_spawn_egg.json new file mode 100644 index 00000000..500213cc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ravager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:ravager" + }, + "minecraft:item_model": "minecraft:ravager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.ravager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_copper.json b/data/generated/V26_2/reports/minecraft/components/item/raw_copper.json new file mode 100644 index 00000000..024d3c9b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_copper", + "minecraft:item_name": { + "translate": "item.minecraft.raw_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_copper_block.json b/data/generated/V26_2/reports/minecraft/components/item/raw_copper_block.json new file mode 100644 index 00000000..d499874f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_gold.json b/data/generated/V26_2/reports/minecraft/components/item/raw_gold.json new file mode 100644 index 00000000..d6db5d91 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_gold.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_gold", + "minecraft:item_name": { + "translate": "item.minecraft.raw_gold" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_gold_block.json b/data/generated/V26_2/reports/minecraft/components/item/raw_gold_block.json new file mode 100644 index 00000000..c5d69b6f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_gold_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_gold_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_gold_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_iron.json b/data/generated/V26_2/reports/minecraft/components/item/raw_iron.json new file mode 100644 index 00000000..2c40f732 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_iron.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_iron", + "minecraft:item_name": { + "translate": "item.minecraft.raw_iron" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/raw_iron_block.json b/data/generated/V26_2/reports/minecraft/components/item/raw_iron_block.json new file mode 100644 index 00000000..c02513c2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/raw_iron_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:raw_iron_block", + "minecraft:item_name": { + "translate": "block.minecraft.raw_iron_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/recovery_compass.json b/data/generated/V26_2/reports/minecraft/components/item/recovery_compass.json new file mode 100644 index 00000000..9e02a5a1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/recovery_compass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:recovery_compass", + "minecraft:item_name": { + "translate": "item.minecraft.recovery_compass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_banner.json b/data/generated/V26_2/reports/minecraft/components/item/red_banner.json new file mode 100644 index 00000000..64ef7b06 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_banner", + "minecraft:item_name": { + "translate": "block.minecraft.red_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_bed.json b/data/generated/V26_2/reports/minecraft/components/item/red_bed.json new file mode 100644 index 00000000..b9d0efb8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_bed", + "minecraft:item_name": { + "translate": "block.minecraft.red_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/red_bundle.json new file mode 100644 index 00000000..610306a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.red_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_candle.json b/data/generated/V26_2/reports/minecraft/components/item/red_candle.json new file mode 100644 index 00000000..0d80237c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_candle", + "minecraft:item_name": { + "translate": "block.minecraft.red_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/red_carpet.json new file mode 100644 index 00000000..a289331e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:red_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:red_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.red_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/red_concrete.json new file mode 100644 index 00000000..a75d849d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.red_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/red_concrete_powder.json new file mode 100644 index 00000000..f207a9a7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.red_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_dye.json b/data/generated/V26_2/reports/minecraft/components/item/red_dye.json new file mode 100644 index 00000000..b35e39d7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "red", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_dye", + "minecraft:item_name": { + "translate": "item.minecraft.red_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/red_glazed_terracotta.json new file mode 100644 index 00000000..3fb0a360 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.red_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_harness.json b/data/generated/V26_2/reports/minecraft/components/item/red_harness.json new file mode 100644 index 00000000..5fa5da95 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:red_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:red_harness", + "minecraft:item_name": { + "translate": "item.minecraft.red_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_mushroom.json b/data/generated/V26_2/reports/minecraft/components/item/red_mushroom.json new file mode 100644 index 00000000..ec6d83b4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_mushroom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_mushroom", + "minecraft:item_name": { + "translate": "block.minecraft.red_mushroom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_mushroom_block.json b/data/generated/V26_2/reports/minecraft/components/item/red_mushroom_block.json new file mode 100644 index 00000000..9fce401a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_mushroom_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_mushroom_block", + "minecraft:item_name": { + "translate": "block.minecraft.red_mushroom_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_slab.json new file mode 100644 index 00000000..ab4be509 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_stairs.json new file mode 100644 index 00000000..540e23dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_wall.json new file mode 100644 index 00000000..6e2b9730 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_nether_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_nether_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/red_nether_bricks.json new file mode 100644 index 00000000..fb3b290c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_nether_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_nether_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.red_nether_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_sand.json b/data/generated/V26_2/reports/minecraft/components/item/red_sand.json new file mode 100644 index 00000000..b40525bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sand", + "minecraft:item_name": { + "translate": "block.minecraft.red_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone.json new file mode 100644 index 00000000..1bc91e2f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_slab.json new file mode 100644 index 00000000..5bc8c34d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_stairs.json new file mode 100644 index 00000000..4f3a1357 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_wall.json new file mode 100644 index 00000000..cdad4c2d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_sandstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_sandstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.red_sandstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/red_shulker_box.json new file mode 100644 index 00000000..68bacc9a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.red_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass.json new file mode 100644 index 00000000..980a3a25 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.red_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass_pane.json new file mode 100644 index 00000000..ee82b8a5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.red_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/red_terracotta.json new file mode 100644 index 00000000..04002ee2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.red_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_tulip.json b/data/generated/V26_2/reports/minecraft/components/item/red_tulip.json new file mode 100644 index 00000000..3e728135 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.red_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/red_wool.json b/data/generated/V26_2/reports/minecraft/components/item/red_wool.json new file mode 100644 index 00000000..52edcf26 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/red_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:red_wool", + "minecraft:item_name": { + "translate": "block.minecraft.red_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/redstone.json b/data/generated/V26_2/reports/minecraft/components/item/redstone.json new file mode 100644 index 00000000..bca8feef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/redstone.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone", + "minecraft:item_name": { + "translate": "item.minecraft.redstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:redstone", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/redstone_block.json b/data/generated/V26_2/reports/minecraft/components/item/redstone_block.json new file mode 100644 index 00000000..c4957f63 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/redstone_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_block", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/redstone_lamp.json b/data/generated/V26_2/reports/minecraft/components/item/redstone_lamp.json new file mode 100644 index 00000000..cf0a9a1f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/redstone_lamp.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_lamp", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_lamp" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/redstone_ore.json b/data/generated/V26_2/reports/minecraft/components/item/redstone_ore.json new file mode 100644 index 00000000..8ac1eea8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/redstone_ore.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_ore", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_ore" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/redstone_torch.json b/data/generated/V26_2/reports/minecraft/components/item/redstone_torch.json new file mode 100644 index 00000000..5548d1ae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/redstone_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:redstone_torch", + "minecraft:item_name": { + "translate": "block.minecraft.redstone_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/reinforced_deepslate.json b/data/generated/V26_2/reports/minecraft/components/item/reinforced_deepslate.json new file mode 100644 index 00000000..15a4f365 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/reinforced_deepslate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:reinforced_deepslate", + "minecraft:item_name": { + "translate": "block.minecraft.reinforced_deepslate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/repeater.json b/data/generated/V26_2/reports/minecraft/components/item/repeater.json new file mode 100644 index 00000000..445ce220 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/repeater.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:repeater", + "minecraft:item_name": { + "translate": "block.minecraft.repeater" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/repeating_command_block.json b/data/generated/V26_2/reports/minecraft/components/item/repeating_command_block.json new file mode 100644 index 00000000..48a92172 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/repeating_command_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:repeating_command_block", + "minecraft:item_name": { + "translate": "block.minecraft.repeating_command_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_block.json b/data/generated/V26_2/reports/minecraft/components/item/resin_block.json new file mode 100644 index 00000000..8dbd1e54 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_block", + "minecraft:item_name": { + "translate": "block.minecraft.resin_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_brick.json b/data/generated/V26_2/reports/minecraft/components/item/resin_brick.json new file mode 100644 index 00000000..fdb09daa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_brick.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick", + "minecraft:item_name": { + "translate": "item.minecraft.resin_brick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:provides_trim_material": "minecraft:resin", + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_slab.json new file mode 100644 index 00000000..42ac7a93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_stairs.json new file mode 100644 index 00000000..05b99c64 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_wall.json new file mode 100644 index 00000000..6b48bcf9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.resin_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/resin_bricks.json new file mode 100644 index 00000000..ce0578dd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.resin_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/resin_clump.json b/data/generated/V26_2/reports/minecraft/components/item/resin_clump.json new file mode 100644 index 00000000..78545f81 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/resin_clump.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:resin_clump", + "minecraft:item_name": { + "translate": "item.minecraft.resin_clump" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/respawn_anchor.json b/data/generated/V26_2/reports/minecraft/components/item/respawn_anchor.json new file mode 100644 index 00000000..a0b08ac4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/respawn_anchor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:respawn_anchor", + "minecraft:item_name": { + "translate": "block.minecraft.respawn_anchor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rib_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/rib_armor_trim_smithing_template.json new file mode 100644 index 00000000..c5a3462d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rib_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rib_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.rib_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rooted_dirt.json b/data/generated/V26_2/reports/minecraft/components/item/rooted_dirt.json new file mode 100644 index 00000000..059ab084 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rooted_dirt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rooted_dirt", + "minecraft:item_name": { + "translate": "block.minecraft.rooted_dirt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rose_bush.json b/data/generated/V26_2/reports/minecraft/components/item/rose_bush.json new file mode 100644 index 00000000..c87a922b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rose_bush.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:rose_bush", + "minecraft:item_name": { + "translate": "block.minecraft.rose_bush" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/rotten_flesh.json b/data/generated/V26_2/reports/minecraft/components/item/rotten_flesh.json new file mode 100644 index 00000000..910a02a6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/rotten_flesh.json @@ -0,0 +1,37 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 600, + "id": "minecraft:hunger", + "show_icon": true + } + ], + "probability": 0.8 + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 4, + "saturation": 0.8 + }, + "minecraft:item_model": "minecraft:rotten_flesh", + "minecraft:item_name": { + "translate": "item.minecraft.rotten_flesh" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/saddle.json b/data/generated/V26_2/reports/minecraft/components/item/saddle.json new file mode 100644 index 00000000..4483a865 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/saddle.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_saddle", + "asset_id": "minecraft:saddle", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.horse.saddle", + "shearing_sound": "minecraft:item.saddle.unequip", + "slot": "saddle" + }, + "minecraft:item_model": "minecraft:saddle", + "minecraft:item_name": { + "translate": "item.minecraft.saddle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/salmon.json b/data/generated/V26_2/reports/minecraft/components/item/salmon.json new file mode 100644 index 00000000..5f26632d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/salmon.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:salmon", + "minecraft:item_name": { + "translate": "item.minecraft.salmon" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/salmon_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/salmon_bucket.json new file mode 100644 index 00000000..89f8ab4d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/salmon_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:salmon_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.salmon_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/salmon_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/salmon_spawn_egg.json new file mode 100644 index 00000000..9406e297 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/salmon_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:salmon" + }, + "minecraft:item_model": "minecraft:salmon_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.salmon_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sand.json b/data/generated/V26_2/reports/minecraft/components/item/sand.json new file mode 100644 index 00000000..1a3cb8a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sand", + "minecraft:item_name": { + "translate": "block.minecraft.sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/sandstone.json new file mode 100644 index 00000000..5a6c0290 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/sandstone_slab.json new file mode 100644 index 00000000..855b061b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sandstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/sandstone_stairs.json new file mode 100644 index 00000000..eec1b0c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sandstone_wall.json b/data/generated/V26_2/reports/minecraft/components/item/sandstone_wall.json new file mode 100644 index 00000000..def95d8e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sandstone_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sandstone_wall", + "minecraft:item_name": { + "translate": "block.minecraft.sandstone_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/scaffolding.json b/data/generated/V26_2/reports/minecraft/components/item/scaffolding.json new file mode 100644 index 00000000..62fadcc5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/scaffolding.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:scaffolding", + "minecraft:item_name": { + "translate": "block.minecraft.scaffolding" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/scrape_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/scrape_pottery_sherd.json new file mode 100644 index 00000000..f2e4cfe6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/scrape_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:scrape_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.scrape_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sculk.json b/data/generated/V26_2/reports/minecraft/components/item/sculk.json new file mode 100644 index 00000000..04c83cbc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sculk.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk", + "minecraft:item_name": { + "translate": "block.minecraft.sculk" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sculk_catalyst.json b/data/generated/V26_2/reports/minecraft/components/item/sculk_catalyst.json new file mode 100644 index 00000000..90b9df71 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sculk_catalyst.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_catalyst", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_catalyst" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sculk_sensor.json b/data/generated/V26_2/reports/minecraft/components/item/sculk_sensor.json new file mode 100644 index 00000000..1ae04298 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sculk_sensor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_sensor", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_sensor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sculk_shrieker.json b/data/generated/V26_2/reports/minecraft/components/item/sculk_shrieker.json new file mode 100644 index 00000000..f49d158c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sculk_shrieker.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_shrieker", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_shrieker" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sculk_vein.json b/data/generated/V26_2/reports/minecraft/components/item/sculk_vein.json new file mode 100644 index 00000000..3b980a97 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sculk_vein.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sculk_vein", + "minecraft:item_name": { + "translate": "block.minecraft.sculk_vein" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sea_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/sea_lantern.json new file mode 100644 index 00000000..f1eb9577 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sea_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sea_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.sea_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sea_pickle.json b/data/generated/V26_2/reports/minecraft/components/item/sea_pickle.json new file mode 100644 index 00000000..8d25119c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sea_pickle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sea_pickle", + "minecraft:item_name": { + "translate": "block.minecraft.sea_pickle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/seagrass.json b/data/generated/V26_2/reports/minecraft/components/item/seagrass.json new file mode 100644 index 00000000..d4fbc852 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/seagrass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:seagrass", + "minecraft:item_name": { + "translate": "block.minecraft.seagrass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json new file mode 100644 index 00000000..ac56f5a1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sentry_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sentry_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.sentry_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json new file mode 100644 index 00000000..3392f9f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shaper_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shaper_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.shaper_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sheaf_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/sheaf_pottery_sherd.json new file mode 100644 index 00000000..2410387a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sheaf_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sheaf_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.sheaf_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shears.json b/data/generated/V26_2/reports/minecraft/components/item/shears.json new file mode 100644 index 00000000..d0f7a206 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shears.json @@ -0,0 +1,41 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shears", + "minecraft:item_name": { + "translate": "item.minecraft.shears" + }, + "minecraft:lore": [], + "minecraft:max_damage": 238, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:shears_extreme_breaking_speed", + "speed": 15.0 + }, + { + "blocks": "#minecraft:shears_major_breaking_speed", + "speed": 5.0 + }, + { + "blocks": "#minecraft:shears_minor_breaking_speed", + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sheep_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/sheep_spawn_egg.json new file mode 100644 index 00000000..0ca72bf6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sheep_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:sheep" + }, + "minecraft:item_model": "minecraft:sheep_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.sheep_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shelter_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/shelter_pottery_sherd.json new file mode 100644 index 00000000..ba1a9fa9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shelter_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shelter_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.shelter_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shield.json b/data/generated/V26_2/reports/minecraft/components/item/shield.json new file mode 100644 index 00000000..2d0364b3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shield.json @@ -0,0 +1,39 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:blocks_attacks": { + "block_delay_seconds": 0.25, + "block_sound": "minecraft:item.shield.block", + "bypassed_by": "#minecraft:bypasses_shield", + "disabled_sound": "minecraft:item.shield.break", + "item_damage": { + "base": 1.0, + "factor": 1.0, + "threshold": 3.0 + } + }, + "minecraft:break_sound": "minecraft:item.shield.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "offhand", + "swappable": false + }, + "minecraft:item_model": "minecraft:shield", + "minecraft:item_name": { + "translate": "item.minecraft.shield" + }, + "minecraft:lore": [], + "minecraft:max_damage": 336, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/short_dry_grass.json b/data/generated/V26_2/reports/minecraft/components/item/short_dry_grass.json new file mode 100644 index 00000000..abad1474 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/short_dry_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:short_dry_grass", + "minecraft:item_name": { + "translate": "block.minecraft.short_dry_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/short_grass.json b/data/generated/V26_2/reports/minecraft/components/item/short_grass.json new file mode 100644 index 00000000..24819bf8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/short_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:short_grass", + "minecraft:item_name": { + "translate": "block.minecraft.short_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shroomlight.json b/data/generated/V26_2/reports/minecraft/components/item/shroomlight.json new file mode 100644 index 00000000..a0e99311 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shroomlight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shroomlight", + "minecraft:item_name": { + "translate": "block.minecraft.shroomlight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/shulker_box.json new file mode 100644 index 00000000..fe725ca3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shulker_shell.json b/data/generated/V26_2/reports/minecraft/components/item/shulker_shell.json new file mode 100644 index 00000000..042cf187 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shulker_shell.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:shulker_shell", + "minecraft:item_name": { + "translate": "item.minecraft.shulker_shell" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/shulker_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/shulker_spawn_egg.json new file mode 100644 index 00000000..28b60322 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/shulker_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:shulker" + }, + "minecraft:item_model": "minecraft:shulker_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.shulker_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/silence_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/silence_armor_trim_smithing_template.json new file mode 100644 index 00000000..9047e0ad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/silence_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:silence_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.silence_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/silverfish_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/silverfish_spawn_egg.json new file mode 100644 index 00000000..8eb1d9df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/silverfish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:silverfish" + }, + "minecraft:item_model": "minecraft:silverfish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.silverfish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/skeleton_horse_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/skeleton_horse_spawn_egg.json new file mode 100644 index 00000000..c7e269ca --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/skeleton_horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:skeleton_horse" + }, + "minecraft:item_model": "minecraft:skeleton_horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.skeleton_horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/skeleton_skull.json b/data/generated/V26_2/reports/minecraft/components/item/skeleton_skull.json new file mode 100644 index 00000000..50b8e7db --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/skeleton_skull.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:skeleton_skull", + "minecraft:item_name": { + "translate": "block.minecraft.skeleton_skull" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/skeleton_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/skeleton_spawn_egg.json new file mode 100644 index 00000000..11a7d3ef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/skeleton_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:skeleton" + }, + "minecraft:item_model": "minecraft:skeleton_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.skeleton_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/skull_banner_pattern.json b/data/generated/V26_2/reports/minecraft/components/item/skull_banner_pattern.json new file mode 100644 index 00000000..2a812c5b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/skull_banner_pattern.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:skull_banner_pattern", + "minecraft:item_name": { + "translate": "item.minecraft.skull_banner_pattern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:provides_banner_patterns": "#minecraft:pattern_item/skull", + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/skull_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/skull_pottery_sherd.json new file mode 100644 index 00000000..1957e9c8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/skull_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:skull_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.skull_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/slime_ball.json b/data/generated/V26_2/reports/minecraft/components/item/slime_ball.json new file mode 100644 index 00000000..9c893e45 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/slime_ball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:slime_ball", + "minecraft:item_name": { + "translate": "item.minecraft.slime_ball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/slime_block.json b/data/generated/V26_2/reports/minecraft/components/item/slime_block.json new file mode 100644 index 00000000..96f29229 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/slime_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:slime_block", + "minecraft:item_name": { + "translate": "block.minecraft.slime_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/slime_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/slime_spawn_egg.json new file mode 100644 index 00000000..cf1efe06 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/slime_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:slime" + }, + "minecraft:item_model": "minecraft:slime_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.slime_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/small_amethyst_bud.json b/data/generated/V26_2/reports/minecraft/components/item/small_amethyst_bud.json new file mode 100644 index 00000000..fcf80016 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/small_amethyst_bud.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:small_amethyst_bud", + "minecraft:item_name": { + "translate": "block.minecraft.small_amethyst_bud" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/small_dripleaf.json b/data/generated/V26_2/reports/minecraft/components/item/small_dripleaf.json new file mode 100644 index 00000000..3abc67df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/small_dripleaf.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:small_dripleaf", + "minecraft:item_name": { + "translate": "block.minecraft.small_dripleaf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smithing_table.json b/data/generated/V26_2/reports/minecraft/components/item/smithing_table.json new file mode 100644 index 00000000..ebe918d2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smithing_table.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smithing_table", + "minecraft:item_name": { + "translate": "block.minecraft.smithing_table" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smoker.json b/data/generated/V26_2/reports/minecraft/components/item/smoker.json new file mode 100644 index 00000000..8c2e9a30 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smoker.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smoker", + "minecraft:item_name": { + "translate": "block.minecraft.smoker" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_basalt.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_basalt.json new file mode 100644 index 00000000..46f10733 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_basalt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_basalt", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_basalt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz.json new file mode 100644 index 00000000..74026fbf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_slab.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_slab.json new file mode 100644 index 00000000..47ad1b1c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_stairs.json new file mode 100644 index 00000000..0c9783eb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_quartz_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_quartz_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_quartz_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone.json new file mode 100644 index 00000000..b0ab11f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_slab.json new file mode 100644 index 00000000..5a9af93b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_stairs.json new file mode 100644 index 00000000..6ed25687 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_red_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_red_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_red_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone.json new file mode 100644 index 00000000..757ba014 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_slab.json new file mode 100644 index 00000000..3f7ee846 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_stairs.json new file mode 100644 index 00000000..3bc35760 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_sandstone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_sandstone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_sandstone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_stone.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_stone.json new file mode 100644 index 00000000..371ce094 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_stone", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/smooth_stone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/smooth_stone_slab.json new file mode 100644 index 00000000..2388dbbf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/smooth_stone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:smooth_stone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.smooth_stone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sniffer_egg.json b/data/generated/V26_2/reports/minecraft/components/item/sniffer_egg.json new file mode 100644 index 00000000..71696578 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sniffer_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sniffer_egg", + "minecraft:item_name": { + "translate": "block.minecraft.sniffer_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sniffer_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/sniffer_spawn_egg.json new file mode 100644 index 00000000..9fc6cb85 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sniffer_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:sniffer" + }, + "minecraft:item_model": "minecraft:sniffer_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.sniffer_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snort_pottery_sherd.json b/data/generated/V26_2/reports/minecraft/components/item/snort_pottery_sherd.json new file mode 100644 index 00000000..1d3fba28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snort_pottery_sherd.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snort_pottery_sherd", + "minecraft:item_name": { + "translate": "item.minecraft.snort_pottery_sherd" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snout_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/snout_armor_trim_smithing_template.json new file mode 100644 index 00000000..a57c1fa2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snout_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snout_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.snout_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snow.json b/data/generated/V26_2/reports/minecraft/components/item/snow.json new file mode 100644 index 00000000..1f53de19 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snow", + "minecraft:item_name": { + "translate": "block.minecraft.snow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snow_block.json b/data/generated/V26_2/reports/minecraft/components/item/snow_block.json new file mode 100644 index 00000000..b7de1f5f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snow_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snow_block", + "minecraft:item_name": { + "translate": "block.minecraft.snow_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snow_golem_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/snow_golem_spawn_egg.json new file mode 100644 index 00000000..5979e785 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snow_golem_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:snow_golem" + }, + "minecraft:item_model": "minecraft:snow_golem_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.snow_golem_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/snowball.json b/data/generated/V26_2/reports/minecraft/components/item/snowball.json new file mode 100644 index 00000000..96fdbfcf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/snowball.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:snowball", + "minecraft:item_name": { + "translate": "item.minecraft.snowball" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/soul_campfire.json b/data/generated/V26_2/reports/minecraft/components/item/soul_campfire.json new file mode 100644 index 00000000..fedd5adc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/soul_campfire.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_campfire", + "minecraft:item_name": { + "translate": "block.minecraft.soul_campfire" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/soul_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/soul_lantern.json new file mode 100644 index 00000000..5dd570c6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/soul_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.soul_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/soul_sand.json b/data/generated/V26_2/reports/minecraft/components/item/soul_sand.json new file mode 100644 index 00000000..4bbb2f83 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/soul_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_sand", + "minecraft:item_name": { + "translate": "block.minecraft.soul_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/soul_soil.json b/data/generated/V26_2/reports/minecraft/components/item/soul_soil.json new file mode 100644 index 00000000..7ef71646 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/soul_soil.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_soil", + "minecraft:item_name": { + "translate": "block.minecraft.soul_soil" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/soul_torch.json b/data/generated/V26_2/reports/minecraft/components/item/soul_torch.json new file mode 100644 index 00000000..82bd309f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/soul_torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:soul_torch", + "minecraft:item_name": { + "translate": "block.minecraft.soul_torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spawner.json b/data/generated/V26_2/reports/minecraft/components/item/spawner.json new file mode 100644 index 00000000..74781bf0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spawner.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spawner", + "minecraft:item_name": { + "translate": "block.minecraft.spawner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spectral_arrow.json b/data/generated/V26_2/reports/minecraft/components/item/spectral_arrow.json new file mode 100644 index 00000000..0251174c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spectral_arrow.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spectral_arrow", + "minecraft:item_name": { + "translate": "item.minecraft.spectral_arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spider_eye.json b/data/generated/V26_2/reports/minecraft/components/item/spider_eye.json new file mode 100644 index 00000000..2e117332 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spider_eye.json @@ -0,0 +1,36 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": { + "on_consume_effects": [ + { + "type": "minecraft:apply_effects", + "effects": [ + { + "duration": 100, + "id": "minecraft:poison", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 3.2 + }, + "minecraft:item_model": "minecraft:spider_eye", + "minecraft:item_name": { + "translate": "item.minecraft.spider_eye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spider_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/spider_spawn_egg.json new file mode 100644 index 00000000..cc90af1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:spider" + }, + "minecraft:item_model": "minecraft:spider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.spider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spire_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/spire_armor_trim_smithing_template.json new file mode 100644 index 00000000..9018b8fa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spire_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spire_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.spire_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/splash_potion.json b/data/generated/V26_2/reports/minecraft/components/item/splash_potion.json new file mode 100644 index 00000000..b9528b51 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/splash_potion.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:splash_potion", + "minecraft:item_name": { + "translate": "item.minecraft.splash_potion" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:potion_contents": {}, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sponge.json b/data/generated/V26_2/reports/minecraft/components/item/sponge.json new file mode 100644 index 00000000..1009b9f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sponge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sponge", + "minecraft:item_name": { + "translate": "block.minecraft.sponge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spore_blossom.json b/data/generated/V26_2/reports/minecraft/components/item/spore_blossom.json new file mode 100644 index 00000000..2d18aa41 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spore_blossom.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spore_blossom", + "minecraft:item_name": { + "translate": "block.minecraft.spore_blossom" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_boat.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_boat.json new file mode 100644 index 00000000..cf1669ad --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_boat", + "minecraft:item_name": { + "translate": "item.minecraft.spruce_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_button.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_button.json new file mode 100644 index 00000000..c4b4e622 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_button", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_chest_boat.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_chest_boat.json new file mode 100644 index 00000000..880d874e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_chest_boat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_chest_boat", + "minecraft:item_name": { + "translate": "item.minecraft.spruce_chest_boat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_door.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_door.json new file mode 100644 index 00000000..8c83cd53 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_door", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_fence.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_fence.json new file mode 100644 index 00000000..15e1593f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_fence", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_fence_gate.json new file mode 100644 index 00000000..4485bad7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_hanging_sign.json new file mode 100644 index 00000000..60f20cfb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_leaves.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_leaves.json new file mode 100644 index 00000000..382c5844 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_leaves.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_leaves", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_leaves" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_log.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_log.json new file mode 100644 index 00000000..9af0bd2d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_log", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_planks.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_planks.json new file mode 100644 index 00000000..d6744ea8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_planks", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_pressure_plate.json new file mode 100644 index 00000000..fd95166c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_sapling.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_sapling.json new file mode 100644 index 00000000..eb49765a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_sapling.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_sapling", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_sapling" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_shelf.json new file mode 100644 index 00000000..39a04545 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_sign.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_sign.json new file mode 100644 index 00000000..1e6aac59 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_sign", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_slab.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_slab.json new file mode 100644 index 00000000..8b75808c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_slab", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_stairs.json new file mode 100644 index 00000000..f4ec8369 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_trapdoor.json new file mode 100644 index 00000000..852ef641 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spruce_wood.json b/data/generated/V26_2/reports/minecraft/components/item/spruce_wood.json new file mode 100644 index 00000000..945acd06 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spruce_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spruce_wood", + "minecraft:item_name": { + "translate": "block.minecraft.spruce_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/spyglass.json b/data/generated/V26_2/reports/minecraft/components/item/spyglass.json new file mode 100644 index 00000000..18b92192 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/spyglass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:spyglass", + "minecraft:item_name": { + "translate": "item.minecraft.spyglass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/squid_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/squid_spawn_egg.json new file mode 100644 index 00000000..eb5d1672 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/squid_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:squid" + }, + "minecraft:item_model": "minecraft:squid_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.squid_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stick.json b/data/generated/V26_2/reports/minecraft/components/item/stick.json new file mode 100644 index 00000000..196abd93 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stick.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stick", + "minecraft:item_name": { + "translate": "item.minecraft.stick" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sticky_piston.json b/data/generated/V26_2/reports/minecraft/components/item/sticky_piston.json new file mode 100644 index 00000000..d0a11c56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sticky_piston.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sticky_piston", + "minecraft:item_name": { + "translate": "block.minecraft.sticky_piston" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone.json b/data/generated/V26_2/reports/minecraft/components/item/stone.json new file mode 100644 index 00000000..8b794c94 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone", + "minecraft:item_name": { + "translate": "block.minecraft.stone" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_axe.json b/data/generated/V26_2/reports/minecraft/components/item/stone_axe.json new file mode 100644 index 00000000..f86ac09b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_axe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_slab.json new file mode 100644 index 00000000..e26de358 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_stairs.json new file mode 100644 index 00000000..06d5c404 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_wall.json new file mode 100644 index 00000000..e6c411df --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.stone_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/stone_bricks.json new file mode 100644 index 00000000..7b464cba --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.stone_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_button.json b/data/generated/V26_2/reports/minecraft/components/item/stone_button.json new file mode 100644 index 00000000..bc0c8b00 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_button", + "minecraft:item_name": { + "translate": "block.minecraft.stone_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/stone_hoe.json new file mode 100644 index 00000000..78721576 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/stone_pickaxe.json new file mode 100644 index 00000000..4c82c05f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.stone_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/stone_pressure_plate.json new file mode 100644 index 00000000..bfc3d754 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.stone_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/stone_shovel.json new file mode 100644 index 00000000..b0e0e3aa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 2.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.stone_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_stone_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 4.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_slab.json b/data/generated/V26_2/reports/minecraft/components/item/stone_slab.json new file mode 100644 index 00000000..ceedf5f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_slab", + "minecraft:item_name": { + "translate": "block.minecraft.stone_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_spear.json b/data/generated/V26_2/reports/minecraft/components/item/stone_spear.json new file mode 100644 index 00000000..6032ec2b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.666666626930237, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_spear", + "minecraft:item_name": { + "translate": "item.minecraft.stone_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 275, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.82, + "delay_ticks": 14, + "dismount_conditions": { + "max_duration_ticks": 90, + "min_speed": 13.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear.hit", + "knockback_conditions": { + "max_duration_ticks": 180, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear.hit", + "sound": "minecraft:item.spear.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 15 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/stone_stairs.json new file mode 100644 index 00000000..7a90b8d9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.stone_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stone_sword.json b/data/generated/V26_2/reports/minecraft/components/item/stone_sword.json new file mode 100644 index 00000000..4adda79f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stone_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 4.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 5 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stone_sword", + "minecraft:item_name": { + "translate": "item.minecraft.stone_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 131, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:stone_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stonecutter.json b/data/generated/V26_2/reports/minecraft/components/item/stonecutter.json new file mode 100644 index 00000000..14ff1d11 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stonecutter.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stonecutter", + "minecraft:item_name": { + "translate": "block.minecraft.stonecutter" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stray_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/stray_spawn_egg.json new file mode 100644 index 00000000..be54c269 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stray_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:stray" + }, + "minecraft:item_model": "minecraft:stray_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.stray_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/strider_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/strider_spawn_egg.json new file mode 100644 index 00000000..26f3e726 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/strider_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:strider" + }, + "minecraft:item_model": "minecraft:strider_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.strider_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/string.json b/data/generated/V26_2/reports/minecraft/components/item/string.json new file mode 100644 index 00000000..a7b36889 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/string.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:string", + "minecraft:item_name": { + "translate": "item.minecraft.string" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_log.json new file mode 100644 index 00000000..eeaff3ba --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_acacia_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_acacia_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_wood.json new file mode 100644 index 00000000..d719c162 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_acacia_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_acacia_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_acacia_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_bamboo_block.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_bamboo_block.json new file mode 100644 index 00000000..98a4b5ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_bamboo_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_bamboo_block", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_bamboo_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_log.json new file mode 100644 index 00000000..7fb2df1a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_birch_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_birch_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_wood.json new file mode 100644 index 00000000..b6e49c28 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_birch_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_birch_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_birch_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_log.json new file mode 100644 index 00000000..a4282c4b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_cherry_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_cherry_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_wood.json new file mode 100644 index 00000000..76dac2ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_cherry_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_cherry_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_cherry_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_hyphae.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_hyphae.json new file mode 100644 index 00000000..24b9cceb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_crimson_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_crimson_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_stem.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_stem.json new file mode 100644 index 00000000..28d7d930 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_crimson_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_crimson_stem", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_crimson_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_log.json new file mode 100644 index 00000000..965a6173 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_dark_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_dark_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_wood.json new file mode 100644 index 00000000..85dff1de --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_dark_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_dark_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_dark_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_log.json new file mode 100644 index 00000000..73a217b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_jungle_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_jungle_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_wood.json new file mode 100644 index 00000000..5b46b0e4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_jungle_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_jungle_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_jungle_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_log.json new file mode 100644 index 00000000..2943cdd4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_mangrove_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_mangrove_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_wood.json new file mode 100644 index 00000000..0fd28819 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_mangrove_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_mangrove_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_mangrove_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_log.json new file mode 100644 index 00000000..6b0b6589 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_wood.json new file mode 100644 index 00000000..3f791478 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_log.json new file mode 100644 index 00000000..504f9beb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_pale_oak_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_pale_oak_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_wood.json new file mode 100644 index 00000000..b44de71b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_pale_oak_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_pale_oak_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_pale_oak_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_log.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_log.json new file mode 100644 index 00000000..49c37344 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_log.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_spruce_log", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_spruce_log" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_wood.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_wood.json new file mode 100644 index 00000000..b2e861f4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_spruce_wood.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_spruce_wood", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_spruce_wood" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_hyphae.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_hyphae.json new file mode 100644 index 00000000..a2ad5309 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_warped_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_warped_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_stem.json b/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_stem.json new file mode 100644 index 00000000..d2dc3964 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/stripped_warped_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:stripped_warped_stem", + "minecraft:item_name": { + "translate": "block.minecraft.stripped_warped_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/structure_block.json b/data/generated/V26_2/reports/minecraft/components/item/structure_block.json new file mode 100644 index 00000000..817de00e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/structure_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:structure_block", + "minecraft:item_name": { + "translate": "block.minecraft.structure_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/structure_void.json b/data/generated/V26_2/reports/minecraft/components/item/structure_void.json new file mode 100644 index 00000000..381df4ff --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/structure_void.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:structure_void", + "minecraft:item_name": { + "translate": "block.minecraft.structure_void" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sugar.json b/data/generated/V26_2/reports/minecraft/components/item/sugar.json new file mode 100644 index 00000000..b3e0226e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sugar.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sugar", + "minecraft:item_name": { + "translate": "item.minecraft.sugar" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sugar_cane.json b/data/generated/V26_2/reports/minecraft/components/item/sugar_cane.json new file mode 100644 index 00000000..d1b3906a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sugar_cane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sugar_cane", + "minecraft:item_name": { + "translate": "block.minecraft.sugar_cane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur.json new file mode 100644 index 00000000..18d73a48 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_slab.json new file mode 100644 index 00000000..75670f1a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_stairs.json new file mode 100644 index 00000000..899e39ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_wall.json new file mode 100644 index 00000000..9f277fb1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_bricks.json new file mode 100644 index 00000000..5c09283f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_bucket.json new file mode 100644 index 00000000..867d891b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_bucket.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_cube_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.sulfur_cube_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_spawn_egg.json new file mode 100644 index 00000000..27300ac0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_cube_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:sulfur_cube" + }, + "minecraft:item_model": "minecraft:sulfur_cube_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.sulfur_cube_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_slab.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_slab.json new file mode 100644 index 00000000..81add5d9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_slab", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_spike.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_spike.json new file mode 100644 index 00000000..f9372bd6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_spike.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_spike", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_spike" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_stairs.json new file mode 100644 index 00000000..400e5743 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sulfur_wall.json b/data/generated/V26_2/reports/minecraft/components/item/sulfur_wall.json new file mode 100644 index 00000000..a30255f5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sulfur_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sulfur_wall", + "minecraft:item_name": { + "translate": "block.minecraft.sulfur_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sunflower.json b/data/generated/V26_2/reports/minecraft/components/item/sunflower.json new file mode 100644 index 00000000..f58ceeb9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sunflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:sunflower", + "minecraft:item_name": { + "translate": "block.minecraft.sunflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/suspicious_gravel.json b/data/generated/V26_2/reports/minecraft/components/item/suspicious_gravel.json new file mode 100644 index 00000000..4d668a90 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/suspicious_gravel.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:suspicious_gravel", + "minecraft:item_name": { + "translate": "block.minecraft.suspicious_gravel" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/suspicious_sand.json b/data/generated/V26_2/reports/minecraft/components/item/suspicious_sand.json new file mode 100644 index 00000000..8ecdbeae --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/suspicious_sand.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:suspicious_sand", + "minecraft:item_name": { + "translate": "block.minecraft.suspicious_sand" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/suspicious_stew.json b/data/generated/V26_2/reports/minecraft/components/item/suspicious_stew.json new file mode 100644 index 00000000..4cae9f96 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/suspicious_stew.json @@ -0,0 +1,28 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "can_always_eat": true, + "nutrition": 6, + "saturation": 7.2000003 + }, + "minecraft:item_model": "minecraft:suspicious_stew", + "minecraft:item_name": { + "translate": "item.minecraft.suspicious_stew" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:suspicious_stew_effects": [], + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:use_remainder": { + "id": "minecraft:bowl" + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/sweet_berries.json b/data/generated/V26_2/reports/minecraft/components/item/sweet_berries.json new file mode 100644 index 00000000..b7a1800a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/sweet_berries.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 2, + "saturation": 0.4 + }, + "minecraft:item_model": "minecraft:sweet_berries", + "minecraft:item_name": { + "translate": "item.minecraft.sweet_berries" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tadpole_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/tadpole_bucket.json new file mode 100644 index 00000000..b1f336cb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tadpole_bucket.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tadpole_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.tadpole_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tadpole_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/tadpole_spawn_egg.json new file mode 100644 index 00000000..3cd21d89 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tadpole_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:tadpole" + }, + "minecraft:item_model": "minecraft:tadpole_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.tadpole_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tall_dry_grass.json b/data/generated/V26_2/reports/minecraft/components/item/tall_dry_grass.json new file mode 100644 index 00000000..ed293bc2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tall_dry_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tall_dry_grass", + "minecraft:item_name": { + "translate": "block.minecraft.tall_dry_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tall_grass.json b/data/generated/V26_2/reports/minecraft/components/item/tall_grass.json new file mode 100644 index 00000000..382988bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tall_grass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tall_grass", + "minecraft:item_name": { + "translate": "block.minecraft.tall_grass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/target.json b/data/generated/V26_2/reports/minecraft/components/item/target.json new file mode 100644 index 00000000..829341eb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/target.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:target", + "minecraft:item_name": { + "translate": "block.minecraft.target" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/terracotta.json new file mode 100644 index 00000000..003d55a2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/test_block.json b/data/generated/V26_2/reports/minecraft/components/item/test_block.json new file mode 100644 index 00000000..7cff21fc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/test_block.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "mode": "start" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:test_block", + "minecraft:item_name": { + "translate": "block.minecraft.test_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/test_instance_block.json b/data/generated/V26_2/reports/minecraft/components/item/test_instance_block.json new file mode 100644 index 00000000..10d84031 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/test_instance_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:test_instance_block", + "minecraft:item_name": { + "translate": "block.minecraft.test_instance_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "epic", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tide_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/tide_armor_trim_smithing_template.json new file mode 100644 index 00000000..ae74a004 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tide_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tide_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.tide_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tinted_glass.json b/data/generated/V26_2/reports/minecraft/components/item/tinted_glass.json new file mode 100644 index 00000000..671b6fe2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tinted_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tinted_glass", + "minecraft:item_name": { + "translate": "block.minecraft.tinted_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tipped_arrow.json b/data/generated/V26_2/reports/minecraft/components/item/tipped_arrow.json new file mode 100644 index 00000000..2d95fdb3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tipped_arrow.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tipped_arrow", + "minecraft:item_name": { + "translate": "item.minecraft.tipped_arrow" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:potion_contents": {}, + "minecraft:potion_duration_scale": 0.125, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tnt.json b/data/generated/V26_2/reports/minecraft/components/item/tnt.json new file mode 100644 index 00000000..938890db --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tnt.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tnt", + "minecraft:item_name": { + "translate": "block.minecraft.tnt" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tnt_minecart.json b/data/generated/V26_2/reports/minecraft/components/item/tnt_minecart.json new file mode 100644 index 00000000..7b93de74 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tnt_minecart.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tnt_minecart", + "minecraft:item_name": { + "translate": "item.minecraft.tnt_minecart" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/torch.json b/data/generated/V26_2/reports/minecraft/components/item/torch.json new file mode 100644 index 00000000..e53ec446 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/torch.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torch", + "minecraft:item_name": { + "translate": "block.minecraft.torch" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/torchflower.json b/data/generated/V26_2/reports/minecraft/components/item/torchflower.json new file mode 100644 index 00000000..6ec7f672 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/torchflower.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torchflower", + "minecraft:item_name": { + "translate": "block.minecraft.torchflower" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/torchflower_seeds.json b/data/generated/V26_2/reports/minecraft/components/item/torchflower_seeds.json new file mode 100644 index 00000000..bf24274e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/torchflower_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:torchflower_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.torchflower_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/totem_of_undying.json b/data/generated/V26_2/reports/minecraft/components/item/totem_of_undying.json new file mode 100644 index 00000000..07c9b573 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/totem_of_undying.json @@ -0,0 +1,47 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:death_protection": { + "death_effects": [ + { + "type": "minecraft:clear_all_effects" + }, + { + "type": "minecraft:apply_effects", + "effects": [ + { + "amplifier": 1, + "duration": 900, + "id": "minecraft:regeneration", + "show_icon": true + }, + { + "amplifier": 1, + "duration": 100, + "id": "minecraft:absorption", + "show_icon": true + }, + { + "duration": 800, + "id": "minecraft:fire_resistance", + "show_icon": true + } + ] + } + ] + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:totem_of_undying", + "minecraft:item_name": { + "translate": "item.minecraft.totem_of_undying" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/trader_llama_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/trader_llama_spawn_egg.json new file mode 100644 index 00000000..28e99a49 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/trader_llama_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:trader_llama" + }, + "minecraft:item_model": "minecraft:trader_llama_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.trader_llama_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/trapped_chest.json b/data/generated/V26_2/reports/minecraft/components/item/trapped_chest.json new file mode 100644 index 00000000..609f6cdf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/trapped_chest.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trapped_chest", + "minecraft:item_name": { + "translate": "block.minecraft.trapped_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/trial_key.json b/data/generated/V26_2/reports/minecraft/components/item/trial_key.json new file mode 100644 index 00000000..d23a04f0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/trial_key.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trial_key", + "minecraft:item_name": { + "translate": "item.minecraft.trial_key" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/trial_spawner.json b/data/generated/V26_2/reports/minecraft/components/item/trial_spawner.json new file mode 100644 index 00000000..2c147440 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/trial_spawner.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trial_spawner", + "minecraft:item_name": { + "translate": "block.minecraft.trial_spawner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/trident.json b/data/generated/V26_2/reports/minecraft/components/item/trident.json new file mode 100644 index 00000000..2941dac1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/trident.json @@ -0,0 +1,44 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 8.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.9000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 1 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:trident", + "minecraft:item_name": { + "translate": "item.minecraft.trident" + }, + "minecraft:lore": [], + "minecraft:max_damage": 250, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tripwire_hook.json b/data/generated/V26_2/reports/minecraft/components/item/tripwire_hook.json new file mode 100644 index 00000000..d6354a1a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tripwire_hook.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tripwire_hook", + "minecraft:item_name": { + "translate": "block.minecraft.tripwire_hook" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tropical_fish.json b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish.json new file mode 100644 index 00000000..28b14eb5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:consumable": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:tropical_fish", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_bucket.json new file mode 100644 index 00000000..6daaf253 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_bucket.json @@ -0,0 +1,23 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bucket_entity_data": {}, + "minecraft:enchantments": {}, + "minecraft:food": { + "nutrition": 1, + "saturation": 0.2 + }, + "minecraft:item_model": "minecraft:tropical_fish_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_spawn_egg.json new file mode 100644 index 00000000..44b92c56 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tropical_fish_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:tropical_fish" + }, + "minecraft:item_model": "minecraft:tropical_fish_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.tropical_fish_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tube_coral.json b/data/generated/V26_2/reports/minecraft/components/item/tube_coral.json new file mode 100644 index 00000000..4736f1bf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tube_coral.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tube_coral_block.json b/data/generated/V26_2/reports/minecraft/components/item/tube_coral_block.json new file mode 100644 index 00000000..43cbbfdb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tube_coral_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral_block", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tube_coral_fan.json b/data/generated/V26_2/reports/minecraft/components/item/tube_coral_fan.json new file mode 100644 index 00000000..931fff06 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tube_coral_fan.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tube_coral_fan", + "minecraft:item_name": { + "translate": "block.minecraft.tube_coral_fan" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff.json b/data/generated/V26_2/reports/minecraft/components/item/tuff.json new file mode 100644 index 00000000..719ce6e3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff", + "minecraft:item_name": { + "translate": "block.minecraft.tuff" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_slab.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_slab.json new file mode 100644 index 00000000..fe4ffff9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_slab", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_stairs.json new file mode 100644 index 00000000..364cf529 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_wall.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_wall.json new file mode 100644 index 00000000..a52e22a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_brick_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_brick_wall", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_brick_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_bricks.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_bricks.json new file mode 100644 index 00000000..2dee7cd5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_bricks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_bricks", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_bricks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_slab.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_slab.json new file mode 100644 index 00000000..19cfac4d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_slab", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_stairs.json new file mode 100644 index 00000000..a676f29f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/tuff_wall.json b/data/generated/V26_2/reports/minecraft/components/item/tuff_wall.json new file mode 100644 index 00000000..55bb156b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/tuff_wall.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:tuff_wall", + "minecraft:item_name": { + "translate": "block.minecraft.tuff_wall" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/turtle_egg.json b/data/generated/V26_2/reports/minecraft/components/item/turtle_egg.json new file mode 100644 index 00000000..b13de47c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/turtle_egg.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:turtle_egg", + "minecraft:item_name": { + "translate": "block.minecraft.turtle_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/turtle_helmet.json b/data/generated/V26_2/reports/minecraft/components/item/turtle_helmet.json new file mode 100644 index 00000000..75dec9bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/turtle_helmet.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 2.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.helmet", + "operation": "add_value", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 9 + }, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "asset_id": "minecraft:turtle_scute", + "equip_sound": "minecraft:item.armor.equip_turtle", + "slot": "head" + }, + "minecraft:item_model": "minecraft:turtle_helmet", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_helmet" + }, + "minecraft:lore": [], + "minecraft:max_damage": 275, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_turtle_helmet" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/turtle_scute.json b/data/generated/V26_2/reports/minecraft/components/item/turtle_scute.json new file mode 100644 index 00000000..ca1f92a8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/turtle_scute.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:turtle_scute", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_scute" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/turtle_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/turtle_spawn_egg.json new file mode 100644 index 00000000..11e22bec --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/turtle_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:turtle" + }, + "minecraft:item_model": "minecraft:turtle_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.turtle_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/twisting_vines.json b/data/generated/V26_2/reports/minecraft/components/item/twisting_vines.json new file mode 100644 index 00000000..c3abf742 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/twisting_vines.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:twisting_vines", + "minecraft:item_name": { + "translate": "block.minecraft.twisting_vines" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/vault.json b/data/generated/V26_2/reports/minecraft/components/item/vault.json new file mode 100644 index 00000000..6a2ff0ef --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/vault.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vault", + "minecraft:item_name": { + "translate": "block.minecraft.vault" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/verdant_froglight.json b/data/generated/V26_2/reports/minecraft/components/item/verdant_froglight.json new file mode 100644 index 00000000..1b1adce8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/verdant_froglight.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:verdant_froglight", + "minecraft:item_name": { + "translate": "block.minecraft.verdant_froglight" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/vex_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/vex_armor_trim_smithing_template.json new file mode 100644 index 00000000..7109927d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/vex_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vex_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.vex_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/vex_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/vex_spawn_egg.json new file mode 100644 index 00000000..81bd4876 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/vex_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:vex" + }, + "minecraft:item_model": "minecraft:vex_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.vex_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/villager_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/villager_spawn_egg.json new file mode 100644 index 00000000..b9f0f02c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/villager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:villager" + }, + "minecraft:item_model": "minecraft:villager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.villager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/vindicator_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/vindicator_spawn_egg.json new file mode 100644 index 00000000..17607888 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/vindicator_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:vindicator" + }, + "minecraft:item_model": "minecraft:vindicator_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.vindicator_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/vine.json b/data/generated/V26_2/reports/minecraft/components/item/vine.json new file mode 100644 index 00000000..26e42e75 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/vine.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:vine", + "minecraft:item_name": { + "translate": "block.minecraft.vine" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wandering_trader_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/wandering_trader_spawn_egg.json new file mode 100644 index 00000000..70956307 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wandering_trader_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wandering_trader" + }, + "minecraft:item_model": "minecraft:wandering_trader_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wandering_trader_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/ward_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/ward_armor_trim_smithing_template.json new file mode 100644 index 00000000..6b561f4c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/ward_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:ward_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.ward_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warden_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/warden_spawn_egg.json new file mode 100644 index 00000000..30c93d78 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warden_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:warden" + }, + "minecraft:item_model": "minecraft:warden_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.warden_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_button.json b/data/generated/V26_2/reports/minecraft/components/item/warped_button.json new file mode 100644 index 00000000..c451efd5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_button.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_button", + "minecraft:item_name": { + "translate": "block.minecraft.warped_button" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_door.json b/data/generated/V26_2/reports/minecraft/components/item/warped_door.json new file mode 100644 index 00000000..3aee0769 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_door", + "minecraft:item_name": { + "translate": "block.minecraft.warped_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_fence.json b/data/generated/V26_2/reports/minecraft/components/item/warped_fence.json new file mode 100644 index 00000000..e9b67a20 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_fence.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fence", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fence" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_fence_gate.json b/data/generated/V26_2/reports/minecraft/components/item/warped_fence_gate.json new file mode 100644 index 00000000..87ac78d0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_fence_gate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fence_gate", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fence_gate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_fungus.json b/data/generated/V26_2/reports/minecraft/components/item/warped_fungus.json new file mode 100644 index 00000000..36c69b3c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_fungus.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fungus", + "minecraft:item_name": { + "translate": "block.minecraft.warped_fungus" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_fungus_on_a_stick.json b/data/generated/V26_2/reports/minecraft/components/item/warped_fungus_on_a_stick.json new file mode 100644 index 00000000..0bbe01dc --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_fungus_on_a_stick.json @@ -0,0 +1,20 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_fungus_on_a_stick", + "minecraft:item_name": { + "translate": "item.minecraft.warped_fungus_on_a_stick" + }, + "minecraft:lore": [], + "minecraft:max_damage": 100, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_hanging_sign.json b/data/generated/V26_2/reports/minecraft/components/item/warped_hanging_sign.json new file mode 100644 index 00000000..bc535199 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_hanging_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_hanging_sign", + "minecraft:item_name": { + "translate": "block.minecraft.warped_hanging_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_hyphae.json b/data/generated/V26_2/reports/minecraft/components/item/warped_hyphae.json new file mode 100644 index 00000000..1a493dd9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_hyphae.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_hyphae", + "minecraft:item_name": { + "translate": "block.minecraft.warped_hyphae" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_nylium.json b/data/generated/V26_2/reports/minecraft/components/item/warped_nylium.json new file mode 100644 index 00000000..12c3a196 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_nylium.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_nylium", + "minecraft:item_name": { + "translate": "block.minecraft.warped_nylium" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_planks.json b/data/generated/V26_2/reports/minecraft/components/item/warped_planks.json new file mode 100644 index 00000000..19de01f3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_planks.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_planks", + "minecraft:item_name": { + "translate": "block.minecraft.warped_planks" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_pressure_plate.json b/data/generated/V26_2/reports/minecraft/components/item/warped_pressure_plate.json new file mode 100644 index 00000000..f9ad8260 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_pressure_plate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_pressure_plate", + "minecraft:item_name": { + "translate": "block.minecraft.warped_pressure_plate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_roots.json b/data/generated/V26_2/reports/minecraft/components/item/warped_roots.json new file mode 100644 index 00000000..3d10eff5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_roots.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_roots", + "minecraft:item_name": { + "translate": "block.minecraft.warped_roots" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_shelf.json b/data/generated/V26_2/reports/minecraft/components/item/warped_shelf.json new file mode 100644 index 00000000..f0813692 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_shelf.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_shelf", + "minecraft:item_name": { + "translate": "block.minecraft.warped_shelf" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_sign.json b/data/generated/V26_2/reports/minecraft/components/item/warped_sign.json new file mode 100644 index 00000000..f51fda08 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_sign.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_sign", + "minecraft:item_name": { + "translate": "block.minecraft.warped_sign" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_slab.json b/data/generated/V26_2/reports/minecraft/components/item/warped_slab.json new file mode 100644 index 00000000..59bda21e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_slab", + "minecraft:item_name": { + "translate": "block.minecraft.warped_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/warped_stairs.json new file mode 100644 index 00000000..8aab2dc4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.warped_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_stem.json b/data/generated/V26_2/reports/minecraft/components/item/warped_stem.json new file mode 100644 index 00000000..1df36ec9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_stem.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_stem", + "minecraft:item_name": { + "translate": "block.minecraft.warped_stem" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/warped_trapdoor.json new file mode 100644 index 00000000..49112b3a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.warped_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/warped_wart_block.json b/data/generated/V26_2/reports/minecraft/components/item/warped_wart_block.json new file mode 100644 index 00000000..55ab055e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/warped_wart_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:warped_wart_block", + "minecraft:item_name": { + "translate": "block.minecraft.warped_wart_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/water_bucket.json b/data/generated/V26_2/reports/minecraft/components/item/water_bucket.json new file mode 100644 index 00000000..f3573fcd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/water_bucket.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:water_bucket", + "minecraft:item_name": { + "translate": "item.minecraft.water_bucket" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_chiseled_copper.json new file mode 100644 index 00000000..3103ec75 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bars.json new file mode 100644 index 00000000..5ee40b1b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_block.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_block.json new file mode 100644 index 00000000..b2df6a57 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_block.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_block", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_block" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bulb.json new file mode 100644 index 00000000..7745f749 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chain.json new file mode 100644 index 00000000..5360547e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chest.json new file mode 100644 index 00000000..dee2d69b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_door.json new file mode 100644 index 00000000..c6159074 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_golem_statue.json new file mode 100644 index 00000000..1e188ca4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_grate.json new file mode 100644 index 00000000..b29e52fb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_lantern.json new file mode 100644 index 00000000..7344fe0f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_trapdoor.json new file mode 100644 index 00000000..d747ea6c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper.json new file mode 100644 index 00000000..d83177bf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_slab.json new file mode 100644 index 00000000..5fc34d1d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_stairs.json new file mode 100644 index 00000000..1fb59423 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json new file mode 100644 index 00000000..8f917157 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper.json new file mode 100644 index 00000000..d35e6bda --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bars.json new file mode 100644 index 00000000..b07a71e1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bulb.json new file mode 100644 index 00000000..1f9e1ee9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chain.json new file mode 100644 index 00000000..1012aa0d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chest.json new file mode 100644 index 00000000..70a06554 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_door.json new file mode 100644 index 00000000..6f4b3c02 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json new file mode 100644 index 00000000..57d6fcfe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_grate.json new file mode 100644 index 00000000..cdc765ce --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_lantern.json new file mode 100644 index 00000000..6b4290bf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json new file mode 100644 index 00000000..38cab761 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper.json new file mode 100644 index 00000000..da78b0b3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json new file mode 100644 index 00000000..3a8bf686 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json new file mode 100644 index 00000000..f407d9de --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_lightning_rod.json new file mode 100644 index 00000000..7596723c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_exposed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_exposed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_exposed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_lightning_rod.json new file mode 100644 index 00000000..eb6600e1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json new file mode 100644 index 00000000..bd60b464 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper.json new file mode 100644 index 00000000..71806faf --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bars.json new file mode 100644 index 00000000..1b65a6e5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json new file mode 100644 index 00000000..db5539f6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chain.json new file mode 100644 index 00000000..35e47c76 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chest.json new file mode 100644 index 00000000..9f129562 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_door.json new file mode 100644 index 00000000..aac59694 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json new file mode 100644 index 00000000..e2155524 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_grate.json new file mode 100644 index 00000000..ffa387b8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json new file mode 100644 index 00000000..f3672435 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json new file mode 100644 index 00000000..b895c32c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper.json new file mode 100644 index 00000000..26de6413 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json new file mode 100644 index 00000000..4d29695b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json new file mode 100644 index 00000000..ace67e73 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json new file mode 100644 index 00000000..27729986 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_oxidized_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_oxidized_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_oxidized_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json new file mode 100644 index 00000000..fe32fd0b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper.json new file mode 100644 index 00000000..3c793c35 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bars.json new file mode 100644 index 00000000..fbee59e9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bulb.json new file mode 100644 index 00000000..de239e12 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chain.json new file mode 100644 index 00000000..bd8dc000 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chest.json new file mode 100644 index 00000000..fa5a03e8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_door.json new file mode 100644 index 00000000..aa94a896 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json new file mode 100644 index 00000000..3fcdcc18 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_grate.json new file mode 100644 index 00000000..3e53f687 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_lantern.json new file mode 100644 index 00000000..e21583c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json new file mode 100644 index 00000000..b07b9273 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper.json new file mode 100644 index 00000000..ff417616 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json new file mode 100644 index 00000000..cd4653e3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json new file mode 100644 index 00000000..d6d23a64 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_lightning_rod.json new file mode 100644 index 00000000..ea746cf8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/waxed_weathered_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:waxed_weathered_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.waxed_weathered_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json new file mode 100644 index 00000000..3d973d67 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wayfinder_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wayfinder_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.wayfinder_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_chiseled_copper.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_chiseled_copper.json new file mode 100644 index 00000000..8d50d93e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_chiseled_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_chiseled_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_chiseled_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper.json new file mode 100644 index 00000000..121c2a8b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bars.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bars.json new file mode 100644 index 00000000..457b7512 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bars.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_bars", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_bars" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bulb.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bulb.json new file mode 100644 index 00000000..80bc3e9e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_bulb.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_bulb", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_bulb" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chain.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chain.json new file mode 100644 index 00000000..f926200a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chain.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_chain", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_chain" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chest.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chest.json new file mode 100644 index 00000000..b25544d5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_chest.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_chest", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_chest" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_door.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_door.json new file mode 100644 index 00000000..67f3cad3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_door.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_door", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_door" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_golem_statue.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_golem_statue.json new file mode 100644 index 00000000..1274d45a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_golem_statue.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:block_state": { + "copper_golem_pose": "standing" + }, + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_golem_statue", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_golem_statue" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_grate.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_grate.json new file mode 100644 index 00000000..15220026 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_grate.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_grate", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_grate" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_lantern.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_lantern.json new file mode 100644 index 00000000..40763818 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_lantern.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_lantern", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_lantern" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_trapdoor.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_trapdoor.json new file mode 100644 index 00000000..8a1df03d --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_copper_trapdoor.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_copper_trapdoor", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_copper_trapdoor" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper.json new file mode 100644 index 00000000..0ce97327 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_slab.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_slab.json new file mode 100644 index 00000000..dc11ce7e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_slab.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper_slab", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper_slab" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_stairs.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_stairs.json new file mode 100644 index 00000000..23cf3fe2 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_cut_copper_stairs.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_cut_copper_stairs", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_cut_copper_stairs" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weathered_lightning_rod.json b/data/generated/V26_2/reports/minecraft/components/item/weathered_lightning_rod.json new file mode 100644 index 00000000..d100c31c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weathered_lightning_rod.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weathered_lightning_rod", + "minecraft:item_name": { + "translate": "block.minecraft.weathered_lightning_rod" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/weeping_vines.json b/data/generated/V26_2/reports/minecraft/components/item/weeping_vines.json new file mode 100644 index 00000000..5f31b1fe --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/weeping_vines.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:weeping_vines", + "minecraft:item_name": { + "translate": "block.minecraft.weeping_vines" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wet_sponge.json b/data/generated/V26_2/reports/minecraft/components/item/wet_sponge.json new file mode 100644 index 00000000..05afd657 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wet_sponge.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wet_sponge", + "minecraft:item_name": { + "translate": "block.minecraft.wet_sponge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wheat.json b/data/generated/V26_2/reports/minecraft/components/item/wheat.json new file mode 100644 index 00000000..6423951c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wheat.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wheat", + "minecraft:item_name": { + "translate": "item.minecraft.wheat" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wheat_seeds.json b/data/generated/V26_2/reports/minecraft/components/item/wheat_seeds.json new file mode 100644 index 00000000..bf5193c0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wheat_seeds.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wheat_seeds", + "minecraft:item_name": { + "translate": "item.minecraft.wheat_seeds" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_banner.json b/data/generated/V26_2/reports/minecraft/components/item/white_banner.json new file mode 100644 index 00000000..6f2c34cb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_banner", + "minecraft:item_name": { + "translate": "block.minecraft.white_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_bed.json b/data/generated/V26_2/reports/minecraft/components/item/white_bed.json new file mode 100644 index 00000000..8d185788 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_bed", + "minecraft:item_name": { + "translate": "block.minecraft.white_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/white_bundle.json new file mode 100644 index 00000000..3b31a60b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.white_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_candle.json b/data/generated/V26_2/reports/minecraft/components/item/white_candle.json new file mode 100644 index 00000000..a67bd63e --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_candle", + "minecraft:item_name": { + "translate": "block.minecraft.white_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/white_carpet.json new file mode 100644 index 00000000..ef91672f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:white_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:white_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.white_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/white_concrete.json new file mode 100644 index 00000000..5c42ea19 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.white_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/white_concrete_powder.json new file mode 100644 index 00000000..3d9b7e1b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.white_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_dye.json b/data/generated/V26_2/reports/minecraft/components/item/white_dye.json new file mode 100644 index 00000000..a65c04bd --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "white", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_dye", + "minecraft:item_name": { + "translate": "item.minecraft.white_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/white_glazed_terracotta.json new file mode 100644 index 00000000..009679b6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.white_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_harness.json b/data/generated/V26_2/reports/minecraft/components/item/white_harness.json new file mode 100644 index 00000000..4102c727 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:white_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:white_harness", + "minecraft:item_name": { + "translate": "item.minecraft.white_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/white_shulker_box.json new file mode 100644 index 00000000..b1915ce0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.white_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass.json new file mode 100644 index 00000000..bb57cc58 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.white_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass_pane.json new file mode 100644 index 00000000..38f14be5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.white_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/white_terracotta.json new file mode 100644 index 00000000..bf8768c3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.white_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_tulip.json b/data/generated/V26_2/reports/minecraft/components/item/white_tulip.json new file mode 100644 index 00000000..d04cc392 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_tulip.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_tulip", + "minecraft:item_name": { + "translate": "block.minecraft.white_tulip" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/white_wool.json b/data/generated/V26_2/reports/minecraft/components/item/white_wool.json new file mode 100644 index 00000000..232ae08b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/white_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:white_wool", + "minecraft:item_name": { + "translate": "block.minecraft.white_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wild_armor_trim_smithing_template.json b/data/generated/V26_2/reports/minecraft/components/item/wild_armor_trim_smithing_template.json new file mode 100644 index 00000000..be16fa54 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wild_armor_trim_smithing_template.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wild_armor_trim_smithing_template", + "minecraft:item_name": { + "translate": "item.minecraft.wild_armor_trim_smithing_template" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wildflowers.json b/data/generated/V26_2/reports/minecraft/components/item/wildflowers.json new file mode 100644 index 00000000..ff656eb8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wildflowers.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wildflowers", + "minecraft:item_name": { + "translate": "block.minecraft.wildflowers" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wind_charge.json b/data/generated/V26_2/reports/minecraft/components/item/wind_charge.json new file mode 100644 index 00000000..f7f649a9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wind_charge.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wind_charge", + "minecraft:item_name": { + "translate": "item.minecraft.wind_charge" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_cooldown": { + "seconds": 0.5 + }, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/witch_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/witch_spawn_egg.json new file mode 100644 index 00000000..5ca1dea1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/witch_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:witch" + }, + "minecraft:item_model": "minecraft:witch_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.witch_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wither_rose.json b/data/generated/V26_2/reports/minecraft/components/item/wither_rose.json new file mode 100644 index 00000000..7b142da3 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wither_rose.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wither_rose", + "minecraft:item_name": { + "translate": "block.minecraft.wither_rose" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_skull.json b/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_skull.json new file mode 100644 index 00000000..1795e7e4 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_skull.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:wither_skeleton_skull", + "minecraft:item_name": { + "translate": "block.minecraft.wither_skeleton_skull" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "rare", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_spawn_egg.json new file mode 100644 index 00000000..f3e649d6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wither_skeleton_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wither_skeleton" + }, + "minecraft:item_model": "minecraft:wither_skeleton_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wither_skeleton_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wither_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/wither_spawn_egg.json new file mode 100644 index 00000000..d6a3941f --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wither_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wither" + }, + "minecraft:item_model": "minecraft:wither_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wither_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wolf_armor.json b/data/generated/V26_2/reports/minecraft/components/item/wolf_armor.json new file mode 100644 index 00000000..e6b504f9 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wolf_armor.json @@ -0,0 +1,46 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:armor", + "amount": 11.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + }, + { + "type": "minecraft:armor_toughness", + "amount": 0.0, + "id": "minecraft:armor.body", + "operation": "add_value", + "slot": "body" + } + ], + "minecraft:break_sound": "minecraft:item.wolf_armor.break", + "minecraft:damage": 0, + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "minecraft:wolf", + "asset_id": "minecraft:armadillo_scute", + "can_be_sheared": true, + "equip_sound": "minecraft:item.armor.equip_wolf", + "shearing_sound": "minecraft:item.armor.unequip_wolf", + "slot": "body" + }, + "minecraft:item_model": "minecraft:wolf_armor", + "minecraft:item_name": { + "translate": "item.minecraft.wolf_armor" + }, + "minecraft:lore": [], + "minecraft:max_damage": 64, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:repairs_wolf_armor" + }, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wolf_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/wolf_spawn_egg.json new file mode 100644 index 00000000..b7927550 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wolf_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:wolf" + }, + "minecraft:item_model": "minecraft:wolf_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.wolf_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_axe.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_axe.json new file mode 100644 index 00000000..46e1df12 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_axe.json @@ -0,0 +1,58 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 6.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.200000047683716, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_axe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_axe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/axe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "disable_blocking_for_seconds": 5.0, + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_hoe.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_hoe.json new file mode 100644 index 00000000..5adfe528 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_hoe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_hoe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_hoe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/hoe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_pickaxe.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_pickaxe.json new file mode 100644 index 00000000..375c9274 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_pickaxe.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.799999952316284, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_pickaxe", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_pickaxe" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/pickaxe", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_shovel.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_shovel.json new file mode 100644 index 00000000..525d88d6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_shovel.json @@ -0,0 +1,57 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 1.5, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -3.0, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_shovel", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_shovel" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "rules": [ + { + "blocks": "#minecraft:incorrect_for_wooden_tool", + "correct_for_drops": false + }, + { + "blocks": "#minecraft:mineable/shovel", + "correct_for_drops": true, + "speed": 2.0 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": { + "item_damage_per_attack": 2 + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_spear.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_spear.json new file mode 100644 index 00000000..2140089a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_spear.json @@ -0,0 +1,82 @@ +{ + "components": { + "minecraft:attack_range": { + "hitbox_margin": 0.125, + "max_creative_reach": 6.5, + "max_reach": 4.5, + "min_creative_reach": 2.0, + "min_reach": 2.0, + "mob_factor": 0.5 + }, + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 0.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4615384340286255, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:damage_type": "minecraft:spear", + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_spear", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_spear" + }, + "minecraft:kinetic_weapon": { + "damage_conditions": { + "max_duration_ticks": 300, + "min_relative_speed": 4.6 + }, + "damage_multiplier": 0.7, + "delay_ticks": 15, + "dismount_conditions": { + "max_duration_ticks": 100, + "min_speed": 14.0 + }, + "forward_movement": 0.38, + "hit_sound": "minecraft:item.spear_wood.hit", + "knockback_conditions": { + "max_duration_ticks": 200, + "min_speed": 5.1 + }, + "sound": "minecraft:item.spear_wood.use" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:minimum_attack_charge": 1.0, + "minecraft:piercing_weapon": { + "hit_sound": "minecraft:item.spear_wood.hit", + "sound": "minecraft:item.spear_wood.attack" + }, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": { + "type": "stab", + "duration": 13 + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": { + "can_sprint": true, + "interact_vibrations": false, + "speed_multiplier": 1.0 + }, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/wooden_sword.json b/data/generated/V26_2/reports/minecraft/components/item/wooden_sword.json new file mode 100644 index 00000000..358a2409 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/wooden_sword.json @@ -0,0 +1,61 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:attack_damage", + "amount": 3.0, + "id": "minecraft:base_attack_damage", + "operation": "add_value", + "slot": "mainhand" + }, + { + "type": "minecraft:attack_speed", + "amount": -2.4000000953674316, + "id": "minecraft:base_attack_speed", + "operation": "add_value", + "slot": "mainhand" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:damage": 0, + "minecraft:enchantable": { + "value": 15 + }, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:wooden_sword", + "minecraft:item_name": { + "translate": "item.minecraft.wooden_sword" + }, + "minecraft:lore": [], + "minecraft:max_damage": 59, + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:repairable": { + "items": "#minecraft:wooden_tool_materials" + }, + "minecraft:swing_animation": {}, + "minecraft:tool": { + "can_destroy_blocks_in_creative": false, + "damage_per_block": 2, + "rules": [ + { + "blocks": "minecraft:cobweb", + "correct_for_drops": true, + "speed": 15.0 + }, + { + "blocks": "#minecraft:sword_instantly_mines", + "speed": 3.4028235E38 + }, + { + "blocks": "#minecraft:sword_efficient", + "speed": 1.5 + } + ] + }, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:weapon": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/writable_book.json b/data/generated/V26_2/reports/minecraft/components/item/writable_book.json new file mode 100644 index 00000000..746859c5 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/writable_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:writable_book", + "minecraft:item_name": { + "translate": "item.minecraft.writable_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {}, + "minecraft:writable_book_content": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/written_book.json b/data/generated/V26_2/reports/minecraft/components/item/written_book.json new file mode 100644 index 00000000..0703d595 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/written_book.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantment_glint_override": true, + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:written_book", + "minecraft:item_name": { + "translate": "item.minecraft.written_book" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_banner.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_banner.json new file mode 100644 index 00000000..7a652ac8 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_banner.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:banner_patterns": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_banner", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_banner" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 16, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_bed.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_bed.json new file mode 100644 index 00000000..74c47634 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_bed.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_bed", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_bed" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_bundle.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_bundle.json new file mode 100644 index 00000000..efd210f0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_bundle.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:bundle_contents": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_bundle", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_bundle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_candle.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_candle.json new file mode 100644 index 00000000..fe7d49d6 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_candle.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_candle", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_candle" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_carpet.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_carpet.json new file mode 100644 index 00000000..fd8b46a1 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_carpet.json @@ -0,0 +1,29 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": [ + "minecraft:llama", + "minecraft:trader_llama" + ], + "asset_id": "minecraft:yellow_carpet", + "can_be_sheared": true, + "equip_sound": "minecraft:entity.llama.swag", + "shearing_sound": "minecraft:item.llama_carpet.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:yellow_carpet", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_carpet" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete.json new file mode 100644 index 00000000..ccfc246a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_concrete", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_concrete" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete_powder.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete_powder.json new file mode 100644 index 00000000..c2fa02ba --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_concrete_powder.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_concrete_powder", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_concrete_powder" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_dye.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_dye.json new file mode 100644 index 00000000..7c5d69a0 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_dye.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:dye": "yellow", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_dye", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_dye" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_glazed_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_glazed_terracotta.json new file mode 100644 index 00000000..cd4af12c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_glazed_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_glazed_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_glazed_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_harness.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_harness.json new file mode 100644 index 00000000..5ff38f05 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_harness.json @@ -0,0 +1,27 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "allowed_entities": "#minecraft:can_equip_harness", + "asset_id": "minecraft:yellow_harness", + "can_be_sheared": true, + "equip_on_interact": true, + "equip_sound": "minecraft:entity.happy_ghast.equip", + "shearing_sound": "minecraft:entity.happy_ghast.unequip", + "slot": "body" + }, + "minecraft:item_model": "minecraft:yellow_harness", + "minecraft:item_name": { + "translate": "item.minecraft.yellow_harness" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_shulker_box.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_shulker_box.json new file mode 100644 index 00000000..30ab556c --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_shulker_box.json @@ -0,0 +1,19 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:container": [], + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_shulker_box", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_shulker_box" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 1, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass.json new file mode 100644 index 00000000..91653535 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_stained_glass", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_stained_glass" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass_pane.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass_pane.json new file mode 100644 index 00000000..bcba1fd7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_stained_glass_pane.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_stained_glass_pane", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_stained_glass_pane" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_terracotta.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_terracotta.json new file mode 100644 index 00000000..6fd6826b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_terracotta.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_terracotta", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_terracotta" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/yellow_wool.json b/data/generated/V26_2/reports/minecraft/components/item/yellow_wool.json new file mode 100644 index 00000000..cca1d741 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/yellow_wool.json @@ -0,0 +1,18 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:item_model": "minecraft:yellow_wool", + "minecraft:item_name": { + "translate": "block.minecraft.yellow_wool" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zoglin_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zoglin_spawn_egg.json new file mode 100644 index 00000000..727e5c6a --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zoglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zoglin" + }, + "minecraft:item_model": "minecraft:zoglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zoglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombie_head.json b/data/generated/V26_2/reports/minecraft/components/item/zombie_head.json new file mode 100644 index 00000000..2999ecbb --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombie_head.json @@ -0,0 +1,33 @@ +{ + "components": { + "minecraft:attribute_modifiers": [ + { + "type": "minecraft:waypoint_transmit_range", + "amount": -1.0, + "display": { + "type": "hidden" + }, + "id": "minecraft:waypoint_transmit_range_hide", + "operation": "add_multiplied_total", + "slot": "head" + } + ], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:equippable": { + "slot": "head", + "swappable": false + }, + "minecraft:item_model": "minecraft:zombie_head", + "minecraft:item_name": { + "translate": "block.minecraft.zombie_head" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "uncommon", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombie_horse_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zombie_horse_spawn_egg.json new file mode 100644 index 00000000..0a8df68b --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombie_horse_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_horse" + }, + "minecraft:item_model": "minecraft:zombie_horse_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_horse_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json new file mode 100644 index 00000000..063a0338 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombie_nautilus_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_nautilus" + }, + "minecraft:item_model": "minecraft:zombie_nautilus_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_nautilus_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombie_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zombie_spawn_egg.json new file mode 100644 index 00000000..fe2d69b7 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombie_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie" + }, + "minecraft:item_model": "minecraft:zombie_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombie_villager_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zombie_villager_spawn_egg.json new file mode 100644 index 00000000..cdac9caa --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombie_villager_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombie_villager" + }, + "minecraft:item_model": "minecraft:zombie_villager_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombie_villager_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/minecraft/components/item/zombified_piglin_spawn_egg.json b/data/generated/V26_2/reports/minecraft/components/item/zombified_piglin_spawn_egg.json new file mode 100644 index 00000000..3e24a338 --- /dev/null +++ b/data/generated/V26_2/reports/minecraft/components/item/zombified_piglin_spawn_egg.json @@ -0,0 +1,21 @@ +{ + "components": { + "minecraft:attribute_modifiers": [], + "minecraft:break_sound": "minecraft:entity.item.break", + "minecraft:enchantments": {}, + "minecraft:entity_data": { + "id": "minecraft:zombified_piglin" + }, + "minecraft:item_model": "minecraft:zombified_piglin_spawn_egg", + "minecraft:item_name": { + "translate": "item.minecraft.zombified_piglin_spawn_egg" + }, + "minecraft:lore": [], + "minecraft:max_stack_size": 64, + "minecraft:rarity": "common", + "minecraft:repair_cost": 0, + "minecraft:swing_animation": {}, + "minecraft:tooltip_display": {}, + "minecraft:use_effects": {} + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/packets.json b/data/generated/V26_2/reports/packets.json new file mode 100644 index 00000000..f5733b12 --- /dev/null +++ b/data/generated/V26_2/reports/packets.json @@ -0,0 +1,798 @@ +{ + "configuration": { + "clientbound": { + "minecraft:clear_dialog": { + "protocol_id": 17 + }, + "minecraft:code_of_conduct": { + "protocol_id": 19 + }, + "minecraft:cookie_request": { + "protocol_id": 0 + }, + "minecraft:custom_payload": { + "protocol_id": 1 + }, + "minecraft:custom_report_details": { + "protocol_id": 15 + }, + "minecraft:disconnect": { + "protocol_id": 2 + }, + "minecraft:finish_configuration": { + "protocol_id": 3 + }, + "minecraft:keep_alive": { + "protocol_id": 4 + }, + "minecraft:ping": { + "protocol_id": 5 + }, + "minecraft:registry_data": { + "protocol_id": 7 + }, + "minecraft:reset_chat": { + "protocol_id": 6 + }, + "minecraft:resource_pack_pop": { + "protocol_id": 8 + }, + "minecraft:resource_pack_push": { + "protocol_id": 9 + }, + "minecraft:select_known_packs": { + "protocol_id": 14 + }, + "minecraft:server_links": { + "protocol_id": 16 + }, + "minecraft:show_dialog": { + "protocol_id": 18 + }, + "minecraft:store_cookie": { + "protocol_id": 10 + }, + "minecraft:transfer": { + "protocol_id": 11 + }, + "minecraft:update_enabled_features": { + "protocol_id": 12 + }, + "minecraft:update_tags": { + "protocol_id": 13 + } + }, + "serverbound": { + "minecraft:accept_code_of_conduct": { + "protocol_id": 9 + }, + "minecraft:client_information": { + "protocol_id": 0 + }, + "minecraft:cookie_response": { + "protocol_id": 1 + }, + "minecraft:custom_click_action": { + "protocol_id": 8 + }, + "minecraft:custom_payload": { + "protocol_id": 2 + }, + "minecraft:finish_configuration": { + "protocol_id": 3 + }, + "minecraft:keep_alive": { + "protocol_id": 4 + }, + "minecraft:pong": { + "protocol_id": 5 + }, + "minecraft:resource_pack": { + "protocol_id": 6 + }, + "minecraft:select_known_packs": { + "protocol_id": 7 + } + } + }, + "handshake": { + "serverbound": { + "minecraft:intention": { + "protocol_id": 0 + } + } + }, + "login": { + "clientbound": { + "minecraft:cookie_request": { + "protocol_id": 5 + }, + "minecraft:custom_query": { + "protocol_id": 4 + }, + "minecraft:hello": { + "protocol_id": 1 + }, + "minecraft:login_compression": { + "protocol_id": 3 + }, + "minecraft:login_disconnect": { + "protocol_id": 0 + }, + "minecraft:login_finished": { + "protocol_id": 2 + } + }, + "serverbound": { + "minecraft:cookie_response": { + "protocol_id": 4 + }, + "minecraft:custom_query_answer": { + "protocol_id": 2 + }, + "minecraft:hello": { + "protocol_id": 0 + }, + "minecraft:key": { + "protocol_id": 1 + }, + "minecraft:login_acknowledged": { + "protocol_id": 3 + } + } + }, + "play": { + "clientbound": { + "minecraft:add_entity": { + "protocol_id": 1 + }, + "minecraft:animate": { + "protocol_id": 2 + }, + "minecraft:award_stats": { + "protocol_id": 3 + }, + "minecraft:block_changed_ack": { + "protocol_id": 4 + }, + "minecraft:block_destruction": { + "protocol_id": 5 + }, + "minecraft:block_entity_data": { + "protocol_id": 6 + }, + "minecraft:block_event": { + "protocol_id": 7 + }, + "minecraft:block_update": { + "protocol_id": 8 + }, + "minecraft:boss_event": { + "protocol_id": 9 + }, + "minecraft:bundle_delimiter": { + "protocol_id": 0 + }, + "minecraft:change_difficulty": { + "protocol_id": 10 + }, + "minecraft:chunk_batch_finished": { + "protocol_id": 11 + }, + "minecraft:chunk_batch_start": { + "protocol_id": 12 + }, + "minecraft:chunks_biomes": { + "protocol_id": 13 + }, + "minecraft:clear_dialog": { + "protocol_id": 139 + }, + "minecraft:clear_titles": { + "protocol_id": 14 + }, + "minecraft:command_suggestions": { + "protocol_id": 15 + }, + "minecraft:commands": { + "protocol_id": 16 + }, + "minecraft:container_close": { + "protocol_id": 17 + }, + "minecraft:container_set_content": { + "protocol_id": 18 + }, + "minecraft:container_set_data": { + "protocol_id": 19 + }, + "minecraft:container_set_slot": { + "protocol_id": 20 + }, + "minecraft:cookie_request": { + "protocol_id": 21 + }, + "minecraft:cooldown": { + "protocol_id": 22 + }, + "minecraft:custom_chat_completions": { + "protocol_id": 23 + }, + "minecraft:custom_payload": { + "protocol_id": 24 + }, + "minecraft:custom_report_details": { + "protocol_id": 136 + }, + "minecraft:damage_event": { + "protocol_id": 25 + }, + "minecraft:debug/block_value": { + "protocol_id": 26 + }, + "minecraft:debug/chunk_value": { + "protocol_id": 27 + }, + "minecraft:debug/entity_value": { + "protocol_id": 28 + }, + "minecraft:debug/event": { + "protocol_id": 29 + }, + "minecraft:debug_sample": { + "protocol_id": 30 + }, + "minecraft:delete_chat": { + "protocol_id": 31 + }, + "minecraft:disconnect": { + "protocol_id": 32 + }, + "minecraft:disguised_chat": { + "protocol_id": 33 + }, + "minecraft:entity_event": { + "protocol_id": 34 + }, + "minecraft:entity_position_sync": { + "protocol_id": 35 + }, + "minecraft:explode": { + "protocol_id": 36 + }, + "minecraft:forget_level_chunk": { + "protocol_id": 37 + }, + "minecraft:game_event": { + "protocol_id": 38 + }, + "minecraft:game_rule_values": { + "protocol_id": 39 + }, + "minecraft:game_test_highlight_pos": { + "protocol_id": 40 + }, + "minecraft:hurt_animation": { + "protocol_id": 42 + }, + "minecraft:initialize_border": { + "protocol_id": 43 + }, + "minecraft:keep_alive": { + "protocol_id": 44 + }, + "minecraft:level_chunk_with_light": { + "protocol_id": 45 + }, + "minecraft:level_event": { + "protocol_id": 46 + }, + "minecraft:level_particles": { + "protocol_id": 47 + }, + "minecraft:light_update": { + "protocol_id": 48 + }, + "minecraft:login": { + "protocol_id": 49 + }, + "minecraft:low_disk_space_warning": { + "protocol_id": 50 + }, + "minecraft:map_item_data": { + "protocol_id": 51 + }, + "minecraft:merchant_offers": { + "protocol_id": 52 + }, + "minecraft:mount_screen_open": { + "protocol_id": 41 + }, + "minecraft:move_entity_pos": { + "protocol_id": 53 + }, + "minecraft:move_entity_pos_rot": { + "protocol_id": 54 + }, + "minecraft:move_entity_rot": { + "protocol_id": 56 + }, + "minecraft:move_minecart_along_track": { + "protocol_id": 55 + }, + "minecraft:move_vehicle": { + "protocol_id": 57 + }, + "minecraft:open_book": { + "protocol_id": 58 + }, + "minecraft:open_screen": { + "protocol_id": 59 + }, + "minecraft:open_sign_editor": { + "protocol_id": 60 + }, + "minecraft:ping": { + "protocol_id": 61 + }, + "minecraft:place_ghost_recipe": { + "protocol_id": 63 + }, + "minecraft:player_abilities": { + "protocol_id": 64 + }, + "minecraft:player_chat": { + "protocol_id": 65 + }, + "minecraft:player_combat_end": { + "protocol_id": 66 + }, + "minecraft:player_combat_enter": { + "protocol_id": 67 + }, + "minecraft:player_combat_kill": { + "protocol_id": 68 + }, + "minecraft:player_info_remove": { + "protocol_id": 69 + }, + "minecraft:player_info_update": { + "protocol_id": 70 + }, + "minecraft:player_look_at": { + "protocol_id": 71 + }, + "minecraft:player_position": { + "protocol_id": 72 + }, + "minecraft:player_rotation": { + "protocol_id": 73 + }, + "minecraft:pong_response": { + "protocol_id": 62 + }, + "minecraft:projectile_power": { + "protocol_id": 135 + }, + "minecraft:recipe_book_add": { + "protocol_id": 74 + }, + "minecraft:recipe_book_remove": { + "protocol_id": 75 + }, + "minecraft:recipe_book_settings": { + "protocol_id": 76 + }, + "minecraft:remove_entities": { + "protocol_id": 77 + }, + "minecraft:remove_mob_effect": { + "protocol_id": 78 + }, + "minecraft:reset_score": { + "protocol_id": 79 + }, + "minecraft:resource_pack_pop": { + "protocol_id": 80 + }, + "minecraft:resource_pack_push": { + "protocol_id": 81 + }, + "minecraft:respawn": { + "protocol_id": 82 + }, + "minecraft:rotate_head": { + "protocol_id": 83 + }, + "minecraft:section_blocks_update": { + "protocol_id": 84 + }, + "minecraft:select_advancements_tab": { + "protocol_id": 85 + }, + "minecraft:server_data": { + "protocol_id": 86 + }, + "minecraft:server_links": { + "protocol_id": 137 + }, + "minecraft:set_action_bar_text": { + "protocol_id": 87 + }, + "minecraft:set_border_center": { + "protocol_id": 88 + }, + "minecraft:set_border_lerp_size": { + "protocol_id": 89 + }, + "minecraft:set_border_size": { + "protocol_id": 90 + }, + "minecraft:set_border_warning_delay": { + "protocol_id": 91 + }, + "minecraft:set_border_warning_distance": { + "protocol_id": 92 + }, + "minecraft:set_camera": { + "protocol_id": 93 + }, + "minecraft:set_chunk_cache_center": { + "protocol_id": 94 + }, + "minecraft:set_chunk_cache_radius": { + "protocol_id": 95 + }, + "minecraft:set_cursor_item": { + "protocol_id": 96 + }, + "minecraft:set_default_spawn_position": { + "protocol_id": 97 + }, + "minecraft:set_display_objective": { + "protocol_id": 98 + }, + "minecraft:set_entity_data": { + "protocol_id": 99 + }, + "minecraft:set_entity_link": { + "protocol_id": 100 + }, + "minecraft:set_entity_motion": { + "protocol_id": 101 + }, + "minecraft:set_equipment": { + "protocol_id": 102 + }, + "minecraft:set_experience": { + "protocol_id": 103 + }, + "minecraft:set_health": { + "protocol_id": 104 + }, + "minecraft:set_held_slot": { + "protocol_id": 105 + }, + "minecraft:set_objective": { + "protocol_id": 106 + }, + "minecraft:set_passengers": { + "protocol_id": 107 + }, + "minecraft:set_player_inventory": { + "protocol_id": 108 + }, + "minecraft:set_player_team": { + "protocol_id": 109 + }, + "minecraft:set_score": { + "protocol_id": 110 + }, + "minecraft:set_simulation_distance": { + "protocol_id": 111 + }, + "minecraft:set_subtitle_text": { + "protocol_id": 112 + }, + "minecraft:set_time": { + "protocol_id": 113 + }, + "minecraft:set_title_text": { + "protocol_id": 114 + }, + "minecraft:set_titles_animation": { + "protocol_id": 115 + }, + "minecraft:show_dialog": { + "protocol_id": 140 + }, + "minecraft:sound": { + "protocol_id": 117 + }, + "minecraft:sound_entity": { + "protocol_id": 116 + }, + "minecraft:start_configuration": { + "protocol_id": 118 + }, + "minecraft:stop_sound": { + "protocol_id": 119 + }, + "minecraft:store_cookie": { + "protocol_id": 120 + }, + "minecraft:system_chat": { + "protocol_id": 121 + }, + "minecraft:tab_list": { + "protocol_id": 122 + }, + "minecraft:tag_query": { + "protocol_id": 123 + }, + "minecraft:take_item_entity": { + "protocol_id": 124 + }, + "minecraft:teleport_entity": { + "protocol_id": 125 + }, + "minecraft:test_instance_block_status": { + "protocol_id": 126 + }, + "minecraft:ticking_state": { + "protocol_id": 127 + }, + "minecraft:ticking_step": { + "protocol_id": 128 + }, + "minecraft:transfer": { + "protocol_id": 129 + }, + "minecraft:update_advancements": { + "protocol_id": 130 + }, + "minecraft:update_attributes": { + "protocol_id": 131 + }, + "minecraft:update_mob_effect": { + "protocol_id": 132 + }, + "minecraft:update_recipes": { + "protocol_id": 133 + }, + "minecraft:update_tags": { + "protocol_id": 134 + }, + "minecraft:waypoint": { + "protocol_id": 138 + } + }, + "serverbound": { + "minecraft:accept_teleportation": { + "protocol_id": 0 + }, + "minecraft:attack": { + "protocol_id": 1 + }, + "minecraft:block_entity_tag_query": { + "protocol_id": 2 + }, + "minecraft:bundle_item_selected": { + "protocol_id": 3 + }, + "minecraft:change_difficulty": { + "protocol_id": 4 + }, + "minecraft:change_game_mode": { + "protocol_id": 5 + }, + "minecraft:chat": { + "protocol_id": 9 + }, + "minecraft:chat_ack": { + "protocol_id": 6 + }, + "minecraft:chat_command": { + "protocol_id": 7 + }, + "minecraft:chat_command_signed": { + "protocol_id": 8 + }, + "minecraft:chat_session_update": { + "protocol_id": 10 + }, + "minecraft:chunk_batch_received": { + "protocol_id": 11 + }, + "minecraft:client_command": { + "protocol_id": 12 + }, + "minecraft:client_information": { + "protocol_id": 14 + }, + "minecraft:client_tick_end": { + "protocol_id": 13 + }, + "minecraft:command_suggestion": { + "protocol_id": 15 + }, + "minecraft:configuration_acknowledged": { + "protocol_id": 16 + }, + "minecraft:container_button_click": { + "protocol_id": 17 + }, + "minecraft:container_click": { + "protocol_id": 18 + }, + "minecraft:container_close": { + "protocol_id": 19 + }, + "minecraft:container_slot_state_changed": { + "protocol_id": 20 + }, + "minecraft:cookie_response": { + "protocol_id": 21 + }, + "minecraft:custom_click_action": { + "protocol_id": 68 + }, + "minecraft:custom_payload": { + "protocol_id": 22 + }, + "minecraft:debug_subscription_request": { + "protocol_id": 23 + }, + "minecraft:edit_book": { + "protocol_id": 24 + }, + "minecraft:entity_tag_query": { + "protocol_id": 25 + }, + "minecraft:interact": { + "protocol_id": 26 + }, + "minecraft:jigsaw_generate": { + "protocol_id": 27 + }, + "minecraft:keep_alive": { + "protocol_id": 28 + }, + "minecraft:lock_difficulty": { + "protocol_id": 29 + }, + "minecraft:move_player_pos": { + "protocol_id": 30 + }, + "minecraft:move_player_pos_rot": { + "protocol_id": 31 + }, + "minecraft:move_player_rot": { + "protocol_id": 32 + }, + "minecraft:move_player_status_only": { + "protocol_id": 33 + }, + "minecraft:move_vehicle": { + "protocol_id": 34 + }, + "minecraft:paddle_boat": { + "protocol_id": 35 + }, + "minecraft:pick_item_from_block": { + "protocol_id": 36 + }, + "minecraft:pick_item_from_entity": { + "protocol_id": 37 + }, + "minecraft:ping_request": { + "protocol_id": 38 + }, + "minecraft:place_recipe": { + "protocol_id": 39 + }, + "minecraft:player_abilities": { + "protocol_id": 40 + }, + "minecraft:player_action": { + "protocol_id": 41 + }, + "minecraft:player_command": { + "protocol_id": 42 + }, + "minecraft:player_input": { + "protocol_id": 43 + }, + "minecraft:player_loaded": { + "protocol_id": 44 + }, + "minecraft:pong": { + "protocol_id": 45 + }, + "minecraft:recipe_book_change_settings": { + "protocol_id": 46 + }, + "minecraft:recipe_book_seen_recipe": { + "protocol_id": 47 + }, + "minecraft:rename_item": { + "protocol_id": 48 + }, + "minecraft:resource_pack": { + "protocol_id": 49 + }, + "minecraft:seen_advancements": { + "protocol_id": 50 + }, + "minecraft:select_trade": { + "protocol_id": 51 + }, + "minecraft:set_beacon": { + "protocol_id": 52 + }, + "minecraft:set_carried_item": { + "protocol_id": 53 + }, + "minecraft:set_command_block": { + "protocol_id": 54 + }, + "minecraft:set_command_minecart": { + "protocol_id": 55 + }, + "minecraft:set_creative_mode_slot": { + "protocol_id": 56 + }, + "minecraft:set_game_rule": { + "protocol_id": 57 + }, + "minecraft:set_jigsaw_block": { + "protocol_id": 58 + }, + "minecraft:set_structure_block": { + "protocol_id": 59 + }, + "minecraft:set_test_block": { + "protocol_id": 60 + }, + "minecraft:sign_update": { + "protocol_id": 61 + }, + "minecraft:spectator_action": { + "protocol_id": 62 + }, + "minecraft:swing": { + "protocol_id": 63 + }, + "minecraft:teleport_to_entity": { + "protocol_id": 64 + }, + "minecraft:test_instance_block_action": { + "protocol_id": 65 + }, + "minecraft:use_item": { + "protocol_id": 67 + }, + "minecraft:use_item_on": { + "protocol_id": 66 + } + } + }, + "status": { + "clientbound": { + "minecraft:pong_response": { + "protocol_id": 1 + }, + "minecraft:status_response": { + "protocol_id": 0 + } + }, + "serverbound": { + "minecraft:ping_request": { + "protocol_id": 1 + }, + "minecraft:status_request": { + "protocol_id": 0 + } + } + } +} \ No newline at end of file diff --git a/data/generated/V26_2/reports/registries.json b/data/generated/V26_2/reports/registries.json new file mode 100644 index 00000000..7c2c7f7d --- /dev/null +++ b/data/generated/V26_2/reports/registries.json @@ -0,0 +1,21424 @@ +{ + "minecraft:activity": { + "entries": { + "minecraft:admire_item": { + "protocol_id": 12 + }, + "minecraft:avoid": { + "protocol_id": 13 + }, + "minecraft:celebrate": { + "protocol_id": 11 + }, + "minecraft:core": { + "protocol_id": 0 + }, + "minecraft:dig": { + "protocol_id": 25 + }, + "minecraft:emerge": { + "protocol_id": 24 + }, + "minecraft:fight": { + "protocol_id": 10 + }, + "minecraft:hide": { + "protocol_id": 9 + }, + "minecraft:idle": { + "protocol_id": 1 + }, + "minecraft:investigate": { + "protocol_id": 22 + }, + "minecraft:lay_spawn": { + "protocol_id": 20 + }, + "minecraft:long_jump": { + "protocol_id": 16 + }, + "minecraft:meet": { + "protocol_id": 5 + }, + "minecraft:panic": { + "protocol_id": 6 + }, + "minecraft:play": { + "protocol_id": 3 + }, + "minecraft:play_dead": { + "protocol_id": 15 + }, + "minecraft:pre_raid": { + "protocol_id": 8 + }, + "minecraft:raid": { + "protocol_id": 7 + }, + "minecraft:ram": { + "protocol_id": 17 + }, + "minecraft:rest": { + "protocol_id": 4 + }, + "minecraft:ride": { + "protocol_id": 14 + }, + "minecraft:roar": { + "protocol_id": 23 + }, + "minecraft:sniff": { + "protocol_id": 21 + }, + "minecraft:swim": { + "protocol_id": 19 + }, + "minecraft:tongue": { + "protocol_id": 18 + }, + "minecraft:work": { + "protocol_id": 2 + } + }, + "protocol_id": 28 + }, + "minecraft:attribute": { + "entries": { + "minecraft:air_drag_modifier": { + "protocol_id": 0 + }, + "minecraft:armor": { + "protocol_id": 1 + }, + "minecraft:armor_toughness": { + "protocol_id": 2 + }, + "minecraft:attack_damage": { + "protocol_id": 3 + }, + "minecraft:attack_knockback": { + "protocol_id": 4 + }, + "minecraft:attack_speed": { + "protocol_id": 5 + }, + "minecraft:below_name_distance": { + "protocol_id": 6 + }, + "minecraft:block_break_speed": { + "protocol_id": 7 + }, + "minecraft:block_interaction_range": { + "protocol_id": 8 + }, + "minecraft:bounciness": { + "protocol_id": 9 + }, + "minecraft:burning_time": { + "protocol_id": 10 + }, + "minecraft:camera_distance": { + "protocol_id": 11 + }, + "minecraft:entity_interaction_range": { + "protocol_id": 13 + }, + "minecraft:explosion_knockback_resistance": { + "protocol_id": 12 + }, + "minecraft:fall_damage_multiplier": { + "protocol_id": 14 + }, + "minecraft:flying_speed": { + "protocol_id": 15 + }, + "minecraft:follow_range": { + "protocol_id": 16 + }, + "minecraft:friction_modifier": { + "protocol_id": 17 + }, + "minecraft:gravity": { + "protocol_id": 18 + }, + "minecraft:jump_strength": { + "protocol_id": 19 + }, + "minecraft:knockback_resistance": { + "protocol_id": 20 + }, + "minecraft:luck": { + "protocol_id": 21 + }, + "minecraft:max_absorption": { + "protocol_id": 22 + }, + "minecraft:max_health": { + "protocol_id": 23 + }, + "minecraft:mining_efficiency": { + "protocol_id": 24 + }, + "minecraft:movement_efficiency": { + "protocol_id": 25 + }, + "minecraft:movement_speed": { + "protocol_id": 26 + }, + "minecraft:name_tag_distance": { + "protocol_id": 27 + }, + "minecraft:oxygen_bonus": { + "protocol_id": 28 + }, + "minecraft:safe_fall_distance": { + "protocol_id": 29 + }, + "minecraft:scale": { + "protocol_id": 30 + }, + "minecraft:sneaking_speed": { + "protocol_id": 31 + }, + "minecraft:spawn_reinforcements": { + "protocol_id": 32 + }, + "minecraft:step_height": { + "protocol_id": 33 + }, + "minecraft:submerged_mining_speed": { + "protocol_id": 34 + }, + "minecraft:sweeping_damage_ratio": { + "protocol_id": 35 + }, + "minecraft:tempt_range": { + "protocol_id": 36 + }, + "minecraft:water_movement_efficiency": { + "protocol_id": 37 + }, + "minecraft:waypoint_receive_range": { + "protocol_id": 39 + }, + "minecraft:waypoint_transmit_range": { + "protocol_id": 38 + } + }, + "protocol_id": 19 + }, + "minecraft:attribute_type": { + "entries": { + "minecraft:activity": { + "protocol_id": 8 + }, + "minecraft:ambient_particles": { + "protocol_id": 11 + }, + "minecraft:ambient_sounds": { + "protocol_id": 13 + }, + "minecraft:angle_degrees": { + "protocol_id": 3 + }, + "minecraft:argb_color": { + "protocol_id": 5 + }, + "minecraft:background_music": { + "protocol_id": 12 + }, + "minecraft:bed_rule": { + "protocol_id": 9 + }, + "minecraft:boolean": { + "protocol_id": 0 + }, + "minecraft:float": { + "protocol_id": 2 + }, + "minecraft:integer": { + "protocol_id": 6 + }, + "minecraft:moon_phase": { + "protocol_id": 7 + }, + "minecraft:particle": { + "protocol_id": 10 + }, + "minecraft:rgb_color": { + "protocol_id": 4 + }, + "minecraft:tri_state": { + "protocol_id": 1 + } + }, + "protocol_id": 92 + }, + "minecraft:block": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_button": { + "protocol_id": 447 + }, + "minecraft:acacia_door": { + "protocol_id": 649 + }, + "minecraft:acacia_fence": { + "protocol_id": 640 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 631 + }, + "minecraft:acacia_hanging_sign": { + "protocol_id": 237 + }, + "minecraft:acacia_leaves": { + "protocol_id": 92 + }, + "minecraft:acacia_log": { + "protocol_id": 53 + }, + "minecraft:acacia_planks": { + "protocol_id": 17 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 265 + }, + "minecraft:acacia_sapling": { + "protocol_id": 29 + }, + "minecraft:acacia_shelf": { + "protocol_id": 180 + }, + "minecraft:acacia_sign": { + "protocol_id": 213 + }, + "minecraft:acacia_slab": { + "protocol_id": 603 + }, + "minecraft:acacia_stairs": { + "protocol_id": 516 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 320 + }, + "minecraft:acacia_wall_hanging_sign": { + "protocol_id": 249 + }, + "minecraft:acacia_wall_sign": { + "protocol_id": 227 + }, + "minecraft:acacia_wood": { + "protocol_id": 75 + }, + "minecraft:activator_rail": { + "protocol_id": 482 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allium": { + "protocol_id": 162 + }, + "minecraft:amethyst_block": { + "protocol_id": 978 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 980 + }, + "minecraft:ancient_debris": { + "protocol_id": 916 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 820 + }, + "minecraft:andesite_stairs": { + "protocol_id": 807 + }, + "minecraft:andesite_wall": { + "protocol_id": 832 + }, + "minecraft:anvil": { + "protocol_id": 467 + }, + "minecraft:attached_melon_stem": { + "protocol_id": 363 + }, + "minecraft:attached_pumpkin_stem": { + "protocol_id": 362 + }, + "minecraft:azalea": { + "protocol_id": 1138 + }, + "minecraft:azalea_leaves": { + "protocol_id": 97 + }, + "minecraft:azure_bluet": { + "protocol_id": 163 + }, + "minecraft:bamboo": { + "protocol_id": 792 + }, + "minecraft:bamboo_block": { + "protocol_id": 60 + }, + "minecraft:bamboo_button": { + "protocol_id": 452 + }, + "minecraft:bamboo_door": { + "protocol_id": 654 + }, + "minecraft:bamboo_fence": { + "protocol_id": 645 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 636 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 245 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 24 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 609 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 522 + }, + "minecraft:bamboo_planks": { + "protocol_id": 23 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 270 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 791 + }, + "minecraft:bamboo_shelf": { + "protocol_id": 181 + }, + "minecraft:bamboo_sign": { + "protocol_id": 219 + }, + "minecraft:bamboo_slab": { + "protocol_id": 608 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 521 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 325 + }, + "minecraft:bamboo_wall_hanging_sign": { + "protocol_id": 257 + }, + "minecraft:bamboo_wall_sign": { + "protocol_id": 233 + }, + "minecraft:barrel": { + "protocol_id": 839 + }, + "minecraft:barrier": { + "protocol_id": 524 + }, + "minecraft:basalt": { + "protocol_id": 288 + }, + "minecraft:beacon": { + "protocol_id": 408 + }, + "minecraft:bedrock": { + "protocol_id": 34 + }, + "minecraft:bee_nest": { + "protocol_id": 911 + }, + "minecraft:beehive": { + "protocol_id": 912 + }, + "minecraft:beetroots": { + "protocol_id": 665 + }, + "minecraft:bell": { + "protocol_id": 848 + }, + "minecraft:big_dripleaf": { + "protocol_id": 1145 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 1146 + }, + "minecraft:birch_button": { + "protocol_id": 445 + }, + "minecraft:birch_door": { + "protocol_id": 647 + }, + "minecraft:birch_fence": { + "protocol_id": 638 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 629 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 236 + }, + "minecraft:birch_leaves": { + "protocol_id": 90 + }, + "minecraft:birch_log": { + "protocol_id": 51 + }, + "minecraft:birch_planks": { + "protocol_id": 15 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 263 + }, + "minecraft:birch_sapling": { + "protocol_id": 27 + }, + "minecraft:birch_shelf": { + "protocol_id": 182 + }, + "minecraft:birch_sign": { + "protocol_id": 212 + }, + "minecraft:birch_slab": { + "protocol_id": 601 + }, + "minecraft:birch_stairs": { + "protocol_id": 405 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 318 + }, + "minecraft:birch_wall_hanging_sign": { + "protocol_id": 248 + }, + "minecraft:birch_wall_sign": { + "protocol_id": 226 + }, + "minecraft:birch_wood": { + "protocol_id": 73 + }, + "minecraft:black_banner": { + "protocol_id": 578 + }, + "minecraft:black_bed": { + "protocol_id": 125 + }, + "minecraft:black_candle": { + "protocol_id": 960 + }, + "minecraft:black_candle_cake": { + "protocol_id": 977 + }, + "minecraft:black_carpet": { + "protocol_id": 553 + }, + "minecraft:black_concrete": { + "protocol_id": 725 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 741 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 709 + }, + "minecraft:black_shulker_box": { + "protocol_id": 693 + }, + "minecraft:black_stained_glass": { + "protocol_id": 315 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 515 + }, + "minecraft:black_terracotta": { + "protocol_id": 499 + }, + "minecraft:black_wall_banner": { + "protocol_id": 594 + }, + "minecraft:black_wool": { + "protocol_id": 155 + }, + "minecraft:blackstone": { + "protocol_id": 924 + }, + "minecraft:blackstone_slab": { + "protocol_id": 927 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 925 + }, + "minecraft:blackstone_wall": { + "protocol_id": 926 + }, + "minecraft:blast_furnace": { + "protocol_id": 841 + }, + "minecraft:blue_banner": { + "protocol_id": 574 + }, + "minecraft:blue_bed": { + "protocol_id": 121 + }, + "minecraft:blue_candle": { + "protocol_id": 956 + }, + "minecraft:blue_candle_cake": { + "protocol_id": 973 + }, + "minecraft:blue_carpet": { + "protocol_id": 549 + }, + "minecraft:blue_concrete": { + "protocol_id": 721 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 737 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 705 + }, + "minecraft:blue_ice": { + "protocol_id": 789 + }, + "minecraft:blue_orchid": { + "protocol_id": 161 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 689 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 311 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 511 + }, + "minecraft:blue_terracotta": { + "protocol_id": 495 + }, + "minecraft:blue_wall_banner": { + "protocol_id": 590 + }, + "minecraft:blue_wool": { + "protocol_id": 151 + }, + "minecraft:bone_block": { + "protocol_id": 674 + }, + "minecraft:bookshelf": { + "protocol_id": 178 + }, + "minecraft:brain_coral": { + "protocol_id": 764 + }, + "minecraft:brain_coral_block": { + "protocol_id": 754 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 774 + }, + "minecraft:brain_coral_wall_fan": { + "protocol_id": 784 + }, + "minecraft:brewing_stand": { + "protocol_id": 386 + }, + "minecraft:brick_slab": { + "protocol_id": 616 + }, + "minecraft:brick_stairs": { + "protocol_id": 370 + }, + "minecraft:brick_wall": { + "protocol_id": 824 + }, + "minecraft:bricks": { + "protocol_id": 176 + }, + "minecraft:brown_banner": { + "protocol_id": 575 + }, + "minecraft:brown_bed": { + "protocol_id": 122 + }, + "minecraft:brown_candle": { + "protocol_id": 957 + }, + "minecraft:brown_candle_cake": { + "protocol_id": 974 + }, + "minecraft:brown_carpet": { + "protocol_id": 550 + }, + "minecraft:brown_concrete": { + "protocol_id": 722 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 738 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 706 + }, + "minecraft:brown_mushroom": { + "protocol_id": 172 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 338 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 690 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 312 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 512 + }, + "minecraft:brown_terracotta": { + "protocol_id": 496 + }, + "minecraft:brown_wall_banner": { + "protocol_id": 591 + }, + "minecraft:brown_wool": { + "protocol_id": 152 + }, + "minecraft:bubble_column": { + "protocol_id": 796 + }, + "minecraft:bubble_coral": { + "protocol_id": 765 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 755 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 775 + }, + "minecraft:bubble_coral_wall_fan": { + "protocol_id": 785 + }, + "minecraft:budding_amethyst": { + "protocol_id": 979 + }, + "minecraft:bush": { + "protocol_id": 133 + }, + "minecraft:cactus": { + "protocol_id": 279 + }, + "minecraft:cactus_flower": { + "protocol_id": 280 + }, + "minecraft:cake": { + "protocol_id": 298 + }, + "minecraft:calcite": { + "protocol_id": 1025 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 1029 + }, + "minecraft:campfire": { + "protocol_id": 859 + }, + "minecraft:candle": { + "protocol_id": 944 + }, + "minecraft:candle_cake": { + "protocol_id": 961 + }, + "minecraft:carrots": { + "protocol_id": 441 + }, + "minecraft:cartography_table": { + "protocol_id": 842 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 296 + }, + "minecraft:cauldron": { + "protocol_id": 387 + }, + "minecraft:cave_air": { + "protocol_id": 795 + }, + "minecraft:cave_vines": { + "protocol_id": 1135 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 1136 + }, + "minecraft:chain_command_block": { + "protocol_id": 669 + }, + "minecraft:cherry_button": { + "protocol_id": 448 + }, + "minecraft:cherry_door": { + "protocol_id": 650 + }, + "minecraft:cherry_fence": { + "protocol_id": 641 + }, + "minecraft:cherry_fence_gate": { + "protocol_id": 632 + }, + "minecraft:cherry_hanging_sign": { + "protocol_id": 238 + }, + "minecraft:cherry_leaves": { + "protocol_id": 93 + }, + "minecraft:cherry_log": { + "protocol_id": 54 + }, + "minecraft:cherry_planks": { + "protocol_id": 18 + }, + "minecraft:cherry_pressure_plate": { + "protocol_id": 266 + }, + "minecraft:cherry_sapling": { + "protocol_id": 30 + }, + "minecraft:cherry_shelf": { + "protocol_id": 183 + }, + "minecraft:cherry_sign": { + "protocol_id": 214 + }, + "minecraft:cherry_slab": { + "protocol_id": 604 + }, + "minecraft:cherry_stairs": { + "protocol_id": 517 + }, + "minecraft:cherry_trapdoor": { + "protocol_id": 321 + }, + "minecraft:cherry_wall_hanging_sign": { + "protocol_id": 250 + }, + "minecraft:cherry_wall_sign": { + "protocol_id": 228 + }, + "minecraft:cherry_wood": { + "protocol_id": 76 + }, + "minecraft:chest": { + "protocol_id": 201 + }, + "minecraft:chipped_anvil": { + "protocol_id": 468 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 179 + }, + "minecraft:chiseled_cinnabar": { + "protocol_id": 1024 + }, + "minecraft:chiseled_copper": { + "protocol_id": 1052 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 1168 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 941 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 931 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 479 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 596 + }, + "minecraft:chiseled_resin_bricks": { + "protocol_id": 380 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 107 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 329 + }, + "minecraft:chiseled_sulfur": { + "protocol_id": 1011 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 992 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 997 + }, + "minecraft:chorus_flower": { + "protocol_id": 657 + }, + "minecraft:chorus_plant": { + "protocol_id": 656 + }, + "minecraft:cinnabar": { + "protocol_id": 1012 + }, + "minecraft:cinnabar_brick_slab": { + "protocol_id": 1021 + }, + "minecraft:cinnabar_brick_stairs": { + "protocol_id": 1022 + }, + "minecraft:cinnabar_brick_wall": { + "protocol_id": 1023 + }, + "minecraft:cinnabar_bricks": { + "protocol_id": 1020 + }, + "minecraft:cinnabar_slab": { + "protocol_id": 1013 + }, + "minecraft:cinnabar_stairs": { + "protocol_id": 1014 + }, + "minecraft:cinnabar_wall": { + "protocol_id": 1015 + }, + "minecraft:clay": { + "protocol_id": 281 + }, + "minecraft:closed_eyeblossom": { + "protocol_id": 1192 + }, + "minecraft:coal_block": { + "protocol_id": 555 + }, + "minecraft:coal_ore": { + "protocol_id": 46 + }, + "minecraft:coarse_dirt": { + "protocol_id": 10 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 1152 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 1154 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 1153 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 1155 + }, + "minecraft:cobblestone": { + "protocol_id": 12 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 615 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 223 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 409 + }, + "minecraft:cobweb": { + "protocol_id": 129 + }, + "minecraft:cocoa": { + "protocol_id": 396 + }, + "minecraft:command_block": { + "protocol_id": 407 + }, + "minecraft:comparator": { + "protocol_id": 473 + }, + "minecraft:composter": { + "protocol_id": 909 + }, + "minecraft:conduit": { + "protocol_id": 790 + }, + "minecraft:copper_bars": { + "protocol_id": 342 + }, + "minecraft:copper_block": { + "protocol_id": 1034 + }, + "minecraft:copper_bulb": { + "protocol_id": 1100 + }, + "minecraft:copper_chain": { + "protocol_id": 351 + }, + "minecraft:copper_chest": { + "protocol_id": 1108 + }, + "minecraft:copper_door": { + "protocol_id": 1076 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 1116 + }, + "minecraft:copper_grate": { + "protocol_id": 1092 + }, + "minecraft:copper_lantern": { + "protocol_id": 851 + }, + "minecraft:copper_ore": { + "protocol_id": 1042 + }, + "minecraft:copper_torch": { + "protocol_id": 292 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 1084 + }, + "minecraft:copper_wall_torch": { + "protocol_id": 293 + }, + "minecraft:cornflower": { + "protocol_id": 169 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 1169 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 1170 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 942 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 930 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 328 + }, + "minecraft:crafter": { + "protocol_id": 1184 + }, + "minecraft:crafting_table": { + "protocol_id": 206 + }, + "minecraft:creaking_heart": { + "protocol_id": 199 + }, + "minecraft:creeper_head": { + "protocol_id": 461 + }, + "minecraft:creeper_wall_head": { + "protocol_id": 462 + }, + "minecraft:crimson_button": { + "protocol_id": 897 + }, + "minecraft:crimson_door": { + "protocol_id": 899 + }, + "minecraft:crimson_fence": { + "protocol_id": 889 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 893 + }, + "minecraft:crimson_fungus": { + "protocol_id": 876 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 242 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 873 + }, + "minecraft:crimson_nylium": { + "protocol_id": 875 + }, + "minecraft:crimson_planks": { + "protocol_id": 883 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 887 + }, + "minecraft:crimson_roots": { + "protocol_id": 882 + }, + "minecraft:crimson_shelf": { + "protocol_id": 184 + }, + "minecraft:crimson_sign": { + "protocol_id": 901 + }, + "minecraft:crimson_slab": { + "protocol_id": 885 + }, + "minecraft:crimson_stairs": { + "protocol_id": 895 + }, + "minecraft:crimson_stem": { + "protocol_id": 871 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 891 + }, + "minecraft:crimson_wall_hanging_sign": { + "protocol_id": 255 + }, + "minecraft:crimson_wall_sign": { + "protocol_id": 903 + }, + "minecraft:crying_obsidian": { + "protocol_id": 917 + }, + "minecraft:cut_copper": { + "protocol_id": 1044 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 1068 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 1060 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 597 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 622 + }, + "minecraft:cut_sandstone": { + "protocol_id": 108 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 613 + }, + "minecraft:cyan_banner": { + "protocol_id": 572 + }, + "minecraft:cyan_bed": { + "protocol_id": 119 + }, + "minecraft:cyan_candle": { + "protocol_id": 954 + }, + "minecraft:cyan_candle_cake": { + "protocol_id": 971 + }, + "minecraft:cyan_carpet": { + "protocol_id": 547 + }, + "minecraft:cyan_concrete": { + "protocol_id": 719 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 735 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 703 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 687 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 309 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 509 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 493 + }, + "minecraft:cyan_wall_banner": { + "protocol_id": 588 + }, + "minecraft:cyan_wool": { + "protocol_id": 149 + }, + "minecraft:damaged_anvil": { + "protocol_id": 469 + }, + "minecraft:dandelion": { + "protocol_id": 157 + }, + "minecraft:dark_oak_button": { + "protocol_id": 449 + }, + "minecraft:dark_oak_door": { + "protocol_id": 651 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 642 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 633 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 240 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 94 + }, + "minecraft:dark_oak_log": { + "protocol_id": 55 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 19 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 267 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 31 + }, + "minecraft:dark_oak_shelf": { + "protocol_id": 185 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 216 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 605 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 518 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 322 + }, + "minecraft:dark_oak_wall_hanging_sign": { + "protocol_id": 252 + }, + "minecraft:dark_oak_wall_sign": { + "protocol_id": 230 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 77 + }, + "minecraft:dark_prismarine": { + "protocol_id": 529 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 535 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 532 + }, + "minecraft:daylight_detector": { + "protocol_id": 474 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 759 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 749 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 769 + }, + "minecraft:dead_brain_coral_wall_fan": { + "protocol_id": 779 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 760 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 750 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 770 + }, + "minecraft:dead_bubble_coral_wall_fan": { + "protocol_id": 780 + }, + "minecraft:dead_bush": { + "protocol_id": 132 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 761 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 751 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 771 + }, + "minecraft:dead_fire_coral_wall_fan": { + "protocol_id": 781 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 762 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 752 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 772 + }, + "minecraft:dead_horn_coral_wall_fan": { + "protocol_id": 782 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 758 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 748 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 768 + }, + "minecraft:dead_tube_coral_wall_fan": { + "protocol_id": 778 + }, + "minecraft:decorated_pot": { + "protocol_id": 1183 + }, + "minecraft:deepslate": { + "protocol_id": 1151 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 1166 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 1165 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 1167 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 1164 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 47 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 1043 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 204 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 399 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 43 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 45 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 103 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 272 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 1162 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 1161 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 1163 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 1160 + }, + "minecraft:detector_rail": { + "protocol_id": 127 + }, + "minecraft:diamond_block": { + "protocol_id": 205 + }, + "minecraft:diamond_ore": { + "protocol_id": 203 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 823 + }, + "minecraft:diorite_stairs": { + "protocol_id": 810 + }, + "minecraft:diorite_wall": { + "protocol_id": 836 + }, + "minecraft:dirt": { + "protocol_id": 9 + }, + "minecraft:dirt_path": { + "protocol_id": 666 + }, + "minecraft:dispenser": { + "protocol_id": 105 + }, + "minecraft:dragon_egg": { + "protocol_id": 394 + }, + "minecraft:dragon_head": { + "protocol_id": 463 + }, + "minecraft:dragon_wall_head": { + "protocol_id": 464 + }, + "minecraft:dried_ghast": { + "protocol_id": 747 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 744 + }, + "minecraft:dripstone_block": { + "protocol_id": 1132 + }, + "minecraft:dropper": { + "protocol_id": 483 + }, + "minecraft:emerald_block": { + "protocol_id": 403 + }, + "minecraft:emerald_ore": { + "protocol_id": 398 + }, + "minecraft:enchanting_table": { + "protocol_id": 385 + }, + "minecraft:end_gateway": { + "protocol_id": 667 + }, + "minecraft:end_portal": { + "protocol_id": 391 + }, + "minecraft:end_portal_frame": { + "protocol_id": 392 + }, + "minecraft:end_rod": { + "protocol_id": 655 + }, + "minecraft:end_stone": { + "protocol_id": 393 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 816 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 802 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 835 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 661 + }, + "minecraft:ender_chest": { + "protocol_id": 400 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 1053 + }, + "minecraft:exposed_copper": { + "protocol_id": 1035 + }, + "minecraft:exposed_copper_bars": { + "protocol_id": 343 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1101 + }, + "minecraft:exposed_copper_chain": { + "protocol_id": 352 + }, + "minecraft:exposed_copper_chest": { + "protocol_id": 1109 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 1077 + }, + "minecraft:exposed_copper_golem_statue": { + "protocol_id": 1117 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1093 + }, + "minecraft:exposed_copper_lantern": { + "protocol_id": 852 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 1085 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 1045 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 1069 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 1061 + }, + "minecraft:exposed_lightning_rod": { + "protocol_id": 1125 + }, + "minecraft:farmland": { + "protocol_id": 208 + }, + "minecraft:fern": { + "protocol_id": 131 + }, + "minecraft:fire": { + "protocol_id": 196 + }, + "minecraft:fire_coral": { + "protocol_id": 766 + }, + "minecraft:fire_coral_block": { + "protocol_id": 756 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 776 + }, + "minecraft:fire_coral_wall_fan": { + "protocol_id": 786 + }, + "minecraft:firefly_bush": { + "protocol_id": 1195 + }, + "minecraft:fletching_table": { + "protocol_id": 843 + }, + "minecraft:flower_pot": { + "protocol_id": 411 + }, + "minecraft:flowering_azalea": { + "protocol_id": 1139 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 98 + }, + "minecraft:frogspawn": { + "protocol_id": 1181 + }, + "minecraft:frosted_ice": { + "protocol_id": 670 + }, + "minecraft:furnace": { + "protocol_id": 209 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 935 + }, + "minecraft:glass": { + "protocol_id": 101 + }, + "minecraft:glass_pane": { + "protocol_id": 359 + }, + "minecraft:glow_lichen": { + "protocol_id": 367 + }, + "minecraft:glowstone": { + "protocol_id": 294 + }, + "minecraft:gold_block": { + "protocol_id": 174 + }, + "minecraft:gold_ore": { + "protocol_id": 42 + }, + "minecraft:golden_dandelion": { + "protocol_id": 158 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 819 + }, + "minecraft:granite_stairs": { + "protocol_id": 806 + }, + "minecraft:granite_wall": { + "protocol_id": 828 + }, + "minecraft:grass_block": { + "protocol_id": 8 + }, + "minecraft:gravel": { + "protocol_id": 40 + }, + "minecraft:gray_banner": { + "protocol_id": 570 + }, + "minecraft:gray_bed": { + "protocol_id": 117 + }, + "minecraft:gray_candle": { + "protocol_id": 952 + }, + "minecraft:gray_candle_cake": { + "protocol_id": 969 + }, + "minecraft:gray_carpet": { + "protocol_id": 545 + }, + "minecraft:gray_concrete": { + "protocol_id": 717 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 733 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 701 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 685 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 307 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 507 + }, + "minecraft:gray_terracotta": { + "protocol_id": 491 + }, + "minecraft:gray_wall_banner": { + "protocol_id": 586 + }, + "minecraft:gray_wool": { + "protocol_id": 147 + }, + "minecraft:green_banner": { + "protocol_id": 576 + }, + "minecraft:green_bed": { + "protocol_id": 123 + }, + "minecraft:green_candle": { + "protocol_id": 958 + }, + "minecraft:green_candle_cake": { + "protocol_id": 975 + }, + "minecraft:green_carpet": { + "protocol_id": 551 + }, + "minecraft:green_concrete": { + "protocol_id": 723 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 739 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 707 + }, + "minecraft:green_shulker_box": { + "protocol_id": 691 + }, + "minecraft:green_stained_glass": { + "protocol_id": 313 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 513 + }, + "minecraft:green_terracotta": { + "protocol_id": 497 + }, + "minecraft:green_wall_banner": { + "protocol_id": 592 + }, + "minecraft:green_wool": { + "protocol_id": 153 + }, + "minecraft:grindstone": { + "protocol_id": 844 + }, + "minecraft:hanging_roots": { + "protocol_id": 1148 + }, + "minecraft:hay_block": { + "protocol_id": 537 + }, + "minecraft:heavy_core": { + "protocol_id": 1187 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 472 + }, + "minecraft:honey_block": { + "protocol_id": 913 + }, + "minecraft:honeycomb_block": { + "protocol_id": 914 + }, + "minecraft:hopper": { + "protocol_id": 477 + }, + "minecraft:horn_coral": { + "protocol_id": 767 + }, + "minecraft:horn_coral_block": { + "protocol_id": 757 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 777 + }, + "minecraft:horn_coral_wall_fan": { + "protocol_id": 787 + }, + "minecraft:ice": { + "protocol_id": 277 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 337 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 333 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 336 + }, + "minecraft:infested_deepslate": { + "protocol_id": 1171 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 335 + }, + "minecraft:infested_stone": { + "protocol_id": 332 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 334 + }, + "minecraft:iron_bars": { + "protocol_id": 341 + }, + "minecraft:iron_block": { + "protocol_id": 175 + }, + "minecraft:iron_chain": { + "protocol_id": 350 + }, + "minecraft:iron_door": { + "protocol_id": 260 + }, + "minecraft:iron_ore": { + "protocol_id": 44 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 526 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 297 + }, + "minecraft:jigsaw": { + "protocol_id": 906 + }, + "minecraft:jukebox": { + "protocol_id": 283 + }, + "minecraft:jungle_button": { + "protocol_id": 446 + }, + "minecraft:jungle_door": { + "protocol_id": 648 + }, + "minecraft:jungle_fence": { + "protocol_id": 639 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 630 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 239 + }, + "minecraft:jungle_leaves": { + "protocol_id": 91 + }, + "minecraft:jungle_log": { + "protocol_id": 52 + }, + "minecraft:jungle_planks": { + "protocol_id": 16 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 264 + }, + "minecraft:jungle_sapling": { + "protocol_id": 28 + }, + "minecraft:jungle_shelf": { + "protocol_id": 186 + }, + "minecraft:jungle_sign": { + "protocol_id": 215 + }, + "minecraft:jungle_slab": { + "protocol_id": 602 + }, + "minecraft:jungle_stairs": { + "protocol_id": 406 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 319 + }, + "minecraft:jungle_wall_hanging_sign": { + "protocol_id": 251 + }, + "minecraft:jungle_wall_sign": { + "protocol_id": 229 + }, + "minecraft:jungle_wood": { + "protocol_id": 74 + }, + "minecraft:kelp": { + "protocol_id": 742 + }, + "minecraft:kelp_plant": { + "protocol_id": 743 + }, + "minecraft:ladder": { + "protocol_id": 221 + }, + "minecraft:lantern": { + "protocol_id": 849 + }, + "minecraft:lapis_block": { + "protocol_id": 104 + }, + "minecraft:lapis_ore": { + "protocol_id": 102 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 981 + }, + "minecraft:large_fern": { + "protocol_id": 562 + }, + "minecraft:lava": { + "protocol_id": 36 + }, + "minecraft:lava_cauldron": { + "protocol_id": 389 + }, + "minecraft:leaf_litter": { + "protocol_id": 1143 + }, + "minecraft:lectern": { + "protocol_id": 845 + }, + "minecraft:lever": { + "protocol_id": 258 + }, + "minecraft:light": { + "protocol_id": 525 + }, + "minecraft:light_blue_banner": { + "protocol_id": 566 + }, + "minecraft:light_blue_bed": { + "protocol_id": 113 + }, + "minecraft:light_blue_candle": { + "protocol_id": 948 + }, + "minecraft:light_blue_candle_cake": { + "protocol_id": 965 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 541 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 713 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 729 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 697 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 681 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 303 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 503 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 487 + }, + "minecraft:light_blue_wall_banner": { + "protocol_id": 582 + }, + "minecraft:light_blue_wool": { + "protocol_id": 143 + }, + "minecraft:light_gray_banner": { + "protocol_id": 571 + }, + "minecraft:light_gray_bed": { + "protocol_id": 118 + }, + "minecraft:light_gray_candle": { + "protocol_id": 953 + }, + "minecraft:light_gray_candle_cake": { + "protocol_id": 970 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 546 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 718 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 734 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 702 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 686 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 308 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 508 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 492 + }, + "minecraft:light_gray_wall_banner": { + "protocol_id": 587 + }, + "minecraft:light_gray_wool": { + "protocol_id": 148 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 471 + }, + "minecraft:lightning_rod": { + "protocol_id": 1124 + }, + "minecraft:lilac": { + "protocol_id": 558 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 171 + }, + "minecraft:lily_pad": { + "protocol_id": 374 + }, + "minecraft:lime_banner": { + "protocol_id": 568 + }, + "minecraft:lime_bed": { + "protocol_id": 115 + }, + "minecraft:lime_candle": { + "protocol_id": 950 + }, + "minecraft:lime_candle_cake": { + "protocol_id": 967 + }, + "minecraft:lime_carpet": { + "protocol_id": 543 + }, + "minecraft:lime_concrete": { + "protocol_id": 715 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 731 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 699 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 683 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 305 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 505 + }, + "minecraft:lime_terracotta": { + "protocol_id": 489 + }, + "minecraft:lime_wall_banner": { + "protocol_id": 584 + }, + "minecraft:lime_wool": { + "protocol_id": 145 + }, + "minecraft:lodestone": { + "protocol_id": 923 + }, + "minecraft:loom": { + "protocol_id": 838 + }, + "minecraft:magenta_banner": { + "protocol_id": 565 + }, + "minecraft:magenta_bed": { + "protocol_id": 112 + }, + "minecraft:magenta_candle": { + "protocol_id": 947 + }, + "minecraft:magenta_candle_cake": { + "protocol_id": 964 + }, + "minecraft:magenta_carpet": { + "protocol_id": 540 + }, + "minecraft:magenta_concrete": { + "protocol_id": 712 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 728 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 696 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 680 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 302 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 502 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 486 + }, + "minecraft:magenta_wall_banner": { + "protocol_id": 581 + }, + "minecraft:magenta_wool": { + "protocol_id": 142 + }, + "minecraft:magma_block": { + "protocol_id": 671 + }, + "minecraft:mangrove_button": { + "protocol_id": 451 + }, + "minecraft:mangrove_door": { + "protocol_id": 653 + }, + "minecraft:mangrove_fence": { + "protocol_id": 644 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 635 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 244 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 96 + }, + "minecraft:mangrove_log": { + "protocol_id": 57 + }, + "minecraft:mangrove_planks": { + "protocol_id": 22 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 269 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 33 + }, + "minecraft:mangrove_roots": { + "protocol_id": 58 + }, + "minecraft:mangrove_shelf": { + "protocol_id": 187 + }, + "minecraft:mangrove_sign": { + "protocol_id": 218 + }, + "minecraft:mangrove_slab": { + "protocol_id": 607 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 520 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 324 + }, + "minecraft:mangrove_wall_hanging_sign": { + "protocol_id": 254 + }, + "minecraft:mangrove_wall_sign": { + "protocol_id": 232 + }, + "minecraft:mangrove_wood": { + "protocol_id": 78 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 982 + }, + "minecraft:melon": { + "protocol_id": 361 + }, + "minecraft:melon_stem": { + "protocol_id": 365 + }, + "minecraft:moss_block": { + "protocol_id": 1144 + }, + "minecraft:moss_carpet": { + "protocol_id": 1140 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 192 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 815 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 801 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 410 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 813 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 799 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 827 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 327 + }, + "minecraft:moving_piston": { + "protocol_id": 156 + }, + "minecraft:mud": { + "protocol_id": 1150 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 618 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 372 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 830 + }, + "minecraft:mud_bricks": { + "protocol_id": 331 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 59 + }, + "minecraft:mushroom_stem": { + "protocol_id": 340 + }, + "minecraft:mycelium": { + "protocol_id": 373 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 382 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 619 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 383 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 831 + }, + "minecraft:nether_bricks": { + "protocol_id": 381 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 48 + }, + "minecraft:nether_portal": { + "protocol_id": 295 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 476 + }, + "minecraft:nether_sprouts": { + "protocol_id": 870 + }, + "minecraft:nether_wart": { + "protocol_id": 384 + }, + "minecraft:nether_wart_block": { + "protocol_id": 672 + }, + "minecraft:netherite_block": { + "protocol_id": 915 + }, + "minecraft:netherrack": { + "protocol_id": 285 + }, + "minecraft:note_block": { + "protocol_id": 109 + }, + "minecraft:oak_button": { + "protocol_id": 443 + }, + "minecraft:oak_door": { + "protocol_id": 220 + }, + "minecraft:oak_fence": { + "protocol_id": 284 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 369 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 234 + }, + "minecraft:oak_leaves": { + "protocol_id": 88 + }, + "minecraft:oak_log": { + "protocol_id": 49 + }, + "minecraft:oak_planks": { + "protocol_id": 13 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 261 + }, + "minecraft:oak_sapling": { + "protocol_id": 25 + }, + "minecraft:oak_shelf": { + "protocol_id": 188 + }, + "minecraft:oak_sign": { + "protocol_id": 210 + }, + "minecraft:oak_slab": { + "protocol_id": 599 + }, + "minecraft:oak_stairs": { + "protocol_id": 200 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 316 + }, + "minecraft:oak_wall_hanging_sign": { + "protocol_id": 246 + }, + "minecraft:oak_wall_sign": { + "protocol_id": 224 + }, + "minecraft:oak_wood": { + "protocol_id": 71 + }, + "minecraft:observer": { + "protocol_id": 676 + }, + "minecraft:obsidian": { + "protocol_id": 193 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1178 + }, + "minecraft:open_eyeblossom": { + "protocol_id": 1191 + }, + "minecraft:orange_banner": { + "protocol_id": 564 + }, + "minecraft:orange_bed": { + "protocol_id": 111 + }, + "minecraft:orange_candle": { + "protocol_id": 946 + }, + "minecraft:orange_candle_cake": { + "protocol_id": 963 + }, + "minecraft:orange_carpet": { + "protocol_id": 539 + }, + "minecraft:orange_concrete": { + "protocol_id": 711 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 727 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 695 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 679 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 301 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 501 + }, + "minecraft:orange_terracotta": { + "protocol_id": 485 + }, + "minecraft:orange_tulip": { + "protocol_id": 165 + }, + "minecraft:orange_wall_banner": { + "protocol_id": 580 + }, + "minecraft:orange_wool": { + "protocol_id": 141 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 168 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 1055 + }, + "minecraft:oxidized_copper": { + "protocol_id": 1037 + }, + "minecraft:oxidized_copper_bars": { + "protocol_id": 345 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1103 + }, + "minecraft:oxidized_copper_chain": { + "protocol_id": 354 + }, + "minecraft:oxidized_copper_chest": { + "protocol_id": 1111 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 1079 + }, + "minecraft:oxidized_copper_golem_statue": { + "protocol_id": 1119 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1095 + }, + "minecraft:oxidized_copper_lantern": { + "protocol_id": 854 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 1087 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 1047 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 1071 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 1063 + }, + "minecraft:oxidized_lightning_rod": { + "protocol_id": 1127 + }, + "minecraft:packed_ice": { + "protocol_id": 556 + }, + "minecraft:packed_mud": { + "protocol_id": 330 + }, + "minecraft:pale_hanging_moss": { + "protocol_id": 1190 + }, + "minecraft:pale_moss_block": { + "protocol_id": 1188 + }, + "minecraft:pale_moss_carpet": { + "protocol_id": 1189 + }, + "minecraft:pale_oak_button": { + "protocol_id": 450 + }, + "minecraft:pale_oak_door": { + "protocol_id": 652 + }, + "minecraft:pale_oak_fence": { + "protocol_id": 643 + }, + "minecraft:pale_oak_fence_gate": { + "protocol_id": 634 + }, + "minecraft:pale_oak_hanging_sign": { + "protocol_id": 241 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 95 + }, + "minecraft:pale_oak_log": { + "protocol_id": 56 + }, + "minecraft:pale_oak_planks": { + "protocol_id": 21 + }, + "minecraft:pale_oak_pressure_plate": { + "protocol_id": 268 + }, + "minecraft:pale_oak_sapling": { + "protocol_id": 32 + }, + "minecraft:pale_oak_shelf": { + "protocol_id": 189 + }, + "minecraft:pale_oak_sign": { + "protocol_id": 217 + }, + "minecraft:pale_oak_slab": { + "protocol_id": 606 + }, + "minecraft:pale_oak_stairs": { + "protocol_id": 519 + }, + "minecraft:pale_oak_trapdoor": { + "protocol_id": 323 + }, + "minecraft:pale_oak_wall_hanging_sign": { + "protocol_id": 253 + }, + "minecraft:pale_oak_wall_sign": { + "protocol_id": 231 + }, + "minecraft:pale_oak_wood": { + "protocol_id": 20 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1180 + }, + "minecraft:peony": { + "protocol_id": 560 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 614 + }, + "minecraft:piglin_head": { + "protocol_id": 465 + }, + "minecraft:piglin_wall_head": { + "protocol_id": 466 + }, + "minecraft:pink_banner": { + "protocol_id": 569 + }, + "minecraft:pink_bed": { + "protocol_id": 116 + }, + "minecraft:pink_candle": { + "protocol_id": 951 + }, + "minecraft:pink_candle_cake": { + "protocol_id": 968 + }, + "minecraft:pink_carpet": { + "protocol_id": 544 + }, + "minecraft:pink_concrete": { + "protocol_id": 716 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 732 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 700 + }, + "minecraft:pink_petals": { + "protocol_id": 1141 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 684 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 306 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 506 + }, + "minecraft:pink_terracotta": { + "protocol_id": 490 + }, + "minecraft:pink_tulip": { + "protocol_id": 167 + }, + "minecraft:pink_wall_banner": { + "protocol_id": 585 + }, + "minecraft:pink_wool": { + "protocol_id": 146 + }, + "minecraft:piston": { + "protocol_id": 138 + }, + "minecraft:piston_head": { + "protocol_id": 139 + }, + "minecraft:pitcher_crop": { + "protocol_id": 663 + }, + "minecraft:pitcher_plant": { + "protocol_id": 664 + }, + "minecraft:player_head": { + "protocol_id": 459 + }, + "minecraft:player_wall_head": { + "protocol_id": 460 + }, + "minecraft:podzol": { + "protocol_id": 11 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1133 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 822 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 809 + }, + "minecraft:polished_basalt": { + "protocol_id": 289 + }, + "minecraft:polished_blackstone": { + "protocol_id": 928 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 932 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 933 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 934 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 929 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 939 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 938 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 937 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 936 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 940 + }, + "minecraft:polished_cinnabar": { + "protocol_id": 1016 + }, + "minecraft:polished_cinnabar_slab": { + "protocol_id": 1017 + }, + "minecraft:polished_cinnabar_stairs": { + "protocol_id": 1018 + }, + "minecraft:polished_cinnabar_wall": { + "protocol_id": 1019 + }, + "minecraft:polished_deepslate": { + "protocol_id": 1156 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 1158 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 1157 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 1159 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 814 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 800 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 811 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 797 + }, + "minecraft:polished_sulfur": { + "protocol_id": 1003 + }, + "minecraft:polished_sulfur_slab": { + "protocol_id": 1004 + }, + "minecraft:polished_sulfur_stairs": { + "protocol_id": 1005 + }, + "minecraft:polished_sulfur_wall": { + "protocol_id": 1006 + }, + "minecraft:polished_tuff": { + "protocol_id": 988 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 989 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 990 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 991 + }, + "minecraft:poppy": { + "protocol_id": 160 + }, + "minecraft:potatoes": { + "protocol_id": 442 + }, + "minecraft:potent_sulfur": { + "protocol_id": 999 + }, + "minecraft:potted_acacia_sapling": { + "protocol_id": 417 + }, + "minecraft:potted_allium": { + "protocol_id": 427 + }, + "minecraft:potted_azalea_bush": { + "protocol_id": 1176 + }, + "minecraft:potted_azure_bluet": { + "protocol_id": 428 + }, + "minecraft:potted_bamboo": { + "protocol_id": 793 + }, + "minecraft:potted_birch_sapling": { + "protocol_id": 415 + }, + "minecraft:potted_blue_orchid": { + "protocol_id": 426 + }, + "minecraft:potted_brown_mushroom": { + "protocol_id": 438 + }, + "minecraft:potted_cactus": { + "protocol_id": 440 + }, + "minecraft:potted_cherry_sapling": { + "protocol_id": 418 + }, + "minecraft:potted_closed_eyeblossom": { + "protocol_id": 1194 + }, + "minecraft:potted_cornflower": { + "protocol_id": 434 + }, + "minecraft:potted_crimson_fungus": { + "protocol_id": 919 + }, + "minecraft:potted_crimson_roots": { + "protocol_id": 921 + }, + "minecraft:potted_dandelion": { + "protocol_id": 423 + }, + "minecraft:potted_dark_oak_sapling": { + "protocol_id": 419 + }, + "minecraft:potted_dead_bush": { + "protocol_id": 439 + }, + "minecraft:potted_fern": { + "protocol_id": 422 + }, + "minecraft:potted_flowering_azalea_bush": { + "protocol_id": 1177 + }, + "minecraft:potted_golden_dandelion": { + "protocol_id": 424 + }, + "minecraft:potted_jungle_sapling": { + "protocol_id": 416 + }, + "minecraft:potted_lily_of_the_valley": { + "protocol_id": 435 + }, + "minecraft:potted_mangrove_propagule": { + "protocol_id": 421 + }, + "minecraft:potted_oak_sapling": { + "protocol_id": 413 + }, + "minecraft:potted_open_eyeblossom": { + "protocol_id": 1193 + }, + "minecraft:potted_orange_tulip": { + "protocol_id": 430 + }, + "minecraft:potted_oxeye_daisy": { + "protocol_id": 433 + }, + "minecraft:potted_pale_oak_sapling": { + "protocol_id": 420 + }, + "minecraft:potted_pink_tulip": { + "protocol_id": 432 + }, + "minecraft:potted_poppy": { + "protocol_id": 425 + }, + "minecraft:potted_red_mushroom": { + "protocol_id": 437 + }, + "minecraft:potted_red_tulip": { + "protocol_id": 429 + }, + "minecraft:potted_spruce_sapling": { + "protocol_id": 414 + }, + "minecraft:potted_torchflower": { + "protocol_id": 412 + }, + "minecraft:potted_warped_fungus": { + "protocol_id": 920 + }, + "minecraft:potted_warped_roots": { + "protocol_id": 922 + }, + "minecraft:potted_white_tulip": { + "protocol_id": 431 + }, + "minecraft:potted_wither_rose": { + "protocol_id": 436 + }, + "minecraft:powder_snow": { + "protocol_id": 1027 + }, + "minecraft:powder_snow_cauldron": { + "protocol_id": 390 + }, + "minecraft:powered_rail": { + "protocol_id": 126 + }, + "minecraft:prismarine": { + "protocol_id": 527 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 534 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 531 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 528 + }, + "minecraft:prismarine_slab": { + "protocol_id": 533 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 530 + }, + "minecraft:prismarine_wall": { + "protocol_id": 825 + }, + "minecraft:pumpkin": { + "protocol_id": 360 + }, + "minecraft:pumpkin_stem": { + "protocol_id": 364 + }, + "minecraft:purple_banner": { + "protocol_id": 573 + }, + "minecraft:purple_bed": { + "protocol_id": 120 + }, + "minecraft:purple_candle": { + "protocol_id": 955 + }, + "minecraft:purple_candle_cake": { + "protocol_id": 972 + }, + "minecraft:purple_carpet": { + "protocol_id": 548 + }, + "minecraft:purple_concrete": { + "protocol_id": 720 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 736 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 704 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 688 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 310 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 510 + }, + "minecraft:purple_terracotta": { + "protocol_id": 494 + }, + "minecraft:purple_wall_banner": { + "protocol_id": 589 + }, + "minecraft:purple_wool": { + "protocol_id": 150 + }, + "minecraft:purpur_block": { + "protocol_id": 658 + }, + "minecraft:purpur_pillar": { + "protocol_id": 659 + }, + "minecraft:purpur_slab": { + "protocol_id": 623 + }, + "minecraft:purpur_stairs": { + "protocol_id": 660 + }, + "minecraft:quartz_block": { + "protocol_id": 478 + }, + "minecraft:quartz_bricks": { + "protocol_id": 943 + }, + "minecraft:quartz_pillar": { + "protocol_id": 480 + }, + "minecraft:quartz_slab": { + "protocol_id": 620 + }, + "minecraft:quartz_stairs": { + "protocol_id": 481 + }, + "minecraft:rail": { + "protocol_id": 222 + }, + "minecraft:raw_copper_block": { + "protocol_id": 1174 + }, + "minecraft:raw_gold_block": { + "protocol_id": 1175 + }, + "minecraft:raw_iron_block": { + "protocol_id": 1173 + }, + "minecraft:red_banner": { + "protocol_id": 577 + }, + "minecraft:red_bed": { + "protocol_id": 124 + }, + "minecraft:red_candle": { + "protocol_id": 959 + }, + "minecraft:red_candle_cake": { + "protocol_id": 976 + }, + "minecraft:red_carpet": { + "protocol_id": 552 + }, + "minecraft:red_concrete": { + "protocol_id": 724 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 740 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 708 + }, + "minecraft:red_mushroom": { + "protocol_id": 173 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 339 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 821 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 808 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 833 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 673 + }, + "minecraft:red_sand": { + "protocol_id": 39 + }, + "minecraft:red_sandstone": { + "protocol_id": 595 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 621 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 598 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 826 + }, + "minecraft:red_shulker_box": { + "protocol_id": 692 + }, + "minecraft:red_stained_glass": { + "protocol_id": 314 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 514 + }, + "minecraft:red_terracotta": { + "protocol_id": 498 + }, + "minecraft:red_tulip": { + "protocol_id": 164 + }, + "minecraft:red_wall_banner": { + "protocol_id": 593 + }, + "minecraft:red_wool": { + "protocol_id": 154 + }, + "minecraft:redstone_block": { + "protocol_id": 475 + }, + "minecraft:redstone_lamp": { + "protocol_id": 395 + }, + "minecraft:redstone_ore": { + "protocol_id": 271 + }, + "minecraft:redstone_torch": { + "protocol_id": 273 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 274 + }, + "minecraft:redstone_wire": { + "protocol_id": 202 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 1182 + }, + "minecraft:repeater": { + "protocol_id": 299 + }, + "minecraft:repeating_command_block": { + "protocol_id": 668 + }, + "minecraft:resin_block": { + "protocol_id": 375 + }, + "minecraft:resin_brick_slab": { + "protocol_id": 378 + }, + "minecraft:resin_brick_stairs": { + "protocol_id": 377 + }, + "minecraft:resin_brick_wall": { + "protocol_id": 379 + }, + "minecraft:resin_bricks": { + "protocol_id": 376 + }, + "minecraft:resin_clump": { + "protocol_id": 368 + }, + "minecraft:respawn_anchor": { + "protocol_id": 918 + }, + "minecraft:rooted_dirt": { + "protocol_id": 1149 + }, + "minecraft:rose_bush": { + "protocol_id": 559 + }, + "minecraft:sand": { + "protocol_id": 37 + }, + "minecraft:sandstone": { + "protocol_id": 106 + }, + "minecraft:sandstone_slab": { + "protocol_id": 612 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 397 + }, + "minecraft:sandstone_wall": { + "protocol_id": 834 + }, + "minecraft:scaffolding": { + "protocol_id": 837 + }, + "minecraft:sculk": { + "protocol_id": 1030 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 1032 + }, + "minecraft:sculk_sensor": { + "protocol_id": 1028 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 1033 + }, + "minecraft:sculk_vein": { + "protocol_id": 1031 + }, + "minecraft:sea_lantern": { + "protocol_id": 536 + }, + "minecraft:sea_pickle": { + "protocol_id": 788 + }, + "minecraft:seagrass": { + "protocol_id": 136 + }, + "minecraft:short_dry_grass": { + "protocol_id": 134 + }, + "minecraft:short_grass": { + "protocol_id": 130 + }, + "minecraft:shroomlight": { + "protocol_id": 877 + }, + "minecraft:shulker_box": { + "protocol_id": 677 + }, + "minecraft:skeleton_skull": { + "protocol_id": 453 + }, + "minecraft:skeleton_wall_skull": { + "protocol_id": 454 + }, + "minecraft:slime_block": { + "protocol_id": 523 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 983 + }, + "minecraft:small_dripleaf": { + "protocol_id": 1147 + }, + "minecraft:smithing_table": { + "protocol_id": 846 + }, + "minecraft:smoker": { + "protocol_id": 840 + }, + "minecraft:smooth_basalt": { + "protocol_id": 1172 + }, + "minecraft:smooth_quartz": { + "protocol_id": 626 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 818 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 805 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 627 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 812 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 798 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 625 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 817 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 804 + }, + "minecraft:smooth_stone": { + "protocol_id": 624 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 611 + }, + "minecraft:sniffer_egg": { + "protocol_id": 746 + }, + "minecraft:snow": { + "protocol_id": 276 + }, + "minecraft:snow_block": { + "protocol_id": 278 + }, + "minecraft:soul_campfire": { + "protocol_id": 860 + }, + "minecraft:soul_fire": { + "protocol_id": 197 + }, + "minecraft:soul_lantern": { + "protocol_id": 850 + }, + "minecraft:soul_sand": { + "protocol_id": 286 + }, + "minecraft:soul_soil": { + "protocol_id": 287 + }, + "minecraft:soul_torch": { + "protocol_id": 290 + }, + "minecraft:soul_wall_torch": { + "protocol_id": 291 + }, + "minecraft:spawner": { + "protocol_id": 198 + }, + "minecraft:sponge": { + "protocol_id": 99 + }, + "minecraft:spore_blossom": { + "protocol_id": 1137 + }, + "minecraft:spruce_button": { + "protocol_id": 444 + }, + "minecraft:spruce_door": { + "protocol_id": 646 + }, + "minecraft:spruce_fence": { + "protocol_id": 637 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 628 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 235 + }, + "minecraft:spruce_leaves": { + "protocol_id": 89 + }, + "minecraft:spruce_log": { + "protocol_id": 50 + }, + "minecraft:spruce_planks": { + "protocol_id": 14 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 262 + }, + "minecraft:spruce_sapling": { + "protocol_id": 26 + }, + "minecraft:spruce_shelf": { + "protocol_id": 190 + }, + "minecraft:spruce_sign": { + "protocol_id": 211 + }, + "minecraft:spruce_slab": { + "protocol_id": 600 + }, + "minecraft:spruce_stairs": { + "protocol_id": 404 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 317 + }, + "minecraft:spruce_wall_hanging_sign": { + "protocol_id": 247 + }, + "minecraft:spruce_wall_sign": { + "protocol_id": 225 + }, + "minecraft:spruce_wood": { + "protocol_id": 72 + }, + "minecraft:sticky_piston": { + "protocol_id": 128 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 617 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 371 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 829 + }, + "minecraft:stone_bricks": { + "protocol_id": 326 + }, + "minecraft:stone_button": { + "protocol_id": 275 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 259 + }, + "minecraft:stone_slab": { + "protocol_id": 610 + }, + "minecraft:stone_stairs": { + "protocol_id": 803 + }, + "minecraft:stonecutter": { + "protocol_id": 847 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 64 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 83 + }, + "minecraft:stripped_bamboo_block": { + "protocol_id": 70 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 62 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 81 + }, + "minecraft:stripped_cherry_log": { + "protocol_id": 65 + }, + "minecraft:stripped_cherry_wood": { + "protocol_id": 84 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 874 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 872 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 66 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 85 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 63 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 82 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 69 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 87 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 68 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 79 + }, + "minecraft:stripped_pale_oak_log": { + "protocol_id": 67 + }, + "minecraft:stripped_pale_oak_wood": { + "protocol_id": 86 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 61 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 80 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 865 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 863 + }, + "minecraft:structure_block": { + "protocol_id": 905 + }, + "minecraft:structure_void": { + "protocol_id": 675 + }, + "minecraft:sugar_cane": { + "protocol_id": 282 + }, + "minecraft:sulfur": { + "protocol_id": 998 + }, + "minecraft:sulfur_brick_slab": { + "protocol_id": 1008 + }, + "minecraft:sulfur_brick_stairs": { + "protocol_id": 1009 + }, + "minecraft:sulfur_brick_wall": { + "protocol_id": 1010 + }, + "minecraft:sulfur_bricks": { + "protocol_id": 1007 + }, + "minecraft:sulfur_slab": { + "protocol_id": 1000 + }, + "minecraft:sulfur_spike": { + "protocol_id": 1134 + }, + "minecraft:sulfur_stairs": { + "protocol_id": 1001 + }, + "minecraft:sulfur_wall": { + "protocol_id": 1002 + }, + "minecraft:sunflower": { + "protocol_id": 557 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 41 + }, + "minecraft:suspicious_sand": { + "protocol_id": 38 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 861 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 135 + }, + "minecraft:tall_grass": { + "protocol_id": 561 + }, + "minecraft:tall_seagrass": { + "protocol_id": 137 + }, + "minecraft:target": { + "protocol_id": 910 + }, + "minecraft:terracotta": { + "protocol_id": 554 + }, + "minecraft:test_block": { + "protocol_id": 907 + }, + "minecraft:test_instance_block": { + "protocol_id": 908 + }, + "minecraft:tinted_glass": { + "protocol_id": 1026 + }, + "minecraft:tnt": { + "protocol_id": 177 + }, + "minecraft:torch": { + "protocol_id": 194 + }, + "minecraft:torchflower": { + "protocol_id": 159 + }, + "minecraft:torchflower_crop": { + "protocol_id": 662 + }, + "minecraft:trapped_chest": { + "protocol_id": 470 + }, + "minecraft:trial_spawner": { + "protocol_id": 1185 + }, + "minecraft:tripwire": { + "protocol_id": 402 + }, + "minecraft:tripwire_hook": { + "protocol_id": 401 + }, + "minecraft:tube_coral": { + "protocol_id": 763 + }, + "minecraft:tube_coral_block": { + "protocol_id": 753 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 773 + }, + "minecraft:tube_coral_wall_fan": { + "protocol_id": 783 + }, + "minecraft:tuff": { + "protocol_id": 984 + }, + "minecraft:tuff_brick_slab": { + "protocol_id": 994 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 995 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 996 + }, + "minecraft:tuff_bricks": { + "protocol_id": 993 + }, + "minecraft:tuff_slab": { + "protocol_id": 985 + }, + "minecraft:tuff_stairs": { + "protocol_id": 986 + }, + "minecraft:tuff_wall": { + "protocol_id": 987 + }, + "minecraft:turtle_egg": { + "protocol_id": 745 + }, + "minecraft:twisting_vines": { + "protocol_id": 880 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 881 + }, + "minecraft:vault": { + "protocol_id": 1186 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1179 + }, + "minecraft:vine": { + "protocol_id": 366 + }, + "minecraft:void_air": { + "protocol_id": 794 + }, + "minecraft:wall_torch": { + "protocol_id": 195 + }, + "minecraft:warped_button": { + "protocol_id": 898 + }, + "minecraft:warped_door": { + "protocol_id": 900 + }, + "minecraft:warped_fence": { + "protocol_id": 890 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 894 + }, + "minecraft:warped_fungus": { + "protocol_id": 867 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 243 + }, + "minecraft:warped_hyphae": { + "protocol_id": 864 + }, + "minecraft:warped_nylium": { + "protocol_id": 866 + }, + "minecraft:warped_planks": { + "protocol_id": 884 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 888 + }, + "minecraft:warped_roots": { + "protocol_id": 869 + }, + "minecraft:warped_shelf": { + "protocol_id": 191 + }, + "minecraft:warped_sign": { + "protocol_id": 902 + }, + "minecraft:warped_slab": { + "protocol_id": 886 + }, + "minecraft:warped_stairs": { + "protocol_id": 896 + }, + "minecraft:warped_stem": { + "protocol_id": 862 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 892 + }, + "minecraft:warped_wall_hanging_sign": { + "protocol_id": 256 + }, + "minecraft:warped_wall_sign": { + "protocol_id": 904 + }, + "minecraft:warped_wart_block": { + "protocol_id": 868 + }, + "minecraft:water": { + "protocol_id": 35 + }, + "minecraft:water_cauldron": { + "protocol_id": 388 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 1056 + }, + "minecraft:waxed_copper_bars": { + "protocol_id": 346 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 1038 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1104 + }, + "minecraft:waxed_copper_chain": { + "protocol_id": 355 + }, + "minecraft:waxed_copper_chest": { + "protocol_id": 1112 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 1080 + }, + "minecraft:waxed_copper_golem_statue": { + "protocol_id": 1120 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1096 + }, + "minecraft:waxed_copper_lantern": { + "protocol_id": 855 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 1088 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 1048 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 1072 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 1064 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 1057 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 1039 + }, + "minecraft:waxed_exposed_copper_bars": { + "protocol_id": 347 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1105 + }, + "minecraft:waxed_exposed_copper_chain": { + "protocol_id": 356 + }, + "minecraft:waxed_exposed_copper_chest": { + "protocol_id": 1113 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 1081 + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "protocol_id": 1121 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1097 + }, + "minecraft:waxed_exposed_copper_lantern": { + "protocol_id": 856 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 1089 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 1049 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 1073 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 1065 + }, + "minecraft:waxed_exposed_lightning_rod": { + "protocol_id": 1129 + }, + "minecraft:waxed_lightning_rod": { + "protocol_id": 1128 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 1059 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 1041 + }, + "minecraft:waxed_oxidized_copper_bars": { + "protocol_id": 349 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1107 + }, + "minecraft:waxed_oxidized_copper_chain": { + "protocol_id": 358 + }, + "minecraft:waxed_oxidized_copper_chest": { + "protocol_id": 1115 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 1083 + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "protocol_id": 1123 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1099 + }, + "minecraft:waxed_oxidized_copper_lantern": { + "protocol_id": 858 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 1091 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 1051 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 1075 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 1067 + }, + "minecraft:waxed_oxidized_lightning_rod": { + "protocol_id": 1131 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 1058 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 1040 + }, + "minecraft:waxed_weathered_copper_bars": { + "protocol_id": 348 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1106 + }, + "minecraft:waxed_weathered_copper_chain": { + "protocol_id": 357 + }, + "minecraft:waxed_weathered_copper_chest": { + "protocol_id": 1114 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 1082 + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "protocol_id": 1122 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1098 + }, + "minecraft:waxed_weathered_copper_lantern": { + "protocol_id": 857 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 1090 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 1050 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 1074 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 1066 + }, + "minecraft:waxed_weathered_lightning_rod": { + "protocol_id": 1130 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 1054 + }, + "minecraft:weathered_copper": { + "protocol_id": 1036 + }, + "minecraft:weathered_copper_bars": { + "protocol_id": 344 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1102 + }, + "minecraft:weathered_copper_chain": { + "protocol_id": 353 + }, + "minecraft:weathered_copper_chest": { + "protocol_id": 1110 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 1078 + }, + "minecraft:weathered_copper_golem_statue": { + "protocol_id": 1118 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1094 + }, + "minecraft:weathered_copper_lantern": { + "protocol_id": 853 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 1086 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 1046 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 1070 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 1062 + }, + "minecraft:weathered_lightning_rod": { + "protocol_id": 1126 + }, + "minecraft:weeping_vines": { + "protocol_id": 878 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 879 + }, + "minecraft:wet_sponge": { + "protocol_id": 100 + }, + "minecraft:wheat": { + "protocol_id": 207 + }, + "minecraft:white_banner": { + "protocol_id": 563 + }, + "minecraft:white_bed": { + "protocol_id": 110 + }, + "minecraft:white_candle": { + "protocol_id": 945 + }, + "minecraft:white_candle_cake": { + "protocol_id": 962 + }, + "minecraft:white_carpet": { + "protocol_id": 538 + }, + "minecraft:white_concrete": { + "protocol_id": 710 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 726 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 694 + }, + "minecraft:white_shulker_box": { + "protocol_id": 678 + }, + "minecraft:white_stained_glass": { + "protocol_id": 300 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 500 + }, + "minecraft:white_terracotta": { + "protocol_id": 484 + }, + "minecraft:white_tulip": { + "protocol_id": 166 + }, + "minecraft:white_wall_banner": { + "protocol_id": 579 + }, + "minecraft:white_wool": { + "protocol_id": 140 + }, + "minecraft:wildflowers": { + "protocol_id": 1142 + }, + "minecraft:wither_rose": { + "protocol_id": 170 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 455 + }, + "minecraft:wither_skeleton_wall_skull": { + "protocol_id": 456 + }, + "minecraft:yellow_banner": { + "protocol_id": 567 + }, + "minecraft:yellow_bed": { + "protocol_id": 114 + }, + "minecraft:yellow_candle": { + "protocol_id": 949 + }, + "minecraft:yellow_candle_cake": { + "protocol_id": 966 + }, + "minecraft:yellow_carpet": { + "protocol_id": 542 + }, + "minecraft:yellow_concrete": { + "protocol_id": 714 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 730 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 698 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 682 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 304 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 504 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 488 + }, + "minecraft:yellow_wall_banner": { + "protocol_id": 583 + }, + "minecraft:yellow_wool": { + "protocol_id": 144 + }, + "minecraft:zombie_head": { + "protocol_id": 457 + }, + "minecraft:zombie_wall_head": { + "protocol_id": 458 + } + }, + "protocol_id": 4 + }, + "minecraft:block_entity_type": { + "entries": { + "minecraft:banner": { + "protocol_id": 20 + }, + "minecraft:barrel": { + "protocol_id": 26 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:beehive": { + "protocol_id": 33 + }, + "minecraft:bell": { + "protocol_id": 30 + }, + "minecraft:blast_furnace": { + "protocol_id": 28 + }, + "minecraft:brewing_stand": { + "protocol_id": 12 + }, + "minecraft:brushable_block": { + "protocol_id": 40 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 35 + }, + "minecraft:campfire": { + "protocol_id": 32 + }, + "minecraft:chest": { + "protocol_id": 1 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 38 + }, + "minecraft:command_block": { + "protocol_id": 23 + }, + "minecraft:comparator": { + "protocol_id": 19 + }, + "minecraft:conduit": { + "protocol_id": 25 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 47 + }, + "minecraft:crafter": { + "protocol_id": 42 + }, + "minecraft:creaking_heart": { + "protocol_id": 10 + }, + "minecraft:daylight_detector": { + "protocol_id": 17 + }, + "minecraft:decorated_pot": { + "protocol_id": 41 + }, + "minecraft:dispenser": { + "protocol_id": 5 + }, + "minecraft:dropper": { + "protocol_id": 6 + }, + "minecraft:enchanting_table": { + "protocol_id": 13 + }, + "minecraft:end_gateway": { + "protocol_id": 22 + }, + "minecraft:end_portal": { + "protocol_id": 14 + }, + "minecraft:ender_chest": { + "protocol_id": 3 + }, + "minecraft:furnace": { + "protocol_id": 0 + }, + "minecraft:hanging_sign": { + "protocol_id": 8 + }, + "minecraft:hopper": { + "protocol_id": 18 + }, + "minecraft:jigsaw": { + "protocol_id": 31 + }, + "minecraft:jukebox": { + "protocol_id": 4 + }, + "minecraft:lectern": { + "protocol_id": 29 + }, + "minecraft:mob_spawner": { + "protocol_id": 9 + }, + "minecraft:piston": { + "protocol_id": 11 + }, + "minecraft:potent_sulfur": { + "protocol_id": 48 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 36 + }, + "minecraft:sculk_sensor": { + "protocol_id": 34 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 37 + }, + "minecraft:shelf": { + "protocol_id": 39 + }, + "minecraft:shulker_box": { + "protocol_id": 24 + }, + "minecraft:sign": { + "protocol_id": 7 + }, + "minecraft:skull": { + "protocol_id": 16 + }, + "minecraft:smoker": { + "protocol_id": 27 + }, + "minecraft:structure_block": { + "protocol_id": 21 + }, + "minecraft:test_block": { + "protocol_id": 45 + }, + "minecraft:test_instance_block": { + "protocol_id": 46 + }, + "minecraft:trapped_chest": { + "protocol_id": 2 + }, + "minecraft:trial_spawner": { + "protocol_id": 43 + }, + "minecraft:vault": { + "protocol_id": 44 + } + }, + "protocol_id": 10 + }, + "minecraft:block_predicate_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 10 + }, + "minecraft:any_of": { + "protocol_id": 9 + }, + "minecraft:has_sturdy_face": { + "protocol_id": 4 + }, + "minecraft:inside_world_bounds": { + "protocol_id": 8 + }, + "minecraft:matching_biomes": { + "protocol_id": 3 + }, + "minecraft:matching_block_tag": { + "protocol_id": 1 + }, + "minecraft:matching_blocks": { + "protocol_id": 0 + }, + "minecraft:matching_fluids": { + "protocol_id": 2 + }, + "minecraft:not": { + "protocol_id": 11 + }, + "minecraft:replaceable": { + "protocol_id": 6 + }, + "minecraft:solid": { + "protocol_id": 5 + }, + "minecraft:true": { + "protocol_id": 12 + }, + "minecraft:unobstructed": { + "protocol_id": 13 + }, + "minecraft:would_survive": { + "protocol_id": 7 + } + }, + "protocol_id": 38 + }, + "minecraft:block_type": { + "entries": { + "minecraft:air": { + "protocol_id": 1 + }, + "minecraft:amethyst": { + "protocol_id": 2 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 3 + }, + "minecraft:anvil": { + "protocol_id": 4 + }, + "minecraft:attached_stem": { + "protocol_id": 5 + }, + "minecraft:azalea": { + "protocol_id": 6 + }, + "minecraft:bamboo_sapling": { + "protocol_id": 7 + }, + "minecraft:bamboo_stalk": { + "protocol_id": 8 + }, + "minecraft:banner": { + "protocol_id": 9 + }, + "minecraft:barrel": { + "protocol_id": 10 + }, + "minecraft:barrier": { + "protocol_id": 11 + }, + "minecraft:base_coral_fan": { + "protocol_id": 12 + }, + "minecraft:base_coral_plant": { + "protocol_id": 13 + }, + "minecraft:base_coral_wall_fan": { + "protocol_id": 14 + }, + "minecraft:beacon": { + "protocol_id": 15 + }, + "minecraft:bed": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 17 + }, + "minecraft:beetroot": { + "protocol_id": 18 + }, + "minecraft:bell": { + "protocol_id": 19 + }, + "minecraft:big_dripleaf": { + "protocol_id": 20 + }, + "minecraft:big_dripleaf_stem": { + "protocol_id": 21 + }, + "minecraft:blast_furnace": { + "protocol_id": 22 + }, + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:bonemealable_feature_placer": { + "protocol_id": 86 + }, + "minecraft:brewing_stand": { + "protocol_id": 23 + }, + "minecraft:brushable": { + "protocol_id": 24 + }, + "minecraft:bubble_column": { + "protocol_id": 25 + }, + "minecraft:budding_amethyst": { + "protocol_id": 26 + }, + "minecraft:bush": { + "protocol_id": 27 + }, + "minecraft:button": { + "protocol_id": 28 + }, + "minecraft:cactus": { + "protocol_id": 29 + }, + "minecraft:cactus_flower": { + "protocol_id": 30 + }, + "minecraft:cake": { + "protocol_id": 31 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 32 + }, + "minecraft:campfire": { + "protocol_id": 33 + }, + "minecraft:candle": { + "protocol_id": 35 + }, + "minecraft:candle_cake": { + "protocol_id": 34 + }, + "minecraft:carpet": { + "protocol_id": 36 + }, + "minecraft:carrot": { + "protocol_id": 37 + }, + "minecraft:cartography_table": { + "protocol_id": 38 + }, + "minecraft:cauldron": { + "protocol_id": 39 + }, + "minecraft:cave_vines": { + "protocol_id": 40 + }, + "minecraft:cave_vines_plant": { + "protocol_id": 41 + }, + "minecraft:ceiling_hanging_sign": { + "protocol_id": 42 + }, + "minecraft:chain": { + "protocol_id": 43 + }, + "minecraft:chest": { + "protocol_id": 44 + }, + "minecraft:chiseled_book_shelf": { + "protocol_id": 45 + }, + "minecraft:chorus_flower": { + "protocol_id": 46 + }, + "minecraft:chorus_plant": { + "protocol_id": 47 + }, + "minecraft:cocoa": { + "protocol_id": 48 + }, + "minecraft:colored_falling": { + "protocol_id": 49 + }, + "minecraft:command": { + "protocol_id": 50 + }, + "minecraft:comparator": { + "protocol_id": 51 + }, + "minecraft:composter": { + "protocol_id": 52 + }, + "minecraft:concrete_powder": { + "protocol_id": 53 + }, + "minecraft:conduit": { + "protocol_id": 54 + }, + "minecraft:copper_bulb_block": { + "protocol_id": 55 + }, + "minecraft:copper_chest": { + "protocol_id": 56 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 57 + }, + "minecraft:coral": { + "protocol_id": 58 + }, + "minecraft:coral_fan": { + "protocol_id": 59 + }, + "minecraft:coral_plant": { + "protocol_id": 60 + }, + "minecraft:coral_wall_fan": { + "protocol_id": 61 + }, + "minecraft:crafter": { + "protocol_id": 62 + }, + "minecraft:crafting_table": { + "protocol_id": 63 + }, + "minecraft:creaking_heart": { + "protocol_id": 197 + }, + "minecraft:crop": { + "protocol_id": 64 + }, + "minecraft:crying_obsidian": { + "protocol_id": 65 + }, + "minecraft:daylight_detector": { + "protocol_id": 66 + }, + "minecraft:decorated_pot": { + "protocol_id": 68 + }, + "minecraft:detector_rail": { + "protocol_id": 69 + }, + "minecraft:dirt_path": { + "protocol_id": 70 + }, + "minecraft:dispenser": { + "protocol_id": 71 + }, + "minecraft:door": { + "protocol_id": 72 + }, + "minecraft:double_plant": { + "protocol_id": 73 + }, + "minecraft:dragon_egg": { + "protocol_id": 74 + }, + "minecraft:dried_ghast": { + "protocol_id": 75 + }, + "minecraft:drop_experience": { + "protocol_id": 76 + }, + "minecraft:dropper": { + "protocol_id": 77 + }, + "minecraft:dry_vegetation": { + "protocol_id": 67 + }, + "minecraft:enchantment_table": { + "protocol_id": 78 + }, + "minecraft:end_gateway": { + "protocol_id": 80 + }, + "minecraft:end_portal": { + "protocol_id": 81 + }, + "minecraft:end_portal_frame": { + "protocol_id": 82 + }, + "minecraft:end_rod": { + "protocol_id": 83 + }, + "minecraft:ender_chest": { + "protocol_id": 79 + }, + "minecraft:eyeblossom": { + "protocol_id": 84 + }, + "minecraft:farmland": { + "protocol_id": 85 + }, + "minecraft:fence": { + "protocol_id": 87 + }, + "minecraft:fence_gate": { + "protocol_id": 88 + }, + "minecraft:fire": { + "protocol_id": 89 + }, + "minecraft:firefly_bush": { + "protocol_id": 90 + }, + "minecraft:flower": { + "protocol_id": 91 + }, + "minecraft:flower_bed": { + "protocol_id": 147 + }, + "minecraft:flower_pot": { + "protocol_id": 92 + }, + "minecraft:frogspawn": { + "protocol_id": 93 + }, + "minecraft:frosted_ice": { + "protocol_id": 94 + }, + "minecraft:furnace": { + "protocol_id": 96 + }, + "minecraft:glazed_terracotta": { + "protocol_id": 97 + }, + "minecraft:glow_lichen": { + "protocol_id": 98 + }, + "minecraft:grass": { + "protocol_id": 99 + }, + "minecraft:grindstone": { + "protocol_id": 100 + }, + "minecraft:half_transparent": { + "protocol_id": 101 + }, + "minecraft:hanging_moss": { + "protocol_id": 102 + }, + "minecraft:hanging_roots": { + "protocol_id": 103 + }, + "minecraft:hay": { + "protocol_id": 104 + }, + "minecraft:heavy_core": { + "protocol_id": 105 + }, + "minecraft:honey": { + "protocol_id": 106 + }, + "minecraft:hopper": { + "protocol_id": 107 + }, + "minecraft:huge_mushroom": { + "protocol_id": 108 + }, + "minecraft:ice": { + "protocol_id": 109 + }, + "minecraft:infested": { + "protocol_id": 110 + }, + "minecraft:infested_rotated_pillar": { + "protocol_id": 111 + }, + "minecraft:iron_bars": { + "protocol_id": 112 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 113 + }, + "minecraft:jigsaw": { + "protocol_id": 114 + }, + "minecraft:jukebox": { + "protocol_id": 115 + }, + "minecraft:kelp": { + "protocol_id": 116 + }, + "minecraft:kelp_plant": { + "protocol_id": 117 + }, + "minecraft:ladder": { + "protocol_id": 118 + }, + "minecraft:lantern": { + "protocol_id": 119 + }, + "minecraft:lava_cauldron": { + "protocol_id": 120 + }, + "minecraft:layered_cauldron": { + "protocol_id": 121 + }, + "minecraft:leaf_litter": { + "protocol_id": 122 + }, + "minecraft:lectern": { + "protocol_id": 123 + }, + "minecraft:lever": { + "protocol_id": 124 + }, + "minecraft:light": { + "protocol_id": 125 + }, + "minecraft:lightning_rod": { + "protocol_id": 126 + }, + "minecraft:lily_pad": { + "protocol_id": 241 + }, + "minecraft:liquid": { + "protocol_id": 127 + }, + "minecraft:loom": { + "protocol_id": 128 + }, + "minecraft:magma": { + "protocol_id": 129 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 130 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 131 + }, + "minecraft:mangrove_roots": { + "protocol_id": 132 + }, + "minecraft:mossy_carpet": { + "protocol_id": 133 + }, + "minecraft:moving_piston": { + "protocol_id": 134 + }, + "minecraft:mud": { + "protocol_id": 135 + }, + "minecraft:multiface": { + "protocol_id": 136 + }, + "minecraft:mushroom": { + "protocol_id": 137 + }, + "minecraft:mycelium": { + "protocol_id": 138 + }, + "minecraft:nether_fungus": { + "protocol_id": 95 + }, + "minecraft:nether_portal": { + "protocol_id": 139 + }, + "minecraft:nether_roots": { + "protocol_id": 170 + }, + "minecraft:nether_sprouts": { + "protocol_id": 141 + }, + "minecraft:nether_wart": { + "protocol_id": 142 + }, + "minecraft:netherrack": { + "protocol_id": 140 + }, + "minecraft:note": { + "protocol_id": 143 + }, + "minecraft:nylium": { + "protocol_id": 144 + }, + "minecraft:observer": { + "protocol_id": 145 + }, + "minecraft:piglinwallskull": { + "protocol_id": 146 + }, + "minecraft:piston_base": { + "protocol_id": 148 + }, + "minecraft:piston_head": { + "protocol_id": 149 + }, + "minecraft:pitcher_crop": { + "protocol_id": 150 + }, + "minecraft:player_head": { + "protocol_id": 151 + }, + "minecraft:player_wall_head": { + "protocol_id": 152 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 153 + }, + "minecraft:potato": { + "protocol_id": 154 + }, + "minecraft:potent_sulfur": { + "protocol_id": 158 + }, + "minecraft:powder_snow": { + "protocol_id": 155 + }, + "minecraft:powered": { + "protocol_id": 156 + }, + "minecraft:powered_rail": { + "protocol_id": 157 + }, + "minecraft:pressure_plate": { + "protocol_id": 159 + }, + "minecraft:pumpkin": { + "protocol_id": 160 + }, + "minecraft:rail": { + "protocol_id": 161 + }, + "minecraft:redstone_lamp": { + "protocol_id": 162 + }, + "minecraft:redstone_ore": { + "protocol_id": 163 + }, + "minecraft:redstone_torch": { + "protocol_id": 164 + }, + "minecraft:redstone_wall_torch": { + "protocol_id": 165 + }, + "minecraft:redstone_wire": { + "protocol_id": 166 + }, + "minecraft:repeater": { + "protocol_id": 167 + }, + "minecraft:respawn_anchor": { + "protocol_id": 168 + }, + "minecraft:rooted_dirt": { + "protocol_id": 169 + }, + "minecraft:rotated_pillar": { + "protocol_id": 171 + }, + "minecraft:sand": { + "protocol_id": 173 + }, + "minecraft:sapling": { + "protocol_id": 172 + }, + "minecraft:scaffolding": { + "protocol_id": 174 + }, + "minecraft:sculk": { + "protocol_id": 176 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 175 + }, + "minecraft:sculk_sensor": { + "protocol_id": 177 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 178 + }, + "minecraft:sculk_vein": { + "protocol_id": 179 + }, + "minecraft:sea_pickle": { + "protocol_id": 181 + }, + "minecraft:seagrass": { + "protocol_id": 180 + }, + "minecraft:shelf": { + "protocol_id": 182 + }, + "minecraft:short_dry_grass": { + "protocol_id": 183 + }, + "minecraft:shulker_box": { + "protocol_id": 184 + }, + "minecraft:skull": { + "protocol_id": 185 + }, + "minecraft:slab": { + "protocol_id": 186 + }, + "minecraft:slime": { + "protocol_id": 187 + }, + "minecraft:small_dripleaf": { + "protocol_id": 188 + }, + "minecraft:smithing_table": { + "protocol_id": 189 + }, + "minecraft:smoker": { + "protocol_id": 190 + }, + "minecraft:sniffer_egg": { + "protocol_id": 191 + }, + "minecraft:snow_layer": { + "protocol_id": 192 + }, + "minecraft:snowy_dirt": { + "protocol_id": 193 + }, + "minecraft:soul_fire": { + "protocol_id": 194 + }, + "minecraft:soul_sand": { + "protocol_id": 195 + }, + "minecraft:spawner": { + "protocol_id": 196 + }, + "minecraft:sponge": { + "protocol_id": 198 + }, + "minecraft:spore_blossom": { + "protocol_id": 199 + }, + "minecraft:stained_glass": { + "protocol_id": 201 + }, + "minecraft:stained_glass_pane": { + "protocol_id": 200 + }, + "minecraft:stair": { + "protocol_id": 202 + }, + "minecraft:standing_sign": { + "protocol_id": 203 + }, + "minecraft:stem": { + "protocol_id": 204 + }, + "minecraft:stonecutter": { + "protocol_id": 205 + }, + "minecraft:structure": { + "protocol_id": 206 + }, + "minecraft:structure_void": { + "protocol_id": 207 + }, + "minecraft:sugar_cane": { + "protocol_id": 208 + }, + "minecraft:sulfur_spike": { + "protocol_id": 209 + }, + "minecraft:sweet_berry_bush": { + "protocol_id": 210 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 211 + }, + "minecraft:tall_flower": { + "protocol_id": 212 + }, + "minecraft:tall_grass": { + "protocol_id": 213 + }, + "minecraft:tall_seagrass": { + "protocol_id": 214 + }, + "minecraft:target": { + "protocol_id": 215 + }, + "minecraft:test": { + "protocol_id": 216 + }, + "minecraft:test_instance": { + "protocol_id": 217 + }, + "minecraft:tinted_glass": { + "protocol_id": 218 + }, + "minecraft:tinted_particle_leaves": { + "protocol_id": 219 + }, + "minecraft:tnt": { + "protocol_id": 220 + }, + "minecraft:torch": { + "protocol_id": 222 + }, + "minecraft:torchflower_crop": { + "protocol_id": 221 + }, + "minecraft:transparent": { + "protocol_id": 223 + }, + "minecraft:trapdoor": { + "protocol_id": 224 + }, + "minecraft:trapped_chest": { + "protocol_id": 225 + }, + "minecraft:trial_spawner": { + "protocol_id": 226 + }, + "minecraft:trip_wire_hook": { + "protocol_id": 227 + }, + "minecraft:tripwire": { + "protocol_id": 228 + }, + "minecraft:turtle_egg": { + "protocol_id": 229 + }, + "minecraft:twisting_vines": { + "protocol_id": 231 + }, + "minecraft:twisting_vines_plant": { + "protocol_id": 230 + }, + "minecraft:untinted_particle_leaves": { + "protocol_id": 232 + }, + "minecraft:vault": { + "protocol_id": 233 + }, + "minecraft:vine": { + "protocol_id": 234 + }, + "minecraft:wall": { + "protocol_id": 240 + }, + "minecraft:wall_banner": { + "protocol_id": 235 + }, + "minecraft:wall_hanging_sign": { + "protocol_id": 236 + }, + "minecraft:wall_sign": { + "protocol_id": 237 + }, + "minecraft:wall_skull": { + "protocol_id": 238 + }, + "minecraft:wall_torch": { + "protocol_id": 239 + }, + "minecraft:waterlogged_transparent": { + "protocol_id": 242 + }, + "minecraft:weathering_copper_bar": { + "protocol_id": 243 + }, + "minecraft:weathering_copper_bulb": { + "protocol_id": 244 + }, + "minecraft:weathering_copper_chain": { + "protocol_id": 245 + }, + "minecraft:weathering_copper_chest": { + "protocol_id": 246 + }, + "minecraft:weathering_copper_door": { + "protocol_id": 247 + }, + "minecraft:weathering_copper_full": { + "protocol_id": 248 + }, + "minecraft:weathering_copper_golem_statue": { + "protocol_id": 249 + }, + "minecraft:weathering_copper_grate": { + "protocol_id": 250 + }, + "minecraft:weathering_copper_slab": { + "protocol_id": 251 + }, + "minecraft:weathering_copper_stair": { + "protocol_id": 252 + }, + "minecraft:weathering_copper_trapdoor": { + "protocol_id": 253 + }, + "minecraft:weathering_lantern": { + "protocol_id": 254 + }, + "minecraft:weathering_lightning_rod": { + "protocol_id": 255 + }, + "minecraft:web": { + "protocol_id": 256 + }, + "minecraft:weeping_vines": { + "protocol_id": 258 + }, + "minecraft:weeping_vines_plant": { + "protocol_id": 257 + }, + "minecraft:weighted_pressure_plate": { + "protocol_id": 259 + }, + "minecraft:wet_sponge": { + "protocol_id": 260 + }, + "minecraft:wither_rose": { + "protocol_id": 261 + }, + "minecraft:wither_skull": { + "protocol_id": 262 + }, + "minecraft:wither_wall_skull": { + "protocol_id": 263 + }, + "minecraft:wool_carpet": { + "protocol_id": 264 + } + }, + "protocol_id": 56 + }, + "minecraft:chunk_status": { + "default": "minecraft:empty", + "entries": { + "minecraft:biomes": { + "protocol_id": 3 + }, + "minecraft:carvers": { + "protocol_id": 6 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:features": { + "protocol_id": 7 + }, + "minecraft:full": { + "protocol_id": 11 + }, + "minecraft:initialize_light": { + "protocol_id": 8 + }, + "minecraft:light": { + "protocol_id": 9 + }, + "minecraft:noise": { + "protocol_id": 4 + }, + "minecraft:spawn": { + "protocol_id": 10 + }, + "minecraft:structure_references": { + "protocol_id": 2 + }, + "minecraft:structure_starts": { + "protocol_id": 1 + }, + "minecraft:surface": { + "protocol_id": 5 + } + }, + "protocol_id": 12 + }, + "minecraft:command_argument_type": { + "entries": { + "brigadier:bool": { + "protocol_id": 0 + }, + "brigadier:double": { + "protocol_id": 2 + }, + "brigadier:float": { + "protocol_id": 1 + }, + "brigadier:integer": { + "protocol_id": 3 + }, + "brigadier:long": { + "protocol_id": 4 + }, + "brigadier:string": { + "protocol_id": 5 + }, + "minecraft:angle": { + "protocol_id": 28 + }, + "minecraft:block_pos": { + "protocol_id": 8 + }, + "minecraft:block_predicate": { + "protocol_id": 13 + }, + "minecraft:block_state": { + "protocol_id": 12 + }, + "minecraft:column_pos": { + "protocol_id": 9 + }, + "minecraft:component": { + "protocol_id": 18 + }, + "minecraft:dialog": { + "protocol_id": 55 + }, + "minecraft:dimension": { + "protocol_id": 41 + }, + "minecraft:entity": { + "protocol_id": 6 + }, + "minecraft:entity_anchor": { + "protocol_id": 38 + }, + "minecraft:float_range": { + "protocol_id": 40 + }, + "minecraft:function": { + "protocol_id": 37 + }, + "minecraft:game_profile": { + "protocol_id": 7 + }, + "minecraft:gamemode": { + "protocol_id": 42 + }, + "minecraft:heightmap": { + "protocol_id": 51 + }, + "minecraft:hex_color": { + "protocol_id": 17 + }, + "minecraft:int_range": { + "protocol_id": 39 + }, + "minecraft:item_predicate": { + "protocol_id": 15 + }, + "minecraft:item_slot": { + "protocol_id": 34 + }, + "minecraft:item_slots": { + "protocol_id": 35 + }, + "minecraft:item_stack": { + "protocol_id": 14 + }, + "minecraft:loot_modifier": { + "protocol_id": 54 + }, + "minecraft:loot_predicate": { + "protocol_id": 53 + }, + "minecraft:loot_table": { + "protocol_id": 52 + }, + "minecraft:message": { + "protocol_id": 20 + }, + "minecraft:nbt_compound_tag": { + "protocol_id": 21 + }, + "minecraft:nbt_path": { + "protocol_id": 23 + }, + "minecraft:nbt_tag": { + "protocol_id": 22 + }, + "minecraft:objective": { + "protocol_id": 24 + }, + "minecraft:objective_criteria": { + "protocol_id": 25 + }, + "minecraft:operation": { + "protocol_id": 26 + }, + "minecraft:particle": { + "protocol_id": 27 + }, + "minecraft:resource": { + "protocol_id": 46 + }, + "minecraft:resource_key": { + "protocol_id": 47 + }, + "minecraft:resource_location": { + "protocol_id": 36 + }, + "minecraft:resource_or_tag": { + "protocol_id": 44 + }, + "minecraft:resource_or_tag_key": { + "protocol_id": 45 + }, + "minecraft:resource_selector": { + "protocol_id": 48 + }, + "minecraft:rotation": { + "protocol_id": 29 + }, + "minecraft:score_holder": { + "protocol_id": 31 + }, + "minecraft:scoreboard_slot": { + "protocol_id": 30 + }, + "minecraft:style": { + "protocol_id": 19 + }, + "minecraft:swizzle": { + "protocol_id": 32 + }, + "minecraft:team": { + "protocol_id": 33 + }, + "minecraft:team_color": { + "protocol_id": 16 + }, + "minecraft:template_mirror": { + "protocol_id": 49 + }, + "minecraft:template_rotation": { + "protocol_id": 50 + }, + "minecraft:time": { + "protocol_id": 43 + }, + "minecraft:uuid": { + "protocol_id": 56 + }, + "minecraft:vec2": { + "protocol_id": 11 + }, + "minecraft:vec3": { + "protocol_id": 10 + } + }, + "protocol_id": 21 + }, + "minecraft:consume_effect_type": { + "entries": { + "minecraft:apply_effects": { + "protocol_id": 0 + }, + "minecraft:clear_all_effects": { + "protocol_id": 2 + }, + "minecraft:play_sound": { + "protocol_id": 4 + }, + "minecraft:remove_effects": { + "protocol_id": 1 + }, + "minecraft:teleport_randomly": { + "protocol_id": 3 + } + }, + "protocol_id": 75 + }, + "minecraft:creative_mode_tab": { + "entries": { + "minecraft:building_blocks": { + "protocol_id": 0 + }, + "minecraft:colored_blocks": { + "protocol_id": 1 + }, + "minecraft:combat": { + "protocol_id": 8 + }, + "minecraft:food_and_drinks": { + "protocol_id": 9 + }, + "minecraft:functional_blocks": { + "protocol_id": 3 + }, + "minecraft:hotbar": { + "protocol_id": 5 + }, + "minecraft:ingredients": { + "protocol_id": 10 + }, + "minecraft:inventory": { + "protocol_id": 13 + }, + "minecraft:natural_blocks": { + "protocol_id": 2 + }, + "minecraft:op_blocks": { + "protocol_id": 12 + }, + "minecraft:redstone_blocks": { + "protocol_id": 4 + }, + "minecraft:search": { + "protocol_id": 6 + }, + "minecraft:spawn_eggs": { + "protocol_id": 11 + }, + "minecraft:tools_and_utilities": { + "protocol_id": 7 + } + }, + "protocol_id": 61 + }, + "minecraft:custom_stat": { + "entries": { + "minecraft:animals_bred": { + "protocol_id": 34 + }, + "minecraft:aviate_one_cm": { + "protocol_id": 19 + }, + "minecraft:bell_ring": { + "protocol_id": 70 + }, + "minecraft:boat_one_cm": { + "protocol_id": 15 + }, + "minecraft:clean_armor": { + "protocol_id": 42 + }, + "minecraft:clean_banner": { + "protocol_id": 43 + }, + "minecraft:clean_shulker_box": { + "protocol_id": 44 + }, + "minecraft:climb_one_cm": { + "protocol_id": 11 + }, + "minecraft:crouch_one_cm": { + "protocol_id": 7 + }, + "minecraft:damage_absorbed": { + "protocol_id": 30 + }, + "minecraft:damage_blocked_by_shield": { + "protocol_id": 29 + }, + "minecraft:damage_dealt": { + "protocol_id": 25 + }, + "minecraft:damage_dealt_absorbed": { + "protocol_id": 26 + }, + "minecraft:damage_dealt_resisted": { + "protocol_id": 27 + }, + "minecraft:damage_resisted": { + "protocol_id": 31 + }, + "minecraft:damage_taken": { + "protocol_id": 28 + }, + "minecraft:deaths": { + "protocol_id": 32 + }, + "minecraft:drop": { + "protocol_id": 24 + }, + "minecraft:eat_cake_slice": { + "protocol_id": 39 + }, + "minecraft:enchant_item": { + "protocol_id": 55 + }, + "minecraft:fall_one_cm": { + "protocol_id": 10 + }, + "minecraft:fill_cauldron": { + "protocol_id": 40 + }, + "minecraft:fish_caught": { + "protocol_id": 36 + }, + "minecraft:fly_one_cm": { + "protocol_id": 12 + }, + "minecraft:happy_ghast_one_cm": { + "protocol_id": 17 + }, + "minecraft:horse_one_cm": { + "protocol_id": 18 + }, + "minecraft:inspect_dispenser": { + "protocol_id": 49 + }, + "minecraft:inspect_dropper": { + "protocol_id": 47 + }, + "minecraft:inspect_hopper": { + "protocol_id": 48 + }, + "minecraft:interact_with_anvil": { + "protocol_id": 73 + }, + "minecraft:interact_with_beacon": { + "protocol_id": 46 + }, + "minecraft:interact_with_blast_furnace": { + "protocol_id": 63 + }, + "minecraft:interact_with_brewingstand": { + "protocol_id": 45 + }, + "minecraft:interact_with_campfire": { + "protocol_id": 66 + }, + "minecraft:interact_with_cartography_table": { + "protocol_id": 67 + }, + "minecraft:interact_with_crafting_table": { + "protocol_id": 58 + }, + "minecraft:interact_with_furnace": { + "protocol_id": 57 + }, + "minecraft:interact_with_grindstone": { + "protocol_id": 74 + }, + "minecraft:interact_with_lectern": { + "protocol_id": 65 + }, + "minecraft:interact_with_loom": { + "protocol_id": 68 + }, + "minecraft:interact_with_smithing_table": { + "protocol_id": 76 + }, + "minecraft:interact_with_smoker": { + "protocol_id": 64 + }, + "minecraft:interact_with_stonecutter": { + "protocol_id": 69 + }, + "minecraft:jump": { + "protocol_id": 23 + }, + "minecraft:leave_game": { + "protocol_id": 0 + }, + "minecraft:minecart_one_cm": { + "protocol_id": 14 + }, + "minecraft:mob_kills": { + "protocol_id": 33 + }, + "minecraft:nautilus_one_cm": { + "protocol_id": 22 + }, + "minecraft:open_barrel": { + "protocol_id": 62 + }, + "minecraft:open_chest": { + "protocol_id": 59 + }, + "minecraft:open_enderchest": { + "protocol_id": 54 + }, + "minecraft:open_shulker_box": { + "protocol_id": 61 + }, + "minecraft:pig_one_cm": { + "protocol_id": 16 + }, + "minecraft:play_noteblock": { + "protocol_id": 50 + }, + "minecraft:play_record": { + "protocol_id": 56 + }, + "minecraft:play_time": { + "protocol_id": 1 + }, + "minecraft:player_kills": { + "protocol_id": 35 + }, + "minecraft:pot_flower": { + "protocol_id": 52 + }, + "minecraft:raid_trigger": { + "protocol_id": 71 + }, + "minecraft:raid_win": { + "protocol_id": 72 + }, + "minecraft:sleep_in_bed": { + "protocol_id": 60 + }, + "minecraft:sneak_time": { + "protocol_id": 5 + }, + "minecraft:sprint_one_cm": { + "protocol_id": 8 + }, + "minecraft:strider_one_cm": { + "protocol_id": 21 + }, + "minecraft:swim_one_cm": { + "protocol_id": 20 + }, + "minecraft:talked_to_villager": { + "protocol_id": 37 + }, + "minecraft:target_hit": { + "protocol_id": 75 + }, + "minecraft:time_since_death": { + "protocol_id": 3 + }, + "minecraft:time_since_rest": { + "protocol_id": 4 + }, + "minecraft:total_world_time": { + "protocol_id": 2 + }, + "minecraft:traded_with_villager": { + "protocol_id": 38 + }, + "minecraft:trigger_trapped_chest": { + "protocol_id": 53 + }, + "minecraft:tune_noteblock": { + "protocol_id": 51 + }, + "minecraft:use_cauldron": { + "protocol_id": 41 + }, + "minecraft:walk_on_water_one_cm": { + "protocol_id": 9 + }, + "minecraft:walk_one_cm": { + "protocol_id": 6 + }, + "minecraft:walk_under_water_one_cm": { + "protocol_id": 13 + } + }, + "protocol_id": 11 + }, + "minecraft:data_component_predicate_type": { + "entries": { + "minecraft:attribute_modifiers": { + "protocol_id": 11 + }, + "minecraft:bundle_contents": { + "protocol_id": 6 + }, + "minecraft:container": { + "protocol_id": 5 + }, + "minecraft:custom_data": { + "protocol_id": 4 + }, + "minecraft:damage": { + "protocol_id": 0 + }, + "minecraft:enchantments": { + "protocol_id": 1 + }, + "minecraft:firework_explosion": { + "protocol_id": 7 + }, + "minecraft:fireworks": { + "protocol_id": 8 + }, + "minecraft:jukebox_playable": { + "protocol_id": 13 + }, + "minecraft:potion_contents": { + "protocol_id": 3 + }, + "minecraft:stored_enchantments": { + "protocol_id": 2 + }, + "minecraft:trim": { + "protocol_id": 12 + }, + "minecraft:villager/variant": { + "protocol_id": 14 + }, + "minecraft:writable_book_content": { + "protocol_id": 9 + }, + "minecraft:written_book_content": { + "protocol_id": 10 + } + }, + "protocol_id": 67 + }, + "minecraft:data_component_type": { + "entries": { + "minecraft:additional_trade_cost": { + "protocol_id": 41 + }, + "minecraft:attack_range": { + "protocol_id": 30 + }, + "minecraft:attribute_modifiers": { + "protocol_id": 16 + }, + "minecraft:axolotl/variant": { + "protocol_id": 105 + }, + "minecraft:banner_patterns": { + "protocol_id": 72 + }, + "minecraft:base_color": { + "protocol_id": 73 + }, + "minecraft:bees": { + "protocol_id": 77 + }, + "minecraft:block_entity_data": { + "protocol_id": 60 + }, + "minecraft:block_state": { + "protocol_id": 76 + }, + "minecraft:blocks_attacks": { + "protocol_id": 37 + }, + "minecraft:break_sound": { + "protocol_id": 81 + }, + "minecraft:bucket_entity_data": { + "protocol_id": 59 + }, + "minecraft:bundle_contents": { + "protocol_id": 50 + }, + "minecraft:can_break": { + "protocol_id": 15 + }, + "minecraft:can_place_on": { + "protocol_id": 14 + }, + "minecraft:cat/collar": { + "protocol_id": 108 + }, + "minecraft:cat/sound_variant": { + "protocol_id": 107 + }, + "minecraft:cat/variant": { + "protocol_id": 106 + }, + "minecraft:charged_projectiles": { + "protocol_id": 49 + }, + "minecraft:chicken/sound_variant": { + "protocol_id": 99 + }, + "minecraft:chicken/variant": { + "protocol_id": 98 + }, + "minecraft:consumable": { + "protocol_id": 24 + }, + "minecraft:container": { + "protocol_id": 75 + }, + "minecraft:container_loot": { + "protocol_id": 80 + }, + "minecraft:cow/sound_variant": { + "protocol_id": 97 + }, + "minecraft:cow/variant": { + "protocol_id": 96 + }, + "minecraft:creative_slot_lock": { + "protocol_id": 20 + }, + "minecraft:custom_data": { + "protocol_id": 0 + }, + "minecraft:custom_model_data": { + "protocol_id": 17 + }, + "minecraft:custom_name": { + "protocol_id": 6 + }, + "minecraft:damage": { + "protocol_id": 3 + }, + "minecraft:damage_resistant": { + "protocol_id": 27 + }, + "minecraft:damage_type": { + "protocol_id": 8 + }, + "minecraft:death_protection": { + "protocol_id": 36 + }, + "minecraft:debug_stick_state": { + "protocol_id": 57 + }, + "minecraft:dye": { + "protocol_id": 43 + }, + "minecraft:dyed_color": { + "protocol_id": 44 + }, + "minecraft:enchantable": { + "protocol_id": 31 + }, + "minecraft:enchantment_glint_override": { + "protocol_id": 21 + }, + "minecraft:enchantments": { + "protocol_id": 13 + }, + "minecraft:entity_data": { + "protocol_id": 58 + }, + "minecraft:equippable": { + "protocol_id": 32 + }, + "minecraft:firework_explosion": { + "protocol_id": 68 + }, + "minecraft:fireworks": { + "protocol_id": 69 + }, + "minecraft:food": { + "protocol_id": 23 + }, + "minecraft:fox/variant": { + "protocol_id": 86 + }, + "minecraft:frog/variant": { + "protocol_id": 101 + }, + "minecraft:glider": { + "protocol_id": 34 + }, + "minecraft:horse/variant": { + "protocol_id": 102 + }, + "minecraft:instrument": { + "protocol_id": 61 + }, + "minecraft:intangible_projectile": { + "protocol_id": 22 + }, + "minecraft:item_model": { + "protocol_id": 10 + }, + "minecraft:item_name": { + "protocol_id": 9 + }, + "minecraft:jukebox_playable": { + "protocol_id": 64 + }, + "minecraft:kinetic_weapon": { + "protocol_id": 39 + }, + "minecraft:llama/variant": { + "protocol_id": 104 + }, + "minecraft:lock": { + "protocol_id": 79 + }, + "minecraft:lodestone_tracker": { + "protocol_id": 67 + }, + "minecraft:lore": { + "protocol_id": 11 + }, + "minecraft:map_color": { + "protocol_id": 45 + }, + "minecraft:map_decorations": { + "protocol_id": 47 + }, + "minecraft:map_id": { + "protocol_id": 46 + }, + "minecraft:map_post_processing": { + "protocol_id": 48 + }, + "minecraft:max_damage": { + "protocol_id": 2 + }, + "minecraft:max_stack_size": { + "protocol_id": 1 + }, + "minecraft:minimum_attack_charge": { + "protocol_id": 7 + }, + "minecraft:mooshroom/variant": { + "protocol_id": 92 + }, + "minecraft:note_block_sound": { + "protocol_id": 71 + }, + "minecraft:ominous_bottle_amplifier": { + "protocol_id": 63 + }, + "minecraft:painting/variant": { + "protocol_id": 103 + }, + "minecraft:parrot/variant": { + "protocol_id": 88 + }, + "minecraft:piercing_weapon": { + "protocol_id": 38 + }, + "minecraft:pig/sound_variant": { + "protocol_id": 95 + }, + "minecraft:pig/variant": { + "protocol_id": 94 + }, + "minecraft:pot_decorations": { + "protocol_id": 74 + }, + "minecraft:potion_contents": { + "protocol_id": 51 + }, + "minecraft:potion_duration_scale": { + "protocol_id": 52 + }, + "minecraft:profile": { + "protocol_id": 70 + }, + "minecraft:provides_banner_patterns": { + "protocol_id": 65 + }, + "minecraft:provides_trim_material": { + "protocol_id": 62 + }, + "minecraft:rabbit/variant": { + "protocol_id": 93 + }, + "minecraft:rarity": { + "protocol_id": 12 + }, + "minecraft:recipes": { + "protocol_id": 66 + }, + "minecraft:repair_cost": { + "protocol_id": 19 + }, + "minecraft:repairable": { + "protocol_id": 33 + }, + "minecraft:salmon/size": { + "protocol_id": 87 + }, + "minecraft:sheep/color": { + "protocol_id": 109 + }, + "minecraft:shulker/color": { + "protocol_id": 110 + }, + "minecraft:stored_enchantments": { + "protocol_id": 42 + }, + "minecraft:sulfur_cube_content": { + "protocol_id": 78 + }, + "minecraft:suspicious_stew_effects": { + "protocol_id": 53 + }, + "minecraft:swing_animation": { + "protocol_id": 40 + }, + "minecraft:tool": { + "protocol_id": 28 + }, + "minecraft:tooltip_display": { + "protocol_id": 18 + }, + "minecraft:tooltip_style": { + "protocol_id": 35 + }, + "minecraft:trim": { + "protocol_id": 56 + }, + "minecraft:tropical_fish/base_color": { + "protocol_id": 90 + }, + "minecraft:tropical_fish/pattern": { + "protocol_id": 89 + }, + "minecraft:tropical_fish/pattern_color": { + "protocol_id": 91 + }, + "minecraft:unbreakable": { + "protocol_id": 4 + }, + "minecraft:use_cooldown": { + "protocol_id": 26 + }, + "minecraft:use_effects": { + "protocol_id": 5 + }, + "minecraft:use_remainder": { + "protocol_id": 25 + }, + "minecraft:villager/variant": { + "protocol_id": 82 + }, + "minecraft:weapon": { + "protocol_id": 29 + }, + "minecraft:wolf/collar": { + "protocol_id": 85 + }, + "minecraft:wolf/sound_variant": { + "protocol_id": 84 + }, + "minecraft:wolf/variant": { + "protocol_id": 83 + }, + "minecraft:writable_book_content": { + "protocol_id": 54 + }, + "minecraft:written_book_content": { + "protocol_id": 55 + }, + "minecraft:zombie_nautilus/variant": { + "protocol_id": 100 + } + }, + "protocol_id": 64 + }, + "minecraft:debug_subscription": { + "entries": { + "minecraft:bee_hives": { + "protocol_id": 7 + }, + "minecraft:bees": { + "protocol_id": 1 + }, + "minecraft:brains": { + "protocol_id": 2 + }, + "minecraft:breezes": { + "protocol_id": 3 + }, + "minecraft:dedicated_server_tick_time": { + "protocol_id": 0 + }, + "minecraft:entity_block_intersections": { + "protocol_id": 6 + }, + "minecraft:entity_paths": { + "protocol_id": 5 + }, + "minecraft:game_event_listeners": { + "protocol_id": 13 + }, + "minecraft:game_events": { + "protocol_id": 15 + }, + "minecraft:goal_selectors": { + "protocol_id": 4 + }, + "minecraft:neighbor_updates": { + "protocol_id": 14 + }, + "minecraft:pois": { + "protocol_id": 8 + }, + "minecraft:raids": { + "protocol_id": 11 + }, + "minecraft:redstone_wire_orientations": { + "protocol_id": 9 + }, + "minecraft:structures": { + "protocol_id": 12 + }, + "minecraft:village_sections": { + "protocol_id": 10 + } + }, + "protocol_id": 5 + }, + "minecraft:decorated_pot_pattern": { + "entries": { + "minecraft:angler": { + "protocol_id": 0 + }, + "minecraft:archer": { + "protocol_id": 1 + }, + "minecraft:arms_up": { + "protocol_id": 2 + }, + "minecraft:blade": { + "protocol_id": 3 + }, + "minecraft:blank": { + "protocol_id": 23 + }, + "minecraft:brewer": { + "protocol_id": 4 + }, + "minecraft:burn": { + "protocol_id": 5 + }, + "minecraft:danger": { + "protocol_id": 6 + }, + "minecraft:explorer": { + "protocol_id": 7 + }, + "minecraft:flow": { + "protocol_id": 8 + }, + "minecraft:friend": { + "protocol_id": 9 + }, + "minecraft:guster": { + "protocol_id": 10 + }, + "minecraft:heart": { + "protocol_id": 11 + }, + "minecraft:heartbreak": { + "protocol_id": 12 + }, + "minecraft:howl": { + "protocol_id": 13 + }, + "minecraft:miner": { + "protocol_id": 14 + }, + "minecraft:mourner": { + "protocol_id": 15 + }, + "minecraft:plenty": { + "protocol_id": 16 + }, + "minecraft:prize": { + "protocol_id": 17 + }, + "minecraft:scrape": { + "protocol_id": 18 + }, + "minecraft:sheaf": { + "protocol_id": 19 + }, + "minecraft:shelter": { + "protocol_id": 20 + }, + "minecraft:skull": { + "protocol_id": 21 + }, + "minecraft:snort": { + "protocol_id": 22 + } + }, + "protocol_id": 60 + }, + "minecraft:dialog_action_type": { + "entries": { + "minecraft:change_page": { + "protocol_id": 4 + }, + "minecraft:copy_to_clipboard": { + "protocol_id": 5 + }, + "minecraft:custom": { + "protocol_id": 6 + }, + "minecraft:dynamic/custom": { + "protocol_id": 8 + }, + "minecraft:dynamic/run_command": { + "protocol_id": 7 + }, + "minecraft:open_url": { + "protocol_id": 0 + }, + "minecraft:run_command": { + "protocol_id": 1 + }, + "minecraft:show_dialog": { + "protocol_id": 3 + }, + "minecraft:suggest_command": { + "protocol_id": 2 + } + }, + "protocol_id": 86 + }, + "minecraft:dialog_body_type": { + "entries": { + "minecraft:item": { + "protocol_id": 0 + }, + "minecraft:plain_message": { + "protocol_id": 1 + } + }, + "protocol_id": 88 + }, + "minecraft:dialog_type": { + "entries": { + "minecraft:confirmation": { + "protocol_id": 4 + }, + "minecraft:dialog_list": { + "protocol_id": 2 + }, + "minecraft:multi_action": { + "protocol_id": 3 + }, + "minecraft:notice": { + "protocol_id": 0 + }, + "minecraft:server_links": { + "protocol_id": 1 + } + }, + "protocol_id": 85 + }, + "minecraft:enchantment_effect_component_type": { + "entries": { + "minecraft:ammo_use": { + "protocol_id": 13 + }, + "minecraft:armor_effectiveness": { + "protocol_id": 5 + }, + "minecraft:attributes": { + "protocol_id": 24 + }, + "minecraft:block_experience": { + "protocol_id": 21 + }, + "minecraft:crossbow_charge_time": { + "protocol_id": 25 + }, + "minecraft:crossbow_charging_sounds": { + "protocol_id": 26 + }, + "minecraft:damage": { + "protocol_id": 2 + }, + "minecraft:damage_immunity": { + "protocol_id": 1 + }, + "minecraft:damage_protection": { + "protocol_id": 0 + }, + "minecraft:equipment_drops": { + "protocol_id": 10 + }, + "minecraft:fishing_luck_bonus": { + "protocol_id": 20 + }, + "minecraft:fishing_time_reduction": { + "protocol_id": 19 + }, + "minecraft:hit_block": { + "protocol_id": 8 + }, + "minecraft:item_damage": { + "protocol_id": 9 + }, + "minecraft:knockback": { + "protocol_id": 4 + }, + "minecraft:location_changed": { + "protocol_id": 11 + }, + "minecraft:mob_experience": { + "protocol_id": 22 + }, + "minecraft:post_attack": { + "protocol_id": 6 + }, + "minecraft:post_piercing_attack": { + "protocol_id": 7 + }, + "minecraft:prevent_armor_change": { + "protocol_id": 29 + }, + "minecraft:prevent_equipment_drop": { + "protocol_id": 28 + }, + "minecraft:projectile_count": { + "protocol_id": 17 + }, + "minecraft:projectile_piercing": { + "protocol_id": 14 + }, + "minecraft:projectile_spawned": { + "protocol_id": 15 + }, + "minecraft:projectile_spread": { + "protocol_id": 16 + }, + "minecraft:repair_with_xp": { + "protocol_id": 23 + }, + "minecraft:smash_damage_per_fallen_block": { + "protocol_id": 3 + }, + "minecraft:tick": { + "protocol_id": 12 + }, + "minecraft:trident_return_acceleration": { + "protocol_id": 18 + }, + "minecraft:trident_sound": { + "protocol_id": 27 + }, + "minecraft:trident_spin_attack_strength": { + "protocol_id": 30 + } + }, + "protocol_id": 69 + }, + "minecraft:enchantment_entity_effect_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:apply_exhaustion": { + "protocol_id": 7 + }, + "minecraft:apply_impulse": { + "protocol_id": 6 + }, + "minecraft:apply_mob_effect": { + "protocol_id": 1 + }, + "minecraft:change_item_damage": { + "protocol_id": 2 + }, + "minecraft:damage_entity": { + "protocol_id": 3 + }, + "minecraft:explode": { + "protocol_id": 4 + }, + "minecraft:ignite": { + "protocol_id": 5 + }, + "minecraft:play_sound": { + "protocol_id": 8 + }, + "minecraft:replace_block": { + "protocol_id": 9 + }, + "minecraft:replace_disk": { + "protocol_id": 10 + }, + "minecraft:run_function": { + "protocol_id": 11 + }, + "minecraft:set_block_properties": { + "protocol_id": 12 + }, + "minecraft:spawn_particles": { + "protocol_id": 13 + }, + "minecraft:summon_entity": { + "protocol_id": 14 + } + }, + "protocol_id": 71 + }, + "minecraft:enchantment_level_based_value_type": { + "entries": { + "minecraft:clamped": { + "protocol_id": 0 + }, + "minecraft:exponent": { + "protocol_id": 4 + }, + "minecraft:fraction": { + "protocol_id": 1 + }, + "minecraft:levels_squared": { + "protocol_id": 2 + }, + "minecraft:linear": { + "protocol_id": 3 + }, + "minecraft:lookup": { + "protocol_id": 5 + } + }, + "protocol_id": 70 + }, + "minecraft:enchantment_location_based_effect_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:apply_exhaustion": { + "protocol_id": 8 + }, + "minecraft:apply_impulse": { + "protocol_id": 7 + }, + "minecraft:apply_mob_effect": { + "protocol_id": 1 + }, + "minecraft:attribute": { + "protocol_id": 2 + }, + "minecraft:change_item_damage": { + "protocol_id": 3 + }, + "minecraft:damage_entity": { + "protocol_id": 4 + }, + "minecraft:explode": { + "protocol_id": 5 + }, + "minecraft:ignite": { + "protocol_id": 6 + }, + "minecraft:play_sound": { + "protocol_id": 9 + }, + "minecraft:replace_block": { + "protocol_id": 10 + }, + "minecraft:replace_disk": { + "protocol_id": 11 + }, + "minecraft:run_function": { + "protocol_id": 12 + }, + "minecraft:set_block_properties": { + "protocol_id": 13 + }, + "minecraft:spawn_particles": { + "protocol_id": 14 + }, + "minecraft:summon_entity": { + "protocol_id": 15 + } + }, + "protocol_id": 72 + }, + "minecraft:enchantment_provider_type": { + "entries": { + "minecraft:by_cost": { + "protocol_id": 0 + }, + "minecraft:by_cost_with_difficulty": { + "protocol_id": 1 + }, + "minecraft:single": { + "protocol_id": 2 + } + }, + "protocol_id": 74 + }, + "minecraft:enchantment_value_effect_type": { + "entries": { + "minecraft:add": { + "protocol_id": 0 + }, + "minecraft:all_of": { + "protocol_id": 1 + }, + "minecraft:exponential": { + "protocol_id": 4 + }, + "minecraft:multiply": { + "protocol_id": 2 + }, + "minecraft:remove_binomial": { + "protocol_id": 3 + }, + "minecraft:set": { + "protocol_id": 5 + } + }, + "protocol_id": 73 + }, + "minecraft:entity_sub_predicate_type": { + "entries": { + "minecraft:components": { + "protocol_id": 16 + }, + "minecraft:distance": { + "protocol_id": 4 + }, + "minecraft:effects": { + "protocol_id": 6 + }, + "minecraft:entity_tags": { + "protocol_id": 18 + }, + "minecraft:entity_type": { + "protocol_id": 0 + }, + "minecraft:equipment": { + "protocol_id": 9 + }, + "minecraft:flags": { + "protocol_id": 8 + }, + "minecraft:location": { + "protocol_id": 1 + }, + "minecraft:movement": { + "protocol_id": 5 + }, + "minecraft:movement_affected_by": { + "protocol_id": 3 + }, + "minecraft:nbt": { + "protocol_id": 7 + }, + "minecraft:passenger": { + "protocol_id": 12 + }, + "minecraft:periodic_tick": { + "protocol_id": 10 + }, + "minecraft:predicates": { + "protocol_id": 17 + }, + "minecraft:slots": { + "protocol_id": 15 + }, + "minecraft:stepping_on": { + "protocol_id": 2 + }, + "minecraft:targeted_entity": { + "protocol_id": 13 + }, + "minecraft:team": { + "protocol_id": 14 + }, + "minecraft:type_specific/cube_mob": { + "protocol_id": 22 + }, + "minecraft:type_specific/fishing_hook": { + "protocol_id": 20 + }, + "minecraft:type_specific/lightning": { + "protocol_id": 19 + }, + "minecraft:type_specific/player": { + "protocol_id": 21 + }, + "minecraft:type_specific/raider": { + "protocol_id": 23 + }, + "minecraft:type_specific/sheep": { + "protocol_id": 24 + }, + "minecraft:vehicle": { + "protocol_id": 11 + } + }, + "protocol_id": 66 + }, + "minecraft:entity_type": { + "default": "minecraft:pig", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 0 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 1 + }, + "minecraft:allay": { + "protocol_id": 2 + }, + "minecraft:area_effect_cloud": { + "protocol_id": 3 + }, + "minecraft:armadillo": { + "protocol_id": 4 + }, + "minecraft:armor_stand": { + "protocol_id": 5 + }, + "minecraft:arrow": { + "protocol_id": 6 + }, + "minecraft:axolotl": { + "protocol_id": 7 + }, + "minecraft:bamboo_chest_raft": { + "protocol_id": 8 + }, + "minecraft:bamboo_raft": { + "protocol_id": 9 + }, + "minecraft:bat": { + "protocol_id": 10 + }, + "minecraft:bee": { + "protocol_id": 11 + }, + "minecraft:birch_boat": { + "protocol_id": 12 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 13 + }, + "minecraft:blaze": { + "protocol_id": 14 + }, + "minecraft:block_display": { + "protocol_id": 15 + }, + "minecraft:bogged": { + "protocol_id": 16 + }, + "minecraft:breeze": { + "protocol_id": 17 + }, + "minecraft:breeze_wind_charge": { + "protocol_id": 18 + }, + "minecraft:camel": { + "protocol_id": 19 + }, + "minecraft:camel_husk": { + "protocol_id": 20 + }, + "minecraft:cat": { + "protocol_id": 21 + }, + "minecraft:cave_spider": { + "protocol_id": 22 + }, + "minecraft:cherry_boat": { + "protocol_id": 23 + }, + "minecraft:cherry_chest_boat": { + "protocol_id": 24 + }, + "minecraft:chest_minecart": { + "protocol_id": 25 + }, + "minecraft:chicken": { + "protocol_id": 26 + }, + "minecraft:cod": { + "protocol_id": 27 + }, + "minecraft:command_block_minecart": { + "protocol_id": 29 + }, + "minecraft:copper_golem": { + "protocol_id": 28 + }, + "minecraft:cow": { + "protocol_id": 30 + }, + "minecraft:creaking": { + "protocol_id": 31 + }, + "minecraft:creeper": { + "protocol_id": 32 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 33 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 34 + }, + "minecraft:dolphin": { + "protocol_id": 35 + }, + "minecraft:donkey": { + "protocol_id": 36 + }, + "minecraft:dragon_fireball": { + "protocol_id": 37 + }, + "minecraft:drowned": { + "protocol_id": 38 + }, + "minecraft:egg": { + "protocol_id": 39 + }, + "minecraft:elder_guardian": { + "protocol_id": 40 + }, + "minecraft:end_crystal": { + "protocol_id": 45 + }, + "minecraft:ender_dragon": { + "protocol_id": 43 + }, + "minecraft:ender_pearl": { + "protocol_id": 44 + }, + "minecraft:enderman": { + "protocol_id": 41 + }, + "minecraft:endermite": { + "protocol_id": 42 + }, + "minecraft:evoker": { + "protocol_id": 46 + }, + "minecraft:evoker_fangs": { + "protocol_id": 47 + }, + "minecraft:experience_bottle": { + "protocol_id": 48 + }, + "minecraft:experience_orb": { + "protocol_id": 49 + }, + "minecraft:eye_of_ender": { + "protocol_id": 50 + }, + "minecraft:falling_block": { + "protocol_id": 51 + }, + "minecraft:fireball": { + "protocol_id": 52 + }, + "minecraft:firework_rocket": { + "protocol_id": 53 + }, + "minecraft:fishing_bobber": { + "protocol_id": 157 + }, + "minecraft:fox": { + "protocol_id": 54 + }, + "minecraft:frog": { + "protocol_id": 55 + }, + "minecraft:furnace_minecart": { + "protocol_id": 56 + }, + "minecraft:ghast": { + "protocol_id": 57 + }, + "minecraft:giant": { + "protocol_id": 59 + }, + "minecraft:glow_item_frame": { + "protocol_id": 60 + }, + "minecraft:glow_squid": { + "protocol_id": 61 + }, + "minecraft:goat": { + "protocol_id": 62 + }, + "minecraft:guardian": { + "protocol_id": 63 + }, + "minecraft:happy_ghast": { + "protocol_id": 58 + }, + "minecraft:hoglin": { + "protocol_id": 64 + }, + "minecraft:hopper_minecart": { + "protocol_id": 65 + }, + "minecraft:horse": { + "protocol_id": 66 + }, + "minecraft:husk": { + "protocol_id": 67 + }, + "minecraft:illusioner": { + "protocol_id": 68 + }, + "minecraft:interaction": { + "protocol_id": 69 + }, + "minecraft:iron_golem": { + "protocol_id": 70 + }, + "minecraft:item": { + "protocol_id": 71 + }, + "minecraft:item_display": { + "protocol_id": 72 + }, + "minecraft:item_frame": { + "protocol_id": 73 + }, + "minecraft:jungle_boat": { + "protocol_id": 74 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 75 + }, + "minecraft:leash_knot": { + "protocol_id": 76 + }, + "minecraft:lightning_bolt": { + "protocol_id": 77 + }, + "minecraft:lingering_potion": { + "protocol_id": 106 + }, + "minecraft:llama": { + "protocol_id": 78 + }, + "minecraft:llama_spit": { + "protocol_id": 79 + }, + "minecraft:magma_cube": { + "protocol_id": 80 + }, + "minecraft:mangrove_boat": { + "protocol_id": 81 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 82 + }, + "minecraft:mannequin": { + "protocol_id": 83 + }, + "minecraft:marker": { + "protocol_id": 84 + }, + "minecraft:minecart": { + "protocol_id": 85 + }, + "minecraft:mooshroom": { + "protocol_id": 86 + }, + "minecraft:mule": { + "protocol_id": 87 + }, + "minecraft:nautilus": { + "protocol_id": 88 + }, + "minecraft:oak_boat": { + "protocol_id": 89 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 90 + }, + "minecraft:ocelot": { + "protocol_id": 91 + }, + "minecraft:ominous_item_spawner": { + "protocol_id": 92 + }, + "minecraft:painting": { + "protocol_id": 93 + }, + "minecraft:pale_oak_boat": { + "protocol_id": 94 + }, + "minecraft:pale_oak_chest_boat": { + "protocol_id": 95 + }, + "minecraft:panda": { + "protocol_id": 96 + }, + "minecraft:parched": { + "protocol_id": 97 + }, + "minecraft:parrot": { + "protocol_id": 98 + }, + "minecraft:phantom": { + "protocol_id": 99 + }, + "minecraft:pig": { + "protocol_id": 100 + }, + "minecraft:piglin": { + "protocol_id": 101 + }, + "minecraft:piglin_brute": { + "protocol_id": 102 + }, + "minecraft:pillager": { + "protocol_id": 103 + }, + "minecraft:player": { + "protocol_id": 156 + }, + "minecraft:polar_bear": { + "protocol_id": 104 + }, + "minecraft:pufferfish": { + "protocol_id": 107 + }, + "minecraft:rabbit": { + "protocol_id": 108 + }, + "minecraft:ravager": { + "protocol_id": 109 + }, + "minecraft:salmon": { + "protocol_id": 110 + }, + "minecraft:sheep": { + "protocol_id": 111 + }, + "minecraft:shulker": { + "protocol_id": 112 + }, + "minecraft:shulker_bullet": { + "protocol_id": 113 + }, + "minecraft:silverfish": { + "protocol_id": 114 + }, + "minecraft:skeleton": { + "protocol_id": 115 + }, + "minecraft:skeleton_horse": { + "protocol_id": 116 + }, + "minecraft:slime": { + "protocol_id": 117 + }, + "minecraft:small_fireball": { + "protocol_id": 118 + }, + "minecraft:sniffer": { + "protocol_id": 119 + }, + "minecraft:snow_golem": { + "protocol_id": 121 + }, + "minecraft:snowball": { + "protocol_id": 120 + }, + "minecraft:spawner_minecart": { + "protocol_id": 122 + }, + "minecraft:spectral_arrow": { + "protocol_id": 123 + }, + "minecraft:spider": { + "protocol_id": 124 + }, + "minecraft:splash_potion": { + "protocol_id": 105 + }, + "minecraft:spruce_boat": { + "protocol_id": 125 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 126 + }, + "minecraft:squid": { + "protocol_id": 127 + }, + "minecraft:stray": { + "protocol_id": 128 + }, + "minecraft:strider": { + "protocol_id": 129 + }, + "minecraft:sulfur_cube": { + "protocol_id": 130 + }, + "minecraft:tadpole": { + "protocol_id": 131 + }, + "minecraft:text_display": { + "protocol_id": 132 + }, + "minecraft:tnt": { + "protocol_id": 133 + }, + "minecraft:tnt_minecart": { + "protocol_id": 134 + }, + "minecraft:trader_llama": { + "protocol_id": 135 + }, + "minecraft:trident": { + "protocol_id": 136 + }, + "minecraft:tropical_fish": { + "protocol_id": 137 + }, + "minecraft:turtle": { + "protocol_id": 138 + }, + "minecraft:vex": { + "protocol_id": 139 + }, + "minecraft:villager": { + "protocol_id": 140 + }, + "minecraft:vindicator": { + "protocol_id": 141 + }, + "minecraft:wandering_trader": { + "protocol_id": 142 + }, + "minecraft:warden": { + "protocol_id": 143 + }, + "minecraft:wind_charge": { + "protocol_id": 144 + }, + "minecraft:witch": { + "protocol_id": 145 + }, + "minecraft:wither": { + "protocol_id": 146 + }, + "minecraft:wither_skeleton": { + "protocol_id": 147 + }, + "minecraft:wither_skull": { + "protocol_id": 148 + }, + "minecraft:wolf": { + "protocol_id": 149 + }, + "minecraft:zoglin": { + "protocol_id": 150 + }, + "minecraft:zombie": { + "protocol_id": 151 + }, + "minecraft:zombie_horse": { + "protocol_id": 152 + }, + "minecraft:zombie_nautilus": { + "protocol_id": 153 + }, + "minecraft:zombie_villager": { + "protocol_id": 154 + }, + "minecraft:zombified_piglin": { + "protocol_id": 155 + } + }, + "protocol_id": 6 + }, + "minecraft:environment_attribute": { + "entries": { + "minecraft:audio/ambient_sounds": { + "protocol_id": 26 + }, + "minecraft:audio/background_music": { + "protocol_id": 24 + }, + "minecraft:audio/firefly_bush_sounds": { + "protocol_id": 27 + }, + "minecraft:audio/music_volume": { + "protocol_id": 25 + }, + "minecraft:gameplay/baby_villager_activity": { + "protocol_id": 47 + }, + "minecraft:gameplay/bed_rule": { + "protocol_id": 31 + }, + "minecraft:gameplay/bees_stay_in_hive": { + "protocol_id": 43 + }, + "minecraft:gameplay/can_pillager_patrol_spawn": { + "protocol_id": 45 + }, + "minecraft:gameplay/can_start_raid": { + "protocol_id": 29 + }, + "minecraft:gameplay/cat_waking_up_gift_chance": { + "protocol_id": 42 + }, + "minecraft:gameplay/creaking_active": { + "protocol_id": 40 + }, + "minecraft:gameplay/eyeblossom_open": { + "protocol_id": 36 + }, + "minecraft:gameplay/fast_lava": { + "protocol_id": 34 + }, + "minecraft:gameplay/increased_fire_burnout": { + "protocol_id": 35 + }, + "minecraft:gameplay/monsters_burn": { + "protocol_id": 44 + }, + "minecraft:gameplay/nether_portal_spawns_piglin": { + "protocol_id": 33 + }, + "minecraft:gameplay/piglins_zombify": { + "protocol_id": 38 + }, + "minecraft:gameplay/respawn_anchor_works": { + "protocol_id": 32 + }, + "minecraft:gameplay/sky_light_level": { + "protocol_id": 28 + }, + "minecraft:gameplay/snow_golem_melts": { + "protocol_id": 39 + }, + "minecraft:gameplay/surface_slime_spawn_chance": { + "protocol_id": 41 + }, + "minecraft:gameplay/turtle_egg_hatch_chance": { + "protocol_id": 37 + }, + "minecraft:gameplay/villager_activity": { + "protocol_id": 46 + }, + "minecraft:gameplay/water_evaporates": { + "protocol_id": 30 + }, + "minecraft:visual/ambient_light_color": { + "protocol_id": 21 + }, + "minecraft:visual/ambient_particles": { + "protocol_id": 23 + }, + "minecraft:visual/block_light_tint": { + "protocol_id": 17 + }, + "minecraft:visual/cloud_color": { + "protocol_id": 10 + }, + "minecraft:visual/cloud_fog_end_distance": { + "protocol_id": 4 + }, + "minecraft:visual/cloud_height": { + "protocol_id": 11 + }, + "minecraft:visual/default_dripstone_particle": { + "protocol_id": 22 + }, + "minecraft:visual/fog_color": { + "protocol_id": 0 + }, + "minecraft:visual/fog_end_distance": { + "protocol_id": 2 + }, + "minecraft:visual/fog_start_distance": { + "protocol_id": 1 + }, + "minecraft:visual/moon_angle": { + "protocol_id": 13 + }, + "minecraft:visual/moon_phase": { + "protocol_id": 15 + }, + "minecraft:visual/night_vision_color": { + "protocol_id": 20 + }, + "minecraft:visual/sky_color": { + "protocol_id": 8 + }, + "minecraft:visual/sky_fog_end_distance": { + "protocol_id": 3 + }, + "minecraft:visual/sky_light_color": { + "protocol_id": 18 + }, + "minecraft:visual/sky_light_factor": { + "protocol_id": 19 + }, + "minecraft:visual/star_angle": { + "protocol_id": 14 + }, + "minecraft:visual/star_brightness": { + "protocol_id": 16 + }, + "minecraft:visual/sun_angle": { + "protocol_id": 12 + }, + "minecraft:visual/sunrise_sunset_color": { + "protocol_id": 9 + }, + "minecraft:visual/water_fog_color": { + "protocol_id": 5 + }, + "minecraft:visual/water_fog_end_distance": { + "protocol_id": 7 + }, + "minecraft:visual/water_fog_start_distance": { + "protocol_id": 6 + } + }, + "protocol_id": 91 + }, + "minecraft:float_provider_type": { + "entries": { + "minecraft:clamped_normal": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 3 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 35 + }, + "minecraft:fluid": { + "default": "minecraft:empty", + "entries": { + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:flowing_lava": { + "protocol_id": 3 + }, + "minecraft:flowing_water": { + "protocol_id": 1 + }, + "minecraft:lava": { + "protocol_id": 4 + }, + "minecraft:water": { + "protocol_id": 2 + } + }, + "protocol_id": 2 + }, + "minecraft:game_event": { + "default": "minecraft:step", + "entries": { + "minecraft:block_activate": { + "protocol_id": 0 + }, + "minecraft:block_attach": { + "protocol_id": 1 + }, + "minecraft:block_change": { + "protocol_id": 2 + }, + "minecraft:block_close": { + "protocol_id": 3 + }, + "minecraft:block_deactivate": { + "protocol_id": 4 + }, + "minecraft:block_destroy": { + "protocol_id": 5 + }, + "minecraft:block_detach": { + "protocol_id": 6 + }, + "minecraft:block_open": { + "protocol_id": 7 + }, + "minecraft:block_place": { + "protocol_id": 8 + }, + "minecraft:bounce": { + "protocol_id": 9 + }, + "minecraft:container_close": { + "protocol_id": 10 + }, + "minecraft:container_open": { + "protocol_id": 11 + }, + "minecraft:drink": { + "protocol_id": 12 + }, + "minecraft:eat": { + "protocol_id": 13 + }, + "minecraft:elytra_glide": { + "protocol_id": 14 + }, + "minecraft:entity_action": { + "protocol_id": 21 + }, + "minecraft:entity_damage": { + "protocol_id": 15 + }, + "minecraft:entity_die": { + "protocol_id": 16 + }, + "minecraft:entity_dismount": { + "protocol_id": 17 + }, + "minecraft:entity_interact": { + "protocol_id": 18 + }, + "minecraft:entity_mount": { + "protocol_id": 19 + }, + "minecraft:entity_place": { + "protocol_id": 20 + }, + "minecraft:equip": { + "protocol_id": 22 + }, + "minecraft:explode": { + "protocol_id": 23 + }, + "minecraft:flap": { + "protocol_id": 24 + }, + "minecraft:fluid_pickup": { + "protocol_id": 25 + }, + "minecraft:fluid_place": { + "protocol_id": 26 + }, + "minecraft:hit_ground": { + "protocol_id": 27 + }, + "minecraft:instrument_play": { + "protocol_id": 28 + }, + "minecraft:item_interact_finish": { + "protocol_id": 29 + }, + "minecraft:item_interact_start": { + "protocol_id": 30 + }, + "minecraft:jukebox_play": { + "protocol_id": 31 + }, + "minecraft:jukebox_stop_play": { + "protocol_id": 32 + }, + "minecraft:lightning_strike": { + "protocol_id": 33 + }, + "minecraft:note_block_play": { + "protocol_id": 34 + }, + "minecraft:prime_fuse": { + "protocol_id": 35 + }, + "minecraft:projectile_land": { + "protocol_id": 36 + }, + "minecraft:projectile_shoot": { + "protocol_id": 37 + }, + "minecraft:resonate_1": { + "protocol_id": 46 + }, + "minecraft:resonate_10": { + "protocol_id": 55 + }, + "minecraft:resonate_11": { + "protocol_id": 56 + }, + "minecraft:resonate_12": { + "protocol_id": 57 + }, + "minecraft:resonate_13": { + "protocol_id": 58 + }, + "minecraft:resonate_14": { + "protocol_id": 59 + }, + "minecraft:resonate_15": { + "protocol_id": 60 + }, + "minecraft:resonate_2": { + "protocol_id": 47 + }, + "minecraft:resonate_3": { + "protocol_id": 48 + }, + "minecraft:resonate_4": { + "protocol_id": 49 + }, + "minecraft:resonate_5": { + "protocol_id": 50 + }, + "minecraft:resonate_6": { + "protocol_id": 51 + }, + "minecraft:resonate_7": { + "protocol_id": 52 + }, + "minecraft:resonate_8": { + "protocol_id": 53 + }, + "minecraft:resonate_9": { + "protocol_id": 54 + }, + "minecraft:sculk_sensor_tendrils_clicking": { + "protocol_id": 38 + }, + "minecraft:shear": { + "protocol_id": 39 + }, + "minecraft:shriek": { + "protocol_id": 40 + }, + "minecraft:splash": { + "protocol_id": 41 + }, + "minecraft:step": { + "protocol_id": 42 + }, + "minecraft:swim": { + "protocol_id": 43 + }, + "minecraft:teleport": { + "protocol_id": 44 + }, + "minecraft:unequip": { + "protocol_id": 45 + } + }, + "protocol_id": 0 + }, + "minecraft:game_rule": { + "entries": { + "minecraft:advance_time": { + "protocol_id": 0 + }, + "minecraft:advance_weather": { + "protocol_id": 1 + }, + "minecraft:allow_entering_nether_using_portals": { + "protocol_id": 2 + }, + "minecraft:block_drops": { + "protocol_id": 3 + }, + "minecraft:block_explosion_drop_decay": { + "protocol_id": 4 + }, + "minecraft:command_block_output": { + "protocol_id": 6 + }, + "minecraft:command_blocks_work": { + "protocol_id": 5 + }, + "minecraft:drowning_damage": { + "protocol_id": 7 + }, + "minecraft:elytra_movement_check": { + "protocol_id": 8 + }, + "minecraft:ender_pearls_vanish_on_death": { + "protocol_id": 9 + }, + "minecraft:entity_drops": { + "protocol_id": 10 + }, + "minecraft:fall_damage": { + "protocol_id": 11 + }, + "minecraft:fire_damage": { + "protocol_id": 12 + }, + "minecraft:fire_spread_radius_around_player": { + "protocol_id": 13 + }, + "minecraft:forgive_dead_players": { + "protocol_id": 14 + }, + "minecraft:freeze_damage": { + "protocol_id": 15 + }, + "minecraft:global_sound_events": { + "protocol_id": 16 + }, + "minecraft:immediate_respawn": { + "protocol_id": 17 + }, + "minecraft:keep_inventory": { + "protocol_id": 18 + }, + "minecraft:lava_source_conversion": { + "protocol_id": 19 + }, + "minecraft:limited_crafting": { + "protocol_id": 20 + }, + "minecraft:locator_bar": { + "protocol_id": 21 + }, + "minecraft:log_admin_commands": { + "protocol_id": 22 + }, + "minecraft:max_block_modifications": { + "protocol_id": 23 + }, + "minecraft:max_command_forks": { + "protocol_id": 24 + }, + "minecraft:max_command_sequence_length": { + "protocol_id": 25 + }, + "minecraft:max_entity_cramming": { + "protocol_id": 26 + }, + "minecraft:max_minecart_speed": { + "protocol_id": 27 + }, + "minecraft:max_snow_accumulation_height": { + "protocol_id": 28 + }, + "minecraft:mob_drops": { + "protocol_id": 29 + }, + "minecraft:mob_explosion_drop_decay": { + "protocol_id": 30 + }, + "minecraft:mob_griefing": { + "protocol_id": 31 + }, + "minecraft:natural_health_regeneration": { + "protocol_id": 32 + }, + "minecraft:player_movement_check": { + "protocol_id": 33 + }, + "minecraft:players_nether_portal_creative_delay": { + "protocol_id": 34 + }, + "minecraft:players_nether_portal_default_delay": { + "protocol_id": 35 + }, + "minecraft:players_sleeping_percentage": { + "protocol_id": 36 + }, + "minecraft:projectiles_can_break_blocks": { + "protocol_id": 37 + }, + "minecraft:pvp": { + "protocol_id": 38 + }, + "minecraft:raids": { + "protocol_id": 39 + }, + "minecraft:random_tick_speed": { + "protocol_id": 40 + }, + "minecraft:reduced_debug_info": { + "protocol_id": 41 + }, + "minecraft:respawn_radius": { + "protocol_id": 42 + }, + "minecraft:send_command_feedback": { + "protocol_id": 43 + }, + "minecraft:show_advancement_messages": { + "protocol_id": 44 + }, + "minecraft:show_death_messages": { + "protocol_id": 45 + }, + "minecraft:spawn_mobs": { + "protocol_id": 47 + }, + "minecraft:spawn_monsters": { + "protocol_id": 48 + }, + "minecraft:spawn_patrols": { + "protocol_id": 49 + }, + "minecraft:spawn_phantoms": { + "protocol_id": 50 + }, + "minecraft:spawn_wandering_traders": { + "protocol_id": 51 + }, + "minecraft:spawn_wardens": { + "protocol_id": 52 + }, + "minecraft:spawner_blocks_work": { + "protocol_id": 46 + }, + "minecraft:spectators_generate_chunks": { + "protocol_id": 53 + }, + "minecraft:spread_vines": { + "protocol_id": 54 + }, + "minecraft:tnt_explodes": { + "protocol_id": 55 + }, + "minecraft:tnt_explosion_drop_decay": { + "protocol_id": 56 + }, + "minecraft:universal_anger": { + "protocol_id": 57 + }, + "minecraft:water_source_conversion": { + "protocol_id": 58 + } + }, + "protocol_id": 65 + }, + "minecraft:height_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 4 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:very_biased_to_bottom": { + "protocol_id": 3 + }, + "minecraft:weighted_list": { + "protocol_id": 5 + } + }, + "protocol_id": 37 + }, + "minecraft:incoming_rpc_methods": { + "entries": { + "minecraft:allowlist": { + "protocol_id": 0 + }, + "minecraft:allowlist/add": { + "protocol_id": 2 + }, + "minecraft:allowlist/clear": { + "protocol_id": 4 + }, + "minecraft:allowlist/remove": { + "protocol_id": 3 + }, + "minecraft:allowlist/set": { + "protocol_id": 1 + }, + "minecraft:bans": { + "protocol_id": 5 + }, + "minecraft:bans/add": { + "protocol_id": 7 + }, + "minecraft:bans/clear": { + "protocol_id": 9 + }, + "minecraft:bans/remove": { + "protocol_id": 8 + }, + "minecraft:bans/set": { + "protocol_id": 6 + }, + "minecraft:gamerules": { + "protocol_id": 66 + }, + "minecraft:gamerules/update": { + "protocol_id": 67 + }, + "minecraft:ip_bans": { + "protocol_id": 10 + }, + "minecraft:ip_bans/add": { + "protocol_id": 12 + }, + "minecraft:ip_bans/clear": { + "protocol_id": 14 + }, + "minecraft:ip_bans/remove": { + "protocol_id": 13 + }, + "minecraft:ip_bans/set": { + "protocol_id": 11 + }, + "minecraft:operators": { + "protocol_id": 17 + }, + "minecraft:operators/add": { + "protocol_id": 19 + }, + "minecraft:operators/clear": { + "protocol_id": 21 + }, + "minecraft:operators/remove": { + "protocol_id": 20 + }, + "minecraft:operators/set": { + "protocol_id": 18 + }, + "minecraft:players": { + "protocol_id": 15 + }, + "minecraft:players/kick": { + "protocol_id": 16 + }, + "minecraft:rpc.discover": { + "protocol_id": 68 + }, + "minecraft:server/save": { + "protocol_id": 23 + }, + "minecraft:server/status": { + "protocol_id": 22 + }, + "minecraft:server/stop": { + "protocol_id": 24 + }, + "minecraft:server/system_message": { + "protocol_id": 25 + }, + "minecraft:serversettings/accept_transfers": { + "protocol_id": 54 + }, + "minecraft:serversettings/accept_transfers/set": { + "protocol_id": 55 + }, + "minecraft:serversettings/allow_flight": { + "protocol_id": 40 + }, + "minecraft:serversettings/allow_flight/set": { + "protocol_id": 41 + }, + "minecraft:serversettings/autosave": { + "protocol_id": 26 + }, + "minecraft:serversettings/autosave/set": { + "protocol_id": 27 + }, + "minecraft:serversettings/difficulty": { + "protocol_id": 28 + }, + "minecraft:serversettings/difficulty/set": { + "protocol_id": 29 + }, + "minecraft:serversettings/enforce_allowlist": { + "protocol_id": 30 + }, + "minecraft:serversettings/enforce_allowlist/set": { + "protocol_id": 31 + }, + "minecraft:serversettings/entity_broadcast_range": { + "protocol_id": 64 + }, + "minecraft:serversettings/entity_broadcast_range/set": { + "protocol_id": 65 + }, + "minecraft:serversettings/force_game_mode": { + "protocol_id": 46 + }, + "minecraft:serversettings/force_game_mode/set": { + "protocol_id": 47 + }, + "minecraft:serversettings/game_mode": { + "protocol_id": 48 + }, + "minecraft:serversettings/game_mode/set": { + "protocol_id": 49 + }, + "minecraft:serversettings/hide_online_players": { + "protocol_id": 60 + }, + "minecraft:serversettings/hide_online_players/set": { + "protocol_id": 61 + }, + "minecraft:serversettings/max_players": { + "protocol_id": 34 + }, + "minecraft:serversettings/max_players/set": { + "protocol_id": 35 + }, + "minecraft:serversettings/motd": { + "protocol_id": 42 + }, + "minecraft:serversettings/motd/set": { + "protocol_id": 43 + }, + "minecraft:serversettings/operator_user_permission_level": { + "protocol_id": 58 + }, + "minecraft:serversettings/operator_user_permission_level/set": { + "protocol_id": 59 + }, + "minecraft:serversettings/pause_when_empty_seconds": { + "protocol_id": 36 + }, + "minecraft:serversettings/pause_when_empty_seconds/set": { + "protocol_id": 37 + }, + "minecraft:serversettings/player_idle_timeout": { + "protocol_id": 38 + }, + "minecraft:serversettings/player_idle_timeout/set": { + "protocol_id": 39 + }, + "minecraft:serversettings/simulation_distance": { + "protocol_id": 52 + }, + "minecraft:serversettings/simulation_distance/set": { + "protocol_id": 53 + }, + "minecraft:serversettings/spawn_protection_radius": { + "protocol_id": 44 + }, + "minecraft:serversettings/spawn_protection_radius/set": { + "protocol_id": 45 + }, + "minecraft:serversettings/status_heartbeat_interval": { + "protocol_id": 56 + }, + "minecraft:serversettings/status_heartbeat_interval/set": { + "protocol_id": 57 + }, + "minecraft:serversettings/status_replies": { + "protocol_id": 62 + }, + "minecraft:serversettings/status_replies/set": { + "protocol_id": 63 + }, + "minecraft:serversettings/use_allowlist": { + "protocol_id": 32 + }, + "minecraft:serversettings/use_allowlist/set": { + "protocol_id": 33 + }, + "minecraft:serversettings/view_distance": { + "protocol_id": 50 + }, + "minecraft:serversettings/view_distance/set": { + "protocol_id": 51 + } + }, + "protocol_id": 80 + }, + "minecraft:input_control_type": { + "entries": { + "minecraft:boolean": { + "protocol_id": 0 + }, + "minecraft:number_range": { + "protocol_id": 1 + }, + "minecraft:single_option": { + "protocol_id": 2 + }, + "minecraft:text": { + "protocol_id": 3 + } + }, + "protocol_id": 87 + }, + "minecraft:int_provider_type": { + "entries": { + "minecraft:biased_to_bottom": { + "protocol_id": 2 + }, + "minecraft:clamped": { + "protocol_id": 3 + }, + "minecraft:clamped_normal": { + "protocol_id": 5 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:trapezoid": { + "protocol_id": 6 + }, + "minecraft:uniform": { + "protocol_id": 1 + }, + "minecraft:weighted_list": { + "protocol_id": 4 + } + }, + "protocol_id": 36 + }, + "minecraft:item": { + "default": "minecraft:air", + "entries": { + "minecraft:acacia_boat": { + "protocol_id": 899 + }, + "minecraft:acacia_button": { + "protocol_id": 783 + }, + "minecraft:acacia_chest_boat": { + "protocol_id": 900 + }, + "minecraft:acacia_door": { + "protocol_id": 812 + }, + "minecraft:acacia_fence": { + "protocol_id": 376 + }, + "minecraft:acacia_fence_gate": { + "protocol_id": 853 + }, + "minecraft:acacia_hanging_sign": { + "protocol_id": 1032 + }, + "minecraft:acacia_leaves": { + "protocol_id": 213 + }, + "minecraft:acacia_log": { + "protocol_id": 165 + }, + "minecraft:acacia_planks": { + "protocol_id": 67 + }, + "minecraft:acacia_pressure_plate": { + "protocol_id": 799 + }, + "minecraft:acacia_sapling": { + "protocol_id": 80 + }, + "minecraft:acacia_shelf": { + "protocol_id": 333 + }, + "minecraft:acacia_sign": { + "protocol_id": 1020 + }, + "minecraft:acacia_slab": { + "protocol_id": 302 + }, + "minecraft:acacia_stairs": { + "protocol_id": 473 + }, + "minecraft:acacia_trapdoor": { + "protocol_id": 833 + }, + "minecraft:acacia_wood": { + "protocol_id": 202 + }, + "minecraft:activator_rail": { + "protocol_id": 864 + }, + "minecraft:air": { + "protocol_id": 0 + }, + "minecraft:allay_spawn_egg": { + "protocol_id": 1192 + }, + "minecraft:allium": { + "protocol_id": 262 + }, + "minecraft:amethyst_block": { + "protocol_id": 115 + }, + "minecraft:amethyst_cluster": { + "protocol_id": 1449 + }, + "minecraft:amethyst_shard": { + "protocol_id": 930 + }, + "minecraft:ancient_debris": { + "protocol_id": 109 + }, + "minecraft:andesite": { + "protocol_id": 6 + }, + "minecraft:andesite_slab": { + "protocol_id": 736 + }, + "minecraft:andesite_stairs": { + "protocol_id": 719 + }, + "minecraft:andesite_wall": { + "protocol_id": 494 + }, + "minecraft:angler_pottery_sherd": { + "protocol_id": 1477 + }, + "minecraft:anvil": { + "protocol_id": 506 + }, + "minecraft:apple": { + "protocol_id": 921 + }, + "minecraft:archer_pottery_sherd": { + "protocol_id": 1478 + }, + "minecraft:armadillo_scute": { + "protocol_id": 917 + }, + "minecraft:armadillo_spawn_egg": { + "protocol_id": 1170 + }, + "minecraft:armor_stand": { + "protocol_id": 1284 + }, + "minecraft:arms_up_pottery_sherd": { + "protocol_id": 1479 + }, + "minecraft:arrow": { + "protocol_id": 923 + }, + "minecraft:axolotl_bucket": { + "protocol_id": 1051 + }, + "minecraft:axolotl_spawn_egg": { + "protocol_id": 1180 + }, + "minecraft:azalea": { + "protocol_id": 232 + }, + "minecraft:azalea_leaves": { + "protocol_id": 218 + }, + "minecraft:azure_bluet": { + "protocol_id": 263 + }, + "minecraft:baked_potato": { + "protocol_id": 1259 + }, + "minecraft:bamboo": { + "protocol_id": 297 + }, + "minecraft:bamboo_block": { + "protocol_id": 174 + }, + "minecraft:bamboo_button": { + "protocol_id": 788 + }, + "minecraft:bamboo_chest_raft": { + "protocol_id": 910 + }, + "minecraft:bamboo_door": { + "protocol_id": 817 + }, + "minecraft:bamboo_fence": { + "protocol_id": 381 + }, + "minecraft:bamboo_fence_gate": { + "protocol_id": 858 + }, + "minecraft:bamboo_hanging_sign": { + "protocol_id": 1037 + }, + "minecraft:bamboo_mosaic": { + "protocol_id": 75 + }, + "minecraft:bamboo_mosaic_slab": { + "protocol_id": 308 + }, + "minecraft:bamboo_mosaic_stairs": { + "protocol_id": 479 + }, + "minecraft:bamboo_planks": { + "protocol_id": 72 + }, + "minecraft:bamboo_pressure_plate": { + "protocol_id": 804 + }, + "minecraft:bamboo_raft": { + "protocol_id": 909 + }, + "minecraft:bamboo_shelf": { + "protocol_id": 334 + }, + "minecraft:bamboo_sign": { + "protocol_id": 1025 + }, + "minecraft:bamboo_slab": { + "protocol_id": 307 + }, + "minecraft:bamboo_stairs": { + "protocol_id": 478 + }, + "minecraft:bamboo_trapdoor": { + "protocol_id": 838 + }, + "minecraft:barrel": { + "protocol_id": 1385 + }, + "minecraft:barrier": { + "protocol_id": 530 + }, + "minecraft:basalt": { + "protocol_id": 390 + }, + "minecraft:bat_spawn_egg": { + "protocol_id": 1171 + }, + "minecraft:beacon": { + "protocol_id": 483 + }, + "minecraft:bedrock": { + "protocol_id": 85 + }, + "minecraft:bee_nest": { + "protocol_id": 1410 + }, + "minecraft:bee_spawn_egg": { + "protocol_id": 1172 + }, + "minecraft:beef": { + "protocol_id": 1139 + }, + "minecraft:beehive": { + "protocol_id": 1411 + }, + "minecraft:beetroot": { + "protocol_id": 1317 + }, + "minecraft:beetroot_seeds": { + "protocol_id": 1318 + }, + "minecraft:beetroot_soup": { + "protocol_id": 1319 + }, + "minecraft:bell": { + "protocol_id": 1393 + }, + "minecraft:big_dripleaf": { + "protocol_id": 295 + }, + "minecraft:birch_boat": { + "protocol_id": 895 + }, + "minecraft:birch_button": { + "protocol_id": 781 + }, + "minecraft:birch_chest_boat": { + "protocol_id": 896 + }, + "minecraft:birch_door": { + "protocol_id": 810 + }, + "minecraft:birch_fence": { + "protocol_id": 374 + }, + "minecraft:birch_fence_gate": { + "protocol_id": 851 + }, + "minecraft:birch_hanging_sign": { + "protocol_id": 1030 + }, + "minecraft:birch_leaves": { + "protocol_id": 211 + }, + "minecraft:birch_log": { + "protocol_id": 163 + }, + "minecraft:birch_planks": { + "protocol_id": 65 + }, + "minecraft:birch_pressure_plate": { + "protocol_id": 797 + }, + "minecraft:birch_sapling": { + "protocol_id": 78 + }, + "minecraft:birch_shelf": { + "protocol_id": 335 + }, + "minecraft:birch_sign": { + "protocol_id": 1018 + }, + "minecraft:birch_slab": { + "protocol_id": 300 + }, + "minecraft:birch_stairs": { + "protocol_id": 471 + }, + "minecraft:birch_trapdoor": { + "protocol_id": 831 + }, + "minecraft:birch_wood": { + "protocol_id": 200 + }, + "minecraft:black_banner": { + "protocol_id": 1311 + }, + "minecraft:black_bed": { + "protocol_id": 1130 + }, + "minecraft:black_bundle": { + "protocol_id": 1081 + }, + "minecraft:black_candle": { + "protocol_id": 1445 + }, + "minecraft:black_carpet": { + "protocol_id": 548 + }, + "minecraft:black_concrete": { + "protocol_id": 657 + }, + "minecraft:black_concrete_powder": { + "protocol_id": 673 + }, + "minecraft:black_dye": { + "protocol_id": 1110 + }, + "minecraft:black_glazed_terracotta": { + "protocol_id": 641 + }, + "minecraft:black_harness": { + "protocol_id": 881 + }, + "minecraft:black_shulker_box": { + "protocol_id": 625 + }, + "minecraft:black_stained_glass": { + "protocol_id": 573 + }, + "minecraft:black_stained_glass_pane": { + "protocol_id": 589 + }, + "minecraft:black_terracotta": { + "protocol_id": 529 + }, + "minecraft:black_wool": { + "protocol_id": 255 + }, + "minecraft:blackstone": { + "protocol_id": 1416 + }, + "minecraft:blackstone_slab": { + "protocol_id": 1417 + }, + "minecraft:blackstone_stairs": { + "protocol_id": 1418 + }, + "minecraft:blackstone_wall": { + "protocol_id": 499 + }, + "minecraft:blade_pottery_sherd": { + "protocol_id": 1480 + }, + "minecraft:blast_furnace": { + "protocol_id": 1387 + }, + "minecraft:blaze_powder": { + "protocol_id": 1153 + }, + "minecraft:blaze_rod": { + "protocol_id": 1145 + }, + "minecraft:blaze_spawn_egg": { + "protocol_id": 1233 + }, + "minecraft:blue_banner": { + "protocol_id": 1307 + }, + "minecraft:blue_bed": { + "protocol_id": 1126 + }, + "minecraft:blue_bundle": { + "protocol_id": 1077 + }, + "minecraft:blue_candle": { + "protocol_id": 1441 + }, + "minecraft:blue_carpet": { + "protocol_id": 544 + }, + "minecraft:blue_concrete": { + "protocol_id": 653 + }, + "minecraft:blue_concrete_powder": { + "protocol_id": 669 + }, + "minecraft:blue_dye": { + "protocol_id": 1106 + }, + "minecraft:blue_egg": { + "protocol_id": 1061 + }, + "minecraft:blue_glazed_terracotta": { + "protocol_id": 637 + }, + "minecraft:blue_harness": { + "protocol_id": 877 + }, + "minecraft:blue_ice": { + "protocol_id": 707 + }, + "minecraft:blue_orchid": { + "protocol_id": 261 + }, + "minecraft:blue_shulker_box": { + "protocol_id": 621 + }, + "minecraft:blue_stained_glass": { + "protocol_id": 569 + }, + "minecraft:blue_stained_glass_pane": { + "protocol_id": 585 + }, + "minecraft:blue_terracotta": { + "protocol_id": 525 + }, + "minecraft:blue_wool": { + "protocol_id": 251 + }, + "minecraft:bogged_spawn_egg": { + "protocol_id": 1202 + }, + "minecraft:bolt_armor_trim_smithing_template": { + "protocol_id": 1476 + }, + "minecraft:bone": { + "protocol_id": 1112 + }, + "minecraft:bone_block": { + "protocol_id": 607 + }, + "minecraft:bone_meal": { + "protocol_id": 1111 + }, + "minecraft:book": { + "protocol_id": 1058 + }, + "minecraft:bookshelf": { + "protocol_id": 345 + }, + "minecraft:bordure_indented_banner_pattern": { + "protocol_id": 1382 + }, + "minecraft:bow": { + "protocol_id": 922 + }, + "minecraft:bowl": { + "protocol_id": 920 + }, + "minecraft:brain_coral": { + "protocol_id": 688 + }, + "minecraft:brain_coral_block": { + "protocol_id": 683 + }, + "minecraft:brain_coral_fan": { + "protocol_id": 698 + }, + "minecraft:bread": { + "protocol_id": 981 + }, + "minecraft:breeze_rod": { + "protocol_id": 1252 + }, + "minecraft:breeze_spawn_egg": { + "protocol_id": 1218 + }, + "minecraft:brewer_pottery_sherd": { + "protocol_id": 1481 + }, + "minecraft:brewing_stand": { + "protocol_id": 1155 + }, + "minecraft:brick": { + "protocol_id": 1054 + }, + "minecraft:brick_slab": { + "protocol_id": 317 + }, + "minecraft:brick_stairs": { + "protocol_id": 447 + }, + "minecraft:brick_wall": { + "protocol_id": 486 + }, + "minecraft:bricks": { + "protocol_id": 332 + }, + "minecraft:brown_banner": { + "protocol_id": 1308 + }, + "minecraft:brown_bed": { + "protocol_id": 1127 + }, + "minecraft:brown_bundle": { + "protocol_id": 1078 + }, + "minecraft:brown_candle": { + "protocol_id": 1442 + }, + "minecraft:brown_carpet": { + "protocol_id": 545 + }, + "minecraft:brown_concrete": { + "protocol_id": 654 + }, + "minecraft:brown_concrete_powder": { + "protocol_id": 670 + }, + "minecraft:brown_dye": { + "protocol_id": 1107 + }, + "minecraft:brown_egg": { + "protocol_id": 1062 + }, + "minecraft:brown_glazed_terracotta": { + "protocol_id": 638 + }, + "minecraft:brown_harness": { + "protocol_id": 878 + }, + "minecraft:brown_mushroom": { + "protocol_id": 275 + }, + "minecraft:brown_mushroom_block": { + "protocol_id": 415 + }, + "minecraft:brown_shulker_box": { + "protocol_id": 622 + }, + "minecraft:brown_stained_glass": { + "protocol_id": 570 + }, + "minecraft:brown_stained_glass_pane": { + "protocol_id": 586 + }, + "minecraft:brown_terracotta": { + "protocol_id": 526 + }, + "minecraft:brown_wool": { + "protocol_id": 252 + }, + "minecraft:brush": { + "protocol_id": 1457 + }, + "minecraft:bubble_coral": { + "protocol_id": 689 + }, + "minecraft:bubble_coral_block": { + "protocol_id": 684 + }, + "minecraft:bubble_coral_fan": { + "protocol_id": 699 + }, + "minecraft:bucket": { + "protocol_id": 1040 + }, + "minecraft:budding_amethyst": { + "protocol_id": 116 + }, + "minecraft:bundle": { + "protocol_id": 1065 + }, + "minecraft:burn_pottery_sherd": { + "protocol_id": 1482 + }, + "minecraft:bush": { + "protocol_id": 231 + }, + "minecraft:cactus": { + "protocol_id": 368 + }, + "minecraft:cactus_flower": { + "protocol_id": 369 + }, + "minecraft:cake": { + "protocol_id": 1114 + }, + "minecraft:calcite": { + "protocol_id": 11 + }, + "minecraft:calibrated_sculk_sensor": { + "protocol_id": 771 + }, + "minecraft:camel_husk_spawn_egg": { + "protocol_id": 1203 + }, + "minecraft:camel_spawn_egg": { + "protocol_id": 1163 + }, + "minecraft:campfire": { + "protocol_id": 1406 + }, + "minecraft:candle": { + "protocol_id": 1429 + }, + "minecraft:carrot": { + "protocol_id": 1257 + }, + "minecraft:carrot_on_a_stick": { + "protocol_id": 887 + }, + "minecraft:cartography_table": { + "protocol_id": 1388 + }, + "minecraft:carved_pumpkin": { + "protocol_id": 385 + }, + "minecraft:cat_spawn_egg": { + "protocol_id": 1167 + }, + "minecraft:cauldron": { + "protocol_id": 1156 + }, + "minecraft:cave_spider_spawn_egg": { + "protocol_id": 1216 + }, + "minecraft:chain_command_block": { + "protocol_id": 602 + }, + "minecraft:chainmail_boots": { + "protocol_id": 993 + }, + "minecraft:chainmail_chestplate": { + "protocol_id": 991 + }, + "minecraft:chainmail_helmet": { + "protocol_id": 990 + }, + "minecraft:chainmail_leggings": { + "protocol_id": 992 + }, + "minecraft:charcoal": { + "protocol_id": 925 + }, + "minecraft:cherry_boat": { + "protocol_id": 901 + }, + "minecraft:cherry_button": { + "protocol_id": 784 + }, + "minecraft:cherry_chest_boat": { + "protocol_id": 902 + }, + "minecraft:cherry_door": { + "protocol_id": 813 + }, + "minecraft:cherry_fence": { + "protocol_id": 377 + }, + "minecraft:cherry_fence_gate": { + "protocol_id": 854 + }, + "minecraft:cherry_hanging_sign": { + "protocol_id": 1033 + }, + "minecraft:cherry_leaves": { + "protocol_id": 214 + }, + "minecraft:cherry_log": { + "protocol_id": 166 + }, + "minecraft:cherry_planks": { + "protocol_id": 68 + }, + "minecraft:cherry_pressure_plate": { + "protocol_id": 800 + }, + "minecraft:cherry_sapling": { + "protocol_id": 81 + }, + "minecraft:cherry_shelf": { + "protocol_id": 336 + }, + "minecraft:cherry_sign": { + "protocol_id": 1021 + }, + "minecraft:cherry_slab": { + "protocol_id": 303 + }, + "minecraft:cherry_stairs": { + "protocol_id": 474 + }, + "minecraft:cherry_trapdoor": { + "protocol_id": 834 + }, + "minecraft:cherry_wood": { + "protocol_id": 203 + }, + "minecraft:chest": { + "protocol_id": 359 + }, + "minecraft:chest_minecart": { + "protocol_id": 883 + }, + "minecraft:chicken": { + "protocol_id": 1141 + }, + "minecraft:chicken_spawn_egg": { + "protocol_id": 1159 + }, + "minecraft:chipped_anvil": { + "protocol_id": 507 + }, + "minecraft:chiseled_bookshelf": { + "protocol_id": 346 + }, + "minecraft:chiseled_cinnabar": { + "protocol_id": 52 + }, + "minecraft:chiseled_copper": { + "protocol_id": 129 + }, + "minecraft:chiseled_deepslate": { + "protocol_id": 413 + }, + "minecraft:chiseled_nether_bricks": { + "protocol_id": 454 + }, + "minecraft:chiseled_polished_blackstone": { + "protocol_id": 1423 + }, + "minecraft:chiseled_quartz_block": { + "protocol_id": 509 + }, + "minecraft:chiseled_red_sandstone": { + "protocol_id": 598 + }, + "minecraft:chiseled_resin_bricks": { + "protocol_id": 446 + }, + "minecraft:chiseled_sandstone": { + "protocol_id": 226 + }, + "minecraft:chiseled_stone_bricks": { + "protocol_id": 406 + }, + "minecraft:chiseled_sulfur": { + "protocol_id": 39 + }, + "minecraft:chiseled_tuff": { + "protocol_id": 16 + }, + "minecraft:chiseled_tuff_bricks": { + "protocol_id": 25 + }, + "minecraft:chorus_flower": { + "protocol_id": 353 + }, + "minecraft:chorus_fruit": { + "protocol_id": 1313 + }, + "minecraft:chorus_plant": { + "protocol_id": 352 + }, + "minecraft:cinnabar": { + "protocol_id": 40 + }, + "minecraft:cinnabar_brick_slab": { + "protocol_id": 49 + }, + "minecraft:cinnabar_brick_stairs": { + "protocol_id": 50 + }, + "minecraft:cinnabar_brick_wall": { + "protocol_id": 51 + }, + "minecraft:cinnabar_bricks": { + "protocol_id": 48 + }, + "minecraft:cinnabar_slab": { + "protocol_id": 41 + }, + "minecraft:cinnabar_stairs": { + "protocol_id": 42 + }, + "minecraft:cinnabar_wall": { + "protocol_id": 43 + }, + "minecraft:clay": { + "protocol_id": 370 + }, + "minecraft:clay_ball": { + "protocol_id": 1055 + }, + "minecraft:clock": { + "protocol_id": 1083 + }, + "minecraft:closed_eyeblossom": { + "protocol_id": 259 + }, + "minecraft:coal": { + "protocol_id": 924 + }, + "minecraft:coal_block": { + "protocol_id": 110 + }, + "minecraft:coal_ore": { + "protocol_id": 91 + }, + "minecraft:coarse_dirt": { + "protocol_id": 56 + }, + "minecraft:coast_armor_trim_smithing_template": { + "protocol_id": 1461 + }, + "minecraft:cobbled_deepslate": { + "protocol_id": 9 + }, + "minecraft:cobbled_deepslate_slab": { + "protocol_id": 740 + }, + "minecraft:cobbled_deepslate_stairs": { + "protocol_id": 723 + }, + "minecraft:cobbled_deepslate_wall": { + "protocol_id": 502 + }, + "minecraft:cobblestone": { + "protocol_id": 62 + }, + "minecraft:cobblestone_slab": { + "protocol_id": 316 + }, + "minecraft:cobblestone_stairs": { + "protocol_id": 364 + }, + "minecraft:cobblestone_wall": { + "protocol_id": 484 + }, + "minecraft:cobweb": { + "protocol_id": 228 + }, + "minecraft:cocoa_beans": { + "protocol_id": 1094 + }, + "minecraft:cod": { + "protocol_id": 1086 + }, + "minecraft:cod_bucket": { + "protocol_id": 1049 + }, + "minecraft:cod_spawn_egg": { + "protocol_id": 1181 + }, + "minecraft:command_block": { + "protocol_id": 482 + }, + "minecraft:command_block_minecart": { + "protocol_id": 1293 + }, + "minecraft:comparator": { + "protocol_id": 749 + }, + "minecraft:compass": { + "protocol_id": 1063 + }, + "minecraft:composter": { + "protocol_id": 1384 + }, + "minecraft:conduit": { + "protocol_id": 708 + }, + "minecraft:cooked_beef": { + "protocol_id": 1140 + }, + "minecraft:cooked_chicken": { + "protocol_id": 1142 + }, + "minecraft:cooked_cod": { + "protocol_id": 1090 + }, + "minecraft:cooked_mutton": { + "protocol_id": 1295 + }, + "minecraft:cooked_porkchop": { + "protocol_id": 1012 + }, + "minecraft:cooked_rabbit": { + "protocol_id": 1280 + }, + "minecraft:cooked_salmon": { + "protocol_id": 1091 + }, + "minecraft:cookie": { + "protocol_id": 1131 + }, + "minecraft:copper_axe": { + "protocol_id": 947 + }, + "minecraft:copper_bars": { + "protocol_id": 419 + }, + "minecraft:copper_block": { + "protocol_id": 118 + }, + "minecraft:copper_boots": { + "protocol_id": 989 + }, + "minecraft:copper_bulb": { + "protocol_id": 1508 + }, + "minecraft:copper_chain": { + "protocol_id": 428 + }, + "minecraft:copper_chest": { + "protocol_id": 1516 + }, + "minecraft:copper_chestplate": { + "protocol_id": 987 + }, + "minecraft:copper_door": { + "protocol_id": 820 + }, + "minecraft:copper_golem_spawn_egg": { + "protocol_id": 1196 + }, + "minecraft:copper_golem_statue": { + "protocol_id": 1524 + }, + "minecraft:copper_grate": { + "protocol_id": 1500 + }, + "minecraft:copper_helmet": { + "protocol_id": 986 + }, + "minecraft:copper_hoe": { + "protocol_id": 948 + }, + "minecraft:copper_horse_armor": { + "protocol_id": 1285 + }, + "minecraft:copper_ingot": { + "protocol_id": 934 + }, + "minecraft:copper_lantern": { + "protocol_id": 1396 + }, + "minecraft:copper_leggings": { + "protocol_id": 988 + }, + "minecraft:copper_nautilus_armor": { + "protocol_id": 1368 + }, + "minecraft:copper_nugget": { + "protocol_id": 1336 + }, + "minecraft:copper_ore": { + "protocol_id": 95 + }, + "minecraft:copper_pickaxe": { + "protocol_id": 946 + }, + "minecraft:copper_shovel": { + "protocol_id": 945 + }, + "minecraft:copper_spear": { + "protocol_id": 1328 + }, + "minecraft:copper_sword": { + "protocol_id": 944 + }, + "minecraft:copper_torch": { + "protocol_id": 394 + }, + "minecraft:copper_trapdoor": { + "protocol_id": 841 + }, + "minecraft:cornflower": { + "protocol_id": 269 + }, + "minecraft:cow_spawn_egg": { + "protocol_id": 1160 + }, + "minecraft:cracked_deepslate_bricks": { + "protocol_id": 410 + }, + "minecraft:cracked_deepslate_tiles": { + "protocol_id": 412 + }, + "minecraft:cracked_nether_bricks": { + "protocol_id": 453 + }, + "minecraft:cracked_polished_blackstone_bricks": { + "protocol_id": 1427 + }, + "minecraft:cracked_stone_bricks": { + "protocol_id": 405 + }, + "minecraft:crafter": { + "protocol_id": 1132 + }, + "minecraft:crafting_table": { + "protocol_id": 360 + }, + "minecraft:creaking_heart": { + "protocol_id": 358 + }, + "minecraft:creaking_spawn_egg": { + "protocol_id": 1219 + }, + "minecraft:creeper_banner_pattern": { + "protocol_id": 1374 + }, + "minecraft:creeper_head": { + "protocol_id": 1267 + }, + "minecraft:creeper_spawn_egg": { + "protocol_id": 1220 + }, + "minecraft:crimson_button": { + "protocol_id": 789 + }, + "minecraft:crimson_door": { + "protocol_id": 818 + }, + "minecraft:crimson_fence": { + "protocol_id": 382 + }, + "minecraft:crimson_fence_gate": { + "protocol_id": 859 + }, + "minecraft:crimson_fungus": { + "protocol_id": 277 + }, + "minecraft:crimson_hanging_sign": { + "protocol_id": 1038 + }, + "minecraft:crimson_hyphae": { + "protocol_id": 207 + }, + "minecraft:crimson_nylium": { + "protocol_id": 60 + }, + "minecraft:crimson_planks": { + "protocol_id": 73 + }, + "minecraft:crimson_pressure_plate": { + "protocol_id": 805 + }, + "minecraft:crimson_roots": { + "protocol_id": 279 + }, + "minecraft:crimson_shelf": { + "protocol_id": 337 + }, + "minecraft:crimson_sign": { + "protocol_id": 1026 + }, + "minecraft:crimson_slab": { + "protocol_id": 309 + }, + "minecraft:crimson_stairs": { + "protocol_id": 480 + }, + "minecraft:crimson_stem": { + "protocol_id": 172 + }, + "minecraft:crimson_trapdoor": { + "protocol_id": 839 + }, + "minecraft:crossbow": { + "protocol_id": 1370 + }, + "minecraft:crying_obsidian": { + "protocol_id": 1415 + }, + "minecraft:cut_copper": { + "protocol_id": 137 + }, + "minecraft:cut_copper_slab": { + "protocol_id": 153 + }, + "minecraft:cut_copper_stairs": { + "protocol_id": 145 + }, + "minecraft:cut_red_sandstone": { + "protocol_id": 599 + }, + "minecraft:cut_red_sandstone_slab": { + "protocol_id": 323 + }, + "minecraft:cut_sandstone": { + "protocol_id": 227 + }, + "minecraft:cut_sandstone_slab": { + "protocol_id": 314 + }, + "minecraft:cyan_banner": { + "protocol_id": 1305 + }, + "minecraft:cyan_bed": { + "protocol_id": 1124 + }, + "minecraft:cyan_bundle": { + "protocol_id": 1075 + }, + "minecraft:cyan_candle": { + "protocol_id": 1439 + }, + "minecraft:cyan_carpet": { + "protocol_id": 542 + }, + "minecraft:cyan_concrete": { + "protocol_id": 651 + }, + "minecraft:cyan_concrete_powder": { + "protocol_id": 667 + }, + "minecraft:cyan_dye": { + "protocol_id": 1104 + }, + "minecraft:cyan_glazed_terracotta": { + "protocol_id": 635 + }, + "minecraft:cyan_harness": { + "protocol_id": 875 + }, + "minecraft:cyan_shulker_box": { + "protocol_id": 619 + }, + "minecraft:cyan_stained_glass": { + "protocol_id": 567 + }, + "minecraft:cyan_stained_glass_pane": { + "protocol_id": 583 + }, + "minecraft:cyan_terracotta": { + "protocol_id": 523 + }, + "minecraft:cyan_wool": { + "protocol_id": 249 + }, + "minecraft:damaged_anvil": { + "protocol_id": 508 + }, + "minecraft:dandelion": { + "protocol_id": 256 + }, + "minecraft:danger_pottery_sherd": { + "protocol_id": 1483 + }, + "minecraft:dark_oak_boat": { + "protocol_id": 903 + }, + "minecraft:dark_oak_button": { + "protocol_id": 785 + }, + "minecraft:dark_oak_chest_boat": { + "protocol_id": 904 + }, + "minecraft:dark_oak_door": { + "protocol_id": 814 + }, + "minecraft:dark_oak_fence": { + "protocol_id": 378 + }, + "minecraft:dark_oak_fence_gate": { + "protocol_id": 855 + }, + "minecraft:dark_oak_hanging_sign": { + "protocol_id": 1034 + }, + "minecraft:dark_oak_leaves": { + "protocol_id": 215 + }, + "minecraft:dark_oak_log": { + "protocol_id": 168 + }, + "minecraft:dark_oak_planks": { + "protocol_id": 69 + }, + "minecraft:dark_oak_pressure_plate": { + "protocol_id": 801 + }, + "minecraft:dark_oak_sapling": { + "protocol_id": 82 + }, + "minecraft:dark_oak_shelf": { + "protocol_id": 338 + }, + "minecraft:dark_oak_sign": { + "protocol_id": 1022 + }, + "minecraft:dark_oak_slab": { + "protocol_id": 304 + }, + "minecraft:dark_oak_stairs": { + "protocol_id": 475 + }, + "minecraft:dark_oak_trapdoor": { + "protocol_id": 835 + }, + "minecraft:dark_oak_wood": { + "protocol_id": 205 + }, + "minecraft:dark_prismarine": { + "protocol_id": 592 + }, + "minecraft:dark_prismarine_slab": { + "protocol_id": 327 + }, + "minecraft:dark_prismarine_stairs": { + "protocol_id": 595 + }, + "minecraft:daylight_detector": { + "protocol_id": 769 + }, + "minecraft:dead_brain_coral": { + "protocol_id": 692 + }, + "minecraft:dead_brain_coral_block": { + "protocol_id": 678 + }, + "minecraft:dead_brain_coral_fan": { + "protocol_id": 703 + }, + "minecraft:dead_bubble_coral": { + "protocol_id": 693 + }, + "minecraft:dead_bubble_coral_block": { + "protocol_id": 679 + }, + "minecraft:dead_bubble_coral_fan": { + "protocol_id": 704 + }, + "minecraft:dead_bush": { + "protocol_id": 234 + }, + "minecraft:dead_fire_coral": { + "protocol_id": 694 + }, + "minecraft:dead_fire_coral_block": { + "protocol_id": 680 + }, + "minecraft:dead_fire_coral_fan": { + "protocol_id": 705 + }, + "minecraft:dead_horn_coral": { + "protocol_id": 695 + }, + "minecraft:dead_horn_coral_block": { + "protocol_id": 681 + }, + "minecraft:dead_horn_coral_fan": { + "protocol_id": 706 + }, + "minecraft:dead_tube_coral": { + "protocol_id": 696 + }, + "minecraft:dead_tube_coral_block": { + "protocol_id": 677 + }, + "minecraft:dead_tube_coral_fan": { + "protocol_id": 702 + }, + "minecraft:debug_stick": { + "protocol_id": 1338 + }, + "minecraft:decorated_pot": { + "protocol_id": 347 + }, + "minecraft:deepslate": { + "protocol_id": 8 + }, + "minecraft:deepslate_brick_slab": { + "protocol_id": 742 + }, + "minecraft:deepslate_brick_stairs": { + "protocol_id": 725 + }, + "minecraft:deepslate_brick_wall": { + "protocol_id": 504 + }, + "minecraft:deepslate_bricks": { + "protocol_id": 409 + }, + "minecraft:deepslate_coal_ore": { + "protocol_id": 92 + }, + "minecraft:deepslate_copper_ore": { + "protocol_id": 96 + }, + "minecraft:deepslate_diamond_ore": { + "protocol_id": 106 + }, + "minecraft:deepslate_emerald_ore": { + "protocol_id": 102 + }, + "minecraft:deepslate_gold_ore": { + "protocol_id": 98 + }, + "minecraft:deepslate_iron_ore": { + "protocol_id": 94 + }, + "minecraft:deepslate_lapis_ore": { + "protocol_id": 104 + }, + "minecraft:deepslate_redstone_ore": { + "protocol_id": 100 + }, + "minecraft:deepslate_tile_slab": { + "protocol_id": 743 + }, + "minecraft:deepslate_tile_stairs": { + "protocol_id": 726 + }, + "minecraft:deepslate_tile_wall": { + "protocol_id": 505 + }, + "minecraft:deepslate_tiles": { + "protocol_id": 411 + }, + "minecraft:detector_rail": { + "protocol_id": 862 + }, + "minecraft:diamond": { + "protocol_id": 926 + }, + "minecraft:diamond_axe": { + "protocol_id": 967 + }, + "minecraft:diamond_block": { + "protocol_id": 127 + }, + "minecraft:diamond_boots": { + "protocol_id": 1001 + }, + "minecraft:diamond_chestplate": { + "protocol_id": 999 + }, + "minecraft:diamond_helmet": { + "protocol_id": 998 + }, + "minecraft:diamond_hoe": { + "protocol_id": 968 + }, + "minecraft:diamond_horse_armor": { + "protocol_id": 1288 + }, + "minecraft:diamond_leggings": { + "protocol_id": 1000 + }, + "minecraft:diamond_nautilus_armor": { + "protocol_id": 1366 + }, + "minecraft:diamond_ore": { + "protocol_id": 105 + }, + "minecraft:diamond_pickaxe": { + "protocol_id": 966 + }, + "minecraft:diamond_shovel": { + "protocol_id": 965 + }, + "minecraft:diamond_spear": { + "protocol_id": 1331 + }, + "minecraft:diamond_sword": { + "protocol_id": 964 + }, + "minecraft:diorite": { + "protocol_id": 4 + }, + "minecraft:diorite_slab": { + "protocol_id": 739 + }, + "minecraft:diorite_stairs": { + "protocol_id": 722 + }, + "minecraft:diorite_wall": { + "protocol_id": 498 + }, + "minecraft:dirt": { + "protocol_id": 55 + }, + "minecraft:dirt_path": { + "protocol_id": 551 + }, + "minecraft:disc_fragment_5": { + "protocol_id": 1361 + }, + "minecraft:dispenser": { + "protocol_id": 756 + }, + "minecraft:dolphin_spawn_egg": { + "protocol_id": 1182 + }, + "minecraft:donkey_spawn_egg": { + "protocol_id": 1164 + }, + "minecraft:dragon_breath": { + "protocol_id": 1320 + }, + "minecraft:dragon_egg": { + "protocol_id": 465 + }, + "minecraft:dragon_head": { + "protocol_id": 1268 + }, + "minecraft:dried_ghast": { + "protocol_id": 676 + }, + "minecraft:dried_kelp": { + "protocol_id": 1136 + }, + "minecraft:dried_kelp_block": { + "protocol_id": 1056 + }, + "minecraft:dripstone_block": { + "protocol_id": 53 + }, + "minecraft:dropper": { + "protocol_id": 757 + }, + "minecraft:drowned_spawn_egg": { + "protocol_id": 1204 + }, + "minecraft:dune_armor_trim_smithing_template": { + "protocol_id": 1460 + }, + "minecraft:echo_shard": { + "protocol_id": 1456 + }, + "minecraft:egg": { + "protocol_id": 1060 + }, + "minecraft:elder_guardian_spawn_egg": { + "protocol_id": 1221 + }, + "minecraft:elytra": { + "protocol_id": 890 + }, + "minecraft:emerald": { + "protocol_id": 927 + }, + "minecraft:emerald_block": { + "protocol_id": 468 + }, + "minecraft:emerald_ore": { + "protocol_id": 101 + }, + "minecraft:enchanted_book": { + "protocol_id": 1274 + }, + "minecraft:enchanted_golden_apple": { + "protocol_id": 1015 + }, + "minecraft:enchanting_table": { + "protocol_id": 461 + }, + "minecraft:end_crystal": { + "protocol_id": 1312 + }, + "minecraft:end_portal_frame": { + "protocol_id": 462 + }, + "minecraft:end_rod": { + "protocol_id": 351 + }, + "minecraft:end_stone": { + "protocol_id": 463 + }, + "minecraft:end_stone_brick_slab": { + "protocol_id": 732 + }, + "minecraft:end_stone_brick_stairs": { + "protocol_id": 714 + }, + "minecraft:end_stone_brick_wall": { + "protocol_id": 497 + }, + "minecraft:end_stone_bricks": { + "protocol_id": 464 + }, + "minecraft:ender_chest": { + "protocol_id": 467 + }, + "minecraft:ender_dragon_spawn_egg": { + "protocol_id": 1243 + }, + "minecraft:ender_eye": { + "protocol_id": 1157 + }, + "minecraft:ender_pearl": { + "protocol_id": 1144 + }, + "minecraft:enderman_spawn_egg": { + "protocol_id": 1244 + }, + "minecraft:endermite_spawn_egg": { + "protocol_id": 1245 + }, + "minecraft:evoker_spawn_egg": { + "protocol_id": 1228 + }, + "minecraft:experience_bottle": { + "protocol_id": 1247 + }, + "minecraft:explorer_pottery_sherd": { + "protocol_id": 1484 + }, + "minecraft:exposed_chiseled_copper": { + "protocol_id": 130 + }, + "minecraft:exposed_copper": { + "protocol_id": 119 + }, + "minecraft:exposed_copper_bars": { + "protocol_id": 420 + }, + "minecraft:exposed_copper_bulb": { + "protocol_id": 1509 + }, + "minecraft:exposed_copper_chain": { + "protocol_id": 429 + }, + "minecraft:exposed_copper_chest": { + "protocol_id": 1517 + }, + "minecraft:exposed_copper_door": { + "protocol_id": 821 + }, + "minecraft:exposed_copper_golem_statue": { + "protocol_id": 1525 + }, + "minecraft:exposed_copper_grate": { + "protocol_id": 1501 + }, + "minecraft:exposed_copper_lantern": { + "protocol_id": 1397 + }, + "minecraft:exposed_copper_trapdoor": { + "protocol_id": 842 + }, + "minecraft:exposed_cut_copper": { + "protocol_id": 138 + }, + "minecraft:exposed_cut_copper_slab": { + "protocol_id": 154 + }, + "minecraft:exposed_cut_copper_stairs": { + "protocol_id": 146 + }, + "minecraft:exposed_lightning_rod": { + "protocol_id": 762 + }, + "minecraft:eye_armor_trim_smithing_template": { + "protocol_id": 1464 + }, + "minecraft:farmland": { + "protocol_id": 361 + }, + "minecraft:feather": { + "protocol_id": 977 + }, + "minecraft:fermented_spider_eye": { + "protocol_id": 1152 + }, + "minecraft:fern": { + "protocol_id": 230 + }, + "minecraft:field_masoned_banner_pattern": { + "protocol_id": 1381 + }, + "minecraft:filled_map": { + "protocol_id": 1133 + }, + "minecraft:fire_charge": { + "protocol_id": 1248 + }, + "minecraft:fire_coral": { + "protocol_id": 690 + }, + "minecraft:fire_coral_block": { + "protocol_id": 685 + }, + "minecraft:fire_coral_fan": { + "protocol_id": 700 + }, + "minecraft:firefly_bush": { + "protocol_id": 235 + }, + "minecraft:firework_rocket": { + "protocol_id": 1272 + }, + "minecraft:firework_star": { + "protocol_id": 1273 + }, + "minecraft:fishing_rod": { + "protocol_id": 1082 + }, + "minecraft:fletching_table": { + "protocol_id": 1389 + }, + "minecraft:flint": { + "protocol_id": 1010 + }, + "minecraft:flint_and_steel": { + "protocol_id": 919 + }, + "minecraft:flow_armor_trim_smithing_template": { + "protocol_id": 1475 + }, + "minecraft:flow_banner_pattern": { + "protocol_id": 1379 + }, + "minecraft:flow_pottery_sherd": { + "protocol_id": 1485 + }, + "minecraft:flower_banner_pattern": { + "protocol_id": 1373 + }, + "minecraft:flower_pot": { + "protocol_id": 1256 + }, + "minecraft:flowering_azalea": { + "protocol_id": 233 + }, + "minecraft:flowering_azalea_leaves": { + "protocol_id": 219 + }, + "minecraft:fox_spawn_egg": { + "protocol_id": 1173 + }, + "minecraft:friend_pottery_sherd": { + "protocol_id": 1486 + }, + "minecraft:frog_spawn_egg": { + "protocol_id": 1183 + }, + "minecraft:frogspawn": { + "protocol_id": 1455 + }, + "minecraft:furnace": { + "protocol_id": 362 + }, + "minecraft:furnace_minecart": { + "protocol_id": 884 + }, + "minecraft:ghast_spawn_egg": { + "protocol_id": 1234 + }, + "minecraft:ghast_tear": { + "protocol_id": 1146 + }, + "minecraft:gilded_blackstone": { + "protocol_id": 1419 + }, + "minecraft:glass": { + "protocol_id": 222 + }, + "minecraft:glass_bottle": { + "protocol_id": 1149 + }, + "minecraft:glass_pane": { + "protocol_id": 436 + }, + "minecraft:glistering_melon_slice": { + "protocol_id": 1158 + }, + "minecraft:globe_banner_pattern": { + "protocol_id": 1377 + }, + "minecraft:glow_berries": { + "protocol_id": 1405 + }, + "minecraft:glow_ink_sac": { + "protocol_id": 1093 + }, + "minecraft:glow_item_frame": { + "protocol_id": 1255 + }, + "minecraft:glow_lichen": { + "protocol_id": 439 + }, + "minecraft:glow_squid_spawn_egg": { + "protocol_id": 1184 + }, + "minecraft:glowstone": { + "protocol_id": 395 + }, + "minecraft:glowstone_dust": { + "protocol_id": 1085 + }, + "minecraft:goat_horn": { + "protocol_id": 1383 + }, + "minecraft:goat_spawn_egg": { + "protocol_id": 1174 + }, + "minecraft:gold_block": { + "protocol_id": 126 + }, + "minecraft:gold_ingot": { + "protocol_id": 936 + }, + "minecraft:gold_nugget": { + "protocol_id": 1147 + }, + "minecraft:gold_ore": { + "protocol_id": 97 + }, + "minecraft:golden_apple": { + "protocol_id": 1014 + }, + "minecraft:golden_axe": { + "protocol_id": 957 + }, + "minecraft:golden_boots": { + "protocol_id": 1005 + }, + "minecraft:golden_carrot": { + "protocol_id": 1262 + }, + "minecraft:golden_chestplate": { + "protocol_id": 1003 + }, + "minecraft:golden_dandelion": { + "protocol_id": 257 + }, + "minecraft:golden_helmet": { + "protocol_id": 1002 + }, + "minecraft:golden_hoe": { + "protocol_id": 958 + }, + "minecraft:golden_horse_armor": { + "protocol_id": 1287 + }, + "minecraft:golden_leggings": { + "protocol_id": 1004 + }, + "minecraft:golden_nautilus_armor": { + "protocol_id": 1365 + }, + "minecraft:golden_pickaxe": { + "protocol_id": 956 + }, + "minecraft:golden_shovel": { + "protocol_id": 955 + }, + "minecraft:golden_spear": { + "protocol_id": 1330 + }, + "minecraft:golden_sword": { + "protocol_id": 954 + }, + "minecraft:granite": { + "protocol_id": 2 + }, + "minecraft:granite_slab": { + "protocol_id": 735 + }, + "minecraft:granite_stairs": { + "protocol_id": 718 + }, + "minecraft:granite_wall": { + "protocol_id": 490 + }, + "minecraft:grass_block": { + "protocol_id": 54 + }, + "minecraft:gravel": { + "protocol_id": 90 + }, + "minecraft:gray_banner": { + "protocol_id": 1303 + }, + "minecraft:gray_bed": { + "protocol_id": 1122 + }, + "minecraft:gray_bundle": { + "protocol_id": 1073 + }, + "minecraft:gray_candle": { + "protocol_id": 1437 + }, + "minecraft:gray_carpet": { + "protocol_id": 540 + }, + "minecraft:gray_concrete": { + "protocol_id": 649 + }, + "minecraft:gray_concrete_powder": { + "protocol_id": 665 + }, + "minecraft:gray_dye": { + "protocol_id": 1102 + }, + "minecraft:gray_glazed_terracotta": { + "protocol_id": 633 + }, + "minecraft:gray_harness": { + "protocol_id": 873 + }, + "minecraft:gray_shulker_box": { + "protocol_id": 617 + }, + "minecraft:gray_stained_glass": { + "protocol_id": 565 + }, + "minecraft:gray_stained_glass_pane": { + "protocol_id": 581 + }, + "minecraft:gray_terracotta": { + "protocol_id": 521 + }, + "minecraft:gray_wool": { + "protocol_id": 247 + }, + "minecraft:green_banner": { + "protocol_id": 1309 + }, + "minecraft:green_bed": { + "protocol_id": 1128 + }, + "minecraft:green_bundle": { + "protocol_id": 1079 + }, + "minecraft:green_candle": { + "protocol_id": 1443 + }, + "minecraft:green_carpet": { + "protocol_id": 546 + }, + "minecraft:green_concrete": { + "protocol_id": 655 + }, + "minecraft:green_concrete_powder": { + "protocol_id": 671 + }, + "minecraft:green_dye": { + "protocol_id": 1108 + }, + "minecraft:green_glazed_terracotta": { + "protocol_id": 639 + }, + "minecraft:green_harness": { + "protocol_id": 879 + }, + "minecraft:green_shulker_box": { + "protocol_id": 623 + }, + "minecraft:green_stained_glass": { + "protocol_id": 571 + }, + "minecraft:green_stained_glass_pane": { + "protocol_id": 587 + }, + "minecraft:green_terracotta": { + "protocol_id": 527 + }, + "minecraft:green_wool": { + "protocol_id": 253 + }, + "minecraft:grindstone": { + "protocol_id": 1390 + }, + "minecraft:guardian_spawn_egg": { + "protocol_id": 1222 + }, + "minecraft:gunpowder": { + "protocol_id": 978 + }, + "minecraft:guster_banner_pattern": { + "protocol_id": 1380 + }, + "minecraft:guster_pottery_sherd": { + "protocol_id": 1487 + }, + "minecraft:hanging_roots": { + "protocol_id": 294 + }, + "minecraft:happy_ghast_spawn_egg": { + "protocol_id": 1235 + }, + "minecraft:hay_block": { + "protocol_id": 532 + }, + "minecraft:heart_of_the_sea": { + "protocol_id": 1369 + }, + "minecraft:heart_pottery_sherd": { + "protocol_id": 1488 + }, + "minecraft:heartbreak_pottery_sherd": { + "protocol_id": 1489 + }, + "minecraft:heavy_core": { + "protocol_id": 114 + }, + "minecraft:heavy_weighted_pressure_plate": { + "protocol_id": 794 + }, + "minecraft:hoglin_spawn_egg": { + "protocol_id": 1236 + }, + "minecraft:honey_block": { + "protocol_id": 753 + }, + "minecraft:honey_bottle": { + "protocol_id": 1412 + }, + "minecraft:honeycomb": { + "protocol_id": 1409 + }, + "minecraft:honeycomb_block": { + "protocol_id": 1413 + }, + "minecraft:hopper": { + "protocol_id": 755 + }, + "minecraft:hopper_minecart": { + "protocol_id": 886 + }, + "minecraft:horn_coral": { + "protocol_id": 691 + }, + "minecraft:horn_coral_block": { + "protocol_id": 686 + }, + "minecraft:horn_coral_fan": { + "protocol_id": 701 + }, + "minecraft:horse_spawn_egg": { + "protocol_id": 1165 + }, + "minecraft:host_armor_trim_smithing_template": { + "protocol_id": 1474 + }, + "minecraft:howl_pottery_sherd": { + "protocol_id": 1490 + }, + "minecraft:husk_spawn_egg": { + "protocol_id": 1205 + }, + "minecraft:ice": { + "protocol_id": 366 + }, + "minecraft:infested_chiseled_stone_bricks": { + "protocol_id": 401 + }, + "minecraft:infested_cobblestone": { + "protocol_id": 397 + }, + "minecraft:infested_cracked_stone_bricks": { + "protocol_id": 400 + }, + "minecraft:infested_deepslate": { + "protocol_id": 402 + }, + "minecraft:infested_mossy_stone_bricks": { + "protocol_id": 399 + }, + "minecraft:infested_stone": { + "protocol_id": 396 + }, + "minecraft:infested_stone_bricks": { + "protocol_id": 398 + }, + "minecraft:ink_sac": { + "protocol_id": 1092 + }, + "minecraft:iron_axe": { + "protocol_id": 962 + }, + "minecraft:iron_bars": { + "protocol_id": 418 + }, + "minecraft:iron_block": { + "protocol_id": 117 + }, + "minecraft:iron_boots": { + "protocol_id": 997 + }, + "minecraft:iron_chain": { + "protocol_id": 427 + }, + "minecraft:iron_chestplate": { + "protocol_id": 995 + }, + "minecraft:iron_door": { + "protocol_id": 807 + }, + "minecraft:iron_golem_spawn_egg": { + "protocol_id": 1197 + }, + "minecraft:iron_helmet": { + "protocol_id": 994 + }, + "minecraft:iron_hoe": { + "protocol_id": 963 + }, + "minecraft:iron_horse_armor": { + "protocol_id": 1286 + }, + "minecraft:iron_ingot": { + "protocol_id": 932 + }, + "minecraft:iron_leggings": { + "protocol_id": 996 + }, + "minecraft:iron_nautilus_armor": { + "protocol_id": 1364 + }, + "minecraft:iron_nugget": { + "protocol_id": 1335 + }, + "minecraft:iron_ore": { + "protocol_id": 93 + }, + "minecraft:iron_pickaxe": { + "protocol_id": 961 + }, + "minecraft:iron_shovel": { + "protocol_id": 960 + }, + "minecraft:iron_spear": { + "protocol_id": 1329 + }, + "minecraft:iron_sword": { + "protocol_id": 959 + }, + "minecraft:iron_trapdoor": { + "protocol_id": 828 + }, + "minecraft:item_frame": { + "protocol_id": 1254 + }, + "minecraft:jack_o_lantern": { + "protocol_id": 386 + }, + "minecraft:jigsaw": { + "protocol_id": 912 + }, + "minecraft:jukebox": { + "protocol_id": 371 + }, + "minecraft:jungle_boat": { + "protocol_id": 897 + }, + "minecraft:jungle_button": { + "protocol_id": 782 + }, + "minecraft:jungle_chest_boat": { + "protocol_id": 898 + }, + "minecraft:jungle_door": { + "protocol_id": 811 + }, + "minecraft:jungle_fence": { + "protocol_id": 375 + }, + "minecraft:jungle_fence_gate": { + "protocol_id": 852 + }, + "minecraft:jungle_hanging_sign": { + "protocol_id": 1031 + }, + "minecraft:jungle_leaves": { + "protocol_id": 212 + }, + "minecraft:jungle_log": { + "protocol_id": 164 + }, + "minecraft:jungle_planks": { + "protocol_id": 66 + }, + "minecraft:jungle_pressure_plate": { + "protocol_id": 798 + }, + "minecraft:jungle_sapling": { + "protocol_id": 79 + }, + "minecraft:jungle_shelf": { + "protocol_id": 339 + }, + "minecraft:jungle_sign": { + "protocol_id": 1019 + }, + "minecraft:jungle_slab": { + "protocol_id": 301 + }, + "minecraft:jungle_stairs": { + "protocol_id": 472 + }, + "minecraft:jungle_trapdoor": { + "protocol_id": 832 + }, + "minecraft:jungle_wood": { + "protocol_id": 201 + }, + "minecraft:kelp": { + "protocol_id": 285 + }, + "minecraft:knowledge_book": { + "protocol_id": 1337 + }, + "minecraft:ladder": { + "protocol_id": 363 + }, + "minecraft:lantern": { + "protocol_id": 1394 + }, + "minecraft:lapis_block": { + "protocol_id": 224 + }, + "minecraft:lapis_lazuli": { + "protocol_id": 928 + }, + "minecraft:lapis_ore": { + "protocol_id": 103 + }, + "minecraft:large_amethyst_bud": { + "protocol_id": 1448 + }, + "minecraft:large_fern": { + "protocol_id": 557 + }, + "minecraft:lava_bucket": { + "protocol_id": 1042 + }, + "minecraft:lead": { + "protocol_id": 1291 + }, + "minecraft:leaf_litter": { + "protocol_id": 288 + }, + "minecraft:leather": { + "protocol_id": 1045 + }, + "minecraft:leather_boots": { + "protocol_id": 985 + }, + "minecraft:leather_chestplate": { + "protocol_id": 983 + }, + "minecraft:leather_helmet": { + "protocol_id": 982 + }, + "minecraft:leather_horse_armor": { + "protocol_id": 1290 + }, + "minecraft:leather_leggings": { + "protocol_id": 984 + }, + "minecraft:lectern": { + "protocol_id": 758 + }, + "minecraft:lever": { + "protocol_id": 760 + }, + "minecraft:light": { + "protocol_id": 531 + }, + "minecraft:light_blue_banner": { + "protocol_id": 1299 + }, + "minecraft:light_blue_bed": { + "protocol_id": 1118 + }, + "minecraft:light_blue_bundle": { + "protocol_id": 1069 + }, + "minecraft:light_blue_candle": { + "protocol_id": 1433 + }, + "minecraft:light_blue_carpet": { + "protocol_id": 536 + }, + "minecraft:light_blue_concrete": { + "protocol_id": 645 + }, + "minecraft:light_blue_concrete_powder": { + "protocol_id": 661 + }, + "minecraft:light_blue_dye": { + "protocol_id": 1098 + }, + "minecraft:light_blue_glazed_terracotta": { + "protocol_id": 629 + }, + "minecraft:light_blue_harness": { + "protocol_id": 869 + }, + "minecraft:light_blue_shulker_box": { + "protocol_id": 613 + }, + "minecraft:light_blue_stained_glass": { + "protocol_id": 561 + }, + "minecraft:light_blue_stained_glass_pane": { + "protocol_id": 577 + }, + "minecraft:light_blue_terracotta": { + "protocol_id": 517 + }, + "minecraft:light_blue_wool": { + "protocol_id": 243 + }, + "minecraft:light_gray_banner": { + "protocol_id": 1304 + }, + "minecraft:light_gray_bed": { + "protocol_id": 1123 + }, + "minecraft:light_gray_bundle": { + "protocol_id": 1074 + }, + "minecraft:light_gray_candle": { + "protocol_id": 1438 + }, + "minecraft:light_gray_carpet": { + "protocol_id": 541 + }, + "minecraft:light_gray_concrete": { + "protocol_id": 650 + }, + "minecraft:light_gray_concrete_powder": { + "protocol_id": 666 + }, + "minecraft:light_gray_dye": { + "protocol_id": 1103 + }, + "minecraft:light_gray_glazed_terracotta": { + "protocol_id": 634 + }, + "minecraft:light_gray_harness": { + "protocol_id": 874 + }, + "minecraft:light_gray_shulker_box": { + "protocol_id": 618 + }, + "minecraft:light_gray_stained_glass": { + "protocol_id": 566 + }, + "minecraft:light_gray_stained_glass_pane": { + "protocol_id": 582 + }, + "minecraft:light_gray_terracotta": { + "protocol_id": 522 + }, + "minecraft:light_gray_wool": { + "protocol_id": 248 + }, + "minecraft:light_weighted_pressure_plate": { + "protocol_id": 793 + }, + "minecraft:lightning_rod": { + "protocol_id": 761 + }, + "minecraft:lilac": { + "protocol_id": 553 + }, + "minecraft:lily_of_the_valley": { + "protocol_id": 270 + }, + "minecraft:lily_pad": { + "protocol_id": 451 + }, + "minecraft:lime_banner": { + "protocol_id": 1301 + }, + "minecraft:lime_bed": { + "protocol_id": 1120 + }, + "minecraft:lime_bundle": { + "protocol_id": 1071 + }, + "minecraft:lime_candle": { + "protocol_id": 1435 + }, + "minecraft:lime_carpet": { + "protocol_id": 538 + }, + "minecraft:lime_concrete": { + "protocol_id": 647 + }, + "minecraft:lime_concrete_powder": { + "protocol_id": 663 + }, + "minecraft:lime_dye": { + "protocol_id": 1100 + }, + "minecraft:lime_glazed_terracotta": { + "protocol_id": 631 + }, + "minecraft:lime_harness": { + "protocol_id": 871 + }, + "minecraft:lime_shulker_box": { + "protocol_id": 615 + }, + "minecraft:lime_stained_glass": { + "protocol_id": 563 + }, + "minecraft:lime_stained_glass_pane": { + "protocol_id": 579 + }, + "minecraft:lime_terracotta": { + "protocol_id": 519 + }, + "minecraft:lime_wool": { + "protocol_id": 245 + }, + "minecraft:lingering_potion": { + "protocol_id": 1324 + }, + "minecraft:llama_spawn_egg": { + "protocol_id": 1175 + }, + "minecraft:lodestone": { + "protocol_id": 1414 + }, + "minecraft:loom": { + "protocol_id": 1372 + }, + "minecraft:mace": { + "protocol_id": 1253 + }, + "minecraft:magenta_banner": { + "protocol_id": 1298 + }, + "minecraft:magenta_bed": { + "protocol_id": 1117 + }, + "minecraft:magenta_bundle": { + "protocol_id": 1068 + }, + "minecraft:magenta_candle": { + "protocol_id": 1432 + }, + "minecraft:magenta_carpet": { + "protocol_id": 535 + }, + "minecraft:magenta_concrete": { + "protocol_id": 644 + }, + "minecraft:magenta_concrete_powder": { + "protocol_id": 660 + }, + "minecraft:magenta_dye": { + "protocol_id": 1097 + }, + "minecraft:magenta_glazed_terracotta": { + "protocol_id": 628 + }, + "minecraft:magenta_harness": { + "protocol_id": 868 + }, + "minecraft:magenta_shulker_box": { + "protocol_id": 612 + }, + "minecraft:magenta_stained_glass": { + "protocol_id": 560 + }, + "minecraft:magenta_stained_glass_pane": { + "protocol_id": 576 + }, + "minecraft:magenta_terracotta": { + "protocol_id": 516 + }, + "minecraft:magenta_wool": { + "protocol_id": 242 + }, + "minecraft:magma_block": { + "protocol_id": 603 + }, + "minecraft:magma_cream": { + "protocol_id": 1154 + }, + "minecraft:magma_cube_spawn_egg": { + "protocol_id": 1237 + }, + "minecraft:mangrove_boat": { + "protocol_id": 907 + }, + "minecraft:mangrove_button": { + "protocol_id": 787 + }, + "minecraft:mangrove_chest_boat": { + "protocol_id": 908 + }, + "minecraft:mangrove_door": { + "protocol_id": 816 + }, + "minecraft:mangrove_fence": { + "protocol_id": 380 + }, + "minecraft:mangrove_fence_gate": { + "protocol_id": 857 + }, + "minecraft:mangrove_hanging_sign": { + "protocol_id": 1036 + }, + "minecraft:mangrove_leaves": { + "protocol_id": 217 + }, + "minecraft:mangrove_log": { + "protocol_id": 169 + }, + "minecraft:mangrove_planks": { + "protocol_id": 71 + }, + "minecraft:mangrove_pressure_plate": { + "protocol_id": 803 + }, + "minecraft:mangrove_propagule": { + "protocol_id": 84 + }, + "minecraft:mangrove_roots": { + "protocol_id": 170 + }, + "minecraft:mangrove_shelf": { + "protocol_id": 340 + }, + "minecraft:mangrove_sign": { + "protocol_id": 1024 + }, + "minecraft:mangrove_slab": { + "protocol_id": 306 + }, + "minecraft:mangrove_stairs": { + "protocol_id": 477 + }, + "minecraft:mangrove_trapdoor": { + "protocol_id": 837 + }, + "minecraft:mangrove_wood": { + "protocol_id": 206 + }, + "minecraft:map": { + "protocol_id": 1261 + }, + "minecraft:medium_amethyst_bud": { + "protocol_id": 1447 + }, + "minecraft:melon": { + "protocol_id": 437 + }, + "minecraft:melon_seeds": { + "protocol_id": 1138 + }, + "minecraft:melon_slice": { + "protocol_id": 1135 + }, + "minecraft:milk_bucket": { + "protocol_id": 1046 + }, + "minecraft:minecart": { + "protocol_id": 882 + }, + "minecraft:miner_pottery_sherd": { + "protocol_id": 1491 + }, + "minecraft:mojang_banner_pattern": { + "protocol_id": 1376 + }, + "minecraft:mooshroom_spawn_egg": { + "protocol_id": 1193 + }, + "minecraft:moss_block": { + "protocol_id": 290 + }, + "minecraft:moss_carpet": { + "protocol_id": 289 + }, + "minecraft:mossy_cobblestone": { + "protocol_id": 348 + }, + "minecraft:mossy_cobblestone_slab": { + "protocol_id": 731 + }, + "minecraft:mossy_cobblestone_stairs": { + "protocol_id": 713 + }, + "minecraft:mossy_cobblestone_wall": { + "protocol_id": 485 + }, + "minecraft:mossy_stone_brick_slab": { + "protocol_id": 729 + }, + "minecraft:mossy_stone_brick_stairs": { + "protocol_id": 711 + }, + "minecraft:mossy_stone_brick_wall": { + "protocol_id": 489 + }, + "minecraft:mossy_stone_bricks": { + "protocol_id": 404 + }, + "minecraft:mourner_pottery_sherd": { + "protocol_id": 1492 + }, + "minecraft:mud": { + "protocol_id": 59 + }, + "minecraft:mud_brick_slab": { + "protocol_id": 319 + }, + "minecraft:mud_brick_stairs": { + "protocol_id": 449 + }, + "minecraft:mud_brick_wall": { + "protocol_id": 492 + }, + "minecraft:mud_bricks": { + "protocol_id": 408 + }, + "minecraft:muddy_mangrove_roots": { + "protocol_id": 171 + }, + "minecraft:mule_spawn_egg": { + "protocol_id": 1166 + }, + "minecraft:mushroom_stem": { + "protocol_id": 417 + }, + "minecraft:mushroom_stew": { + "protocol_id": 975 + }, + "minecraft:music_disc_11": { + "protocol_id": 1353 + }, + "minecraft:music_disc_13": { + "protocol_id": 1339 + }, + "minecraft:music_disc_5": { + "protocol_id": 1357 + }, + "minecraft:music_disc_blocks": { + "protocol_id": 1341 + }, + "minecraft:music_disc_bounce": { + "protocol_id": 1342 + }, + "minecraft:music_disc_cat": { + "protocol_id": 1340 + }, + "minecraft:music_disc_chirp": { + "protocol_id": 1343 + }, + "minecraft:music_disc_creator": { + "protocol_id": 1344 + }, + "minecraft:music_disc_creator_music_box": { + "protocol_id": 1345 + }, + "minecraft:music_disc_far": { + "protocol_id": 1346 + }, + "minecraft:music_disc_lava_chicken": { + "protocol_id": 1347 + }, + "minecraft:music_disc_mall": { + "protocol_id": 1348 + }, + "minecraft:music_disc_mellohi": { + "protocol_id": 1349 + }, + "minecraft:music_disc_otherside": { + "protocol_id": 1355 + }, + "minecraft:music_disc_pigstep": { + "protocol_id": 1358 + }, + "minecraft:music_disc_precipice": { + "protocol_id": 1359 + }, + "minecraft:music_disc_relic": { + "protocol_id": 1356 + }, + "minecraft:music_disc_stal": { + "protocol_id": 1350 + }, + "minecraft:music_disc_strad": { + "protocol_id": 1351 + }, + "minecraft:music_disc_tears": { + "protocol_id": 1360 + }, + "minecraft:music_disc_wait": { + "protocol_id": 1354 + }, + "minecraft:music_disc_ward": { + "protocol_id": 1352 + }, + "minecraft:mutton": { + "protocol_id": 1294 + }, + "minecraft:mycelium": { + "protocol_id": 450 + }, + "minecraft:name_tag": { + "protocol_id": 1292 + }, + "minecraft:nautilus_shell": { + "protocol_id": 1363 + }, + "minecraft:nautilus_spawn_egg": { + "protocol_id": 1185 + }, + "minecraft:nether_brick": { + "protocol_id": 1275 + }, + "minecraft:nether_brick_fence": { + "protocol_id": 455 + }, + "minecraft:nether_brick_slab": { + "protocol_id": 320 + }, + "minecraft:nether_brick_stairs": { + "protocol_id": 456 + }, + "minecraft:nether_brick_wall": { + "protocol_id": 493 + }, + "minecraft:nether_bricks": { + "protocol_id": 452 + }, + "minecraft:nether_gold_ore": { + "protocol_id": 107 + }, + "minecraft:nether_quartz_ore": { + "protocol_id": 108 + }, + "minecraft:nether_sprouts": { + "protocol_id": 281 + }, + "minecraft:nether_star": { + "protocol_id": 1270 + }, + "minecraft:nether_wart": { + "protocol_id": 1148 + }, + "minecraft:nether_wart_block": { + "protocol_id": 604 + }, + "minecraft:netherite_axe": { + "protocol_id": 972 + }, + "minecraft:netherite_block": { + "protocol_id": 128 + }, + "minecraft:netherite_boots": { + "protocol_id": 1009 + }, + "minecraft:netherite_chestplate": { + "protocol_id": 1007 + }, + "minecraft:netherite_helmet": { + "protocol_id": 1006 + }, + "minecraft:netherite_hoe": { + "protocol_id": 973 + }, + "minecraft:netherite_horse_armor": { + "protocol_id": 1289 + }, + "minecraft:netherite_ingot": { + "protocol_id": 937 + }, + "minecraft:netherite_leggings": { + "protocol_id": 1008 + }, + "minecraft:netherite_nautilus_armor": { + "protocol_id": 1367 + }, + "minecraft:netherite_pickaxe": { + "protocol_id": 971 + }, + "minecraft:netherite_scrap": { + "protocol_id": 938 + }, + "minecraft:netherite_shovel": { + "protocol_id": 970 + }, + "minecraft:netherite_spear": { + "protocol_id": 1332 + }, + "minecraft:netherite_sword": { + "protocol_id": 969 + }, + "minecraft:netherite_upgrade_smithing_template": { + "protocol_id": 1458 + }, + "minecraft:netherrack": { + "protocol_id": 387 + }, + "minecraft:note_block": { + "protocol_id": 776 + }, + "minecraft:oak_boat": { + "protocol_id": 891 + }, + "minecraft:oak_button": { + "protocol_id": 779 + }, + "minecraft:oak_chest_boat": { + "protocol_id": 892 + }, + "minecraft:oak_door": { + "protocol_id": 808 + }, + "minecraft:oak_fence": { + "protocol_id": 372 + }, + "minecraft:oak_fence_gate": { + "protocol_id": 849 + }, + "minecraft:oak_hanging_sign": { + "protocol_id": 1028 + }, + "minecraft:oak_leaves": { + "protocol_id": 209 + }, + "minecraft:oak_log": { + "protocol_id": 161 + }, + "minecraft:oak_planks": { + "protocol_id": 63 + }, + "minecraft:oak_pressure_plate": { + "protocol_id": 795 + }, + "minecraft:oak_sapling": { + "protocol_id": 76 + }, + "minecraft:oak_shelf": { + "protocol_id": 341 + }, + "minecraft:oak_sign": { + "protocol_id": 1016 + }, + "minecraft:oak_slab": { + "protocol_id": 298 + }, + "minecraft:oak_stairs": { + "protocol_id": 469 + }, + "minecraft:oak_trapdoor": { + "protocol_id": 829 + }, + "minecraft:oak_wood": { + "protocol_id": 198 + }, + "minecraft:observer": { + "protocol_id": 754 + }, + "minecraft:obsidian": { + "protocol_id": 349 + }, + "minecraft:ocelot_spawn_egg": { + "protocol_id": 1176 + }, + "minecraft:ochre_froglight": { + "protocol_id": 1452 + }, + "minecraft:ominous_bottle": { + "protocol_id": 1536 + }, + "minecraft:ominous_trial_key": { + "protocol_id": 1534 + }, + "minecraft:open_eyeblossom": { + "protocol_id": 258 + }, + "minecraft:orange_banner": { + "protocol_id": 1297 + }, + "minecraft:orange_bed": { + "protocol_id": 1116 + }, + "minecraft:orange_bundle": { + "protocol_id": 1067 + }, + "minecraft:orange_candle": { + "protocol_id": 1431 + }, + "minecraft:orange_carpet": { + "protocol_id": 534 + }, + "minecraft:orange_concrete": { + "protocol_id": 643 + }, + "minecraft:orange_concrete_powder": { + "protocol_id": 659 + }, + "minecraft:orange_dye": { + "protocol_id": 1096 + }, + "minecraft:orange_glazed_terracotta": { + "protocol_id": 627 + }, + "minecraft:orange_harness": { + "protocol_id": 867 + }, + "minecraft:orange_shulker_box": { + "protocol_id": 611 + }, + "minecraft:orange_stained_glass": { + "protocol_id": 559 + }, + "minecraft:orange_stained_glass_pane": { + "protocol_id": 575 + }, + "minecraft:orange_terracotta": { + "protocol_id": 515 + }, + "minecraft:orange_tulip": { + "protocol_id": 265 + }, + "minecraft:orange_wool": { + "protocol_id": 241 + }, + "minecraft:oxeye_daisy": { + "protocol_id": 268 + }, + "minecraft:oxidized_chiseled_copper": { + "protocol_id": 132 + }, + "minecraft:oxidized_copper": { + "protocol_id": 121 + }, + "minecraft:oxidized_copper_bars": { + "protocol_id": 422 + }, + "minecraft:oxidized_copper_bulb": { + "protocol_id": 1511 + }, + "minecraft:oxidized_copper_chain": { + "protocol_id": 431 + }, + "minecraft:oxidized_copper_chest": { + "protocol_id": 1519 + }, + "minecraft:oxidized_copper_door": { + "protocol_id": 823 + }, + "minecraft:oxidized_copper_golem_statue": { + "protocol_id": 1527 + }, + "minecraft:oxidized_copper_grate": { + "protocol_id": 1503 + }, + "minecraft:oxidized_copper_lantern": { + "protocol_id": 1399 + }, + "minecraft:oxidized_copper_trapdoor": { + "protocol_id": 844 + }, + "minecraft:oxidized_cut_copper": { + "protocol_id": 140 + }, + "minecraft:oxidized_cut_copper_slab": { + "protocol_id": 156 + }, + "minecraft:oxidized_cut_copper_stairs": { + "protocol_id": 148 + }, + "minecraft:oxidized_lightning_rod": { + "protocol_id": 764 + }, + "minecraft:packed_ice": { + "protocol_id": 550 + }, + "minecraft:packed_mud": { + "protocol_id": 407 + }, + "minecraft:painting": { + "protocol_id": 1013 + }, + "minecraft:pale_hanging_moss": { + "protocol_id": 292 + }, + "minecraft:pale_moss_block": { + "protocol_id": 293 + }, + "minecraft:pale_moss_carpet": { + "protocol_id": 291 + }, + "minecraft:pale_oak_boat": { + "protocol_id": 905 + }, + "minecraft:pale_oak_button": { + "protocol_id": 786 + }, + "minecraft:pale_oak_chest_boat": { + "protocol_id": 906 + }, + "minecraft:pale_oak_door": { + "protocol_id": 815 + }, + "minecraft:pale_oak_fence": { + "protocol_id": 379 + }, + "minecraft:pale_oak_fence_gate": { + "protocol_id": 856 + }, + "minecraft:pale_oak_hanging_sign": { + "protocol_id": 1035 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 216 + }, + "minecraft:pale_oak_log": { + "protocol_id": 167 + }, + "minecraft:pale_oak_planks": { + "protocol_id": 70 + }, + "minecraft:pale_oak_pressure_plate": { + "protocol_id": 802 + }, + "minecraft:pale_oak_sapling": { + "protocol_id": 83 + }, + "minecraft:pale_oak_shelf": { + "protocol_id": 342 + }, + "minecraft:pale_oak_sign": { + "protocol_id": 1023 + }, + "minecraft:pale_oak_slab": { + "protocol_id": 305 + }, + "minecraft:pale_oak_stairs": { + "protocol_id": 476 + }, + "minecraft:pale_oak_trapdoor": { + "protocol_id": 836 + }, + "minecraft:pale_oak_wood": { + "protocol_id": 204 + }, + "minecraft:panda_spawn_egg": { + "protocol_id": 1177 + }, + "minecraft:paper": { + "protocol_id": 1057 + }, + "minecraft:parched_spawn_egg": { + "protocol_id": 1206 + }, + "minecraft:parrot_spawn_egg": { + "protocol_id": 1168 + }, + "minecraft:pearlescent_froglight": { + "protocol_id": 1454 + }, + "minecraft:peony": { + "protocol_id": 555 + }, + "minecraft:petrified_oak_slab": { + "protocol_id": 315 + }, + "minecraft:phantom_membrane": { + "protocol_id": 889 + }, + "minecraft:phantom_spawn_egg": { + "protocol_id": 1223 + }, + "minecraft:pig_spawn_egg": { + "protocol_id": 1161 + }, + "minecraft:piglin_banner_pattern": { + "protocol_id": 1378 + }, + "minecraft:piglin_brute_spawn_egg": { + "protocol_id": 1239 + }, + "minecraft:piglin_head": { + "protocol_id": 1269 + }, + "minecraft:piglin_spawn_egg": { + "protocol_id": 1238 + }, + "minecraft:pillager_spawn_egg": { + "protocol_id": 1229 + }, + "minecraft:pink_banner": { + "protocol_id": 1302 + }, + "minecraft:pink_bed": { + "protocol_id": 1121 + }, + "minecraft:pink_bundle": { + "protocol_id": 1072 + }, + "minecraft:pink_candle": { + "protocol_id": 1436 + }, + "minecraft:pink_carpet": { + "protocol_id": 539 + }, + "minecraft:pink_concrete": { + "protocol_id": 648 + }, + "minecraft:pink_concrete_powder": { + "protocol_id": 664 + }, + "minecraft:pink_dye": { + "protocol_id": 1101 + }, + "minecraft:pink_glazed_terracotta": { + "protocol_id": 632 + }, + "minecraft:pink_harness": { + "protocol_id": 872 + }, + "minecraft:pink_petals": { + "protocol_id": 286 + }, + "minecraft:pink_shulker_box": { + "protocol_id": 616 + }, + "minecraft:pink_stained_glass": { + "protocol_id": 564 + }, + "minecraft:pink_stained_glass_pane": { + "protocol_id": 580 + }, + "minecraft:pink_terracotta": { + "protocol_id": 520 + }, + "minecraft:pink_tulip": { + "protocol_id": 267 + }, + "minecraft:pink_wool": { + "protocol_id": 246 + }, + "minecraft:piston": { + "protocol_id": 750 + }, + "minecraft:pitcher_plant": { + "protocol_id": 273 + }, + "minecraft:pitcher_pod": { + "protocol_id": 1316 + }, + "minecraft:player_head": { + "protocol_id": 1265 + }, + "minecraft:plenty_pottery_sherd": { + "protocol_id": 1493 + }, + "minecraft:podzol": { + "protocol_id": 57 + }, + "minecraft:pointed_dripstone": { + "protocol_id": 1450 + }, + "minecraft:poisonous_potato": { + "protocol_id": 1260 + }, + "minecraft:polar_bear_spawn_egg": { + "protocol_id": 1178 + }, + "minecraft:polished_andesite": { + "protocol_id": 7 + }, + "minecraft:polished_andesite_slab": { + "protocol_id": 738 + }, + "minecraft:polished_andesite_stairs": { + "protocol_id": 721 + }, + "minecraft:polished_basalt": { + "protocol_id": 391 + }, + "minecraft:polished_blackstone": { + "protocol_id": 1420 + }, + "minecraft:polished_blackstone_brick_slab": { + "protocol_id": 1425 + }, + "minecraft:polished_blackstone_brick_stairs": { + "protocol_id": 1426 + }, + "minecraft:polished_blackstone_brick_wall": { + "protocol_id": 501 + }, + "minecraft:polished_blackstone_bricks": { + "protocol_id": 1424 + }, + "minecraft:polished_blackstone_button": { + "protocol_id": 778 + }, + "minecraft:polished_blackstone_pressure_plate": { + "protocol_id": 792 + }, + "minecraft:polished_blackstone_slab": { + "protocol_id": 1421 + }, + "minecraft:polished_blackstone_stairs": { + "protocol_id": 1422 + }, + "minecraft:polished_blackstone_wall": { + "protocol_id": 500 + }, + "minecraft:polished_cinnabar": { + "protocol_id": 44 + }, + "minecraft:polished_cinnabar_slab": { + "protocol_id": 45 + }, + "minecraft:polished_cinnabar_stairs": { + "protocol_id": 46 + }, + "minecraft:polished_cinnabar_wall": { + "protocol_id": 47 + }, + "minecraft:polished_deepslate": { + "protocol_id": 10 + }, + "minecraft:polished_deepslate_slab": { + "protocol_id": 741 + }, + "minecraft:polished_deepslate_stairs": { + "protocol_id": 724 + }, + "minecraft:polished_deepslate_wall": { + "protocol_id": 503 + }, + "minecraft:polished_diorite": { + "protocol_id": 5 + }, + "minecraft:polished_diorite_slab": { + "protocol_id": 730 + }, + "minecraft:polished_diorite_stairs": { + "protocol_id": 712 + }, + "minecraft:polished_granite": { + "protocol_id": 3 + }, + "minecraft:polished_granite_slab": { + "protocol_id": 727 + }, + "minecraft:polished_granite_stairs": { + "protocol_id": 709 + }, + "minecraft:polished_sulfur": { + "protocol_id": 31 + }, + "minecraft:polished_sulfur_slab": { + "protocol_id": 32 + }, + "minecraft:polished_sulfur_stairs": { + "protocol_id": 33 + }, + "minecraft:polished_sulfur_wall": { + "protocol_id": 34 + }, + "minecraft:polished_tuff": { + "protocol_id": 17 + }, + "minecraft:polished_tuff_slab": { + "protocol_id": 18 + }, + "minecraft:polished_tuff_stairs": { + "protocol_id": 19 + }, + "minecraft:polished_tuff_wall": { + "protocol_id": 20 + }, + "minecraft:popped_chorus_fruit": { + "protocol_id": 1314 + }, + "minecraft:poppy": { + "protocol_id": 260 + }, + "minecraft:porkchop": { + "protocol_id": 1011 + }, + "minecraft:potato": { + "protocol_id": 1258 + }, + "minecraft:potent_sulfur": { + "protocol_id": 27 + }, + "minecraft:potion": { + "protocol_id": 1150 + }, + "minecraft:powder_snow_bucket": { + "protocol_id": 1043 + }, + "minecraft:powered_rail": { + "protocol_id": 861 + }, + "minecraft:prismarine": { + "protocol_id": 590 + }, + "minecraft:prismarine_brick_slab": { + "protocol_id": 326 + }, + "minecraft:prismarine_brick_stairs": { + "protocol_id": 594 + }, + "minecraft:prismarine_bricks": { + "protocol_id": 591 + }, + "minecraft:prismarine_crystals": { + "protocol_id": 1278 + }, + "minecraft:prismarine_shard": { + "protocol_id": 1277 + }, + "minecraft:prismarine_slab": { + "protocol_id": 325 + }, + "minecraft:prismarine_stairs": { + "protocol_id": 593 + }, + "minecraft:prismarine_wall": { + "protocol_id": 487 + }, + "minecraft:prize_pottery_sherd": { + "protocol_id": 1494 + }, + "minecraft:pufferfish": { + "protocol_id": 1089 + }, + "minecraft:pufferfish_bucket": { + "protocol_id": 1047 + }, + "minecraft:pufferfish_spawn_egg": { + "protocol_id": 1186 + }, + "minecraft:pumpkin": { + "protocol_id": 384 + }, + "minecraft:pumpkin_pie": { + "protocol_id": 1271 + }, + "minecraft:pumpkin_seeds": { + "protocol_id": 1137 + }, + "minecraft:purple_banner": { + "protocol_id": 1306 + }, + "minecraft:purple_bed": { + "protocol_id": 1125 + }, + "minecraft:purple_bundle": { + "protocol_id": 1076 + }, + "minecraft:purple_candle": { + "protocol_id": 1440 + }, + "minecraft:purple_carpet": { + "protocol_id": 543 + }, + "minecraft:purple_concrete": { + "protocol_id": 652 + }, + "minecraft:purple_concrete_powder": { + "protocol_id": 668 + }, + "minecraft:purple_dye": { + "protocol_id": 1105 + }, + "minecraft:purple_glazed_terracotta": { + "protocol_id": 636 + }, + "minecraft:purple_harness": { + "protocol_id": 876 + }, + "minecraft:purple_shulker_box": { + "protocol_id": 620 + }, + "minecraft:purple_stained_glass": { + "protocol_id": 568 + }, + "minecraft:purple_stained_glass_pane": { + "protocol_id": 584 + }, + "minecraft:purple_terracotta": { + "protocol_id": 524 + }, + "minecraft:purple_wool": { + "protocol_id": 250 + }, + "minecraft:purpur_block": { + "protocol_id": 354 + }, + "minecraft:purpur_pillar": { + "protocol_id": 355 + }, + "minecraft:purpur_slab": { + "protocol_id": 324 + }, + "minecraft:purpur_stairs": { + "protocol_id": 356 + }, + "minecraft:quartz": { + "protocol_id": 929 + }, + "minecraft:quartz_block": { + "protocol_id": 510 + }, + "minecraft:quartz_bricks": { + "protocol_id": 511 + }, + "minecraft:quartz_pillar": { + "protocol_id": 512 + }, + "minecraft:quartz_slab": { + "protocol_id": 321 + }, + "minecraft:quartz_stairs": { + "protocol_id": 513 + }, + "minecraft:rabbit": { + "protocol_id": 1279 + }, + "minecraft:rabbit_foot": { + "protocol_id": 1282 + }, + "minecraft:rabbit_hide": { + "protocol_id": 1283 + }, + "minecraft:rabbit_spawn_egg": { + "protocol_id": 1179 + }, + "minecraft:rabbit_stew": { + "protocol_id": 1281 + }, + "minecraft:rail": { + "protocol_id": 863 + }, + "minecraft:raiser_armor_trim_smithing_template": { + "protocol_id": 1473 + }, + "minecraft:ravager_spawn_egg": { + "protocol_id": 1230 + }, + "minecraft:raw_copper": { + "protocol_id": 933 + }, + "minecraft:raw_copper_block": { + "protocol_id": 112 + }, + "minecraft:raw_gold": { + "protocol_id": 935 + }, + "minecraft:raw_gold_block": { + "protocol_id": 113 + }, + "minecraft:raw_iron": { + "protocol_id": 931 + }, + "minecraft:raw_iron_block": { + "protocol_id": 111 + }, + "minecraft:recovery_compass": { + "protocol_id": 1064 + }, + "minecraft:red_banner": { + "protocol_id": 1310 + }, + "minecraft:red_bed": { + "protocol_id": 1129 + }, + "minecraft:red_bundle": { + "protocol_id": 1080 + }, + "minecraft:red_candle": { + "protocol_id": 1444 + }, + "minecraft:red_carpet": { + "protocol_id": 547 + }, + "minecraft:red_concrete": { + "protocol_id": 656 + }, + "minecraft:red_concrete_powder": { + "protocol_id": 672 + }, + "minecraft:red_dye": { + "protocol_id": 1109 + }, + "minecraft:red_glazed_terracotta": { + "protocol_id": 640 + }, + "minecraft:red_harness": { + "protocol_id": 880 + }, + "minecraft:red_mushroom": { + "protocol_id": 276 + }, + "minecraft:red_mushroom_block": { + "protocol_id": 416 + }, + "minecraft:red_nether_brick_slab": { + "protocol_id": 737 + }, + "minecraft:red_nether_brick_stairs": { + "protocol_id": 720 + }, + "minecraft:red_nether_brick_wall": { + "protocol_id": 495 + }, + "minecraft:red_nether_bricks": { + "protocol_id": 606 + }, + "minecraft:red_sand": { + "protocol_id": 89 + }, + "minecraft:red_sandstone": { + "protocol_id": 597 + }, + "minecraft:red_sandstone_slab": { + "protocol_id": 322 + }, + "minecraft:red_sandstone_stairs": { + "protocol_id": 600 + }, + "minecraft:red_sandstone_wall": { + "protocol_id": 488 + }, + "minecraft:red_shulker_box": { + "protocol_id": 624 + }, + "minecraft:red_stained_glass": { + "protocol_id": 572 + }, + "minecraft:red_stained_glass_pane": { + "protocol_id": 588 + }, + "minecraft:red_terracotta": { + "protocol_id": 528 + }, + "minecraft:red_tulip": { + "protocol_id": 264 + }, + "minecraft:red_wool": { + "protocol_id": 254 + }, + "minecraft:redstone": { + "protocol_id": 745 + }, + "minecraft:redstone_block": { + "protocol_id": 747 + }, + "minecraft:redstone_lamp": { + "protocol_id": 775 + }, + "minecraft:redstone_ore": { + "protocol_id": 99 + }, + "minecraft:redstone_torch": { + "protocol_id": 746 + }, + "minecraft:reinforced_deepslate": { + "protocol_id": 414 + }, + "minecraft:repeater": { + "protocol_id": 748 + }, + "minecraft:repeating_command_block": { + "protocol_id": 601 + }, + "minecraft:resin_block": { + "protocol_id": 441 + }, + "minecraft:resin_brick": { + "protocol_id": 1276 + }, + "minecraft:resin_brick_slab": { + "protocol_id": 444 + }, + "minecraft:resin_brick_stairs": { + "protocol_id": 443 + }, + "minecraft:resin_brick_wall": { + "protocol_id": 445 + }, + "minecraft:resin_bricks": { + "protocol_id": 442 + }, + "minecraft:resin_clump": { + "protocol_id": 440 + }, + "minecraft:respawn_anchor": { + "protocol_id": 1428 + }, + "minecraft:rib_armor_trim_smithing_template": { + "protocol_id": 1468 + }, + "minecraft:rooted_dirt": { + "protocol_id": 58 + }, + "minecraft:rose_bush": { + "protocol_id": 554 + }, + "minecraft:rotten_flesh": { + "protocol_id": 1143 + }, + "minecraft:saddle": { + "protocol_id": 865 + }, + "minecraft:salmon": { + "protocol_id": 1087 + }, + "minecraft:salmon_bucket": { + "protocol_id": 1048 + }, + "minecraft:salmon_spawn_egg": { + "protocol_id": 1187 + }, + "minecraft:sand": { + "protocol_id": 86 + }, + "minecraft:sandstone": { + "protocol_id": 225 + }, + "minecraft:sandstone_slab": { + "protocol_id": 313 + }, + "minecraft:sandstone_stairs": { + "protocol_id": 466 + }, + "minecraft:sandstone_wall": { + "protocol_id": 496 + }, + "minecraft:scaffolding": { + "protocol_id": 744 + }, + "minecraft:scrape_pottery_sherd": { + "protocol_id": 1495 + }, + "minecraft:sculk": { + "protocol_id": 457 + }, + "minecraft:sculk_catalyst": { + "protocol_id": 459 + }, + "minecraft:sculk_sensor": { + "protocol_id": 770 + }, + "minecraft:sculk_shrieker": { + "protocol_id": 460 + }, + "minecraft:sculk_vein": { + "protocol_id": 458 + }, + "minecraft:sea_lantern": { + "protocol_id": 596 + }, + "minecraft:sea_pickle": { + "protocol_id": 239 + }, + "minecraft:seagrass": { + "protocol_id": 238 + }, + "minecraft:sentry_armor_trim_smithing_template": { + "protocol_id": 1459 + }, + "minecraft:shaper_armor_trim_smithing_template": { + "protocol_id": 1471 + }, + "minecraft:sheaf_pottery_sherd": { + "protocol_id": 1496 + }, + "minecraft:shears": { + "protocol_id": 1134 + }, + "minecraft:sheep_spawn_egg": { + "protocol_id": 1162 + }, + "minecraft:shelter_pottery_sherd": { + "protocol_id": 1497 + }, + "minecraft:shield": { + "protocol_id": 1325 + }, + "minecraft:short_dry_grass": { + "protocol_id": 236 + }, + "minecraft:short_grass": { + "protocol_id": 229 + }, + "minecraft:shroomlight": { + "protocol_id": 1408 + }, + "minecraft:shulker_box": { + "protocol_id": 609 + }, + "minecraft:shulker_shell": { + "protocol_id": 1334 + }, + "minecraft:shulker_spawn_egg": { + "protocol_id": 1246 + }, + "minecraft:silence_armor_trim_smithing_template": { + "protocol_id": 1472 + }, + "minecraft:silverfish_spawn_egg": { + "protocol_id": 1224 + }, + "minecraft:skeleton_horse_spawn_egg": { + "protocol_id": 1208 + }, + "minecraft:skeleton_skull": { + "protocol_id": 1263 + }, + "minecraft:skeleton_spawn_egg": { + "protocol_id": 1207 + }, + "minecraft:skull_banner_pattern": { + "protocol_id": 1375 + }, + "minecraft:skull_pottery_sherd": { + "protocol_id": 1498 + }, + "minecraft:slime_ball": { + "protocol_id": 1059 + }, + "minecraft:slime_block": { + "protocol_id": 752 + }, + "minecraft:slime_spawn_egg": { + "protocol_id": 1225 + }, + "minecraft:small_amethyst_bud": { + "protocol_id": 1446 + }, + "minecraft:small_dripleaf": { + "protocol_id": 296 + }, + "minecraft:smithing_table": { + "protocol_id": 1391 + }, + "minecraft:smoker": { + "protocol_id": 1386 + }, + "minecraft:smooth_basalt": { + "protocol_id": 392 + }, + "minecraft:smooth_quartz": { + "protocol_id": 328 + }, + "minecraft:smooth_quartz_slab": { + "protocol_id": 734 + }, + "minecraft:smooth_quartz_stairs": { + "protocol_id": 717 + }, + "minecraft:smooth_red_sandstone": { + "protocol_id": 329 + }, + "minecraft:smooth_red_sandstone_slab": { + "protocol_id": 728 + }, + "minecraft:smooth_red_sandstone_stairs": { + "protocol_id": 710 + }, + "minecraft:smooth_sandstone": { + "protocol_id": 330 + }, + "minecraft:smooth_sandstone_slab": { + "protocol_id": 733 + }, + "minecraft:smooth_sandstone_stairs": { + "protocol_id": 716 + }, + "minecraft:smooth_stone": { + "protocol_id": 331 + }, + "minecraft:smooth_stone_slab": { + "protocol_id": 312 + }, + "minecraft:sniffer_egg": { + "protocol_id": 675 + }, + "minecraft:sniffer_spawn_egg": { + "protocol_id": 1194 + }, + "minecraft:snort_pottery_sherd": { + "protocol_id": 1499 + }, + "minecraft:snout_armor_trim_smithing_template": { + "protocol_id": 1467 + }, + "minecraft:snow": { + "protocol_id": 365 + }, + "minecraft:snow_block": { + "protocol_id": 367 + }, + "minecraft:snow_golem_spawn_egg": { + "protocol_id": 1198 + }, + "minecraft:snowball": { + "protocol_id": 1044 + }, + "minecraft:soul_campfire": { + "protocol_id": 1407 + }, + "minecraft:soul_lantern": { + "protocol_id": 1395 + }, + "minecraft:soul_sand": { + "protocol_id": 388 + }, + "minecraft:soul_soil": { + "protocol_id": 389 + }, + "minecraft:soul_torch": { + "protocol_id": 393 + }, + "minecraft:spawner": { + "protocol_id": 357 + }, + "minecraft:spectral_arrow": { + "protocol_id": 1322 + }, + "minecraft:spider_eye": { + "protocol_id": 1151 + }, + "minecraft:spider_spawn_egg": { + "protocol_id": 1217 + }, + "minecraft:spire_armor_trim_smithing_template": { + "protocol_id": 1469 + }, + "minecraft:splash_potion": { + "protocol_id": 1321 + }, + "minecraft:sponge": { + "protocol_id": 220 + }, + "minecraft:spore_blossom": { + "protocol_id": 274 + }, + "minecraft:spruce_boat": { + "protocol_id": 893 + }, + "minecraft:spruce_button": { + "protocol_id": 780 + }, + "minecraft:spruce_chest_boat": { + "protocol_id": 894 + }, + "minecraft:spruce_door": { + "protocol_id": 809 + }, + "minecraft:spruce_fence": { + "protocol_id": 373 + }, + "minecraft:spruce_fence_gate": { + "protocol_id": 850 + }, + "minecraft:spruce_hanging_sign": { + "protocol_id": 1029 + }, + "minecraft:spruce_leaves": { + "protocol_id": 210 + }, + "minecraft:spruce_log": { + "protocol_id": 162 + }, + "minecraft:spruce_planks": { + "protocol_id": 64 + }, + "minecraft:spruce_pressure_plate": { + "protocol_id": 796 + }, + "minecraft:spruce_sapling": { + "protocol_id": 77 + }, + "minecraft:spruce_shelf": { + "protocol_id": 343 + }, + "minecraft:spruce_sign": { + "protocol_id": 1017 + }, + "minecraft:spruce_slab": { + "protocol_id": 299 + }, + "minecraft:spruce_stairs": { + "protocol_id": 470 + }, + "minecraft:spruce_trapdoor": { + "protocol_id": 830 + }, + "minecraft:spruce_wood": { + "protocol_id": 199 + }, + "minecraft:spyglass": { + "protocol_id": 1084 + }, + "minecraft:squid_spawn_egg": { + "protocol_id": 1188 + }, + "minecraft:stick": { + "protocol_id": 974 + }, + "minecraft:sticky_piston": { + "protocol_id": 751 + }, + "minecraft:stone": { + "protocol_id": 1 + }, + "minecraft:stone_axe": { + "protocol_id": 952 + }, + "minecraft:stone_brick_slab": { + "protocol_id": 318 + }, + "minecraft:stone_brick_stairs": { + "protocol_id": 448 + }, + "minecraft:stone_brick_wall": { + "protocol_id": 491 + }, + "minecraft:stone_bricks": { + "protocol_id": 403 + }, + "minecraft:stone_button": { + "protocol_id": 777 + }, + "minecraft:stone_hoe": { + "protocol_id": 953 + }, + "minecraft:stone_pickaxe": { + "protocol_id": 951 + }, + "minecraft:stone_pressure_plate": { + "protocol_id": 791 + }, + "minecraft:stone_shovel": { + "protocol_id": 950 + }, + "minecraft:stone_slab": { + "protocol_id": 311 + }, + "minecraft:stone_spear": { + "protocol_id": 1327 + }, + "minecraft:stone_stairs": { + "protocol_id": 715 + }, + "minecraft:stone_sword": { + "protocol_id": 949 + }, + "minecraft:stonecutter": { + "protocol_id": 1392 + }, + "minecraft:stray_spawn_egg": { + "protocol_id": 1209 + }, + "minecraft:strider_spawn_egg": { + "protocol_id": 1240 + }, + "minecraft:string": { + "protocol_id": 976 + }, + "minecraft:stripped_acacia_log": { + "protocol_id": 179 + }, + "minecraft:stripped_acacia_wood": { + "protocol_id": 190 + }, + "minecraft:stripped_bamboo_block": { + "protocol_id": 197 + }, + "minecraft:stripped_birch_log": { + "protocol_id": 177 + }, + "minecraft:stripped_birch_wood": { + "protocol_id": 188 + }, + "minecraft:stripped_cherry_log": { + "protocol_id": 180 + }, + "minecraft:stripped_cherry_wood": { + "protocol_id": 191 + }, + "minecraft:stripped_crimson_hyphae": { + "protocol_id": 195 + }, + "minecraft:stripped_crimson_stem": { + "protocol_id": 184 + }, + "minecraft:stripped_dark_oak_log": { + "protocol_id": 181 + }, + "minecraft:stripped_dark_oak_wood": { + "protocol_id": 192 + }, + "minecraft:stripped_jungle_log": { + "protocol_id": 178 + }, + "minecraft:stripped_jungle_wood": { + "protocol_id": 189 + }, + "minecraft:stripped_mangrove_log": { + "protocol_id": 183 + }, + "minecraft:stripped_mangrove_wood": { + "protocol_id": 194 + }, + "minecraft:stripped_oak_log": { + "protocol_id": 175 + }, + "minecraft:stripped_oak_wood": { + "protocol_id": 186 + }, + "minecraft:stripped_pale_oak_log": { + "protocol_id": 182 + }, + "minecraft:stripped_pale_oak_wood": { + "protocol_id": 193 + }, + "minecraft:stripped_spruce_log": { + "protocol_id": 176 + }, + "minecraft:stripped_spruce_wood": { + "protocol_id": 187 + }, + "minecraft:stripped_warped_hyphae": { + "protocol_id": 196 + }, + "minecraft:stripped_warped_stem": { + "protocol_id": 185 + }, + "minecraft:structure_block": { + "protocol_id": 911 + }, + "minecraft:structure_void": { + "protocol_id": 608 + }, + "minecraft:sugar": { + "protocol_id": 1113 + }, + "minecraft:sugar_cane": { + "protocol_id": 284 + }, + "minecraft:sulfur": { + "protocol_id": 26 + }, + "minecraft:sulfur_brick_slab": { + "protocol_id": 36 + }, + "minecraft:sulfur_brick_stairs": { + "protocol_id": 37 + }, + "minecraft:sulfur_brick_wall": { + "protocol_id": 38 + }, + "minecraft:sulfur_bricks": { + "protocol_id": 35 + }, + "minecraft:sulfur_cube_bucket": { + "protocol_id": 1052 + }, + "minecraft:sulfur_cube_spawn_egg": { + "protocol_id": 1195 + }, + "minecraft:sulfur_slab": { + "protocol_id": 28 + }, + "minecraft:sulfur_spike": { + "protocol_id": 1451 + }, + "minecraft:sulfur_stairs": { + "protocol_id": 29 + }, + "minecraft:sulfur_wall": { + "protocol_id": 30 + }, + "minecraft:sunflower": { + "protocol_id": 552 + }, + "minecraft:suspicious_gravel": { + "protocol_id": 88 + }, + "minecraft:suspicious_sand": { + "protocol_id": 87 + }, + "minecraft:suspicious_stew": { + "protocol_id": 1371 + }, + "minecraft:sweet_berries": { + "protocol_id": 1404 + }, + "minecraft:tadpole_bucket": { + "protocol_id": 1053 + }, + "minecraft:tadpole_spawn_egg": { + "protocol_id": 1189 + }, + "minecraft:tall_dry_grass": { + "protocol_id": 237 + }, + "minecraft:tall_grass": { + "protocol_id": 556 + }, + "minecraft:target": { + "protocol_id": 759 + }, + "minecraft:terracotta": { + "protocol_id": 549 + }, + "minecraft:test_block": { + "protocol_id": 913 + }, + "minecraft:test_instance_block": { + "protocol_id": 914 + }, + "minecraft:tide_armor_trim_smithing_template": { + "protocol_id": 1466 + }, + "minecraft:tinted_glass": { + "protocol_id": 223 + }, + "minecraft:tipped_arrow": { + "protocol_id": 1323 + }, + "minecraft:tnt": { + "protocol_id": 774 + }, + "minecraft:tnt_minecart": { + "protocol_id": 885 + }, + "minecraft:torch": { + "protocol_id": 350 + }, + "minecraft:torchflower": { + "protocol_id": 272 + }, + "minecraft:torchflower_seeds": { + "protocol_id": 1315 + }, + "minecraft:totem_of_undying": { + "protocol_id": 1333 + }, + "minecraft:trader_llama_spawn_egg": { + "protocol_id": 1199 + }, + "minecraft:trapped_chest": { + "protocol_id": 773 + }, + "minecraft:trial_key": { + "protocol_id": 1533 + }, + "minecraft:trial_spawner": { + "protocol_id": 1532 + }, + "minecraft:trident": { + "protocol_id": 1362 + }, + "minecraft:tripwire_hook": { + "protocol_id": 772 + }, + "minecraft:tropical_fish": { + "protocol_id": 1088 + }, + "minecraft:tropical_fish_bucket": { + "protocol_id": 1050 + }, + "minecraft:tropical_fish_spawn_egg": { + "protocol_id": 1190 + }, + "minecraft:tube_coral": { + "protocol_id": 687 + }, + "minecraft:tube_coral_block": { + "protocol_id": 682 + }, + "minecraft:tube_coral_fan": { + "protocol_id": 697 + }, + "minecraft:tuff": { + "protocol_id": 12 + }, + "minecraft:tuff_brick_slab": { + "protocol_id": 22 + }, + "minecraft:tuff_brick_stairs": { + "protocol_id": 23 + }, + "minecraft:tuff_brick_wall": { + "protocol_id": 24 + }, + "minecraft:tuff_bricks": { + "protocol_id": 21 + }, + "minecraft:tuff_slab": { + "protocol_id": 13 + }, + "minecraft:tuff_stairs": { + "protocol_id": 14 + }, + "minecraft:tuff_wall": { + "protocol_id": 15 + }, + "minecraft:turtle_egg": { + "protocol_id": 674 + }, + "minecraft:turtle_helmet": { + "protocol_id": 915 + }, + "minecraft:turtle_scute": { + "protocol_id": 916 + }, + "minecraft:turtle_spawn_egg": { + "protocol_id": 1191 + }, + "minecraft:twisting_vines": { + "protocol_id": 283 + }, + "minecraft:vault": { + "protocol_id": 1535 + }, + "minecraft:verdant_froglight": { + "protocol_id": 1453 + }, + "minecraft:vex_armor_trim_smithing_template": { + "protocol_id": 1465 + }, + "minecraft:vex_spawn_egg": { + "protocol_id": 1232 + }, + "minecraft:villager_spawn_egg": { + "protocol_id": 1200 + }, + "minecraft:vindicator_spawn_egg": { + "protocol_id": 1231 + }, + "minecraft:vine": { + "protocol_id": 438 + }, + "minecraft:wandering_trader_spawn_egg": { + "protocol_id": 1201 + }, + "minecraft:ward_armor_trim_smithing_template": { + "protocol_id": 1463 + }, + "minecraft:warden_spawn_egg": { + "protocol_id": 1226 + }, + "minecraft:warped_button": { + "protocol_id": 790 + }, + "minecraft:warped_door": { + "protocol_id": 819 + }, + "minecraft:warped_fence": { + "protocol_id": 383 + }, + "minecraft:warped_fence_gate": { + "protocol_id": 860 + }, + "minecraft:warped_fungus": { + "protocol_id": 278 + }, + "minecraft:warped_fungus_on_a_stick": { + "protocol_id": 888 + }, + "minecraft:warped_hanging_sign": { + "protocol_id": 1039 + }, + "minecraft:warped_hyphae": { + "protocol_id": 208 + }, + "minecraft:warped_nylium": { + "protocol_id": 61 + }, + "minecraft:warped_planks": { + "protocol_id": 74 + }, + "minecraft:warped_pressure_plate": { + "protocol_id": 806 + }, + "minecraft:warped_roots": { + "protocol_id": 280 + }, + "minecraft:warped_shelf": { + "protocol_id": 344 + }, + "minecraft:warped_sign": { + "protocol_id": 1027 + }, + "minecraft:warped_slab": { + "protocol_id": 310 + }, + "minecraft:warped_stairs": { + "protocol_id": 481 + }, + "minecraft:warped_stem": { + "protocol_id": 173 + }, + "minecraft:warped_trapdoor": { + "protocol_id": 840 + }, + "minecraft:warped_wart_block": { + "protocol_id": 605 + }, + "minecraft:water_bucket": { + "protocol_id": 1041 + }, + "minecraft:waxed_chiseled_copper": { + "protocol_id": 133 + }, + "minecraft:waxed_copper_bars": { + "protocol_id": 423 + }, + "minecraft:waxed_copper_block": { + "protocol_id": 122 + }, + "minecraft:waxed_copper_bulb": { + "protocol_id": 1512 + }, + "minecraft:waxed_copper_chain": { + "protocol_id": 432 + }, + "minecraft:waxed_copper_chest": { + "protocol_id": 1520 + }, + "minecraft:waxed_copper_door": { + "protocol_id": 824 + }, + "minecraft:waxed_copper_golem_statue": { + "protocol_id": 1528 + }, + "minecraft:waxed_copper_grate": { + "protocol_id": 1504 + }, + "minecraft:waxed_copper_lantern": { + "protocol_id": 1400 + }, + "minecraft:waxed_copper_trapdoor": { + "protocol_id": 845 + }, + "minecraft:waxed_cut_copper": { + "protocol_id": 141 + }, + "minecraft:waxed_cut_copper_slab": { + "protocol_id": 157 + }, + "minecraft:waxed_cut_copper_stairs": { + "protocol_id": 149 + }, + "minecraft:waxed_exposed_chiseled_copper": { + "protocol_id": 134 + }, + "minecraft:waxed_exposed_copper": { + "protocol_id": 123 + }, + "minecraft:waxed_exposed_copper_bars": { + "protocol_id": 424 + }, + "minecraft:waxed_exposed_copper_bulb": { + "protocol_id": 1513 + }, + "minecraft:waxed_exposed_copper_chain": { + "protocol_id": 433 + }, + "minecraft:waxed_exposed_copper_chest": { + "protocol_id": 1521 + }, + "minecraft:waxed_exposed_copper_door": { + "protocol_id": 825 + }, + "minecraft:waxed_exposed_copper_golem_statue": { + "protocol_id": 1529 + }, + "minecraft:waxed_exposed_copper_grate": { + "protocol_id": 1505 + }, + "minecraft:waxed_exposed_copper_lantern": { + "protocol_id": 1401 + }, + "minecraft:waxed_exposed_copper_trapdoor": { + "protocol_id": 846 + }, + "minecraft:waxed_exposed_cut_copper": { + "protocol_id": 142 + }, + "minecraft:waxed_exposed_cut_copper_slab": { + "protocol_id": 158 + }, + "minecraft:waxed_exposed_cut_copper_stairs": { + "protocol_id": 150 + }, + "minecraft:waxed_exposed_lightning_rod": { + "protocol_id": 766 + }, + "minecraft:waxed_lightning_rod": { + "protocol_id": 765 + }, + "minecraft:waxed_oxidized_chiseled_copper": { + "protocol_id": 136 + }, + "minecraft:waxed_oxidized_copper": { + "protocol_id": 125 + }, + "minecraft:waxed_oxidized_copper_bars": { + "protocol_id": 426 + }, + "minecraft:waxed_oxidized_copper_bulb": { + "protocol_id": 1515 + }, + "minecraft:waxed_oxidized_copper_chain": { + "protocol_id": 435 + }, + "minecraft:waxed_oxidized_copper_chest": { + "protocol_id": 1523 + }, + "minecraft:waxed_oxidized_copper_door": { + "protocol_id": 827 + }, + "minecraft:waxed_oxidized_copper_golem_statue": { + "protocol_id": 1531 + }, + "minecraft:waxed_oxidized_copper_grate": { + "protocol_id": 1507 + }, + "minecraft:waxed_oxidized_copper_lantern": { + "protocol_id": 1403 + }, + "minecraft:waxed_oxidized_copper_trapdoor": { + "protocol_id": 848 + }, + "minecraft:waxed_oxidized_cut_copper": { + "protocol_id": 144 + }, + "minecraft:waxed_oxidized_cut_copper_slab": { + "protocol_id": 160 + }, + "minecraft:waxed_oxidized_cut_copper_stairs": { + "protocol_id": 152 + }, + "minecraft:waxed_oxidized_lightning_rod": { + "protocol_id": 768 + }, + "minecraft:waxed_weathered_chiseled_copper": { + "protocol_id": 135 + }, + "minecraft:waxed_weathered_copper": { + "protocol_id": 124 + }, + "minecraft:waxed_weathered_copper_bars": { + "protocol_id": 425 + }, + "minecraft:waxed_weathered_copper_bulb": { + "protocol_id": 1514 + }, + "minecraft:waxed_weathered_copper_chain": { + "protocol_id": 434 + }, + "minecraft:waxed_weathered_copper_chest": { + "protocol_id": 1522 + }, + "minecraft:waxed_weathered_copper_door": { + "protocol_id": 826 + }, + "minecraft:waxed_weathered_copper_golem_statue": { + "protocol_id": 1530 + }, + "minecraft:waxed_weathered_copper_grate": { + "protocol_id": 1506 + }, + "minecraft:waxed_weathered_copper_lantern": { + "protocol_id": 1402 + }, + "minecraft:waxed_weathered_copper_trapdoor": { + "protocol_id": 847 + }, + "minecraft:waxed_weathered_cut_copper": { + "protocol_id": 143 + }, + "minecraft:waxed_weathered_cut_copper_slab": { + "protocol_id": 159 + }, + "minecraft:waxed_weathered_cut_copper_stairs": { + "protocol_id": 151 + }, + "minecraft:waxed_weathered_lightning_rod": { + "protocol_id": 767 + }, + "minecraft:wayfinder_armor_trim_smithing_template": { + "protocol_id": 1470 + }, + "minecraft:weathered_chiseled_copper": { + "protocol_id": 131 + }, + "minecraft:weathered_copper": { + "protocol_id": 120 + }, + "minecraft:weathered_copper_bars": { + "protocol_id": 421 + }, + "minecraft:weathered_copper_bulb": { + "protocol_id": 1510 + }, + "minecraft:weathered_copper_chain": { + "protocol_id": 430 + }, + "minecraft:weathered_copper_chest": { + "protocol_id": 1518 + }, + "minecraft:weathered_copper_door": { + "protocol_id": 822 + }, + "minecraft:weathered_copper_golem_statue": { + "protocol_id": 1526 + }, + "minecraft:weathered_copper_grate": { + "protocol_id": 1502 + }, + "minecraft:weathered_copper_lantern": { + "protocol_id": 1398 + }, + "minecraft:weathered_copper_trapdoor": { + "protocol_id": 843 + }, + "minecraft:weathered_cut_copper": { + "protocol_id": 139 + }, + "minecraft:weathered_cut_copper_slab": { + "protocol_id": 155 + }, + "minecraft:weathered_cut_copper_stairs": { + "protocol_id": 147 + }, + "minecraft:weathered_lightning_rod": { + "protocol_id": 763 + }, + "minecraft:weeping_vines": { + "protocol_id": 282 + }, + "minecraft:wet_sponge": { + "protocol_id": 221 + }, + "minecraft:wheat": { + "protocol_id": 980 + }, + "minecraft:wheat_seeds": { + "protocol_id": 979 + }, + "minecraft:white_banner": { + "protocol_id": 1296 + }, + "minecraft:white_bed": { + "protocol_id": 1115 + }, + "minecraft:white_bundle": { + "protocol_id": 1066 + }, + "minecraft:white_candle": { + "protocol_id": 1430 + }, + "minecraft:white_carpet": { + "protocol_id": 533 + }, + "minecraft:white_concrete": { + "protocol_id": 642 + }, + "minecraft:white_concrete_powder": { + "protocol_id": 658 + }, + "minecraft:white_dye": { + "protocol_id": 1095 + }, + "minecraft:white_glazed_terracotta": { + "protocol_id": 626 + }, + "minecraft:white_harness": { + "protocol_id": 866 + }, + "minecraft:white_shulker_box": { + "protocol_id": 610 + }, + "minecraft:white_stained_glass": { + "protocol_id": 558 + }, + "minecraft:white_stained_glass_pane": { + "protocol_id": 574 + }, + "minecraft:white_terracotta": { + "protocol_id": 514 + }, + "minecraft:white_tulip": { + "protocol_id": 266 + }, + "minecraft:white_wool": { + "protocol_id": 240 + }, + "minecraft:wild_armor_trim_smithing_template": { + "protocol_id": 1462 + }, + "minecraft:wildflowers": { + "protocol_id": 287 + }, + "minecraft:wind_charge": { + "protocol_id": 1249 + }, + "minecraft:witch_spawn_egg": { + "protocol_id": 1227 + }, + "minecraft:wither_rose": { + "protocol_id": 271 + }, + "minecraft:wither_skeleton_skull": { + "protocol_id": 1264 + }, + "minecraft:wither_skeleton_spawn_egg": { + "protocol_id": 1211 + }, + "minecraft:wither_spawn_egg": { + "protocol_id": 1210 + }, + "minecraft:wolf_armor": { + "protocol_id": 918 + }, + "minecraft:wolf_spawn_egg": { + "protocol_id": 1169 + }, + "minecraft:wooden_axe": { + "protocol_id": 942 + }, + "minecraft:wooden_hoe": { + "protocol_id": 943 + }, + "minecraft:wooden_pickaxe": { + "protocol_id": 941 + }, + "minecraft:wooden_shovel": { + "protocol_id": 940 + }, + "minecraft:wooden_spear": { + "protocol_id": 1326 + }, + "minecraft:wooden_sword": { + "protocol_id": 939 + }, + "minecraft:writable_book": { + "protocol_id": 1250 + }, + "minecraft:written_book": { + "protocol_id": 1251 + }, + "minecraft:yellow_banner": { + "protocol_id": 1300 + }, + "minecraft:yellow_bed": { + "protocol_id": 1119 + }, + "minecraft:yellow_bundle": { + "protocol_id": 1070 + }, + "minecraft:yellow_candle": { + "protocol_id": 1434 + }, + "minecraft:yellow_carpet": { + "protocol_id": 537 + }, + "minecraft:yellow_concrete": { + "protocol_id": 646 + }, + "minecraft:yellow_concrete_powder": { + "protocol_id": 662 + }, + "minecraft:yellow_dye": { + "protocol_id": 1099 + }, + "minecraft:yellow_glazed_terracotta": { + "protocol_id": 630 + }, + "minecraft:yellow_harness": { + "protocol_id": 870 + }, + "minecraft:yellow_shulker_box": { + "protocol_id": 614 + }, + "minecraft:yellow_stained_glass": { + "protocol_id": 562 + }, + "minecraft:yellow_stained_glass_pane": { + "protocol_id": 578 + }, + "minecraft:yellow_terracotta": { + "protocol_id": 518 + }, + "minecraft:yellow_wool": { + "protocol_id": 244 + }, + "minecraft:zoglin_spawn_egg": { + "protocol_id": 1241 + }, + "minecraft:zombie_head": { + "protocol_id": 1266 + }, + "minecraft:zombie_horse_spawn_egg": { + "protocol_id": 1213 + }, + "minecraft:zombie_nautilus_spawn_egg": { + "protocol_id": 1214 + }, + "minecraft:zombie_spawn_egg": { + "protocol_id": 1212 + }, + "minecraft:zombie_villager_spawn_egg": { + "protocol_id": 1215 + }, + "minecraft:zombified_piglin_spawn_egg": { + "protocol_id": 1242 + } + }, + "protocol_id": 7 + }, + "minecraft:loot_condition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 2 + }, + "minecraft:any_of": { + "protocol_id": 1 + }, + "minecraft:block_state_property": { + "protocol_id": 8 + }, + "minecraft:damage_source_properties": { + "protocol_id": 12 + }, + "minecraft:enchantment_active_check": { + "protocol_id": 18 + }, + "minecraft:entity_properties": { + "protocol_id": 5 + }, + "minecraft:entity_scores": { + "protocol_id": 7 + }, + "minecraft:environment_attribute_check": { + "protocol_id": 19 + }, + "minecraft:inverted": { + "protocol_id": 0 + }, + "minecraft:killed_by_player": { + "protocol_id": 6 + }, + "minecraft:location_check": { + "protocol_id": 13 + }, + "minecraft:match_tool": { + "protocol_id": 9 + }, + "minecraft:random_chance": { + "protocol_id": 3 + }, + "minecraft:random_chance_with_enchanted_bonus": { + "protocol_id": 4 + }, + "minecraft:reference": { + "protocol_id": 15 + }, + "minecraft:survives_explosion": { + "protocol_id": 11 + }, + "minecraft:table_bonus": { + "protocol_id": 10 + }, + "minecraft:time_check": { + "protocol_id": 16 + }, + "minecraft:value_check": { + "protocol_id": 17 + }, + "minecraft:weather_check": { + "protocol_id": 14 + } + }, + "protocol_id": 31 + }, + "minecraft:loot_function_type": { + "entries": { + "minecraft:apply_bonus": { + "protocol_id": 19 + }, + "minecraft:copy_components": { + "protocol_id": 33 + }, + "minecraft:copy_custom_data": { + "protocol_id": 24 + }, + "minecraft:copy_name": { + "protocol_id": 14 + }, + "minecraft:copy_state": { + "protocol_id": 25 + }, + "minecraft:discard": { + "protocol_id": 42 + }, + "minecraft:enchant_randomly": { + "protocol_id": 3 + }, + "minecraft:enchant_with_levels": { + "protocol_id": 2 + }, + "minecraft:enchanted_count_increase": { + "protocol_id": 8 + }, + "minecraft:exploration_map": { + "protocol_id": 12 + }, + "minecraft:explosion_decay": { + "protocol_id": 21 + }, + "minecraft:fill_player_head": { + "protocol_id": 23 + }, + "minecraft:filtered": { + "protocol_id": 17 + }, + "minecraft:furnace_smelt": { + "protocol_id": 7 + }, + "minecraft:limit_count": { + "protocol_id": 18 + }, + "minecraft:modify_contents": { + "protocol_id": 16 + }, + "minecraft:reference": { + "protocol_id": 31 + }, + "minecraft:sequence": { + "protocol_id": 32 + }, + "minecraft:set_attributes": { + "protocol_id": 10 + }, + "minecraft:set_banner_pattern": { + "protocol_id": 26 + }, + "minecraft:set_book_cover": { + "protocol_id": 36 + }, + "minecraft:set_components": { + "protocol_id": 6 + }, + "minecraft:set_contents": { + "protocol_id": 15 + }, + "minecraft:set_count": { + "protocol_id": 0 + }, + "minecraft:set_custom_data": { + "protocol_id": 5 + }, + "minecraft:set_custom_model_data": { + "protocol_id": 41 + }, + "minecraft:set_damage": { + "protocol_id": 9 + }, + "minecraft:set_enchantments": { + "protocol_id": 4 + }, + "minecraft:set_firework_explosion": { + "protocol_id": 35 + }, + "minecraft:set_fireworks": { + "protocol_id": 34 + }, + "minecraft:set_instrument": { + "protocol_id": 30 + }, + "minecraft:set_item": { + "protocol_id": 1 + }, + "minecraft:set_loot_table": { + "protocol_id": 20 + }, + "minecraft:set_lore": { + "protocol_id": 22 + }, + "minecraft:set_name": { + "protocol_id": 11 + }, + "minecraft:set_ominous_bottle_amplifier": { + "protocol_id": 40 + }, + "minecraft:set_potion": { + "protocol_id": 27 + }, + "minecraft:set_random_dyes": { + "protocol_id": 28 + }, + "minecraft:set_random_potion": { + "protocol_id": 29 + }, + "minecraft:set_stew_effect": { + "protocol_id": 13 + }, + "minecraft:set_writable_book_pages": { + "protocol_id": 38 + }, + "minecraft:set_written_book_pages": { + "protocol_id": 37 + }, + "minecraft:toggle_tooltips": { + "protocol_id": 39 + } + }, + "protocol_id": 30 + }, + "minecraft:loot_nbt_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:storage": { + "protocol_id": 0 + } + }, + "protocol_id": 33 + }, + "minecraft:loot_number_provider_type": { + "entries": { + "minecraft:binomial": { + "protocol_id": 2 + }, + "minecraft:constant": { + "protocol_id": 0 + }, + "minecraft:enchantment_level": { + "protocol_id": 6 + }, + "minecraft:environment_attribute": { + "protocol_id": 7 + }, + "minecraft:score": { + "protocol_id": 3 + }, + "minecraft:storage": { + "protocol_id": 4 + }, + "minecraft:sum": { + "protocol_id": 5 + }, + "minecraft:uniform": { + "protocol_id": 1 + } + }, + "protocol_id": 32 + }, + "minecraft:loot_pool_entry_type": { + "entries": { + "minecraft:alternatives": { + "protocol_id": 6 + }, + "minecraft:dynamic": { + "protocol_id": 3 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:group": { + "protocol_id": 8 + }, + "minecraft:item": { + "protocol_id": 1 + }, + "minecraft:loot_table": { + "protocol_id": 2 + }, + "minecraft:sequence": { + "protocol_id": 7 + }, + "minecraft:slots": { + "protocol_id": 5 + }, + "minecraft:tag": { + "protocol_id": 4 + } + }, + "protocol_id": 29 + }, + "minecraft:loot_score_provider_type": { + "entries": { + "minecraft:context": { + "protocol_id": 1 + }, + "minecraft:fixed": { + "protocol_id": 0 + } + }, + "protocol_id": 34 + }, + "minecraft:map_decoration_type": { + "entries": { + "minecraft:banner_black": { + "protocol_id": 25 + }, + "minecraft:banner_blue": { + "protocol_id": 21 + }, + "minecraft:banner_brown": { + "protocol_id": 22 + }, + "minecraft:banner_cyan": { + "protocol_id": 19 + }, + "minecraft:banner_gray": { + "protocol_id": 17 + }, + "minecraft:banner_green": { + "protocol_id": 23 + }, + "minecraft:banner_light_blue": { + "protocol_id": 13 + }, + "minecraft:banner_light_gray": { + "protocol_id": 18 + }, + "minecraft:banner_lime": { + "protocol_id": 15 + }, + "minecraft:banner_magenta": { + "protocol_id": 12 + }, + "minecraft:banner_orange": { + "protocol_id": 11 + }, + "minecraft:banner_pink": { + "protocol_id": 16 + }, + "minecraft:banner_purple": { + "protocol_id": 20 + }, + "minecraft:banner_red": { + "protocol_id": 24 + }, + "minecraft:banner_white": { + "protocol_id": 10 + }, + "minecraft:banner_yellow": { + "protocol_id": 14 + }, + "minecraft:blue_marker": { + "protocol_id": 3 + }, + "minecraft:frame": { + "protocol_id": 1 + }, + "minecraft:jungle_temple": { + "protocol_id": 32 + }, + "minecraft:mansion": { + "protocol_id": 8 + }, + "minecraft:monument": { + "protocol_id": 9 + }, + "minecraft:player": { + "protocol_id": 0 + }, + "minecraft:player_off_limits": { + "protocol_id": 7 + }, + "minecraft:player_off_map": { + "protocol_id": 6 + }, + "minecraft:red_marker": { + "protocol_id": 2 + }, + "minecraft:red_x": { + "protocol_id": 26 + }, + "minecraft:swamp_hut": { + "protocol_id": 33 + }, + "minecraft:target_point": { + "protocol_id": 5 + }, + "minecraft:target_x": { + "protocol_id": 4 + }, + "minecraft:trial_chambers": { + "protocol_id": 34 + }, + "minecraft:village_desert": { + "protocol_id": 27 + }, + "minecraft:village_plains": { + "protocol_id": 28 + }, + "minecraft:village_savanna": { + "protocol_id": 29 + }, + "minecraft:village_snowy": { + "protocol_id": 30 + }, + "minecraft:village_taiga": { + "protocol_id": 31 + } + }, + "protocol_id": 68 + }, + "minecraft:memory_module_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:admiring_disabled": { + "protocol_id": 68 + }, + "minecraft:admiring_item": { + "protocol_id": 65 + }, + "minecraft:angry_at": { + "protocol_id": 63 + }, + "minecraft:ate_recently": { + "protocol_id": 83 + }, + "minecraft:attack_cooling_down": { + "protocol_id": 16 + }, + "minecraft:attack_target": { + "protocol_id": 15 + }, + "minecraft:attack_target_cooldown": { + "protocol_id": 57 + }, + "minecraft:avoid_target": { + "protocol_id": 25 + }, + "minecraft:breed_target": { + "protocol_id": 18 + }, + "minecraft:breeze_jump_cooldown": { + "protocol_id": 108 + }, + "minecraft:breeze_jump_inhaling": { + "protocol_id": 113 + }, + "minecraft:breeze_jump_target": { + "protocol_id": 114 + }, + "minecraft:breeze_leaving_water": { + "protocol_id": 115 + }, + "minecraft:breeze_shoot": { + "protocol_id": 109 + }, + "minecraft:breeze_shoot_charging": { + "protocol_id": 110 + }, + "minecraft:breeze_shoot_cooldown": { + "protocol_id": 112 + }, + "minecraft:breeze_shoot_recover": { + "protocol_id": 111 + }, + "minecraft:cant_reach_walk_target_since": { + "protocol_id": 30 + }, + "minecraft:celebrate_location": { + "protocol_id": 70 + }, + "minecraft:charge_cooldown_ticks": { + "protocol_id": 56 + }, + "minecraft:dancing": { + "protocol_id": 71 + }, + "minecraft:danger_detected_recently": { + "protocol_id": 32 + }, + "minecraft:dig_cooldown": { + "protocol_id": 92 + }, + "minecraft:disable_walk_to_admire_item": { + "protocol_id": 67 + }, + "minecraft:disturbance_location": { + "protocol_id": 87 + }, + "minecraft:doors_to_close": { + "protocol_id": 21 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:gaze_cooldown_ticks": { + "protocol_id": 42 + }, + "minecraft:golem_detected_recently": { + "protocol_id": 31 + }, + "minecraft:has_hunting_cooldown": { + "protocol_id": 46 + }, + "minecraft:heard_bell_time": { + "protocol_id": 29 + }, + "minecraft:hiding_place": { + "protocol_id": 28 + }, + "minecraft:home": { + "protocol_id": 1 + }, + "minecraft:hunted_recently": { + "protocol_id": 69 + }, + "minecraft:hurt_by": { + "protocol_id": 23 + }, + "minecraft:hurt_by_entity": { + "protocol_id": 24 + }, + "minecraft:interaction_target": { + "protocol_id": 17 + }, + "minecraft:is_emerging": { + "protocol_id": 90 + }, + "minecraft:is_in_water": { + "protocol_id": 49 + }, + "minecraft:is_panicking": { + "protocol_id": 51 + }, + "minecraft:is_pregnant": { + "protocol_id": 50 + }, + "minecraft:is_sniffing": { + "protocol_id": 89 + }, + "minecraft:is_tempted": { + "protocol_id": 43 + }, + "minecraft:item_pickup_cooldown_ticks": { + "protocol_id": 103 + }, + "minecraft:job_site": { + "protocol_id": 2 + }, + "minecraft:last_slept": { + "protocol_id": 33 + }, + "minecraft:last_woken": { + "protocol_id": 34 + }, + "minecraft:last_worked_at_poi": { + "protocol_id": 35 + }, + "minecraft:liked_noteblock": { + "protocol_id": 101 + }, + "minecraft:liked_noteblock_cooldown_ticks": { + "protocol_id": 102 + }, + "minecraft:liked_player": { + "protocol_id": 100 + }, + "minecraft:long_jump_cooling_down": { + "protocol_id": 44 + }, + "minecraft:long_jump_mid_jump": { + "protocol_id": 45 + }, + "minecraft:look_target": { + "protocol_id": 14 + }, + "minecraft:meeting_point": { + "protocol_id": 4 + }, + "minecraft:mobs": { + "protocol_id": 6 + }, + "minecraft:nearby_adult_piglins": { + "protocol_id": 75 + }, + "minecraft:nearest_attackable": { + "protocol_id": 27 + }, + "minecraft:nearest_bed": { + "protocol_id": 22 + }, + "minecraft:nearest_hostile": { + "protocol_id": 26 + }, + "minecraft:nearest_player_holding_wanted_item": { + "protocol_id": 82 + }, + "minecraft:nearest_players": { + "protocol_id": 9 + }, + "minecraft:nearest_repellent": { + "protocol_id": 84 + }, + "minecraft:nearest_targetable_player_not_wearing_gold": { + "protocol_id": 74 + }, + "minecraft:nearest_visible_adult": { + "protocol_id": 36 + }, + "minecraft:nearest_visible_adult_hoglins": { + "protocol_id": 77 + }, + "minecraft:nearest_visible_adult_piglin": { + "protocol_id": 78 + }, + "minecraft:nearest_visible_adult_piglins": { + "protocol_id": 76 + }, + "minecraft:nearest_visible_baby_hoglin": { + "protocol_id": 73 + }, + "minecraft:nearest_visible_huntable_hoglin": { + "protocol_id": 72 + }, + "minecraft:nearest_visible_nemesis": { + "protocol_id": 38 + }, + "minecraft:nearest_visible_player": { + "protocol_id": 10 + }, + "minecraft:nearest_visible_targetable_player": { + "protocol_id": 11 + }, + "minecraft:nearest_visible_targetable_players": { + "protocol_id": 12 + }, + "minecraft:nearest_visible_wanted_item": { + "protocol_id": 37 + }, + "minecraft:nearest_visible_zombified": { + "protocol_id": 79 + }, + "minecraft:pacified": { + "protocol_id": 85 + }, + "minecraft:path": { + "protocol_id": 20 + }, + "minecraft:play_dead_ticks": { + "protocol_id": 39 + }, + "minecraft:potential_job_site": { + "protocol_id": 3 + }, + "minecraft:ram_cooldown_ticks": { + "protocol_id": 47 + }, + "minecraft:ram_target": { + "protocol_id": 48 + }, + "minecraft:recent_projectile": { + "protocol_id": 88 + }, + "minecraft:ride_target": { + "protocol_id": 19 + }, + "minecraft:roar_sound_cooldown": { + "protocol_id": 93 + }, + "minecraft:roar_sound_delay": { + "protocol_id": 91 + }, + "minecraft:roar_target": { + "protocol_id": 86 + }, + "minecraft:secondary_job_site": { + "protocol_id": 5 + }, + "minecraft:sniff_cooldown": { + "protocol_id": 94 + }, + "minecraft:sniffer_digging": { + "protocol_id": 106 + }, + "minecraft:sniffer_explored_positions": { + "protocol_id": 104 + }, + "minecraft:sniffer_happy": { + "protocol_id": 107 + }, + "minecraft:sniffer_sniffing_target": { + "protocol_id": 105 + }, + "minecraft:sonic_boom_cooldown": { + "protocol_id": 97 + }, + "minecraft:sonic_boom_sound_cooldown": { + "protocol_id": 98 + }, + "minecraft:sonic_boom_sound_delay": { + "protocol_id": 99 + }, + "minecraft:spear_charge_position": { + "protocol_id": 60 + }, + "minecraft:spear_engage_time": { + "protocol_id": 61 + }, + "minecraft:spear_fleeing_position": { + "protocol_id": 59 + }, + "minecraft:spear_fleeing_time": { + "protocol_id": 58 + }, + "minecraft:spear_status": { + "protocol_id": 62 + }, + "minecraft:temptation_cooldown_ticks": { + "protocol_id": 41 + }, + "minecraft:tempting_player": { + "protocol_id": 40 + }, + "minecraft:time_trying_to_reach_admire_item": { + "protocol_id": 66 + }, + "minecraft:touch_cooldown": { + "protocol_id": 95 + }, + "minecraft:transport_items_cooldown_ticks": { + "protocol_id": 55 + }, + "minecraft:universal_anger": { + "protocol_id": 64 + }, + "minecraft:unreachable_tongue_targets": { + "protocol_id": 52 + }, + "minecraft:unreachable_transport_block_positions": { + "protocol_id": 54 + }, + "minecraft:vibration_cooldown": { + "protocol_id": 96 + }, + "minecraft:visible_adult_hoglin_count": { + "protocol_id": 81 + }, + "minecraft:visible_adult_piglin_count": { + "protocol_id": 80 + }, + "minecraft:visible_mobs": { + "protocol_id": 7 + }, + "minecraft:visible_villager_babies": { + "protocol_id": 8 + }, + "minecraft:visited_block_positions": { + "protocol_id": 53 + }, + "minecraft:walk_target": { + "protocol_id": 13 + } + }, + "protocol_id": 26 + }, + "minecraft:menu": { + "entries": { + "minecraft:anvil": { + "protocol_id": 8 + }, + "minecraft:beacon": { + "protocol_id": 9 + }, + "minecraft:blast_furnace": { + "protocol_id": 10 + }, + "minecraft:brewing_stand": { + "protocol_id": 11 + }, + "minecraft:cartography_table": { + "protocol_id": 23 + }, + "minecraft:crafter_3x3": { + "protocol_id": 7 + }, + "minecraft:crafting": { + "protocol_id": 12 + }, + "minecraft:enchantment": { + "protocol_id": 13 + }, + "minecraft:furnace": { + "protocol_id": 14 + }, + "minecraft:generic_3x3": { + "protocol_id": 6 + }, + "minecraft:generic_9x1": { + "protocol_id": 0 + }, + "minecraft:generic_9x2": { + "protocol_id": 1 + }, + "minecraft:generic_9x3": { + "protocol_id": 2 + }, + "minecraft:generic_9x4": { + "protocol_id": 3 + }, + "minecraft:generic_9x5": { + "protocol_id": 4 + }, + "minecraft:generic_9x6": { + "protocol_id": 5 + }, + "minecraft:grindstone": { + "protocol_id": 15 + }, + "minecraft:hopper": { + "protocol_id": 16 + }, + "minecraft:lectern": { + "protocol_id": 17 + }, + "minecraft:loom": { + "protocol_id": 18 + }, + "minecraft:merchant": { + "protocol_id": 19 + }, + "minecraft:shulker_box": { + "protocol_id": 20 + }, + "minecraft:smithing": { + "protocol_id": 21 + }, + "minecraft:smoker": { + "protocol_id": 22 + }, + "minecraft:stonecutter": { + "protocol_id": 24 + } + }, + "protocol_id": 16 + }, + "minecraft:mob_effect": { + "entries": { + "minecraft:absorption": { + "protocol_id": 21 + }, + "minecraft:bad_omen": { + "protocol_id": 30 + }, + "minecraft:blindness": { + "protocol_id": 14 + }, + "minecraft:breath_of_the_nautilus": { + "protocol_id": 39 + }, + "minecraft:conduit_power": { + "protocol_id": 28 + }, + "minecraft:darkness": { + "protocol_id": 32 + }, + "minecraft:dolphins_grace": { + "protocol_id": 29 + }, + "minecraft:fire_resistance": { + "protocol_id": 11 + }, + "minecraft:glowing": { + "protocol_id": 23 + }, + "minecraft:haste": { + "protocol_id": 2 + }, + "minecraft:health_boost": { + "protocol_id": 20 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 31 + }, + "minecraft:hunger": { + "protocol_id": 16 + }, + "minecraft:infested": { + "protocol_id": 38 + }, + "minecraft:instant_damage": { + "protocol_id": 6 + }, + "minecraft:instant_health": { + "protocol_id": 5 + }, + "minecraft:invisibility": { + "protocol_id": 13 + }, + "minecraft:jump_boost": { + "protocol_id": 7 + }, + "minecraft:levitation": { + "protocol_id": 24 + }, + "minecraft:luck": { + "protocol_id": 25 + }, + "minecraft:mining_fatigue": { + "protocol_id": 3 + }, + "minecraft:nausea": { + "protocol_id": 8 + }, + "minecraft:night_vision": { + "protocol_id": 15 + }, + "minecraft:oozing": { + "protocol_id": 37 + }, + "minecraft:poison": { + "protocol_id": 18 + }, + "minecraft:raid_omen": { + "protocol_id": 34 + }, + "minecraft:regeneration": { + "protocol_id": 9 + }, + "minecraft:resistance": { + "protocol_id": 10 + }, + "minecraft:saturation": { + "protocol_id": 22 + }, + "minecraft:slow_falling": { + "protocol_id": 27 + }, + "minecraft:slowness": { + "protocol_id": 1 + }, + "minecraft:speed": { + "protocol_id": 0 + }, + "minecraft:strength": { + "protocol_id": 4 + }, + "minecraft:trial_omen": { + "protocol_id": 33 + }, + "minecraft:unluck": { + "protocol_id": 26 + }, + "minecraft:water_breathing": { + "protocol_id": 12 + }, + "minecraft:weakness": { + "protocol_id": 17 + }, + "minecraft:weaving": { + "protocol_id": 36 + }, + "minecraft:wind_charged": { + "protocol_id": 35 + }, + "minecraft:wither": { + "protocol_id": 19 + } + }, + "protocol_id": 3 + }, + "minecraft:number_format_type": { + "entries": { + "minecraft:blank": { + "protocol_id": 0 + }, + "minecraft:fixed": { + "protocol_id": 2 + }, + "minecraft:styled": { + "protocol_id": 1 + } + }, + "protocol_id": 63 + }, + "minecraft:outgoing_rpc_methods": { + "entries": { + "minecraft:notification/allowlist/added": { + "protocol_id": 9 + }, + "minecraft:notification/allowlist/removed": { + "protocol_id": 10 + }, + "minecraft:notification/bans/added": { + "protocol_id": 13 + }, + "minecraft:notification/bans/removed": { + "protocol_id": 14 + }, + "minecraft:notification/gamerules/updated": { + "protocol_id": 15 + }, + "minecraft:notification/ip_bans/added": { + "protocol_id": 11 + }, + "minecraft:notification/ip_bans/removed": { + "protocol_id": 12 + }, + "minecraft:notification/operators/added": { + "protocol_id": 7 + }, + "minecraft:notification/operators/removed": { + "protocol_id": 8 + }, + "minecraft:notification/players/joined": { + "protocol_id": 5 + }, + "minecraft:notification/players/left": { + "protocol_id": 6 + }, + "minecraft:notification/server/activity": { + "protocol_id": 4 + }, + "minecraft:notification/server/saved": { + "protocol_id": 3 + }, + "minecraft:notification/server/saving": { + "protocol_id": 2 + }, + "minecraft:notification/server/started": { + "protocol_id": 0 + }, + "minecraft:notification/server/status": { + "protocol_id": 16 + }, + "minecraft:notification/server/stopping": { + "protocol_id": 1 + } + }, + "protocol_id": 81 + }, + "minecraft:particle_type": { + "entries": { + "minecraft:angry_villager": { + "protocol_id": 0 + }, + "minecraft:ash": { + "protocol_id": 91 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:block_crumble": { + "protocol_id": 122 + }, + "minecraft:block_marker": { + "protocol_id": 2 + }, + "minecraft:bubble": { + "protocol_id": 3 + }, + "minecraft:bubble_column_up": { + "protocol_id": 81 + }, + "minecraft:bubble_pop": { + "protocol_id": 79 + }, + "minecraft:campfire_cosy_smoke": { + "protocol_id": 84 + }, + "minecraft:campfire_signal_smoke": { + "protocol_id": 85 + }, + "minecraft:cherry_leaves": { + "protocol_id": 41 + }, + "minecraft:cloud": { + "protocol_id": 11 + }, + "minecraft:composter": { + "protocol_id": 51 + }, + "minecraft:copper_fire_flame": { + "protocol_id": 12 + }, + "minecraft:crimson_spore": { + "protocol_id": 92 + }, + "minecraft:crit": { + "protocol_id": 13 + }, + "minecraft:current_down": { + "protocol_id": 80 + }, + "minecraft:damage_indicator": { + "protocol_id": 14 + }, + "minecraft:dolphin": { + "protocol_id": 83 + }, + "minecraft:dragon_breath": { + "protocol_id": 15 + }, + "minecraft:dripping_dripstone_lava": { + "protocol_id": 102 + }, + "minecraft:dripping_dripstone_water": { + "protocol_id": 104 + }, + "minecraft:dripping_honey": { + "protocol_id": 86 + }, + "minecraft:dripping_lava": { + "protocol_id": 16 + }, + "minecraft:dripping_obsidian_tear": { + "protocol_id": 95 + }, + "minecraft:dripping_water": { + "protocol_id": 19 + }, + "minecraft:dust": { + "protocol_id": 21 + }, + "minecraft:dust_color_transition": { + "protocol_id": 22 + }, + "minecraft:dust_pillar": { + "protocol_id": 118 + }, + "minecraft:dust_plume": { + "protocol_id": 114 + }, + "minecraft:effect": { + "protocol_id": 23 + }, + "minecraft:egg_crack": { + "protocol_id": 113 + }, + "minecraft:elder_guardian": { + "protocol_id": 24 + }, + "minecraft:electric_spark": { + "protocol_id": 110 + }, + "minecraft:enchant": { + "protocol_id": 26 + }, + "minecraft:enchanted_hit": { + "protocol_id": 25 + }, + "minecraft:end_rod": { + "protocol_id": 27 + }, + "minecraft:entity_effect": { + "protocol_id": 28 + }, + "minecraft:explosion": { + "protocol_id": 30 + }, + "minecraft:explosion_emitter": { + "protocol_id": 29 + }, + "minecraft:falling_dripstone_lava": { + "protocol_id": 103 + }, + "minecraft:falling_dripstone_water": { + "protocol_id": 105 + }, + "minecraft:falling_dust": { + "protocol_id": 36 + }, + "minecraft:falling_honey": { + "protocol_id": 87 + }, + "minecraft:falling_lava": { + "protocol_id": 17 + }, + "minecraft:falling_nectar": { + "protocol_id": 89 + }, + "minecraft:falling_obsidian_tear": { + "protocol_id": 96 + }, + "minecraft:falling_spore_blossom": { + "protocol_id": 90 + }, + "minecraft:falling_water": { + "protocol_id": 20 + }, + "minecraft:firefly": { + "protocol_id": 123 + }, + "minecraft:firework": { + "protocol_id": 37 + }, + "minecraft:fishing": { + "protocol_id": 38 + }, + "minecraft:flame": { + "protocol_id": 39 + }, + "minecraft:flash": { + "protocol_id": 49 + }, + "minecraft:geyser": { + "protocol_id": 7 + }, + "minecraft:geyser_base": { + "protocol_id": 8 + }, + "minecraft:geyser_plume": { + "protocol_id": 10 + }, + "minecraft:geyser_poof": { + "protocol_id": 9 + }, + "minecraft:glow": { + "protocol_id": 107 + }, + "minecraft:glow_squid_ink": { + "protocol_id": 106 + }, + "minecraft:gust": { + "protocol_id": 31 + }, + "minecraft:gust_emitter_large": { + "protocol_id": 33 + }, + "minecraft:gust_emitter_small": { + "protocol_id": 34 + }, + "minecraft:happy_villager": { + "protocol_id": 50 + }, + "minecraft:heart": { + "protocol_id": 52 + }, + "minecraft:infested": { + "protocol_id": 40 + }, + "minecraft:instant_effect": { + "protocol_id": 53 + }, + "minecraft:item": { + "protocol_id": 54 + }, + "minecraft:item_cobweb": { + "protocol_id": 60 + }, + "minecraft:item_slime": { + "protocol_id": 59 + }, + "minecraft:item_snowball": { + "protocol_id": 61 + }, + "minecraft:landing_honey": { + "protocol_id": 88 + }, + "minecraft:landing_lava": { + "protocol_id": 18 + }, + "minecraft:landing_obsidian_tear": { + "protocol_id": 97 + }, + "minecraft:large_smoke": { + "protocol_id": 62 + }, + "minecraft:lava": { + "protocol_id": 63 + }, + "minecraft:mycelium": { + "protocol_id": 64 + }, + "minecraft:nautilus": { + "protocol_id": 82 + }, + "minecraft:note": { + "protocol_id": 65 + }, + "minecraft:noxious_gas": { + "protocol_id": 5 + }, + "minecraft:noxious_gas_cloud": { + "protocol_id": 6 + }, + "minecraft:ominous_spawning": { + "protocol_id": 119 + }, + "minecraft:pale_oak_leaves": { + "protocol_id": 42 + }, + "minecraft:pause_mob_growth": { + "protocol_id": 57 + }, + "minecraft:poof": { + "protocol_id": 66 + }, + "minecraft:portal": { + "protocol_id": 67 + }, + "minecraft:raid_omen": { + "protocol_id": 120 + }, + "minecraft:rain": { + "protocol_id": 68 + }, + "minecraft:reset_mob_growth": { + "protocol_id": 58 + }, + "minecraft:reverse_portal": { + "protocol_id": 98 + }, + "minecraft:scrape": { + "protocol_id": 111 + }, + "minecraft:sculk_charge": { + "protocol_id": 45 + }, + "minecraft:sculk_charge_pop": { + "protocol_id": 46 + }, + "minecraft:sculk_soul": { + "protocol_id": 44 + }, + "minecraft:shriek": { + "protocol_id": 112 + }, + "minecraft:small_flame": { + "protocol_id": 100 + }, + "minecraft:small_gust": { + "protocol_id": 32 + }, + "minecraft:smoke": { + "protocol_id": 69 + }, + "minecraft:sneeze": { + "protocol_id": 71 + }, + "minecraft:snowflake": { + "protocol_id": 101 + }, + "minecraft:sonic_boom": { + "protocol_id": 35 + }, + "minecraft:soul": { + "protocol_id": 48 + }, + "minecraft:soul_fire_flame": { + "protocol_id": 47 + }, + "minecraft:spit": { + "protocol_id": 72 + }, + "minecraft:splash": { + "protocol_id": 77 + }, + "minecraft:spore_blossom_air": { + "protocol_id": 94 + }, + "minecraft:squid_ink": { + "protocol_id": 73 + }, + "minecraft:sulfur_bubbles": { + "protocol_id": 4 + }, + "minecraft:sulfur_cube_goo": { + "protocol_id": 124 + }, + "minecraft:sweep_attack": { + "protocol_id": 74 + }, + "minecraft:tinted_leaves": { + "protocol_id": 43 + }, + "minecraft:totem_of_undying": { + "protocol_id": 75 + }, + "minecraft:trail": { + "protocol_id": 56 + }, + "minecraft:trial_omen": { + "protocol_id": 121 + }, + "minecraft:trial_spawner_detection": { + "protocol_id": 115 + }, + "minecraft:trial_spawner_detection_ominous": { + "protocol_id": 116 + }, + "minecraft:underwater": { + "protocol_id": 76 + }, + "minecraft:vault_connection": { + "protocol_id": 117 + }, + "minecraft:vibration": { + "protocol_id": 55 + }, + "minecraft:warped_spore": { + "protocol_id": 93 + }, + "minecraft:wax_off": { + "protocol_id": 109 + }, + "minecraft:wax_on": { + "protocol_id": 108 + }, + "minecraft:white_ash": { + "protocol_id": 99 + }, + "minecraft:white_smoke": { + "protocol_id": 70 + }, + "minecraft:witch": { + "protocol_id": 78 + } + }, + "protocol_id": 9 + }, + "minecraft:permission_check_type": { + "entries": { + "minecraft:always_pass": { + "protocol_id": 0 + }, + "minecraft:require": { + "protocol_id": 1 + } + }, + "protocol_id": 90 + }, + "minecraft:permission_type": { + "entries": { + "minecraft:atom": { + "protocol_id": 0 + }, + "minecraft:command_level": { + "protocol_id": 1 + } + }, + "protocol_id": 89 + }, + "minecraft:point_of_interest_type": { + "entries": { + "minecraft:armorer": { + "protocol_id": 0 + }, + "minecraft:bee_nest": { + "protocol_id": 16 + }, + "minecraft:beehive": { + "protocol_id": 15 + }, + "minecraft:butcher": { + "protocol_id": 1 + }, + "minecraft:cartographer": { + "protocol_id": 2 + }, + "minecraft:cleric": { + "protocol_id": 3 + }, + "minecraft:farmer": { + "protocol_id": 4 + }, + "minecraft:fisherman": { + "protocol_id": 5 + }, + "minecraft:fletcher": { + "protocol_id": 6 + }, + "minecraft:home": { + "protocol_id": 13 + }, + "minecraft:leatherworker": { + "protocol_id": 7 + }, + "minecraft:librarian": { + "protocol_id": 8 + }, + "minecraft:lightning_rod": { + "protocol_id": 20 + }, + "minecraft:lodestone": { + "protocol_id": 18 + }, + "minecraft:mason": { + "protocol_id": 9 + }, + "minecraft:meeting": { + "protocol_id": 14 + }, + "minecraft:nether_portal": { + "protocol_id": 17 + }, + "minecraft:shepherd": { + "protocol_id": 10 + }, + "minecraft:test_instance": { + "protocol_id": 19 + }, + "minecraft:toolsmith": { + "protocol_id": 11 + }, + "minecraft:weaponsmith": { + "protocol_id": 12 + } + }, + "protocol_id": 25 + }, + "minecraft:pos_rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:axis_aligned_linear_pos": { + "protocol_id": 2 + }, + "minecraft:linear_pos": { + "protocol_id": 1 + } + }, + "protocol_id": 15 + }, + "minecraft:position_source_type": { + "entries": { + "minecraft:block": { + "protocol_id": 0 + }, + "minecraft:entity": { + "protocol_id": 1 + } + }, + "protocol_id": 20 + }, + "minecraft:potion": { + "entries": { + "minecraft:awkward": { + "protocol_id": 3 + }, + "minecraft:fire_resistance": { + "protocol_id": 11 + }, + "minecraft:harming": { + "protocol_id": 26 + }, + "minecraft:healing": { + "protocol_id": 24 + }, + "minecraft:infested": { + "protocol_id": 45 + }, + "minecraft:invisibility": { + "protocol_id": 6 + }, + "minecraft:leaping": { + "protocol_id": 8 + }, + "minecraft:long_fire_resistance": { + "protocol_id": 12 + }, + "minecraft:long_invisibility": { + "protocol_id": 7 + }, + "minecraft:long_leaping": { + "protocol_id": 9 + }, + "minecraft:long_night_vision": { + "protocol_id": 5 + }, + "minecraft:long_poison": { + "protocol_id": 29 + }, + "minecraft:long_regeneration": { + "protocol_id": 32 + }, + "minecraft:long_slow_falling": { + "protocol_id": 41 + }, + "minecraft:long_slowness": { + "protocol_id": 17 + }, + "minecraft:long_strength": { + "protocol_id": 35 + }, + "minecraft:long_swiftness": { + "protocol_id": 14 + }, + "minecraft:long_turtle_master": { + "protocol_id": 20 + }, + "minecraft:long_water_breathing": { + "protocol_id": 23 + }, + "minecraft:long_weakness": { + "protocol_id": 38 + }, + "minecraft:luck": { + "protocol_id": 39 + }, + "minecraft:mundane": { + "protocol_id": 1 + }, + "minecraft:night_vision": { + "protocol_id": 4 + }, + "minecraft:oozing": { + "protocol_id": 44 + }, + "minecraft:poison": { + "protocol_id": 28 + }, + "minecraft:regeneration": { + "protocol_id": 31 + }, + "minecraft:slow_falling": { + "protocol_id": 40 + }, + "minecraft:slowness": { + "protocol_id": 16 + }, + "minecraft:strength": { + "protocol_id": 34 + }, + "minecraft:strong_harming": { + "protocol_id": 27 + }, + "minecraft:strong_healing": { + "protocol_id": 25 + }, + "minecraft:strong_leaping": { + "protocol_id": 10 + }, + "minecraft:strong_poison": { + "protocol_id": 30 + }, + "minecraft:strong_regeneration": { + "protocol_id": 33 + }, + "minecraft:strong_slowness": { + "protocol_id": 18 + }, + "minecraft:strong_strength": { + "protocol_id": 36 + }, + "minecraft:strong_swiftness": { + "protocol_id": 15 + }, + "minecraft:strong_turtle_master": { + "protocol_id": 21 + }, + "minecraft:swiftness": { + "protocol_id": 13 + }, + "minecraft:thick": { + "protocol_id": 2 + }, + "minecraft:turtle_master": { + "protocol_id": 19 + }, + "minecraft:water": { + "protocol_id": 0 + }, + "minecraft:water_breathing": { + "protocol_id": 22 + }, + "minecraft:weakness": { + "protocol_id": 37 + }, + "minecraft:weaving": { + "protocol_id": 43 + }, + "minecraft:wind_charged": { + "protocol_id": 42 + } + }, + "protocol_id": 8 + }, + "minecraft:recipe_book_category": { + "entries": { + "minecraft:blast_furnace_blocks": { + "protocol_id": 7 + }, + "minecraft:blast_furnace_misc": { + "protocol_id": 8 + }, + "minecraft:campfire": { + "protocol_id": 12 + }, + "minecraft:crafting_building_blocks": { + "protocol_id": 0 + }, + "minecraft:crafting_equipment": { + "protocol_id": 2 + }, + "minecraft:crafting_misc": { + "protocol_id": 3 + }, + "minecraft:crafting_redstone": { + "protocol_id": 1 + }, + "minecraft:furnace_blocks": { + "protocol_id": 5 + }, + "minecraft:furnace_food": { + "protocol_id": 4 + }, + "minecraft:furnace_misc": { + "protocol_id": 6 + }, + "minecraft:smithing": { + "protocol_id": 11 + }, + "minecraft:smoker_food": { + "protocol_id": 9 + }, + "minecraft:stonecutter": { + "protocol_id": 10 + } + }, + "protocol_id": 78 + }, + "minecraft:recipe_display": { + "entries": { + "minecraft:crafting_shaped": { + "protocol_id": 1 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 0 + }, + "minecraft:furnace": { + "protocol_id": 2 + }, + "minecraft:smithing": { + "protocol_id": 4 + }, + "minecraft:stonecutter": { + "protocol_id": 3 + } + }, + "protocol_id": 76 + }, + "minecraft:recipe_serializer": { + "entries": { + "minecraft:blasting": { + "protocol_id": 15 + }, + "minecraft:campfire_cooking": { + "protocol_id": 17 + }, + "minecraft:crafting_decorated_pot": { + "protocol_id": 5 + }, + "minecraft:crafting_dye": { + "protocol_id": 2 + }, + "minecraft:crafting_imbue": { + "protocol_id": 3 + }, + "minecraft:crafting_shaped": { + "protocol_id": 0 + }, + "minecraft:crafting_shapeless": { + "protocol_id": 1 + }, + "minecraft:crafting_special_bannerduplicate": { + "protocol_id": 11 + }, + "minecraft:crafting_special_bookcloning": { + "protocol_id": 6 + }, + "minecraft:crafting_special_firework_rocket": { + "protocol_id": 8 + }, + "minecraft:crafting_special_firework_star": { + "protocol_id": 9 + }, + "minecraft:crafting_special_firework_star_fade": { + "protocol_id": 10 + }, + "minecraft:crafting_special_mapextending": { + "protocol_id": 7 + }, + "minecraft:crafting_special_repairitem": { + "protocol_id": 13 + }, + "minecraft:crafting_special_shielddecoration": { + "protocol_id": 12 + }, + "minecraft:crafting_transmute": { + "protocol_id": 4 + }, + "minecraft:smelting": { + "protocol_id": 14 + }, + "minecraft:smithing_transform": { + "protocol_id": 19 + }, + "minecraft:smithing_trim": { + "protocol_id": 20 + }, + "minecraft:smoking": { + "protocol_id": 16 + }, + "minecraft:stonecutting": { + "protocol_id": 18 + } + }, + "protocol_id": 18 + }, + "minecraft:recipe_type": { + "entries": { + "minecraft:blasting": { + "protocol_id": 2 + }, + "minecraft:campfire_cooking": { + "protocol_id": 4 + }, + "minecraft:crafting": { + "protocol_id": 0 + }, + "minecraft:smelting": { + "protocol_id": 1 + }, + "minecraft:smithing": { + "protocol_id": 6 + }, + "minecraft:smoking": { + "protocol_id": 3 + }, + "minecraft:stonecutting": { + "protocol_id": 5 + } + }, + "protocol_id": 17 + }, + "minecraft:rule_block_entity_modifier": { + "entries": { + "minecraft:append_loot": { + "protocol_id": 3 + }, + "minecraft:append_static": { + "protocol_id": 2 + }, + "minecraft:clear": { + "protocol_id": 0 + }, + "minecraft:passthrough": { + "protocol_id": 1 + } + }, + "protocol_id": 14 + }, + "minecraft:rule_test": { + "entries": { + "minecraft:always_true": { + "protocol_id": 0 + }, + "minecraft:block_match": { + "protocol_id": 1 + }, + "minecraft:blockstate_match": { + "protocol_id": 2 + }, + "minecraft:random_block_match": { + "protocol_id": 4 + }, + "minecraft:random_blockstate_match": { + "protocol_id": 5 + }, + "minecraft:tag_match": { + "protocol_id": 3 + } + }, + "protocol_id": 13 + }, + "minecraft:sensor_type": { + "default": "minecraft:dummy", + "entries": { + "minecraft:armadillo_scare_detected": { + "protocol_id": 10 + }, + "minecraft:axolotl_attackables": { + "protocol_id": 16 + }, + "minecraft:breeze_attack_entity_sensor": { + "protocol_id": 23 + }, + "minecraft:dummy": { + "protocol_id": 0 + }, + "minecraft:food_temptations": { + "protocol_id": 17 + }, + "minecraft:frog_attackables": { + "protocol_id": 20 + }, + "minecraft:frog_temptations": { + "protocol_id": 18 + }, + "minecraft:golem_detected": { + "protocol_id": 9 + }, + "minecraft:hoglin_specific_sensor": { + "protocol_id": 13 + }, + "minecraft:hurt_by": { + "protocol_id": 5 + }, + "minecraft:is_in_water": { + "protocol_id": 21 + }, + "minecraft:nautilus_temptations": { + "protocol_id": 19 + }, + "minecraft:nearest_adult": { + "protocol_id": 14 + }, + "minecraft:nearest_adult_any_type": { + "protocol_id": 15 + }, + "minecraft:nearest_bed": { + "protocol_id": 4 + }, + "minecraft:nearest_items": { + "protocol_id": 1 + }, + "minecraft:nearest_living_entities": { + "protocol_id": 2 + }, + "minecraft:nearest_players": { + "protocol_id": 3 + }, + "minecraft:piglin_brute_specific_sensor": { + "protocol_id": 12 + }, + "minecraft:piglin_specific_sensor": { + "protocol_id": 11 + }, + "minecraft:secondary_pois": { + "protocol_id": 8 + }, + "minecraft:villager_babies": { + "protocol_id": 7 + }, + "minecraft:villager_hostiles": { + "protocol_id": 6 + }, + "minecraft:warden_entity_sensor": { + "protocol_id": 22 + } + }, + "protocol_id": 27 + }, + "minecraft:slot_display": { + "entries": { + "minecraft:any_fuel": { + "protocol_id": 1 + }, + "minecraft:composite": { + "protocol_id": 10 + }, + "minecraft:dyed": { + "protocol_id": 7 + }, + "minecraft:empty": { + "protocol_id": 0 + }, + "minecraft:item": { + "protocol_id": 4 + }, + "minecraft:item_stack": { + "protocol_id": 5 + }, + "minecraft:only_with_component": { + "protocol_id": 3 + }, + "minecraft:smithing_trim": { + "protocol_id": 8 + }, + "minecraft:tag": { + "protocol_id": 6 + }, + "minecraft:with_any_potion": { + "protocol_id": 2 + }, + "minecraft:with_remainder": { + "protocol_id": 9 + } + }, + "protocol_id": 77 + }, + "minecraft:slot_source_type": { + "entries": { + "minecraft:contents": { + "protocol_id": 4 + }, + "minecraft:empty": { + "protocol_id": 5 + }, + "minecraft:filtered": { + "protocol_id": 1 + }, + "minecraft:group": { + "protocol_id": 0 + }, + "minecraft:limit_slots": { + "protocol_id": 2 + }, + "minecraft:slot_range": { + "protocol_id": 3 + } + }, + "protocol_id": 93 + }, + "minecraft:sound_event": { + "entries": { + "minecraft:ambient.basalt_deltas.additions": { + "protocol_id": 8 + }, + "minecraft:ambient.basalt_deltas.loop": { + "protocol_id": 9 + }, + "minecraft:ambient.basalt_deltas.mood": { + "protocol_id": 10 + }, + "minecraft:ambient.cave": { + "protocol_id": 7 + }, + "minecraft:ambient.crimson_forest.additions": { + "protocol_id": 11 + }, + "minecraft:ambient.crimson_forest.loop": { + "protocol_id": 12 + }, + "minecraft:ambient.crimson_forest.mood": { + "protocol_id": 13 + }, + "minecraft:ambient.nether_wastes.additions": { + "protocol_id": 14 + }, + "minecraft:ambient.nether_wastes.loop": { + "protocol_id": 15 + }, + "minecraft:ambient.nether_wastes.mood": { + "protocol_id": 16 + }, + "minecraft:ambient.soul_sand_valley.additions": { + "protocol_id": 17 + }, + "minecraft:ambient.soul_sand_valley.loop": { + "protocol_id": 18 + }, + "minecraft:ambient.soul_sand_valley.mood": { + "protocol_id": 19 + }, + "minecraft:ambient.underwater.enter": { + "protocol_id": 23 + }, + "minecraft:ambient.underwater.exit": { + "protocol_id": 24 + }, + "minecraft:ambient.underwater.loop": { + "protocol_id": 25 + }, + "minecraft:ambient.underwater.loop.additions": { + "protocol_id": 26 + }, + "minecraft:ambient.underwater.loop.additions.rare": { + "protocol_id": 27 + }, + "minecraft:ambient.underwater.loop.additions.ultra_rare": { + "protocol_id": 28 + }, + "minecraft:ambient.warped_forest.additions": { + "protocol_id": 20 + }, + "minecraft:ambient.warped_forest.loop": { + "protocol_id": 21 + }, + "minecraft:ambient.warped_forest.mood": { + "protocol_id": 22 + }, + "minecraft:block.amethyst_block.break": { + "protocol_id": 29 + }, + "minecraft:block.amethyst_block.chime": { + "protocol_id": 30 + }, + "minecraft:block.amethyst_block.fall": { + "protocol_id": 31 + }, + "minecraft:block.amethyst_block.hit": { + "protocol_id": 32 + }, + "minecraft:block.amethyst_block.place": { + "protocol_id": 33 + }, + "minecraft:block.amethyst_block.resonate": { + "protocol_id": 34 + }, + "minecraft:block.amethyst_block.step": { + "protocol_id": 35 + }, + "minecraft:block.amethyst_cluster.break": { + "protocol_id": 36 + }, + "minecraft:block.amethyst_cluster.fall": { + "protocol_id": 37 + }, + "minecraft:block.amethyst_cluster.hit": { + "protocol_id": 38 + }, + "minecraft:block.amethyst_cluster.place": { + "protocol_id": 39 + }, + "minecraft:block.amethyst_cluster.step": { + "protocol_id": 40 + }, + "minecraft:block.ancient_debris.break": { + "protocol_id": 41 + }, + "minecraft:block.ancient_debris.fall": { + "protocol_id": 45 + }, + "minecraft:block.ancient_debris.hit": { + "protocol_id": 44 + }, + "minecraft:block.ancient_debris.place": { + "protocol_id": 43 + }, + "minecraft:block.ancient_debris.step": { + "protocol_id": 42 + }, + "minecraft:block.anvil.break": { + "protocol_id": 46 + }, + "minecraft:block.anvil.destroy": { + "protocol_id": 47 + }, + "minecraft:block.anvil.fall": { + "protocol_id": 48 + }, + "minecraft:block.anvil.hit": { + "protocol_id": 49 + }, + "minecraft:block.anvil.land": { + "protocol_id": 50 + }, + "minecraft:block.anvil.place": { + "protocol_id": 51 + }, + "minecraft:block.anvil.step": { + "protocol_id": 52 + }, + "minecraft:block.anvil.use": { + "protocol_id": 53 + }, + "minecraft:block.azalea.break": { + "protocol_id": 98 + }, + "minecraft:block.azalea.fall": { + "protocol_id": 99 + }, + "minecraft:block.azalea.hit": { + "protocol_id": 100 + }, + "minecraft:block.azalea.place": { + "protocol_id": 101 + }, + "minecraft:block.azalea.step": { + "protocol_id": 102 + }, + "minecraft:block.azalea_leaves.break": { + "protocol_id": 103 + }, + "minecraft:block.azalea_leaves.fall": { + "protocol_id": 104 + }, + "minecraft:block.azalea_leaves.hit": { + "protocol_id": 105 + }, + "minecraft:block.azalea_leaves.place": { + "protocol_id": 106 + }, + "minecraft:block.azalea_leaves.step": { + "protocol_id": 107 + }, + "minecraft:block.bamboo.break": { + "protocol_id": 117 + }, + "minecraft:block.bamboo.fall": { + "protocol_id": 118 + }, + "minecraft:block.bamboo.hit": { + "protocol_id": 119 + }, + "minecraft:block.bamboo.place": { + "protocol_id": 120 + }, + "minecraft:block.bamboo.step": { + "protocol_id": 121 + }, + "minecraft:block.bamboo_sapling.break": { + "protocol_id": 122 + }, + "minecraft:block.bamboo_sapling.hit": { + "protocol_id": 123 + }, + "minecraft:block.bamboo_sapling.place": { + "protocol_id": 124 + }, + "minecraft:block.bamboo_wood.break": { + "protocol_id": 125 + }, + "minecraft:block.bamboo_wood.fall": { + "protocol_id": 126 + }, + "minecraft:block.bamboo_wood.hit": { + "protocol_id": 127 + }, + "minecraft:block.bamboo_wood.place": { + "protocol_id": 128 + }, + "minecraft:block.bamboo_wood.step": { + "protocol_id": 129 + }, + "minecraft:block.bamboo_wood_button.click_off": { + "protocol_id": 134 + }, + "minecraft:block.bamboo_wood_button.click_on": { + "protocol_id": 135 + }, + "minecraft:block.bamboo_wood_door.close": { + "protocol_id": 130 + }, + "minecraft:block.bamboo_wood_door.open": { + "protocol_id": 131 + }, + "minecraft:block.bamboo_wood_fence_gate.close": { + "protocol_id": 138 + }, + "minecraft:block.bamboo_wood_fence_gate.open": { + "protocol_id": 139 + }, + "minecraft:block.bamboo_wood_hanging_sign.break": { + "protocol_id": 800 + }, + "minecraft:block.bamboo_wood_hanging_sign.fall": { + "protocol_id": 801 + }, + "minecraft:block.bamboo_wood_hanging_sign.hit": { + "protocol_id": 802 + }, + "minecraft:block.bamboo_wood_hanging_sign.place": { + "protocol_id": 803 + }, + "minecraft:block.bamboo_wood_hanging_sign.step": { + "protocol_id": 799 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_off": { + "protocol_id": 136 + }, + "minecraft:block.bamboo_wood_pressure_plate.click_on": { + "protocol_id": 137 + }, + "minecraft:block.bamboo_wood_trapdoor.close": { + "protocol_id": 132 + }, + "minecraft:block.bamboo_wood_trapdoor.open": { + "protocol_id": 133 + }, + "minecraft:block.barrel.close": { + "protocol_id": 140 + }, + "minecraft:block.barrel.open": { + "protocol_id": 141 + }, + "minecraft:block.basalt.break": { + "protocol_id": 142 + }, + "minecraft:block.basalt.fall": { + "protocol_id": 146 + }, + "minecraft:block.basalt.hit": { + "protocol_id": 145 + }, + "minecraft:block.basalt.place": { + "protocol_id": 144 + }, + "minecraft:block.basalt.step": { + "protocol_id": 143 + }, + "minecraft:block.beacon.activate": { + "protocol_id": 152 + }, + "minecraft:block.beacon.ambient": { + "protocol_id": 153 + }, + "minecraft:block.beacon.deactivate": { + "protocol_id": 154 + }, + "minecraft:block.beacon.power_select": { + "protocol_id": 155 + }, + "minecraft:block.beehive.drip": { + "protocol_id": 162 + }, + "minecraft:block.beehive.enter": { + "protocol_id": 163 + }, + "minecraft:block.beehive.exit": { + "protocol_id": 164 + }, + "minecraft:block.beehive.shear": { + "protocol_id": 165 + }, + "minecraft:block.beehive.work": { + "protocol_id": 166 + }, + "minecraft:block.bell.resonate": { + "protocol_id": 168 + }, + "minecraft:block.bell.use": { + "protocol_id": 167 + }, + "minecraft:block.big_dripleaf.break": { + "protocol_id": 169 + }, + "minecraft:block.big_dripleaf.fall": { + "protocol_id": 170 + }, + "minecraft:block.big_dripleaf.hit": { + "protocol_id": 171 + }, + "minecraft:block.big_dripleaf.place": { + "protocol_id": 172 + }, + "minecraft:block.big_dripleaf.step": { + "protocol_id": 173 + }, + "minecraft:block.big_dripleaf.tilt_down": { + "protocol_id": 560 + }, + "minecraft:block.big_dripleaf.tilt_up": { + "protocol_id": 561 + }, + "minecraft:block.blastfurnace.fire_crackle": { + "protocol_id": 194 + }, + "minecraft:block.bone_block.break": { + "protocol_id": 186 + }, + "minecraft:block.bone_block.fall": { + "protocol_id": 187 + }, + "minecraft:block.bone_block.hit": { + "protocol_id": 188 + }, + "minecraft:block.bone_block.place": { + "protocol_id": 189 + }, + "minecraft:block.bone_block.step": { + "protocol_id": 190 + }, + "minecraft:block.brewing_stand.brew": { + "protocol_id": 211 + }, + "minecraft:block.bubble_column.bubble_pop": { + "protocol_id": 217 + }, + "minecraft:block.bubble_column.upwards_ambient": { + "protocol_id": 218 + }, + "minecraft:block.bubble_column.upwards_inside": { + "protocol_id": 219 + }, + "minecraft:block.bubble_column.whirlpool_ambient": { + "protocol_id": 220 + }, + "minecraft:block.bubble_column.whirlpool_inside": { + "protocol_id": 221 + }, + "minecraft:block.cactus_flower.break": { + "protocol_id": 241 + }, + "minecraft:block.cactus_flower.place": { + "protocol_id": 242 + }, + "minecraft:block.cake.add_candle": { + "protocol_id": 243 + }, + "minecraft:block.calcite.break": { + "protocol_id": 244 + }, + "minecraft:block.calcite.fall": { + "protocol_id": 248 + }, + "minecraft:block.calcite.hit": { + "protocol_id": 247 + }, + "minecraft:block.calcite.place": { + "protocol_id": 246 + }, + "minecraft:block.calcite.step": { + "protocol_id": 245 + }, + "minecraft:block.campfire.crackle": { + "protocol_id": 271 + }, + "minecraft:block.candle.ambient": { + "protocol_id": 272 + }, + "minecraft:block.candle.break": { + "protocol_id": 273 + }, + "minecraft:block.candle.extinguish": { + "protocol_id": 274 + }, + "minecraft:block.candle.fall": { + "protocol_id": 275 + }, + "minecraft:block.candle.hit": { + "protocol_id": 276 + }, + "minecraft:block.candle.place": { + "protocol_id": 277 + }, + "minecraft:block.candle.step": { + "protocol_id": 278 + }, + "minecraft:block.cave_vines.break": { + "protocol_id": 306 + }, + "minecraft:block.cave_vines.fall": { + "protocol_id": 307 + }, + "minecraft:block.cave_vines.hit": { + "protocol_id": 308 + }, + "minecraft:block.cave_vines.pick_berries": { + "protocol_id": 311 + }, + "minecraft:block.cave_vines.place": { + "protocol_id": 309 + }, + "minecraft:block.cave_vines.step": { + "protocol_id": 310 + }, + "minecraft:block.chain.break": { + "protocol_id": 312 + }, + "minecraft:block.chain.fall": { + "protocol_id": 313 + }, + "minecraft:block.chain.hit": { + "protocol_id": 314 + }, + "minecraft:block.chain.place": { + "protocol_id": 315 + }, + "minecraft:block.chain.step": { + "protocol_id": 316 + }, + "minecraft:block.cherry_leaves.break": { + "protocol_id": 327 + }, + "minecraft:block.cherry_leaves.fall": { + "protocol_id": 328 + }, + "minecraft:block.cherry_leaves.hit": { + "protocol_id": 329 + }, + "minecraft:block.cherry_leaves.place": { + "protocol_id": 330 + }, + "minecraft:block.cherry_leaves.step": { + "protocol_id": 331 + }, + "minecraft:block.cherry_sapling.break": { + "protocol_id": 322 + }, + "minecraft:block.cherry_sapling.fall": { + "protocol_id": 323 + }, + "minecraft:block.cherry_sapling.hit": { + "protocol_id": 324 + }, + "minecraft:block.cherry_sapling.place": { + "protocol_id": 325 + }, + "minecraft:block.cherry_sapling.step": { + "protocol_id": 326 + }, + "minecraft:block.cherry_wood.break": { + "protocol_id": 317 + }, + "minecraft:block.cherry_wood.fall": { + "protocol_id": 318 + }, + "minecraft:block.cherry_wood.hit": { + "protocol_id": 319 + }, + "minecraft:block.cherry_wood.place": { + "protocol_id": 320 + }, + "minecraft:block.cherry_wood.step": { + "protocol_id": 321 + }, + "minecraft:block.cherry_wood_button.click_off": { + "protocol_id": 341 + }, + "minecraft:block.cherry_wood_button.click_on": { + "protocol_id": 342 + }, + "minecraft:block.cherry_wood_door.close": { + "protocol_id": 337 + }, + "minecraft:block.cherry_wood_door.open": { + "protocol_id": 338 + }, + "minecraft:block.cherry_wood_fence_gate.close": { + "protocol_id": 345 + }, + "minecraft:block.cherry_wood_fence_gate.open": { + "protocol_id": 346 + }, + "minecraft:block.cherry_wood_hanging_sign.break": { + "protocol_id": 333 + }, + "minecraft:block.cherry_wood_hanging_sign.fall": { + "protocol_id": 334 + }, + "minecraft:block.cherry_wood_hanging_sign.hit": { + "protocol_id": 335 + }, + "minecraft:block.cherry_wood_hanging_sign.place": { + "protocol_id": 336 + }, + "minecraft:block.cherry_wood_hanging_sign.step": { + "protocol_id": 332 + }, + "minecraft:block.cherry_wood_pressure_plate.click_off": { + "protocol_id": 343 + }, + "minecraft:block.cherry_wood_pressure_plate.click_on": { + "protocol_id": 344 + }, + "minecraft:block.cherry_wood_trapdoor.close": { + "protocol_id": 339 + }, + "minecraft:block.cherry_wood_trapdoor.open": { + "protocol_id": 340 + }, + "minecraft:block.chest.close": { + "protocol_id": 347 + }, + "minecraft:block.chest.locked": { + "protocol_id": 348 + }, + "minecraft:block.chest.open": { + "protocol_id": 349 + }, + "minecraft:block.chiseled_bookshelf.break": { + "protocol_id": 362 + }, + "minecraft:block.chiseled_bookshelf.fall": { + "protocol_id": 363 + }, + "minecraft:block.chiseled_bookshelf.hit": { + "protocol_id": 364 + }, + "minecraft:block.chiseled_bookshelf.insert": { + "protocol_id": 365 + }, + "minecraft:block.chiseled_bookshelf.insert.enchanted": { + "protocol_id": 366 + }, + "minecraft:block.chiseled_bookshelf.pickup": { + "protocol_id": 368 + }, + "minecraft:block.chiseled_bookshelf.pickup.enchanted": { + "protocol_id": 369 + }, + "minecraft:block.chiseled_bookshelf.place": { + "protocol_id": 370 + }, + "minecraft:block.chiseled_bookshelf.step": { + "protocol_id": 367 + }, + "minecraft:block.chorus_flower.death": { + "protocol_id": 371 + }, + "minecraft:block.chorus_flower.grow": { + "protocol_id": 372 + }, + "minecraft:block.cinnabar.break": { + "protocol_id": 1926 + }, + "minecraft:block.cinnabar.fall": { + "protocol_id": 1930 + }, + "minecraft:block.cinnabar.hit": { + "protocol_id": 1929 + }, + "minecraft:block.cinnabar.place": { + "protocol_id": 1928 + }, + "minecraft:block.cinnabar.step": { + "protocol_id": 1927 + }, + "minecraft:block.cobweb.break": { + "protocol_id": 374 + }, + "minecraft:block.cobweb.fall": { + "protocol_id": 378 + }, + "minecraft:block.cobweb.hit": { + "protocol_id": 377 + }, + "minecraft:block.cobweb.place": { + "protocol_id": 376 + }, + "minecraft:block.cobweb.step": { + "protocol_id": 375 + }, + "minecraft:block.comparator.click": { + "protocol_id": 383 + }, + "minecraft:block.composter.empty": { + "protocol_id": 384 + }, + "minecraft:block.composter.fill": { + "protocol_id": 385 + }, + "minecraft:block.composter.fill_success": { + "protocol_id": 386 + }, + "minecraft:block.composter.ready": { + "protocol_id": 387 + }, + "minecraft:block.conduit.activate": { + "protocol_id": 388 + }, + "minecraft:block.conduit.ambient": { + "protocol_id": 389 + }, + "minecraft:block.conduit.ambient.short": { + "protocol_id": 390 + }, + "minecraft:block.conduit.attack.target": { + "protocol_id": 391 + }, + "minecraft:block.conduit.deactivate": { + "protocol_id": 392 + }, + "minecraft:block.copper.break": { + "protocol_id": 400 + }, + "minecraft:block.copper.fall": { + "protocol_id": 404 + }, + "minecraft:block.copper.hit": { + "protocol_id": 403 + }, + "minecraft:block.copper.place": { + "protocol_id": 402 + }, + "minecraft:block.copper.step": { + "protocol_id": 401 + }, + "minecraft:block.copper_bulb.break": { + "protocol_id": 393 + }, + "minecraft:block.copper_bulb.fall": { + "protocol_id": 397 + }, + "minecraft:block.copper_bulb.hit": { + "protocol_id": 396 + }, + "minecraft:block.copper_bulb.place": { + "protocol_id": 395 + }, + "minecraft:block.copper_bulb.step": { + "protocol_id": 394 + }, + "minecraft:block.copper_bulb.turn_off": { + "protocol_id": 399 + }, + "minecraft:block.copper_bulb.turn_on": { + "protocol_id": 398 + }, + "minecraft:block.copper_chest.close": { + "protocol_id": 405 + }, + "minecraft:block.copper_chest.open": { + "protocol_id": 406 + }, + "minecraft:block.copper_chest_oxidized.close": { + "protocol_id": 409 + }, + "minecraft:block.copper_chest_oxidized.open": { + "protocol_id": 410 + }, + "minecraft:block.copper_chest_weathered.close": { + "protocol_id": 407 + }, + "minecraft:block.copper_chest_weathered.open": { + "protocol_id": 408 + }, + "minecraft:block.copper_door.close": { + "protocol_id": 411 + }, + "minecraft:block.copper_door.open": { + "protocol_id": 412 + }, + "minecraft:block.copper_golem_statue.break": { + "protocol_id": 430 + }, + "minecraft:block.copper_golem_statue.fall": { + "protocol_id": 434 + }, + "minecraft:block.copper_golem_statue.hit": { + "protocol_id": 432 + }, + "minecraft:block.copper_golem_statue.place": { + "protocol_id": 431 + }, + "minecraft:block.copper_golem_statue.step": { + "protocol_id": 433 + }, + "minecraft:block.copper_grate.break": { + "protocol_id": 437 + }, + "minecraft:block.copper_grate.fall": { + "protocol_id": 441 + }, + "minecraft:block.copper_grate.hit": { + "protocol_id": 440 + }, + "minecraft:block.copper_grate.place": { + "protocol_id": 439 + }, + "minecraft:block.copper_grate.step": { + "protocol_id": 438 + }, + "minecraft:block.copper_trapdoor.close": { + "protocol_id": 442 + }, + "minecraft:block.copper_trapdoor.open": { + "protocol_id": 443 + }, + "minecraft:block.coral_block.break": { + "protocol_id": 444 + }, + "minecraft:block.coral_block.fall": { + "protocol_id": 445 + }, + "minecraft:block.coral_block.hit": { + "protocol_id": 446 + }, + "minecraft:block.coral_block.place": { + "protocol_id": 447 + }, + "minecraft:block.coral_block.step": { + "protocol_id": 448 + }, + "minecraft:block.crafter.craft": { + "protocol_id": 458 + }, + "minecraft:block.crafter.fail": { + "protocol_id": 459 + }, + "minecraft:block.creaking_heart.break": { + "protocol_id": 471 + }, + "minecraft:block.creaking_heart.fall": { + "protocol_id": 472 + }, + "minecraft:block.creaking_heart.hit": { + "protocol_id": 473 + }, + "minecraft:block.creaking_heart.hurt": { + "protocol_id": 474 + }, + "minecraft:block.creaking_heart.idle": { + "protocol_id": 477 + }, + "minecraft:block.creaking_heart.place": { + "protocol_id": 475 + }, + "minecraft:block.creaking_heart.spawn": { + "protocol_id": 478 + }, + "minecraft:block.creaking_heart.step": { + "protocol_id": 476 + }, + "minecraft:block.crop.break": { + "protocol_id": 482 + }, + "minecraft:block.deadbush.idle": { + "protocol_id": 492 + }, + "minecraft:block.decorated_pot.break": { + "protocol_id": 493 + }, + "minecraft:block.decorated_pot.fall": { + "protocol_id": 494 + }, + "minecraft:block.decorated_pot.hit": { + "protocol_id": 495 + }, + "minecraft:block.decorated_pot.insert": { + "protocol_id": 496 + }, + "minecraft:block.decorated_pot.insert_fail": { + "protocol_id": 497 + }, + "minecraft:block.decorated_pot.place": { + "protocol_id": 499 + }, + "minecraft:block.decorated_pot.shatter": { + "protocol_id": 500 + }, + "minecraft:block.decorated_pot.step": { + "protocol_id": 498 + }, + "minecraft:block.deepslate.break": { + "protocol_id": 506 + }, + "minecraft:block.deepslate.fall": { + "protocol_id": 507 + }, + "minecraft:block.deepslate.hit": { + "protocol_id": 508 + }, + "minecraft:block.deepslate.place": { + "protocol_id": 509 + }, + "minecraft:block.deepslate.step": { + "protocol_id": 510 + }, + "minecraft:block.deepslate_bricks.break": { + "protocol_id": 501 + }, + "minecraft:block.deepslate_bricks.fall": { + "protocol_id": 502 + }, + "minecraft:block.deepslate_bricks.hit": { + "protocol_id": 503 + }, + "minecraft:block.deepslate_bricks.place": { + "protocol_id": 504 + }, + "minecraft:block.deepslate_bricks.step": { + "protocol_id": 505 + }, + "minecraft:block.deepslate_tiles.break": { + "protocol_id": 511 + }, + "minecraft:block.deepslate_tiles.fall": { + "protocol_id": 512 + }, + "minecraft:block.deepslate_tiles.hit": { + "protocol_id": 513 + }, + "minecraft:block.deepslate_tiles.place": { + "protocol_id": 514 + }, + "minecraft:block.deepslate_tiles.step": { + "protocol_id": 515 + }, + "minecraft:block.dispenser.dispense": { + "protocol_id": 516 + }, + "minecraft:block.dispenser.fail": { + "protocol_id": 517 + }, + "minecraft:block.dispenser.launch": { + "protocol_id": 518 + }, + "minecraft:block.dried_ghast.ambient": { + "protocol_id": 539 + }, + "minecraft:block.dried_ghast.ambient_water": { + "protocol_id": 540 + }, + "minecraft:block.dried_ghast.break": { + "protocol_id": 536 + }, + "minecraft:block.dried_ghast.fall": { + "protocol_id": 538 + }, + "minecraft:block.dried_ghast.place": { + "protocol_id": 541 + }, + "minecraft:block.dried_ghast.place_in_water": { + "protocol_id": 542 + }, + "minecraft:block.dried_ghast.step": { + "protocol_id": 537 + }, + "minecraft:block.dried_ghast.transition": { + "protocol_id": 543 + }, + "minecraft:block.dripstone_block.break": { + "protocol_id": 544 + }, + "minecraft:block.dripstone_block.fall": { + "protocol_id": 548 + }, + "minecraft:block.dripstone_block.hit": { + "protocol_id": 547 + }, + "minecraft:block.dripstone_block.place": { + "protocol_id": 546 + }, + "minecraft:block.dripstone_block.step": { + "protocol_id": 545 + }, + "minecraft:block.dry_grass.ambient": { + "protocol_id": 549 + }, + "minecraft:block.enchantment_table.use": { + "protocol_id": 582 + }, + "minecraft:block.end_gateway.spawn": { + "protocol_id": 605 + }, + "minecraft:block.end_portal.spawn": { + "protocol_id": 607 + }, + "minecraft:block.end_portal_frame.fill": { + "protocol_id": 606 + }, + "minecraft:block.ender_chest.close": { + "protocol_id": 583 + }, + "minecraft:block.ender_chest.open": { + "protocol_id": 584 + }, + "minecraft:block.eyeblossom.close": { + "protocol_id": 622 + }, + "minecraft:block.eyeblossom.close_long": { + "protocol_id": 621 + }, + "minecraft:block.eyeblossom.idle": { + "protocol_id": 623 + }, + "minecraft:block.eyeblossom.open": { + "protocol_id": 620 + }, + "minecraft:block.eyeblossom.open_long": { + "protocol_id": 619 + }, + "minecraft:block.fence_gate.close": { + "protocol_id": 624 + }, + "minecraft:block.fence_gate.open": { + "protocol_id": 625 + }, + "minecraft:block.fire.ambient": { + "protocol_id": 636 + }, + "minecraft:block.fire.extinguish": { + "protocol_id": 637 + }, + "minecraft:block.firefly_bush.idle": { + "protocol_id": 627 + }, + "minecraft:block.flowering_azalea.break": { + "protocol_id": 643 + }, + "minecraft:block.flowering_azalea.fall": { + "protocol_id": 644 + }, + "minecraft:block.flowering_azalea.hit": { + "protocol_id": 645 + }, + "minecraft:block.flowering_azalea.place": { + "protocol_id": 646 + }, + "minecraft:block.flowering_azalea.step": { + "protocol_id": 647 + }, + "minecraft:block.froglight.break": { + "protocol_id": 669 + }, + "minecraft:block.froglight.fall": { + "protocol_id": 670 + }, + "minecraft:block.froglight.hit": { + "protocol_id": 671 + }, + "minecraft:block.froglight.place": { + "protocol_id": 672 + }, + "minecraft:block.froglight.step": { + "protocol_id": 673 + }, + "minecraft:block.frogspawn.break": { + "protocol_id": 675 + }, + "minecraft:block.frogspawn.fall": { + "protocol_id": 676 + }, + "minecraft:block.frogspawn.hatch": { + "protocol_id": 677 + }, + "minecraft:block.frogspawn.hit": { + "protocol_id": 678 + }, + "minecraft:block.frogspawn.place": { + "protocol_id": 679 + }, + "minecraft:block.frogspawn.step": { + "protocol_id": 674 + }, + "minecraft:block.fungus.break": { + "protocol_id": 1136 + }, + "minecraft:block.fungus.fall": { + "protocol_id": 1140 + }, + "minecraft:block.fungus.hit": { + "protocol_id": 1139 + }, + "minecraft:block.fungus.place": { + "protocol_id": 1138 + }, + "minecraft:block.fungus.step": { + "protocol_id": 1137 + }, + "minecraft:block.furnace.fire_crackle": { + "protocol_id": 693 + }, + "minecraft:block.gilded_blackstone.break": { + "protocol_id": 715 + }, + "minecraft:block.gilded_blackstone.fall": { + "protocol_id": 716 + }, + "minecraft:block.gilded_blackstone.hit": { + "protocol_id": 717 + }, + "minecraft:block.gilded_blackstone.place": { + "protocol_id": 718 + }, + "minecraft:block.gilded_blackstone.step": { + "protocol_id": 719 + }, + "minecraft:block.glass.break": { + "protocol_id": 720 + }, + "minecraft:block.glass.fall": { + "protocol_id": 721 + }, + "minecraft:block.glass.hit": { + "protocol_id": 722 + }, + "minecraft:block.glass.place": { + "protocol_id": 723 + }, + "minecraft:block.glass.step": { + "protocol_id": 724 + }, + "minecraft:block.grass.break": { + "protocol_id": 755 + }, + "minecraft:block.grass.fall": { + "protocol_id": 756 + }, + "minecraft:block.grass.hit": { + "protocol_id": 757 + }, + "minecraft:block.grass.place": { + "protocol_id": 758 + }, + "minecraft:block.grass.step": { + "protocol_id": 759 + }, + "minecraft:block.gravel.break": { + "protocol_id": 760 + }, + "minecraft:block.gravel.fall": { + "protocol_id": 761 + }, + "minecraft:block.gravel.hit": { + "protocol_id": 762 + }, + "minecraft:block.gravel.place": { + "protocol_id": 763 + }, + "minecraft:block.gravel.step": { + "protocol_id": 764 + }, + "minecraft:block.grindstone.use": { + "protocol_id": 765 + }, + "minecraft:block.growing_plant.crop": { + "protocol_id": 766 + }, + "minecraft:block.hanging_roots.break": { + "protocol_id": 775 + }, + "minecraft:block.hanging_roots.fall": { + "protocol_id": 776 + }, + "minecraft:block.hanging_roots.hit": { + "protocol_id": 777 + }, + "minecraft:block.hanging_roots.place": { + "protocol_id": 778 + }, + "minecraft:block.hanging_roots.step": { + "protocol_id": 779 + }, + "minecraft:block.hanging_sign.break": { + "protocol_id": 781 + }, + "minecraft:block.hanging_sign.fall": { + "protocol_id": 782 + }, + "minecraft:block.hanging_sign.hit": { + "protocol_id": 783 + }, + "minecraft:block.hanging_sign.place": { + "protocol_id": 784 + }, + "minecraft:block.hanging_sign.step": { + "protocol_id": 780 + }, + "minecraft:block.hanging_sign.waxed_interact_fail": { + "protocol_id": 1755 + }, + "minecraft:block.heavy_core.break": { + "protocol_id": 789 + }, + "minecraft:block.heavy_core.fall": { + "protocol_id": 790 + }, + "minecraft:block.heavy_core.hit": { + "protocol_id": 791 + }, + "minecraft:block.heavy_core.place": { + "protocol_id": 792 + }, + "minecraft:block.heavy_core.step": { + "protocol_id": 793 + }, + "minecraft:block.honey_block.break": { + "protocol_id": 833 + }, + "minecraft:block.honey_block.fall": { + "protocol_id": 834 + }, + "minecraft:block.honey_block.hit": { + "protocol_id": 835 + }, + "minecraft:block.honey_block.place": { + "protocol_id": 836 + }, + "minecraft:block.honey_block.slide": { + "protocol_id": 837 + }, + "minecraft:block.honey_block.step": { + "protocol_id": 838 + }, + "minecraft:block.iron.break": { + "protocol_id": 890 + }, + "minecraft:block.iron.fall": { + "protocol_id": 894 + }, + "minecraft:block.iron.hit": { + "protocol_id": 893 + }, + "minecraft:block.iron.place": { + "protocol_id": 892 + }, + "minecraft:block.iron.step": { + "protocol_id": 891 + }, + "minecraft:block.iron_door.close": { + "protocol_id": 895 + }, + "minecraft:block.iron_door.open": { + "protocol_id": 896 + }, + "minecraft:block.iron_trapdoor.close": { + "protocol_id": 903 + }, + "minecraft:block.iron_trapdoor.open": { + "protocol_id": 904 + }, + "minecraft:block.ladder.break": { + "protocol_id": 912 + }, + "minecraft:block.ladder.fall": { + "protocol_id": 913 + }, + "minecraft:block.ladder.hit": { + "protocol_id": 914 + }, + "minecraft:block.ladder.place": { + "protocol_id": 915 + }, + "minecraft:block.ladder.step": { + "protocol_id": 916 + }, + "minecraft:block.lantern.break": { + "protocol_id": 917 + }, + "minecraft:block.lantern.fall": { + "protocol_id": 918 + }, + "minecraft:block.lantern.hit": { + "protocol_id": 919 + }, + "minecraft:block.lantern.place": { + "protocol_id": 920 + }, + "minecraft:block.lantern.step": { + "protocol_id": 921 + }, + "minecraft:block.large_amethyst_bud.break": { + "protocol_id": 922 + }, + "minecraft:block.large_amethyst_bud.place": { + "protocol_id": 923 + }, + "minecraft:block.lava.ambient": { + "protocol_id": 924 + }, + "minecraft:block.lava.extinguish": { + "protocol_id": 925 + }, + "minecraft:block.lava.pop": { + "protocol_id": 926 + }, + "minecraft:block.leaf_litter.break": { + "protocol_id": 927 + }, + "minecraft:block.leaf_litter.fall": { + "protocol_id": 931 + }, + "minecraft:block.leaf_litter.hit": { + "protocol_id": 930 + }, + "minecraft:block.leaf_litter.place": { + "protocol_id": 929 + }, + "minecraft:block.leaf_litter.step": { + "protocol_id": 928 + }, + "minecraft:block.lever.click": { + "protocol_id": 935 + }, + "minecraft:block.lily_pad.place": { + "protocol_id": 1724 + }, + "minecraft:block.lodestone.break": { + "protocol_id": 950 + }, + "minecraft:block.lodestone.fall": { + "protocol_id": 954 + }, + "minecraft:block.lodestone.hit": { + "protocol_id": 953 + }, + "minecraft:block.lodestone.place": { + "protocol_id": 952 + }, + "minecraft:block.lodestone.step": { + "protocol_id": 951 + }, + "minecraft:block.mangrove_roots.break": { + "protocol_id": 968 + }, + "minecraft:block.mangrove_roots.fall": { + "protocol_id": 969 + }, + "minecraft:block.mangrove_roots.hit": { + "protocol_id": 970 + }, + "minecraft:block.mangrove_roots.place": { + "protocol_id": 971 + }, + "minecraft:block.mangrove_roots.step": { + "protocol_id": 972 + }, + "minecraft:block.medium_amethyst_bud.break": { + "protocol_id": 973 + }, + "minecraft:block.medium_amethyst_bud.place": { + "protocol_id": 974 + }, + "minecraft:block.metal.break": { + "protocol_id": 975 + }, + "minecraft:block.metal.fall": { + "protocol_id": 976 + }, + "minecraft:block.metal.hit": { + "protocol_id": 977 + }, + "minecraft:block.metal.place": { + "protocol_id": 978 + }, + "minecraft:block.metal.step": { + "protocol_id": 981 + }, + "minecraft:block.metal_pressure_plate.click_off": { + "protocol_id": 979 + }, + "minecraft:block.metal_pressure_plate.click_on": { + "protocol_id": 980 + }, + "minecraft:block.moss.break": { + "protocol_id": 1000 + }, + "minecraft:block.moss.fall": { + "protocol_id": 1001 + }, + "minecraft:block.moss.hit": { + "protocol_id": 1002 + }, + "minecraft:block.moss.place": { + "protocol_id": 1003 + }, + "minecraft:block.moss.step": { + "protocol_id": 1004 + }, + "minecraft:block.moss_carpet.break": { + "protocol_id": 990 + }, + "minecraft:block.moss_carpet.fall": { + "protocol_id": 991 + }, + "minecraft:block.moss_carpet.hit": { + "protocol_id": 992 + }, + "minecraft:block.moss_carpet.place": { + "protocol_id": 993 + }, + "minecraft:block.moss_carpet.step": { + "protocol_id": 994 + }, + "minecraft:block.mud.break": { + "protocol_id": 1005 + }, + "minecraft:block.mud.fall": { + "protocol_id": 1006 + }, + "minecraft:block.mud.hit": { + "protocol_id": 1007 + }, + "minecraft:block.mud.place": { + "protocol_id": 1008 + }, + "minecraft:block.mud.step": { + "protocol_id": 1009 + }, + "minecraft:block.mud_bricks.break": { + "protocol_id": 1010 + }, + "minecraft:block.mud_bricks.fall": { + "protocol_id": 1011 + }, + "minecraft:block.mud_bricks.hit": { + "protocol_id": 1012 + }, + "minecraft:block.mud_bricks.place": { + "protocol_id": 1013 + }, + "minecraft:block.mud_bricks.step": { + "protocol_id": 1014 + }, + "minecraft:block.muddy_mangrove_roots.break": { + "protocol_id": 1015 + }, + "minecraft:block.muddy_mangrove_roots.fall": { + "protocol_id": 1016 + }, + "minecraft:block.muddy_mangrove_roots.hit": { + "protocol_id": 1017 + }, + "minecraft:block.muddy_mangrove_roots.place": { + "protocol_id": 1018 + }, + "minecraft:block.muddy_mangrove_roots.step": { + "protocol_id": 1019 + }, + "minecraft:block.nether_bricks.break": { + "protocol_id": 1093 + }, + "minecraft:block.nether_bricks.fall": { + "protocol_id": 1097 + }, + "minecraft:block.nether_bricks.hit": { + "protocol_id": 1096 + }, + "minecraft:block.nether_bricks.place": { + "protocol_id": 1095 + }, + "minecraft:block.nether_bricks.step": { + "protocol_id": 1094 + }, + "minecraft:block.nether_gold_ore.break": { + "protocol_id": 1363 + }, + "minecraft:block.nether_gold_ore.fall": { + "protocol_id": 1364 + }, + "minecraft:block.nether_gold_ore.hit": { + "protocol_id": 1365 + }, + "minecraft:block.nether_gold_ore.place": { + "protocol_id": 1366 + }, + "minecraft:block.nether_gold_ore.step": { + "protocol_id": 1367 + }, + "minecraft:block.nether_ore.break": { + "protocol_id": 1368 + }, + "minecraft:block.nether_ore.fall": { + "protocol_id": 1369 + }, + "minecraft:block.nether_ore.hit": { + "protocol_id": 1370 + }, + "minecraft:block.nether_ore.place": { + "protocol_id": 1371 + }, + "minecraft:block.nether_ore.step": { + "protocol_id": 1372 + }, + "minecraft:block.nether_sprouts.break": { + "protocol_id": 1131 + }, + "minecraft:block.nether_sprouts.fall": { + "protocol_id": 1135 + }, + "minecraft:block.nether_sprouts.hit": { + "protocol_id": 1134 + }, + "minecraft:block.nether_sprouts.place": { + "protocol_id": 1133 + }, + "minecraft:block.nether_sprouts.step": { + "protocol_id": 1132 + }, + "minecraft:block.nether_wart.break": { + "protocol_id": 1098 + }, + "minecraft:block.nether_wood.break": { + "protocol_id": 1100 + }, + "minecraft:block.nether_wood.fall": { + "protocol_id": 1101 + }, + "minecraft:block.nether_wood.hit": { + "protocol_id": 1102 + }, + "minecraft:block.nether_wood.place": { + "protocol_id": 1103 + }, + "minecraft:block.nether_wood.step": { + "protocol_id": 1104 + }, + "minecraft:block.nether_wood_button.click_off": { + "protocol_id": 1109 + }, + "minecraft:block.nether_wood_button.click_on": { + "protocol_id": 1110 + }, + "minecraft:block.nether_wood_door.close": { + "protocol_id": 1105 + }, + "minecraft:block.nether_wood_door.open": { + "protocol_id": 1106 + }, + "minecraft:block.nether_wood_fence_gate.close": { + "protocol_id": 1113 + }, + "minecraft:block.nether_wood_fence_gate.open": { + "protocol_id": 1114 + }, + "minecraft:block.nether_wood_hanging_sign.break": { + "protocol_id": 795 + }, + "minecraft:block.nether_wood_hanging_sign.fall": { + "protocol_id": 796 + }, + "minecraft:block.nether_wood_hanging_sign.hit": { + "protocol_id": 797 + }, + "minecraft:block.nether_wood_hanging_sign.place": { + "protocol_id": 798 + }, + "minecraft:block.nether_wood_hanging_sign.step": { + "protocol_id": 794 + }, + "minecraft:block.nether_wood_pressure_plate.click_off": { + "protocol_id": 1111 + }, + "minecraft:block.nether_wood_pressure_plate.click_on": { + "protocol_id": 1112 + }, + "minecraft:block.nether_wood_trapdoor.close": { + "protocol_id": 1107 + }, + "minecraft:block.nether_wood_trapdoor.open": { + "protocol_id": 1108 + }, + "minecraft:block.netherite_block.break": { + "protocol_id": 1151 + }, + "minecraft:block.netherite_block.fall": { + "protocol_id": 1155 + }, + "minecraft:block.netherite_block.hit": { + "protocol_id": 1154 + }, + "minecraft:block.netherite_block.place": { + "protocol_id": 1153 + }, + "minecraft:block.netherite_block.step": { + "protocol_id": 1152 + }, + "minecraft:block.netherrack.break": { + "protocol_id": 1156 + }, + "minecraft:block.netherrack.fall": { + "protocol_id": 1160 + }, + "minecraft:block.netherrack.hit": { + "protocol_id": 1159 + }, + "minecraft:block.netherrack.place": { + "protocol_id": 1158 + }, + "minecraft:block.netherrack.step": { + "protocol_id": 1157 + }, + "minecraft:block.note_block.banjo": { + "protocol_id": 1180 + }, + "minecraft:block.note_block.basedrum": { + "protocol_id": 1161 + }, + "minecraft:block.note_block.bass": { + "protocol_id": 1162 + }, + "minecraft:block.note_block.bell": { + "protocol_id": 1163 + }, + "minecraft:block.note_block.bit": { + "protocol_id": 1179 + }, + "minecraft:block.note_block.chime": { + "protocol_id": 1164 + }, + "minecraft:block.note_block.cow_bell": { + "protocol_id": 1177 + }, + "minecraft:block.note_block.didgeridoo": { + "protocol_id": 1178 + }, + "minecraft:block.note_block.flute": { + "protocol_id": 1165 + }, + "minecraft:block.note_block.guitar": { + "protocol_id": 1166 + }, + "minecraft:block.note_block.harp": { + "protocol_id": 1167 + }, + "minecraft:block.note_block.hat": { + "protocol_id": 1168 + }, + "minecraft:block.note_block.imitate.creeper": { + "protocol_id": 1183 + }, + "minecraft:block.note_block.imitate.ender_dragon": { + "protocol_id": 1184 + }, + "minecraft:block.note_block.imitate.piglin": { + "protocol_id": 1186 + }, + "minecraft:block.note_block.imitate.skeleton": { + "protocol_id": 1182 + }, + "minecraft:block.note_block.imitate.wither_skeleton": { + "protocol_id": 1185 + }, + "minecraft:block.note_block.imitate.zombie": { + "protocol_id": 1181 + }, + "minecraft:block.note_block.iron_xylophone": { + "protocol_id": 1176 + }, + "minecraft:block.note_block.pling": { + "protocol_id": 1169 + }, + "minecraft:block.note_block.snare": { + "protocol_id": 1170 + }, + "minecraft:block.note_block.trumpet": { + "protocol_id": 1171 + }, + "minecraft:block.note_block.trumpet_exposed": { + "protocol_id": 1172 + }, + "minecraft:block.note_block.trumpet_oxidized": { + "protocol_id": 1173 + }, + "minecraft:block.note_block.trumpet_weathered": { + "protocol_id": 1174 + }, + "minecraft:block.note_block.xylophone": { + "protocol_id": 1175 + }, + "minecraft:block.nylium.break": { + "protocol_id": 1126 + }, + "minecraft:block.nylium.fall": { + "protocol_id": 1130 + }, + "minecraft:block.nylium.hit": { + "protocol_id": 1129 + }, + "minecraft:block.nylium.place": { + "protocol_id": 1128 + }, + "minecraft:block.nylium.step": { + "protocol_id": 1127 + }, + "minecraft:block.packed_mud.break": { + "protocol_id": 1116 + }, + "minecraft:block.packed_mud.fall": { + "protocol_id": 1117 + }, + "minecraft:block.packed_mud.hit": { + "protocol_id": 1118 + }, + "minecraft:block.packed_mud.place": { + "protocol_id": 1119 + }, + "minecraft:block.packed_mud.step": { + "protocol_id": 1120 + }, + "minecraft:block.pale_hanging_moss.idle": { + "protocol_id": 1193 + }, + "minecraft:block.pink_petals.break": { + "protocol_id": 995 + }, + "minecraft:block.pink_petals.fall": { + "protocol_id": 996 + }, + "minecraft:block.pink_petals.hit": { + "protocol_id": 997 + }, + "minecraft:block.pink_petals.place": { + "protocol_id": 998 + }, + "minecraft:block.pink_petals.step": { + "protocol_id": 999 + }, + "minecraft:block.piston.contract": { + "protocol_id": 1300 + }, + "minecraft:block.piston.extend": { + "protocol_id": 1301 + }, + "minecraft:block.pointed_dripstone.break": { + "protocol_id": 550 + }, + "minecraft:block.pointed_dripstone.drip_lava": { + "protocol_id": 556 + }, + "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": { + "protocol_id": 558 + }, + "minecraft:block.pointed_dripstone.drip_water": { + "protocol_id": 557 + }, + "minecraft:block.pointed_dripstone.drip_water_into_cauldron": { + "protocol_id": 559 + }, + "minecraft:block.pointed_dripstone.fall": { + "protocol_id": 554 + }, + "minecraft:block.pointed_dripstone.hit": { + "protocol_id": 553 + }, + "minecraft:block.pointed_dripstone.land": { + "protocol_id": 555 + }, + "minecraft:block.pointed_dripstone.place": { + "protocol_id": 552 + }, + "minecraft:block.pointed_dripstone.step": { + "protocol_id": 551 + }, + "minecraft:block.polished_deepslate.break": { + "protocol_id": 1329 + }, + "minecraft:block.polished_deepslate.fall": { + "protocol_id": 1330 + }, + "minecraft:block.polished_deepslate.hit": { + "protocol_id": 1331 + }, + "minecraft:block.polished_deepslate.place": { + "protocol_id": 1332 + }, + "minecraft:block.polished_deepslate.step": { + "protocol_id": 1333 + }, + "minecraft:block.polished_tuff.break": { + "protocol_id": 1651 + }, + "minecraft:block.polished_tuff.fall": { + "protocol_id": 1652 + }, + "minecraft:block.polished_tuff.hit": { + "protocol_id": 1653 + }, + "minecraft:block.polished_tuff.place": { + "protocol_id": 1654 + }, + "minecraft:block.polished_tuff.step": { + "protocol_id": 1655 + }, + "minecraft:block.portal.ambient": { + "protocol_id": 1334 + }, + "minecraft:block.portal.travel": { + "protocol_id": 1335 + }, + "minecraft:block.portal.trigger": { + "protocol_id": 1336 + }, + "minecraft:block.potent_sulfur.break": { + "protocol_id": 1917 + }, + "minecraft:block.potent_sulfur.fall": { + "protocol_id": 1921 + }, + "minecraft:block.potent_sulfur.geyser_continuous_eruption": { + "protocol_id": 1924 + }, + "minecraft:block.potent_sulfur.geyser_continuous_eruption_active": { + "protocol_id": 1925 + }, + "minecraft:block.potent_sulfur.geyser_eruption": { + "protocol_id": 1922 + }, + "minecraft:block.potent_sulfur.geyser_eruption_active": { + "protocol_id": 1923 + }, + "minecraft:block.potent_sulfur.hit": { + "protocol_id": 1920 + }, + "minecraft:block.potent_sulfur.noxious_gas": { + "protocol_id": 1962 + }, + "minecraft:block.potent_sulfur.place": { + "protocol_id": 1919 + }, + "minecraft:block.potent_sulfur.step": { + "protocol_id": 1918 + }, + "minecraft:block.powder_snow.break": { + "protocol_id": 1337 + }, + "minecraft:block.powder_snow.fall": { + "protocol_id": 1338 + }, + "minecraft:block.powder_snow.hit": { + "protocol_id": 1339 + }, + "minecraft:block.powder_snow.place": { + "protocol_id": 1340 + }, + "minecraft:block.powder_snow.step": { + "protocol_id": 1341 + }, + "minecraft:block.pumpkin.carve": { + "protocol_id": 1348 + }, + "minecraft:block.redstone_torch.burnout": { + "protocol_id": 1373 + }, + "minecraft:block.resin.break": { + "protocol_id": 1374 + }, + "minecraft:block.resin.fall": { + "protocol_id": 1375 + }, + "minecraft:block.resin.place": { + "protocol_id": 1376 + }, + "minecraft:block.resin.step": { + "protocol_id": 1377 + }, + "minecraft:block.resin_bricks.break": { + "protocol_id": 1378 + }, + "minecraft:block.resin_bricks.fall": { + "protocol_id": 1379 + }, + "minecraft:block.resin_bricks.hit": { + "protocol_id": 1380 + }, + "minecraft:block.resin_bricks.place": { + "protocol_id": 1381 + }, + "minecraft:block.resin_bricks.step": { + "protocol_id": 1382 + }, + "minecraft:block.respawn_anchor.ambient": { + "protocol_id": 1383 + }, + "minecraft:block.respawn_anchor.charge": { + "protocol_id": 1384 + }, + "minecraft:block.respawn_anchor.deplete": { + "protocol_id": 1385 + }, + "minecraft:block.respawn_anchor.set_spawn": { + "protocol_id": 1386 + }, + "minecraft:block.rooted_dirt.break": { + "protocol_id": 1387 + }, + "minecraft:block.rooted_dirt.fall": { + "protocol_id": 1388 + }, + "minecraft:block.rooted_dirt.hit": { + "protocol_id": 1389 + }, + "minecraft:block.rooted_dirt.place": { + "protocol_id": 1390 + }, + "minecraft:block.rooted_dirt.step": { + "protocol_id": 1391 + }, + "minecraft:block.roots.break": { + "protocol_id": 688 + }, + "minecraft:block.roots.fall": { + "protocol_id": 692 + }, + "minecraft:block.roots.hit": { + "protocol_id": 691 + }, + "minecraft:block.roots.place": { + "protocol_id": 690 + }, + "minecraft:block.roots.step": { + "protocol_id": 689 + }, + "minecraft:block.sand.break": { + "protocol_id": 1396 + }, + "minecraft:block.sand.fall": { + "protocol_id": 1397 + }, + "minecraft:block.sand.hit": { + "protocol_id": 1398 + }, + "minecraft:block.sand.idle": { + "protocol_id": 1401 + }, + "minecraft:block.sand.place": { + "protocol_id": 1399 + }, + "minecraft:block.sand.step": { + "protocol_id": 1400 + }, + "minecraft:block.scaffolding.break": { + "protocol_id": 1402 + }, + "minecraft:block.scaffolding.fall": { + "protocol_id": 1403 + }, + "minecraft:block.scaffolding.hit": { + "protocol_id": 1404 + }, + "minecraft:block.scaffolding.place": { + "protocol_id": 1405 + }, + "minecraft:block.scaffolding.step": { + "protocol_id": 1406 + }, + "minecraft:block.sculk.break": { + "protocol_id": 1409 + }, + "minecraft:block.sculk.charge": { + "protocol_id": 1408 + }, + "minecraft:block.sculk.fall": { + "protocol_id": 1410 + }, + "minecraft:block.sculk.hit": { + "protocol_id": 1411 + }, + "minecraft:block.sculk.place": { + "protocol_id": 1412 + }, + "minecraft:block.sculk.spread": { + "protocol_id": 1407 + }, + "minecraft:block.sculk.step": { + "protocol_id": 1413 + }, + "minecraft:block.sculk_catalyst.bloom": { + "protocol_id": 1414 + }, + "minecraft:block.sculk_catalyst.break": { + "protocol_id": 1415 + }, + "minecraft:block.sculk_catalyst.fall": { + "protocol_id": 1416 + }, + "minecraft:block.sculk_catalyst.hit": { + "protocol_id": 1417 + }, + "minecraft:block.sculk_catalyst.place": { + "protocol_id": 1418 + }, + "minecraft:block.sculk_catalyst.step": { + "protocol_id": 1419 + }, + "minecraft:block.sculk_sensor.break": { + "protocol_id": 1422 + }, + "minecraft:block.sculk_sensor.clicking": { + "protocol_id": 1420 + }, + "minecraft:block.sculk_sensor.clicking_stop": { + "protocol_id": 1421 + }, + "minecraft:block.sculk_sensor.fall": { + "protocol_id": 1423 + }, + "minecraft:block.sculk_sensor.hit": { + "protocol_id": 1424 + }, + "minecraft:block.sculk_sensor.place": { + "protocol_id": 1425 + }, + "minecraft:block.sculk_sensor.step": { + "protocol_id": 1426 + }, + "minecraft:block.sculk_shrieker.break": { + "protocol_id": 1427 + }, + "minecraft:block.sculk_shrieker.fall": { + "protocol_id": 1428 + }, + "minecraft:block.sculk_shrieker.hit": { + "protocol_id": 1429 + }, + "minecraft:block.sculk_shrieker.place": { + "protocol_id": 1430 + }, + "minecraft:block.sculk_shrieker.shriek": { + "protocol_id": 1431 + }, + "minecraft:block.sculk_shrieker.step": { + "protocol_id": 1432 + }, + "minecraft:block.sculk_vein.break": { + "protocol_id": 1433 + }, + "minecraft:block.sculk_vein.fall": { + "protocol_id": 1434 + }, + "minecraft:block.sculk_vein.hit": { + "protocol_id": 1435 + }, + "minecraft:block.sculk_vein.place": { + "protocol_id": 1436 + }, + "minecraft:block.sculk_vein.step": { + "protocol_id": 1437 + }, + "minecraft:block.shelf.activate": { + "protocol_id": 1444 + }, + "minecraft:block.shelf.break": { + "protocol_id": 1445 + }, + "minecraft:block.shelf.deactivate": { + "protocol_id": 1446 + }, + "minecraft:block.shelf.fall": { + "protocol_id": 1447 + }, + "minecraft:block.shelf.hit": { + "protocol_id": 1448 + }, + "minecraft:block.shelf.multi_swap": { + "protocol_id": 1449 + }, + "minecraft:block.shelf.place": { + "protocol_id": 1450 + }, + "minecraft:block.shelf.place_item": { + "protocol_id": 1451 + }, + "minecraft:block.shelf.single_swap": { + "protocol_id": 1452 + }, + "minecraft:block.shelf.step": { + "protocol_id": 1453 + }, + "minecraft:block.shelf.take_item": { + "protocol_id": 1454 + }, + "minecraft:block.shroomlight.break": { + "protocol_id": 1457 + }, + "minecraft:block.shroomlight.fall": { + "protocol_id": 1461 + }, + "minecraft:block.shroomlight.hit": { + "protocol_id": 1460 + }, + "minecraft:block.shroomlight.place": { + "protocol_id": 1459 + }, + "minecraft:block.shroomlight.step": { + "protocol_id": 1458 + }, + "minecraft:block.shulker_box.close": { + "protocol_id": 1464 + }, + "minecraft:block.shulker_box.open": { + "protocol_id": 1465 + }, + "minecraft:block.sign.waxed_interact_fail": { + "protocol_id": 1756 + }, + "minecraft:block.slime_block.break": { + "protocol_id": 1498 + }, + "minecraft:block.slime_block.fall": { + "protocol_id": 1499 + }, + "minecraft:block.slime_block.hit": { + "protocol_id": 1500 + }, + "minecraft:block.slime_block.place": { + "protocol_id": 1501 + }, + "minecraft:block.slime_block.step": { + "protocol_id": 1502 + }, + "minecraft:block.small_amethyst_bud.break": { + "protocol_id": 1503 + }, + "minecraft:block.small_amethyst_bud.place": { + "protocol_id": 1504 + }, + "minecraft:block.small_dripleaf.break": { + "protocol_id": 1505 + }, + "minecraft:block.small_dripleaf.fall": { + "protocol_id": 1506 + }, + "minecraft:block.small_dripleaf.hit": { + "protocol_id": 1507 + }, + "minecraft:block.small_dripleaf.place": { + "protocol_id": 1508 + }, + "minecraft:block.small_dripleaf.step": { + "protocol_id": 1509 + }, + "minecraft:block.smithing_table.use": { + "protocol_id": 1550 + }, + "minecraft:block.smoker.smoke": { + "protocol_id": 1551 + }, + "minecraft:block.sniffer_egg.crack": { + "protocol_id": 1565 + }, + "minecraft:block.sniffer_egg.hatch": { + "protocol_id": 1566 + }, + "minecraft:block.sniffer_egg.plop": { + "protocol_id": 1564 + }, + "minecraft:block.snow.break": { + "protocol_id": 1568 + }, + "minecraft:block.snow.fall": { + "protocol_id": 1569 + }, + "minecraft:block.snow.hit": { + "protocol_id": 1575 + }, + "minecraft:block.snow.place": { + "protocol_id": 1576 + }, + "minecraft:block.snow.step": { + "protocol_id": 1577 + }, + "minecraft:block.soul_sand.break": { + "protocol_id": 1510 + }, + "minecraft:block.soul_sand.fall": { + "protocol_id": 1514 + }, + "minecraft:block.soul_sand.hit": { + "protocol_id": 1513 + }, + "minecraft:block.soul_sand.place": { + "protocol_id": 1512 + }, + "minecraft:block.soul_sand.step": { + "protocol_id": 1511 + }, + "minecraft:block.soul_soil.break": { + "protocol_id": 1515 + }, + "minecraft:block.soul_soil.fall": { + "protocol_id": 1519 + }, + "minecraft:block.soul_soil.hit": { + "protocol_id": 1518 + }, + "minecraft:block.soul_soil.place": { + "protocol_id": 1517 + }, + "minecraft:block.soul_soil.step": { + "protocol_id": 1516 + }, + "minecraft:block.spawner.break": { + "protocol_id": 1521 + }, + "minecraft:block.spawner.fall": { + "protocol_id": 1522 + }, + "minecraft:block.spawner.hit": { + "protocol_id": 1523 + }, + "minecraft:block.spawner.place": { + "protocol_id": 1524 + }, + "minecraft:block.spawner.step": { + "protocol_id": 1525 + }, + "minecraft:block.sponge.absorb": { + "protocol_id": 1589 + }, + "minecraft:block.sponge.break": { + "protocol_id": 1584 + }, + "minecraft:block.sponge.fall": { + "protocol_id": 1585 + }, + "minecraft:block.sponge.hit": { + "protocol_id": 1586 + }, + "minecraft:block.sponge.place": { + "protocol_id": 1587 + }, + "minecraft:block.sponge.step": { + "protocol_id": 1588 + }, + "minecraft:block.spore_blossom.break": { + "protocol_id": 1532 + }, + "minecraft:block.spore_blossom.fall": { + "protocol_id": 1533 + }, + "minecraft:block.spore_blossom.hit": { + "protocol_id": 1534 + }, + "minecraft:block.spore_blossom.place": { + "protocol_id": 1535 + }, + "minecraft:block.spore_blossom.step": { + "protocol_id": 1536 + }, + "minecraft:block.stem.break": { + "protocol_id": 1121 + }, + "minecraft:block.stem.fall": { + "protocol_id": 1125 + }, + "minecraft:block.stem.hit": { + "protocol_id": 1124 + }, + "minecraft:block.stem.place": { + "protocol_id": 1123 + }, + "minecraft:block.stem.step": { + "protocol_id": 1122 + }, + "minecraft:block.stone.break": { + "protocol_id": 1596 + }, + "minecraft:block.stone.fall": { + "protocol_id": 1599 + }, + "minecraft:block.stone.hit": { + "protocol_id": 1600 + }, + "minecraft:block.stone.place": { + "protocol_id": 1601 + }, + "minecraft:block.stone.step": { + "protocol_id": 1604 + }, + "minecraft:block.stone_button.click_off": { + "protocol_id": 1597 + }, + "minecraft:block.stone_button.click_on": { + "protocol_id": 1598 + }, + "minecraft:block.stone_pressure_plate.click_off": { + "protocol_id": 1602 + }, + "minecraft:block.stone_pressure_plate.click_on": { + "protocol_id": 1603 + }, + "minecraft:block.sulfur.break": { + "protocol_id": 1912 + }, + "minecraft:block.sulfur.fall": { + "protocol_id": 1916 + }, + "minecraft:block.sulfur.hit": { + "protocol_id": 1915 + }, + "minecraft:block.sulfur.place": { + "protocol_id": 1914 + }, + "minecraft:block.sulfur.step": { + "protocol_id": 1913 + }, + "minecraft:block.sulfur_spike.break": { + "protocol_id": 1609 + }, + "minecraft:block.sulfur_spike.fall": { + "protocol_id": 1613 + }, + "minecraft:block.sulfur_spike.hit": { + "protocol_id": 1612 + }, + "minecraft:block.sulfur_spike.land": { + "protocol_id": 1614 + }, + "minecraft:block.sulfur_spike.place": { + "protocol_id": 1611 + }, + "minecraft:block.sulfur_spike.step": { + "protocol_id": 1610 + }, + "minecraft:block.suspicious_gravel.break": { + "protocol_id": 664 + }, + "minecraft:block.suspicious_gravel.fall": { + "protocol_id": 668 + }, + "minecraft:block.suspicious_gravel.hit": { + "protocol_id": 667 + }, + "minecraft:block.suspicious_gravel.place": { + "protocol_id": 666 + }, + "minecraft:block.suspicious_gravel.step": { + "protocol_id": 665 + }, + "minecraft:block.suspicious_sand.break": { + "protocol_id": 659 + }, + "minecraft:block.suspicious_sand.fall": { + "protocol_id": 663 + }, + "minecraft:block.suspicious_sand.hit": { + "protocol_id": 662 + }, + "minecraft:block.suspicious_sand.place": { + "protocol_id": 661 + }, + "minecraft:block.suspicious_sand.step": { + "protocol_id": 660 + }, + "minecraft:block.sweet_berry_bush.break": { + "protocol_id": 1615 + }, + "minecraft:block.sweet_berry_bush.pick_berries": { + "protocol_id": 1617 + }, + "minecraft:block.sweet_berry_bush.place": { + "protocol_id": 1616 + }, + "minecraft:block.trial_spawner.about_to_spawn_item": { + "protocol_id": 810 + }, + "minecraft:block.trial_spawner.ambient": { + "protocol_id": 815 + }, + "minecraft:block.trial_spawner.ambient_ominous": { + "protocol_id": 816 + }, + "minecraft:block.trial_spawner.break": { + "protocol_id": 804 + }, + "minecraft:block.trial_spawner.close_shutter": { + "protocol_id": 818 + }, + "minecraft:block.trial_spawner.detect_player": { + "protocol_id": 813 + }, + "minecraft:block.trial_spawner.eject_item": { + "protocol_id": 819 + }, + "minecraft:block.trial_spawner.fall": { + "protocol_id": 808 + }, + "minecraft:block.trial_spawner.hit": { + "protocol_id": 807 + }, + "minecraft:block.trial_spawner.ominous_activate": { + "protocol_id": 814 + }, + "minecraft:block.trial_spawner.open_shutter": { + "protocol_id": 817 + }, + "minecraft:block.trial_spawner.place": { + "protocol_id": 806 + }, + "minecraft:block.trial_spawner.spawn_item": { + "protocol_id": 811 + }, + "minecraft:block.trial_spawner.spawn_item_begin": { + "protocol_id": 812 + }, + "minecraft:block.trial_spawner.spawn_mob": { + "protocol_id": 809 + }, + "minecraft:block.trial_spawner.step": { + "protocol_id": 805 + }, + "minecraft:block.tripwire.attach": { + "protocol_id": 1633 + }, + "minecraft:block.tripwire.click_off": { + "protocol_id": 1634 + }, + "minecraft:block.tripwire.click_on": { + "protocol_id": 1635 + }, + "minecraft:block.tripwire.detach": { + "protocol_id": 1636 + }, + "minecraft:block.tuff.break": { + "protocol_id": 1641 + }, + "minecraft:block.tuff.fall": { + "protocol_id": 1645 + }, + "minecraft:block.tuff.hit": { + "protocol_id": 1644 + }, + "minecraft:block.tuff.place": { + "protocol_id": 1643 + }, + "minecraft:block.tuff.step": { + "protocol_id": 1642 + }, + "minecraft:block.tuff_bricks.break": { + "protocol_id": 1646 + }, + "minecraft:block.tuff_bricks.fall": { + "protocol_id": 1647 + }, + "minecraft:block.tuff_bricks.hit": { + "protocol_id": 1648 + }, + "minecraft:block.tuff_bricks.place": { + "protocol_id": 1649 + }, + "minecraft:block.tuff_bricks.step": { + "protocol_id": 1650 + }, + "minecraft:block.vault.activate": { + "protocol_id": 1677 + }, + "minecraft:block.vault.ambient": { + "protocol_id": 1678 + }, + "minecraft:block.vault.break": { + "protocol_id": 1679 + }, + "minecraft:block.vault.close_shutter": { + "protocol_id": 1680 + }, + "minecraft:block.vault.deactivate": { + "protocol_id": 1681 + }, + "minecraft:block.vault.eject_item": { + "protocol_id": 1682 + }, + "minecraft:block.vault.fall": { + "protocol_id": 1684 + }, + "minecraft:block.vault.hit": { + "protocol_id": 1685 + }, + "minecraft:block.vault.insert_item": { + "protocol_id": 1686 + }, + "minecraft:block.vault.insert_item_fail": { + "protocol_id": 1687 + }, + "minecraft:block.vault.open_shutter": { + "protocol_id": 1688 + }, + "minecraft:block.vault.place": { + "protocol_id": 1689 + }, + "minecraft:block.vault.reject_rewarded_player": { + "protocol_id": 1683 + }, + "minecraft:block.vault.step": { + "protocol_id": 1690 + }, + "minecraft:block.vine.break": { + "protocol_id": 1719 + }, + "minecraft:block.vine.fall": { + "protocol_id": 1720 + }, + "minecraft:block.vine.hit": { + "protocol_id": 1721 + }, + "minecraft:block.vine.place": { + "protocol_id": 1722 + }, + "minecraft:block.vine.step": { + "protocol_id": 1723 + }, + "minecraft:block.wart_block.break": { + "protocol_id": 1146 + }, + "minecraft:block.wart_block.fall": { + "protocol_id": 1150 + }, + "minecraft:block.wart_block.hit": { + "protocol_id": 1149 + }, + "minecraft:block.wart_block.place": { + "protocol_id": 1148 + }, + "minecraft:block.wart_block.step": { + "protocol_id": 1147 + }, + "minecraft:block.water.ambient": { + "protocol_id": 1757 + }, + "minecraft:block.weeping_vines.break": { + "protocol_id": 1141 + }, + "minecraft:block.weeping_vines.fall": { + "protocol_id": 1145 + }, + "minecraft:block.weeping_vines.hit": { + "protocol_id": 1144 + }, + "minecraft:block.weeping_vines.place": { + "protocol_id": 1143 + }, + "minecraft:block.weeping_vines.step": { + "protocol_id": 1142 + }, + "minecraft:block.wet_grass.break": { + "protocol_id": 1761 + }, + "minecraft:block.wet_grass.fall": { + "protocol_id": 1762 + }, + "minecraft:block.wet_grass.hit": { + "protocol_id": 1763 + }, + "minecraft:block.wet_grass.place": { + "protocol_id": 1764 + }, + "minecraft:block.wet_grass.step": { + "protocol_id": 1765 + }, + "minecraft:block.wet_sponge.break": { + "protocol_id": 1766 + }, + "minecraft:block.wet_sponge.dries": { + "protocol_id": 1767 + }, + "minecraft:block.wet_sponge.fall": { + "protocol_id": 1768 + }, + "minecraft:block.wet_sponge.hit": { + "protocol_id": 1769 + }, + "minecraft:block.wet_sponge.place": { + "protocol_id": 1770 + }, + "minecraft:block.wet_sponge.step": { + "protocol_id": 1771 + }, + "minecraft:block.wood.break": { + "protocol_id": 1853 + }, + "minecraft:block.wood.fall": { + "protocol_id": 1854 + }, + "minecraft:block.wood.hit": { + "protocol_id": 1855 + }, + "minecraft:block.wood.place": { + "protocol_id": 1856 + }, + "minecraft:block.wood.step": { + "protocol_id": 1857 + }, + "minecraft:block.wooden_button.click_off": { + "protocol_id": 1849 + }, + "minecraft:block.wooden_button.click_on": { + "protocol_id": 1850 + }, + "minecraft:block.wooden_door.close": { + "protocol_id": 1845 + }, + "minecraft:block.wooden_door.open": { + "protocol_id": 1846 + }, + "minecraft:block.wooden_pressure_plate.click_off": { + "protocol_id": 1851 + }, + "minecraft:block.wooden_pressure_plate.click_on": { + "protocol_id": 1852 + }, + "minecraft:block.wooden_trapdoor.close": { + "protocol_id": 1847 + }, + "minecraft:block.wooden_trapdoor.open": { + "protocol_id": 1848 + }, + "minecraft:block.wool.break": { + "protocol_id": 1858 + }, + "minecraft:block.wool.fall": { + "protocol_id": 1859 + }, + "minecraft:block.wool.hit": { + "protocol_id": 1860 + }, + "minecraft:block.wool.place": { + "protocol_id": 1861 + }, + "minecraft:block.wool.step": { + "protocol_id": 1862 + }, + "minecraft:enchant.thorns.hit": { + "protocol_id": 1622 + }, + "minecraft:entity.allay.ambient_with_item": { + "protocol_id": 0 + }, + "minecraft:entity.allay.ambient_without_item": { + "protocol_id": 1 + }, + "minecraft:entity.allay.death": { + "protocol_id": 2 + }, + "minecraft:entity.allay.hurt": { + "protocol_id": 3 + }, + "minecraft:entity.allay.item_given": { + "protocol_id": 4 + }, + "minecraft:entity.allay.item_taken": { + "protocol_id": 5 + }, + "minecraft:entity.allay.item_thrown": { + "protocol_id": 6 + }, + "minecraft:entity.armadillo.ambient": { + "protocol_id": 57 + }, + "minecraft:entity.armadillo.brush": { + "protocol_id": 66 + }, + "minecraft:entity.armadillo.death": { + "protocol_id": 59 + }, + "minecraft:entity.armadillo.eat": { + "protocol_id": 54 + }, + "minecraft:entity.armadillo.hurt": { + "protocol_id": 55 + }, + "minecraft:entity.armadillo.hurt_reduced": { + "protocol_id": 56 + }, + "minecraft:entity.armadillo.land": { + "protocol_id": 61 + }, + "minecraft:entity.armadillo.peek": { + "protocol_id": 64 + }, + "minecraft:entity.armadillo.roll": { + "protocol_id": 60 + }, + "minecraft:entity.armadillo.scute_drop": { + "protocol_id": 62 + }, + "minecraft:entity.armadillo.step": { + "protocol_id": 58 + }, + "minecraft:entity.armadillo.unroll_finish": { + "protocol_id": 63 + }, + "minecraft:entity.armadillo.unroll_start": { + "protocol_id": 65 + }, + "minecraft:entity.armor_stand.break": { + "protocol_id": 81 + }, + "minecraft:entity.armor_stand.fall": { + "protocol_id": 82 + }, + "minecraft:entity.armor_stand.hit": { + "protocol_id": 83 + }, + "minecraft:entity.armor_stand.place": { + "protocol_id": 84 + }, + "minecraft:entity.arrow.hit": { + "protocol_id": 85 + }, + "minecraft:entity.arrow.hit_player": { + "protocol_id": 86 + }, + "minecraft:entity.arrow.shoot": { + "protocol_id": 87 + }, + "minecraft:entity.axolotl.attack": { + "protocol_id": 91 + }, + "minecraft:entity.axolotl.death": { + "protocol_id": 92 + }, + "minecraft:entity.axolotl.hurt": { + "protocol_id": 93 + }, + "minecraft:entity.axolotl.idle_air": { + "protocol_id": 94 + }, + "minecraft:entity.axolotl.idle_water": { + "protocol_id": 95 + }, + "minecraft:entity.axolotl.splash": { + "protocol_id": 96 + }, + "minecraft:entity.axolotl.swim": { + "protocol_id": 97 + }, + "minecraft:entity.baby_cat.ambient": { + "protocol_id": 279 + }, + "minecraft:entity.baby_cat.beg_for_food": { + "protocol_id": 284 + }, + "minecraft:entity.baby_cat.death": { + "protocol_id": 281 + }, + "minecraft:entity.baby_cat.eat": { + "protocol_id": 282 + }, + "minecraft:entity.baby_cat.hiss": { + "protocol_id": 283 + }, + "minecraft:entity.baby_cat.hurt": { + "protocol_id": 285 + }, + "minecraft:entity.baby_cat.purr": { + "protocol_id": 286 + }, + "minecraft:entity.baby_cat.purreow": { + "protocol_id": 287 + }, + "minecraft:entity.baby_cat.stray_ambient": { + "protocol_id": 280 + }, + "minecraft:entity.baby_chicken.ambient": { + "protocol_id": 350 + }, + "minecraft:entity.baby_chicken.death": { + "protocol_id": 351 + }, + "minecraft:entity.baby_chicken.hurt": { + "protocol_id": 353 + }, + "minecraft:entity.baby_chicken.step": { + "protocol_id": 355 + }, + "minecraft:entity.baby_horse.ambient": { + "protocol_id": 850 + }, + "minecraft:entity.baby_horse.angry": { + "protocol_id": 852 + }, + "minecraft:entity.baby_horse.breathe": { + "protocol_id": 856 + }, + "minecraft:entity.baby_horse.death": { + "protocol_id": 858 + }, + "minecraft:entity.baby_horse.eat": { + "protocol_id": 860 + }, + "minecraft:entity.baby_horse.hurt": { + "protocol_id": 863 + }, + "minecraft:entity.baby_horse.land": { + "protocol_id": 866 + }, + "minecraft:entity.baby_horse.step": { + "protocol_id": 869 + }, + "minecraft:entity.baby_nautilus.ambient": { + "protocol_id": 108 + }, + "minecraft:entity.baby_nautilus.ambient_land": { + "protocol_id": 109 + }, + "minecraft:entity.baby_nautilus.death": { + "protocol_id": 110 + }, + "minecraft:entity.baby_nautilus.death_land": { + "protocol_id": 111 + }, + "minecraft:entity.baby_nautilus.eat": { + "protocol_id": 112 + }, + "minecraft:entity.baby_nautilus.hurt": { + "protocol_id": 113 + }, + "minecraft:entity.baby_nautilus.hurt_land": { + "protocol_id": 114 + }, + "minecraft:entity.baby_nautilus.swim": { + "protocol_id": 116 + }, + "minecraft:entity.baby_pig.ambient": { + "protocol_id": 1264 + }, + "minecraft:entity.baby_pig.death": { + "protocol_id": 1267 + }, + "minecraft:entity.baby_pig.eat": { + "protocol_id": 1265 + }, + "minecraft:entity.baby_pig.hurt": { + "protocol_id": 1266 + }, + "minecraft:entity.baby_pig.step": { + "protocol_id": 1263 + }, + "minecraft:entity.baby_wolf.ambient": { + "protocol_id": 1791 + }, + "minecraft:entity.baby_wolf.death": { + "protocol_id": 1795 + }, + "minecraft:entity.baby_wolf.growl": { + "protocol_id": 1796 + }, + "minecraft:entity.baby_wolf.hurt": { + "protocol_id": 1797 + }, + "minecraft:entity.baby_wolf.pant": { + "protocol_id": 1798 + }, + "minecraft:entity.baby_wolf.step": { + "protocol_id": 1801 + }, + "minecraft:entity.baby_wolf.whine": { + "protocol_id": 1802 + }, + "minecraft:entity.bat.ambient": { + "protocol_id": 147 + }, + "minecraft:entity.bat.death": { + "protocol_id": 148 + }, + "minecraft:entity.bat.hurt": { + "protocol_id": 149 + }, + "minecraft:entity.bat.loop": { + "protocol_id": 150 + }, + "minecraft:entity.bat.takeoff": { + "protocol_id": 151 + }, + "minecraft:entity.bee.death": { + "protocol_id": 156 + }, + "minecraft:entity.bee.hurt": { + "protocol_id": 157 + }, + "minecraft:entity.bee.loop": { + "protocol_id": 159 + }, + "minecraft:entity.bee.loop_aggressive": { + "protocol_id": 158 + }, + "minecraft:entity.bee.pollinate": { + "protocol_id": 161 + }, + "minecraft:entity.bee.sting": { + "protocol_id": 160 + }, + "minecraft:entity.blaze.ambient": { + "protocol_id": 174 + }, + "minecraft:entity.blaze.burn": { + "protocol_id": 175 + }, + "minecraft:entity.blaze.death": { + "protocol_id": 176 + }, + "minecraft:entity.blaze.hurt": { + "protocol_id": 177 + }, + "minecraft:entity.blaze.shoot": { + "protocol_id": 178 + }, + "minecraft:entity.boat.paddle_land": { + "protocol_id": 179 + }, + "minecraft:entity.boat.paddle_water": { + "protocol_id": 180 + }, + "minecraft:entity.bogged.ambient": { + "protocol_id": 181 + }, + "minecraft:entity.bogged.death": { + "protocol_id": 182 + }, + "minecraft:entity.bogged.hurt": { + "protocol_id": 183 + }, + "minecraft:entity.bogged.shear": { + "protocol_id": 184 + }, + "minecraft:entity.bogged.step": { + "protocol_id": 185 + }, + "minecraft:entity.breeze.charge": { + "protocol_id": 198 + }, + "minecraft:entity.breeze.death": { + "protocol_id": 207 + }, + "minecraft:entity.breeze.deflect": { + "protocol_id": 199 + }, + "minecraft:entity.breeze.hurt": { + "protocol_id": 208 + }, + "minecraft:entity.breeze.idle_air": { + "protocol_id": 202 + }, + "minecraft:entity.breeze.idle_ground": { + "protocol_id": 201 + }, + "minecraft:entity.breeze.inhale": { + "protocol_id": 200 + }, + "minecraft:entity.breeze.jump": { + "protocol_id": 204 + }, + "minecraft:entity.breeze.land": { + "protocol_id": 205 + }, + "minecraft:entity.breeze.shoot": { + "protocol_id": 203 + }, + "minecraft:entity.breeze.slide": { + "protocol_id": 206 + }, + "minecraft:entity.breeze.whirl": { + "protocol_id": 209 + }, + "minecraft:entity.breeze.wind_burst": { + "protocol_id": 210 + }, + "minecraft:entity.camel.ambient": { + "protocol_id": 260 + }, + "minecraft:entity.camel.dash": { + "protocol_id": 261 + }, + "minecraft:entity.camel.dash_ready": { + "protocol_id": 262 + }, + "minecraft:entity.camel.death": { + "protocol_id": 263 + }, + "minecraft:entity.camel.eat": { + "protocol_id": 264 + }, + "minecraft:entity.camel.hurt": { + "protocol_id": 265 + }, + "minecraft:entity.camel.saddle": { + "protocol_id": 266 + }, + "minecraft:entity.camel.sit": { + "protocol_id": 267 + }, + "minecraft:entity.camel.stand": { + "protocol_id": 268 + }, + "minecraft:entity.camel.step": { + "protocol_id": 269 + }, + "minecraft:entity.camel.step_sand": { + "protocol_id": 270 + }, + "minecraft:entity.camel_husk.ambient": { + "protocol_id": 249 + }, + "minecraft:entity.camel_husk.dash": { + "protocol_id": 250 + }, + "minecraft:entity.camel_husk.dash_ready": { + "protocol_id": 251 + }, + "minecraft:entity.camel_husk.death": { + "protocol_id": 252 + }, + "minecraft:entity.camel_husk.eat": { + "protocol_id": 253 + }, + "minecraft:entity.camel_husk.hurt": { + "protocol_id": 254 + }, + "minecraft:entity.camel_husk.saddle": { + "protocol_id": 255 + }, + "minecraft:entity.camel_husk.sit": { + "protocol_id": 256 + }, + "minecraft:entity.camel_husk.stand": { + "protocol_id": 257 + }, + "minecraft:entity.camel_husk.step": { + "protocol_id": 258 + }, + "minecraft:entity.camel_husk.step_sand": { + "protocol_id": 259 + }, + "minecraft:entity.cat.ambient": { + "protocol_id": 288 + }, + "minecraft:entity.cat.beg_for_food": { + "protocol_id": 294 + }, + "minecraft:entity.cat.death": { + "protocol_id": 292 + }, + "minecraft:entity.cat.eat": { + "protocol_id": 293 + }, + "minecraft:entity.cat.hiss": { + "protocol_id": 290 + }, + "minecraft:entity.cat.hurt": { + "protocol_id": 291 + }, + "minecraft:entity.cat.purr": { + "protocol_id": 295 + }, + "minecraft:entity.cat.purreow": { + "protocol_id": 296 + }, + "minecraft:entity.cat.stray_ambient": { + "protocol_id": 289 + }, + "minecraft:entity.cat_royal.ambient": { + "protocol_id": 297 + }, + "minecraft:entity.cat_royal.beg_for_food": { + "protocol_id": 303 + }, + "minecraft:entity.cat_royal.death": { + "protocol_id": 301 + }, + "minecraft:entity.cat_royal.eat": { + "protocol_id": 302 + }, + "minecraft:entity.cat_royal.hiss": { + "protocol_id": 299 + }, + "minecraft:entity.cat_royal.hurt": { + "protocol_id": 300 + }, + "minecraft:entity.cat_royal.purr": { + "protocol_id": 304 + }, + "minecraft:entity.cat_royal.purreow": { + "protocol_id": 305 + }, + "minecraft:entity.cat_royal.stray_ambient": { + "protocol_id": 298 + }, + "minecraft:entity.chicken.ambient": { + "protocol_id": 356 + }, + "minecraft:entity.chicken.death": { + "protocol_id": 358 + }, + "minecraft:entity.chicken.egg": { + "protocol_id": 352 + }, + "minecraft:entity.chicken.hurt": { + "protocol_id": 357 + }, + "minecraft:entity.chicken.step": { + "protocol_id": 354 + }, + "minecraft:entity.chicken_picky.ambient": { + "protocol_id": 359 + }, + "minecraft:entity.chicken_picky.death": { + "protocol_id": 361 + }, + "minecraft:entity.chicken_picky.hurt": { + "protocol_id": 360 + }, + "minecraft:entity.cod.ambient": { + "protocol_id": 379 + }, + "minecraft:entity.cod.death": { + "protocol_id": 380 + }, + "minecraft:entity.cod.flop": { + "protocol_id": 381 + }, + "minecraft:entity.cod.hurt": { + "protocol_id": 382 + }, + "minecraft:entity.copper_golem.death": { + "protocol_id": 415 + }, + "minecraft:entity.copper_golem.hurt": { + "protocol_id": 414 + }, + "minecraft:entity.copper_golem.item_drop": { + "protocol_id": 427 + }, + "minecraft:entity.copper_golem.item_no_drop": { + "protocol_id": 428 + }, + "minecraft:entity.copper_golem.no_item_get": { + "protocol_id": 425 + }, + "minecraft:entity.copper_golem.no_item_no_get": { + "protocol_id": 426 + }, + "minecraft:entity.copper_golem.shear": { + "protocol_id": 436 + }, + "minecraft:entity.copper_golem.spawn": { + "protocol_id": 435 + }, + "minecraft:entity.copper_golem.spin": { + "protocol_id": 422 + }, + "minecraft:entity.copper_golem.step": { + "protocol_id": 413 + }, + "minecraft:entity.copper_golem_become_statue": { + "protocol_id": 429 + }, + "minecraft:entity.copper_golem_oxidized.death": { + "protocol_id": 421 + }, + "minecraft:entity.copper_golem_oxidized.hurt": { + "protocol_id": 420 + }, + "minecraft:entity.copper_golem_oxidized.spin": { + "protocol_id": 424 + }, + "minecraft:entity.copper_golem_oxidized.step": { + "protocol_id": 419 + }, + "minecraft:entity.copper_golem_weathered.death": { + "protocol_id": 418 + }, + "minecraft:entity.copper_golem_weathered.hurt": { + "protocol_id": 417 + }, + "minecraft:entity.copper_golem_weathered.spin": { + "protocol_id": 423 + }, + "minecraft:entity.copper_golem_weathered.step": { + "protocol_id": 416 + }, + "minecraft:entity.cow.ambient": { + "protocol_id": 450 + }, + "minecraft:entity.cow.death": { + "protocol_id": 452 + }, + "minecraft:entity.cow.hurt": { + "protocol_id": 451 + }, + "minecraft:entity.cow.milk": { + "protocol_id": 449 + }, + "minecraft:entity.cow.step": { + "protocol_id": 453 + }, + "minecraft:entity.cow_moody.ambient": { + "protocol_id": 454 + }, + "minecraft:entity.cow_moody.death": { + "protocol_id": 456 + }, + "minecraft:entity.cow_moody.hurt": { + "protocol_id": 455 + }, + "minecraft:entity.cow_moody.step": { + "protocol_id": 457 + }, + "minecraft:entity.creaking.activate": { + "protocol_id": 461 + }, + "minecraft:entity.creaking.ambient": { + "protocol_id": 460 + }, + "minecraft:entity.creaking.attack": { + "protocol_id": 463 + }, + "minecraft:entity.creaking.deactivate": { + "protocol_id": 462 + }, + "minecraft:entity.creaking.death": { + "protocol_id": 464 + }, + "minecraft:entity.creaking.freeze": { + "protocol_id": 466 + }, + "minecraft:entity.creaking.spawn": { + "protocol_id": 468 + }, + "minecraft:entity.creaking.step": { + "protocol_id": 465 + }, + "minecraft:entity.creaking.sway": { + "protocol_id": 469 + }, + "minecraft:entity.creaking.twitch": { + "protocol_id": 470 + }, + "minecraft:entity.creaking.unfreeze": { + "protocol_id": 467 + }, + "minecraft:entity.creeper.death": { + "protocol_id": 479 + }, + "minecraft:entity.creeper.hurt": { + "protocol_id": 480 + }, + "minecraft:entity.creeper.primed": { + "protocol_id": 481 + }, + "minecraft:entity.dolphin.ambient": { + "protocol_id": 519 + }, + "minecraft:entity.dolphin.ambient_water": { + "protocol_id": 520 + }, + "minecraft:entity.dolphin.attack": { + "protocol_id": 521 + }, + "minecraft:entity.dolphin.death": { + "protocol_id": 522 + }, + "minecraft:entity.dolphin.eat": { + "protocol_id": 523 + }, + "minecraft:entity.dolphin.hurt": { + "protocol_id": 524 + }, + "minecraft:entity.dolphin.jump": { + "protocol_id": 525 + }, + "minecraft:entity.dolphin.play": { + "protocol_id": 526 + }, + "minecraft:entity.dolphin.splash": { + "protocol_id": 527 + }, + "minecraft:entity.dolphin.swim": { + "protocol_id": 528 + }, + "minecraft:entity.donkey.ambient": { + "protocol_id": 529 + }, + "minecraft:entity.donkey.angry": { + "protocol_id": 530 + }, + "minecraft:entity.donkey.chest": { + "protocol_id": 531 + }, + "minecraft:entity.donkey.death": { + "protocol_id": 532 + }, + "minecraft:entity.donkey.eat": { + "protocol_id": 533 + }, + "minecraft:entity.donkey.hurt": { + "protocol_id": 534 + }, + "minecraft:entity.donkey.jump": { + "protocol_id": 535 + }, + "minecraft:entity.dragon_fireball.explode": { + "protocol_id": 587 + }, + "minecraft:entity.drowned.ambient": { + "protocol_id": 562 + }, + "minecraft:entity.drowned.ambient_water": { + "protocol_id": 563 + }, + "minecraft:entity.drowned.death": { + "protocol_id": 564 + }, + "minecraft:entity.drowned.death_water": { + "protocol_id": 565 + }, + "minecraft:entity.drowned.hurt": { + "protocol_id": 566 + }, + "minecraft:entity.drowned.hurt_water": { + "protocol_id": 567 + }, + "minecraft:entity.drowned.shoot": { + "protocol_id": 568 + }, + "minecraft:entity.drowned.step": { + "protocol_id": 569 + }, + "minecraft:entity.drowned.swim": { + "protocol_id": 570 + }, + "minecraft:entity.egg.throw": { + "protocol_id": 572 + }, + "minecraft:entity.elder_guardian.ambient": { + "protocol_id": 573 + }, + "minecraft:entity.elder_guardian.ambient_land": { + "protocol_id": 574 + }, + "minecraft:entity.elder_guardian.curse": { + "protocol_id": 575 + }, + "minecraft:entity.elder_guardian.death": { + "protocol_id": 576 + }, + "minecraft:entity.elder_guardian.death_land": { + "protocol_id": 577 + }, + "minecraft:entity.elder_guardian.flop": { + "protocol_id": 578 + }, + "minecraft:entity.elder_guardian.hurt": { + "protocol_id": 579 + }, + "minecraft:entity.elder_guardian.hurt_land": { + "protocol_id": 580 + }, + "minecraft:entity.ender_dragon.ambient": { + "protocol_id": 585 + }, + "minecraft:entity.ender_dragon.death": { + "protocol_id": 586 + }, + "minecraft:entity.ender_dragon.flap": { + "protocol_id": 588 + }, + "minecraft:entity.ender_dragon.growl": { + "protocol_id": 589 + }, + "minecraft:entity.ender_dragon.hurt": { + "protocol_id": 590 + }, + "minecraft:entity.ender_dragon.shoot": { + "protocol_id": 591 + }, + "minecraft:entity.ender_eye.death": { + "protocol_id": 592 + }, + "minecraft:entity.ender_eye.launch": { + "protocol_id": 593 + }, + "minecraft:entity.ender_pearl.throw": { + "protocol_id": 604 + }, + "minecraft:entity.enderman.ambient": { + "protocol_id": 594 + }, + "minecraft:entity.enderman.death": { + "protocol_id": 595 + }, + "minecraft:entity.enderman.hurt": { + "protocol_id": 596 + }, + "minecraft:entity.enderman.scream": { + "protocol_id": 597 + }, + "minecraft:entity.enderman.stare": { + "protocol_id": 598 + }, + "minecraft:entity.enderman.teleport": { + "protocol_id": 599 + }, + "minecraft:entity.endermite.ambient": { + "protocol_id": 600 + }, + "minecraft:entity.endermite.death": { + "protocol_id": 601 + }, + "minecraft:entity.endermite.hurt": { + "protocol_id": 602 + }, + "minecraft:entity.endermite.step": { + "protocol_id": 603 + }, + "minecraft:entity.evoker.ambient": { + "protocol_id": 608 + }, + "minecraft:entity.evoker.cast_spell": { + "protocol_id": 609 + }, + "minecraft:entity.evoker.celebrate": { + "protocol_id": 610 + }, + "minecraft:entity.evoker.death": { + "protocol_id": 611 + }, + "minecraft:entity.evoker.hurt": { + "protocol_id": 613 + }, + "minecraft:entity.evoker.prepare_attack": { + "protocol_id": 614 + }, + "minecraft:entity.evoker.prepare_summon": { + "protocol_id": 615 + }, + "minecraft:entity.evoker.prepare_wololo": { + "protocol_id": 616 + }, + "minecraft:entity.evoker_fangs.attack": { + "protocol_id": 612 + }, + "minecraft:entity.experience_bottle.throw": { + "protocol_id": 617 + }, + "minecraft:entity.experience_orb.pickup": { + "protocol_id": 618 + }, + "minecraft:entity.firework_rocket.blast": { + "protocol_id": 628 + }, + "minecraft:entity.firework_rocket.blast_far": { + "protocol_id": 629 + }, + "minecraft:entity.firework_rocket.large_blast": { + "protocol_id": 630 + }, + "minecraft:entity.firework_rocket.large_blast_far": { + "protocol_id": 631 + }, + "minecraft:entity.firework_rocket.launch": { + "protocol_id": 632 + }, + "minecraft:entity.firework_rocket.shoot": { + "protocol_id": 633 + }, + "minecraft:entity.firework_rocket.twinkle": { + "protocol_id": 634 + }, + "minecraft:entity.firework_rocket.twinkle_far": { + "protocol_id": 635 + }, + "minecraft:entity.fish.swim": { + "protocol_id": 638 + }, + "minecraft:entity.fishing_bobber.retrieve": { + "protocol_id": 639 + }, + "minecraft:entity.fishing_bobber.splash": { + "protocol_id": 640 + }, + "minecraft:entity.fishing_bobber.throw": { + "protocol_id": 641 + }, + "minecraft:entity.fox.aggro": { + "protocol_id": 648 + }, + "minecraft:entity.fox.ambient": { + "protocol_id": 649 + }, + "minecraft:entity.fox.bite": { + "protocol_id": 650 + }, + "minecraft:entity.fox.death": { + "protocol_id": 651 + }, + "minecraft:entity.fox.eat": { + "protocol_id": 652 + }, + "minecraft:entity.fox.hurt": { + "protocol_id": 653 + }, + "minecraft:entity.fox.screech": { + "protocol_id": 654 + }, + "minecraft:entity.fox.sleep": { + "protocol_id": 655 + }, + "minecraft:entity.fox.sniff": { + "protocol_id": 656 + }, + "minecraft:entity.fox.spit": { + "protocol_id": 657 + }, + "minecraft:entity.fox.teleport": { + "protocol_id": 658 + }, + "minecraft:entity.frog.ambient": { + "protocol_id": 680 + }, + "minecraft:entity.frog.death": { + "protocol_id": 681 + }, + "minecraft:entity.frog.eat": { + "protocol_id": 682 + }, + "minecraft:entity.frog.hurt": { + "protocol_id": 683 + }, + "minecraft:entity.frog.lay_spawn": { + "protocol_id": 684 + }, + "minecraft:entity.frog.long_jump": { + "protocol_id": 685 + }, + "minecraft:entity.frog.step": { + "protocol_id": 686 + }, + "minecraft:entity.frog.tongue": { + "protocol_id": 687 + }, + "minecraft:entity.generic.big_fall": { + "protocol_id": 694 + }, + "minecraft:entity.generic.burn": { + "protocol_id": 695 + }, + "minecraft:entity.generic.death": { + "protocol_id": 696 + }, + "minecraft:entity.generic.drink": { + "protocol_id": 697 + }, + "minecraft:entity.generic.eat": { + "protocol_id": 698 + }, + "minecraft:entity.generic.explode": { + "protocol_id": 699 + }, + "minecraft:entity.generic.extinguish_fire": { + "protocol_id": 700 + }, + "minecraft:entity.generic.hurt": { + "protocol_id": 701 + }, + "minecraft:entity.generic.small_fall": { + "protocol_id": 702 + }, + "minecraft:entity.generic.splash": { + "protocol_id": 703 + }, + "minecraft:entity.generic.swim": { + "protocol_id": 704 + }, + "minecraft:entity.ghast.ambient": { + "protocol_id": 705 + }, + "minecraft:entity.ghast.death": { + "protocol_id": 706 + }, + "minecraft:entity.ghast.hurt": { + "protocol_id": 707 + }, + "minecraft:entity.ghast.scream": { + "protocol_id": 708 + }, + "minecraft:entity.ghast.shoot": { + "protocol_id": 709 + }, + "minecraft:entity.ghast.warn": { + "protocol_id": 710 + }, + "minecraft:entity.ghastling.ambient": { + "protocol_id": 711 + }, + "minecraft:entity.ghastling.death": { + "protocol_id": 712 + }, + "minecraft:entity.ghastling.hurt": { + "protocol_id": 713 + }, + "minecraft:entity.ghastling.spawn": { + "protocol_id": 714 + }, + "minecraft:entity.glow_item_frame.add_item": { + "protocol_id": 726 + }, + "minecraft:entity.glow_item_frame.break": { + "protocol_id": 727 + }, + "minecraft:entity.glow_item_frame.place": { + "protocol_id": 728 + }, + "minecraft:entity.glow_item_frame.remove_item": { + "protocol_id": 729 + }, + "minecraft:entity.glow_item_frame.rotate_item": { + "protocol_id": 730 + }, + "minecraft:entity.glow_squid.ambient": { + "protocol_id": 731 + }, + "minecraft:entity.glow_squid.death": { + "protocol_id": 732 + }, + "minecraft:entity.glow_squid.hurt": { + "protocol_id": 733 + }, + "minecraft:entity.glow_squid.squirt": { + "protocol_id": 734 + }, + "minecraft:entity.goat.ambient": { + "protocol_id": 735 + }, + "minecraft:entity.goat.death": { + "protocol_id": 736 + }, + "minecraft:entity.goat.eat": { + "protocol_id": 737 + }, + "minecraft:entity.goat.horn_break": { + "protocol_id": 743 + }, + "minecraft:entity.goat.hurt": { + "protocol_id": 738 + }, + "minecraft:entity.goat.long_jump": { + "protocol_id": 739 + }, + "minecraft:entity.goat.milk": { + "protocol_id": 740 + }, + "minecraft:entity.goat.prepare_ram": { + "protocol_id": 741 + }, + "minecraft:entity.goat.ram_impact": { + "protocol_id": 742 + }, + "minecraft:entity.goat.screaming.ambient": { + "protocol_id": 744 + }, + "minecraft:entity.goat.screaming.death": { + "protocol_id": 745 + }, + "minecraft:entity.goat.screaming.eat": { + "protocol_id": 746 + }, + "minecraft:entity.goat.screaming.hurt": { + "protocol_id": 747 + }, + "minecraft:entity.goat.screaming.long_jump": { + "protocol_id": 748 + }, + "minecraft:entity.goat.screaming.milk": { + "protocol_id": 749 + }, + "minecraft:entity.goat.screaming.prepare_ram": { + "protocol_id": 750 + }, + "minecraft:entity.goat.screaming.ram_impact": { + "protocol_id": 751 + }, + "minecraft:entity.goat.step": { + "protocol_id": 752 + }, + "minecraft:entity.guardian.ambient": { + "protocol_id": 767 + }, + "minecraft:entity.guardian.ambient_land": { + "protocol_id": 768 + }, + "minecraft:entity.guardian.attack": { + "protocol_id": 769 + }, + "minecraft:entity.guardian.death": { + "protocol_id": 770 + }, + "minecraft:entity.guardian.death_land": { + "protocol_id": 771 + }, + "minecraft:entity.guardian.flop": { + "protocol_id": 772 + }, + "minecraft:entity.guardian.hurt": { + "protocol_id": 773 + }, + "minecraft:entity.guardian.hurt_land": { + "protocol_id": 774 + }, + "minecraft:entity.happy_ghast.ambient": { + "protocol_id": 785 + }, + "minecraft:entity.happy_ghast.death": { + "protocol_id": 786 + }, + "minecraft:entity.happy_ghast.equip": { + "protocol_id": 820 + }, + "minecraft:entity.happy_ghast.harness_goggles_down": { + "protocol_id": 823 + }, + "minecraft:entity.happy_ghast.harness_goggles_up": { + "protocol_id": 822 + }, + "minecraft:entity.happy_ghast.hurt": { + "protocol_id": 787 + }, + "minecraft:entity.happy_ghast.riding": { + "protocol_id": 788 + }, + "minecraft:entity.happy_ghast.unequip": { + "protocol_id": 821 + }, + "minecraft:entity.hoglin.ambient": { + "protocol_id": 825 + }, + "minecraft:entity.hoglin.angry": { + "protocol_id": 826 + }, + "minecraft:entity.hoglin.attack": { + "protocol_id": 827 + }, + "minecraft:entity.hoglin.converted_to_zombified": { + "protocol_id": 828 + }, + "minecraft:entity.hoglin.death": { + "protocol_id": 829 + }, + "minecraft:entity.hoglin.hurt": { + "protocol_id": 830 + }, + "minecraft:entity.hoglin.retreat": { + "protocol_id": 831 + }, + "minecraft:entity.hoglin.step": { + "protocol_id": 832 + }, + "minecraft:entity.horse.ambient": { + "protocol_id": 849 + }, + "minecraft:entity.horse.angry": { + "protocol_id": 851 + }, + "minecraft:entity.horse.armor": { + "protocol_id": 853 + }, + "minecraft:entity.horse.breathe": { + "protocol_id": 855 + }, + "minecraft:entity.horse.death": { + "protocol_id": 857 + }, + "minecraft:entity.horse.eat": { + "protocol_id": 859 + }, + "minecraft:entity.horse.gallop": { + "protocol_id": 861 + }, + "minecraft:entity.horse.hurt": { + "protocol_id": 862 + }, + "minecraft:entity.horse.jump": { + "protocol_id": 864 + }, + "minecraft:entity.horse.land": { + "protocol_id": 865 + }, + "minecraft:entity.horse.saddle": { + "protocol_id": 867 + }, + "minecraft:entity.horse.step": { + "protocol_id": 868 + }, + "minecraft:entity.horse.step_wood": { + "protocol_id": 870 + }, + "minecraft:entity.hostile.big_fall": { + "protocol_id": 871 + }, + "minecraft:entity.hostile.death": { + "protocol_id": 872 + }, + "minecraft:entity.hostile.hurt": { + "protocol_id": 873 + }, + "minecraft:entity.hostile.small_fall": { + "protocol_id": 874 + }, + "minecraft:entity.hostile.splash": { + "protocol_id": 875 + }, + "minecraft:entity.hostile.swim": { + "protocol_id": 876 + }, + "minecraft:entity.husk.ambient": { + "protocol_id": 877 + }, + "minecraft:entity.husk.converted_to_zombie": { + "protocol_id": 878 + }, + "minecraft:entity.husk.death": { + "protocol_id": 879 + }, + "minecraft:entity.husk.hurt": { + "protocol_id": 880 + }, + "minecraft:entity.husk.step": { + "protocol_id": 881 + }, + "minecraft:entity.illusioner.ambient": { + "protocol_id": 882 + }, + "minecraft:entity.illusioner.cast_spell": { + "protocol_id": 883 + }, + "minecraft:entity.illusioner.death": { + "protocol_id": 884 + }, + "minecraft:entity.illusioner.hurt": { + "protocol_id": 885 + }, + "minecraft:entity.illusioner.mirror_move": { + "protocol_id": 886 + }, + "minecraft:entity.illusioner.prepare_blindness": { + "protocol_id": 887 + }, + "minecraft:entity.illusioner.prepare_mirror": { + "protocol_id": 888 + }, + "minecraft:entity.iron_golem.attack": { + "protocol_id": 897 + }, + "minecraft:entity.iron_golem.damage": { + "protocol_id": 898 + }, + "minecraft:entity.iron_golem.death": { + "protocol_id": 899 + }, + "minecraft:entity.iron_golem.hurt": { + "protocol_id": 900 + }, + "minecraft:entity.iron_golem.repair": { + "protocol_id": 901 + }, + "minecraft:entity.iron_golem.step": { + "protocol_id": 902 + }, + "minecraft:entity.item.break": { + "protocol_id": 910 + }, + "minecraft:entity.item.pickup": { + "protocol_id": 911 + }, + "minecraft:entity.item_frame.add_item": { + "protocol_id": 905 + }, + "minecraft:entity.item_frame.break": { + "protocol_id": 906 + }, + "minecraft:entity.item_frame.place": { + "protocol_id": 907 + }, + "minecraft:entity.item_frame.remove_item": { + "protocol_id": 908 + }, + "minecraft:entity.item_frame.rotate_item": { + "protocol_id": 909 + }, + "minecraft:entity.lightning_bolt.impact": { + "protocol_id": 936 + }, + "minecraft:entity.lightning_bolt.thunder": { + "protocol_id": 937 + }, + "minecraft:entity.lingering_potion.throw": { + "protocol_id": 938 + }, + "minecraft:entity.llama.ambient": { + "protocol_id": 939 + }, + "minecraft:entity.llama.angry": { + "protocol_id": 940 + }, + "minecraft:entity.llama.chest": { + "protocol_id": 941 + }, + "minecraft:entity.llama.death": { + "protocol_id": 942 + }, + "minecraft:entity.llama.eat": { + "protocol_id": 943 + }, + "minecraft:entity.llama.hurt": { + "protocol_id": 944 + }, + "minecraft:entity.llama.spit": { + "protocol_id": 945 + }, + "minecraft:entity.llama.step": { + "protocol_id": 946 + }, + "minecraft:entity.llama.swag": { + "protocol_id": 947 + }, + "minecraft:entity.magma_cube.death": { + "protocol_id": 962 + }, + "minecraft:entity.magma_cube.death_small": { + "protocol_id": 949 + }, + "minecraft:entity.magma_cube.hurt": { + "protocol_id": 963 + }, + "minecraft:entity.magma_cube.hurt_small": { + "protocol_id": 964 + }, + "minecraft:entity.magma_cube.jump": { + "protocol_id": 965 + }, + "minecraft:entity.magma_cube.squish": { + "protocol_id": 966 + }, + "minecraft:entity.magma_cube.squish_small": { + "protocol_id": 967 + }, + "minecraft:entity.minecart.inside": { + "protocol_id": 983 + }, + "minecraft:entity.minecart.inside.underwater": { + "protocol_id": 982 + }, + "minecraft:entity.minecart.riding": { + "protocol_id": 984 + }, + "minecraft:entity.mooshroom.convert": { + "protocol_id": 985 + }, + "minecraft:entity.mooshroom.eat": { + "protocol_id": 986 + }, + "minecraft:entity.mooshroom.milk": { + "protocol_id": 987 + }, + "minecraft:entity.mooshroom.shear": { + "protocol_id": 989 + }, + "minecraft:entity.mooshroom.suspicious_milk": { + "protocol_id": 988 + }, + "minecraft:entity.mule.ambient": { + "protocol_id": 1020 + }, + "minecraft:entity.mule.angry": { + "protocol_id": 1021 + }, + "minecraft:entity.mule.chest": { + "protocol_id": 1022 + }, + "minecraft:entity.mule.death": { + "protocol_id": 1023 + }, + "minecraft:entity.mule.eat": { + "protocol_id": 1024 + }, + "minecraft:entity.mule.hurt": { + "protocol_id": 1025 + }, + "minecraft:entity.mule.jump": { + "protocol_id": 1026 + }, + "minecraft:entity.nautilus.ambient": { + "protocol_id": 1081 + }, + "minecraft:entity.nautilus.ambient_land": { + "protocol_id": 1082 + }, + "minecraft:entity.nautilus.dash": { + "protocol_id": 1083 + }, + "minecraft:entity.nautilus.dash_land": { + "protocol_id": 1084 + }, + "minecraft:entity.nautilus.dash_ready": { + "protocol_id": 1085 + }, + "minecraft:entity.nautilus.dash_ready_land": { + "protocol_id": 1086 + }, + "minecraft:entity.nautilus.death": { + "protocol_id": 1087 + }, + "minecraft:entity.nautilus.death_land": { + "protocol_id": 1088 + }, + "minecraft:entity.nautilus.eat": { + "protocol_id": 1089 + }, + "minecraft:entity.nautilus.hurt": { + "protocol_id": 1090 + }, + "minecraft:entity.nautilus.hurt_land": { + "protocol_id": 1091 + }, + "minecraft:entity.nautilus.riding": { + "protocol_id": 115 + }, + "minecraft:entity.nautilus.swim": { + "protocol_id": 1092 + }, + "minecraft:entity.ocelot.ambient": { + "protocol_id": 1188 + }, + "minecraft:entity.ocelot.death": { + "protocol_id": 1189 + }, + "minecraft:entity.ocelot.hurt": { + "protocol_id": 1187 + }, + "minecraft:entity.painting.break": { + "protocol_id": 1191 + }, + "minecraft:entity.painting.place": { + "protocol_id": 1192 + }, + "minecraft:entity.panda.aggressive_ambient": { + "protocol_id": 1201 + }, + "minecraft:entity.panda.ambient": { + "protocol_id": 1196 + }, + "minecraft:entity.panda.bite": { + "protocol_id": 1204 + }, + "minecraft:entity.panda.cant_breed": { + "protocol_id": 1200 + }, + "minecraft:entity.panda.death": { + "protocol_id": 1197 + }, + "minecraft:entity.panda.eat": { + "protocol_id": 1198 + }, + "minecraft:entity.panda.hurt": { + "protocol_id": 1203 + }, + "minecraft:entity.panda.pre_sneeze": { + "protocol_id": 1194 + }, + "minecraft:entity.panda.sneeze": { + "protocol_id": 1195 + }, + "minecraft:entity.panda.step": { + "protocol_id": 1199 + }, + "minecraft:entity.panda.worried_ambient": { + "protocol_id": 1202 + }, + "minecraft:entity.parched.ambient": { + "protocol_id": 1205 + }, + "minecraft:entity.parched.death": { + "protocol_id": 1206 + }, + "minecraft:entity.parched.hurt": { + "protocol_id": 1207 + }, + "minecraft:entity.parched.step": { + "protocol_id": 1208 + }, + "minecraft:entity.parrot.ambient": { + "protocol_id": 1209 + }, + "minecraft:entity.parrot.death": { + "protocol_id": 1210 + }, + "minecraft:entity.parrot.eat": { + "protocol_id": 1211 + }, + "minecraft:entity.parrot.fly": { + "protocol_id": 1212 + }, + "minecraft:entity.parrot.hurt": { + "protocol_id": 1213 + }, + "minecraft:entity.parrot.imitate.blaze": { + "protocol_id": 1214 + }, + "minecraft:entity.parrot.imitate.bogged": { + "protocol_id": 1215 + }, + "minecraft:entity.parrot.imitate.breeze": { + "protocol_id": 1216 + }, + "minecraft:entity.parrot.imitate.camel_husk": { + "protocol_id": 1217 + }, + "minecraft:entity.parrot.imitate.creaking": { + "protocol_id": 1218 + }, + "minecraft:entity.parrot.imitate.creeper": { + "protocol_id": 1219 + }, + "minecraft:entity.parrot.imitate.drowned": { + "protocol_id": 1220 + }, + "minecraft:entity.parrot.imitate.elder_guardian": { + "protocol_id": 1221 + }, + "minecraft:entity.parrot.imitate.ender_dragon": { + "protocol_id": 1222 + }, + "minecraft:entity.parrot.imitate.endermite": { + "protocol_id": 1223 + }, + "minecraft:entity.parrot.imitate.evoker": { + "protocol_id": 1224 + }, + "minecraft:entity.parrot.imitate.ghast": { + "protocol_id": 1225 + }, + "minecraft:entity.parrot.imitate.guardian": { + "protocol_id": 1226 + }, + "minecraft:entity.parrot.imitate.hoglin": { + "protocol_id": 1227 + }, + "minecraft:entity.parrot.imitate.husk": { + "protocol_id": 1228 + }, + "minecraft:entity.parrot.imitate.illusioner": { + "protocol_id": 1229 + }, + "minecraft:entity.parrot.imitate.magma_cube": { + "protocol_id": 1230 + }, + "minecraft:entity.parrot.imitate.parched": { + "protocol_id": 1232 + }, + "minecraft:entity.parrot.imitate.phantom": { + "protocol_id": 1231 + }, + "minecraft:entity.parrot.imitate.piglin": { + "protocol_id": 1233 + }, + "minecraft:entity.parrot.imitate.piglin_brute": { + "protocol_id": 1234 + }, + "minecraft:entity.parrot.imitate.pillager": { + "protocol_id": 1235 + }, + "minecraft:entity.parrot.imitate.ravager": { + "protocol_id": 1236 + }, + "minecraft:entity.parrot.imitate.shulker": { + "protocol_id": 1237 + }, + "minecraft:entity.parrot.imitate.silverfish": { + "protocol_id": 1238 + }, + "minecraft:entity.parrot.imitate.skeleton": { + "protocol_id": 1239 + }, + "minecraft:entity.parrot.imitate.slime": { + "protocol_id": 1240 + }, + "minecraft:entity.parrot.imitate.spider": { + "protocol_id": 1241 + }, + "minecraft:entity.parrot.imitate.stray": { + "protocol_id": 1242 + }, + "minecraft:entity.parrot.imitate.vex": { + "protocol_id": 1243 + }, + "minecraft:entity.parrot.imitate.vindicator": { + "protocol_id": 1244 + }, + "minecraft:entity.parrot.imitate.warden": { + "protocol_id": 1245 + }, + "minecraft:entity.parrot.imitate.witch": { + "protocol_id": 1246 + }, + "minecraft:entity.parrot.imitate.wither": { + "protocol_id": 1247 + }, + "minecraft:entity.parrot.imitate.wither_skeleton": { + "protocol_id": 1248 + }, + "minecraft:entity.parrot.imitate.zoglin": { + "protocol_id": 1249 + }, + "minecraft:entity.parrot.imitate.zombie": { + "protocol_id": 1250 + }, + "minecraft:entity.parrot.imitate.zombie_horse": { + "protocol_id": 1251 + }, + "minecraft:entity.parrot.imitate.zombie_nautilus": { + "protocol_id": 1252 + }, + "minecraft:entity.parrot.imitate.zombie_villager": { + "protocol_id": 1253 + }, + "minecraft:entity.parrot.step": { + "protocol_id": 1254 + }, + "minecraft:entity.phantom.ambient": { + "protocol_id": 1255 + }, + "minecraft:entity.phantom.bite": { + "protocol_id": 1256 + }, + "minecraft:entity.phantom.death": { + "protocol_id": 1257 + }, + "minecraft:entity.phantom.flap": { + "protocol_id": 1258 + }, + "minecraft:entity.phantom.hurt": { + "protocol_id": 1259 + }, + "minecraft:entity.phantom.swoop": { + "protocol_id": 1260 + }, + "minecraft:entity.pig.ambient": { + "protocol_id": 1268 + }, + "minecraft:entity.pig.death": { + "protocol_id": 1270 + }, + "minecraft:entity.pig.eat": { + "protocol_id": 1271 + }, + "minecraft:entity.pig.hurt": { + "protocol_id": 1269 + }, + "minecraft:entity.pig.saddle": { + "protocol_id": 1261 + }, + "minecraft:entity.pig.step": { + "protocol_id": 1262 + }, + "minecraft:entity.pig_big.ambient": { + "protocol_id": 1276 + }, + "minecraft:entity.pig_big.death": { + "protocol_id": 1278 + }, + "minecraft:entity.pig_big.eat": { + "protocol_id": 1279 + }, + "minecraft:entity.pig_big.hurt": { + "protocol_id": 1277 + }, + "minecraft:entity.pig_mini.ambient": { + "protocol_id": 1272 + }, + "minecraft:entity.pig_mini.death": { + "protocol_id": 1274 + }, + "minecraft:entity.pig_mini.eat": { + "protocol_id": 1275 + }, + "minecraft:entity.pig_mini.hurt": { + "protocol_id": 1273 + }, + "minecraft:entity.piglin.admiring_item": { + "protocol_id": 1280 + }, + "minecraft:entity.piglin.ambient": { + "protocol_id": 1281 + }, + "minecraft:entity.piglin.angry": { + "protocol_id": 1282 + }, + "minecraft:entity.piglin.celebrate": { + "protocol_id": 1283 + }, + "minecraft:entity.piglin.converted_to_zombified": { + "protocol_id": 1289 + }, + "minecraft:entity.piglin.death": { + "protocol_id": 1284 + }, + "minecraft:entity.piglin.hurt": { + "protocol_id": 1286 + }, + "minecraft:entity.piglin.jealous": { + "protocol_id": 1285 + }, + "minecraft:entity.piglin.retreat": { + "protocol_id": 1287 + }, + "minecraft:entity.piglin.step": { + "protocol_id": 1288 + }, + "minecraft:entity.piglin_brute.ambient": { + "protocol_id": 1290 + }, + "minecraft:entity.piglin_brute.angry": { + "protocol_id": 1291 + }, + "minecraft:entity.piglin_brute.converted_to_zombified": { + "protocol_id": 1295 + }, + "minecraft:entity.piglin_brute.death": { + "protocol_id": 1292 + }, + "minecraft:entity.piglin_brute.hurt": { + "protocol_id": 1293 + }, + "minecraft:entity.piglin_brute.step": { + "protocol_id": 1294 + }, + "minecraft:entity.pillager.ambient": { + "protocol_id": 1296 + }, + "minecraft:entity.pillager.celebrate": { + "protocol_id": 1297 + }, + "minecraft:entity.pillager.death": { + "protocol_id": 1298 + }, + "minecraft:entity.pillager.hurt": { + "protocol_id": 1299 + }, + "minecraft:entity.player.attack.crit": { + "protocol_id": 1302 + }, + "minecraft:entity.player.attack.knockback": { + "protocol_id": 1303 + }, + "minecraft:entity.player.attack.nodamage": { + "protocol_id": 1304 + }, + "minecraft:entity.player.attack.strong": { + "protocol_id": 1305 + }, + "minecraft:entity.player.attack.sweep": { + "protocol_id": 1306 + }, + "minecraft:entity.player.attack.weak": { + "protocol_id": 1307 + }, + "minecraft:entity.player.big_fall": { + "protocol_id": 1308 + }, + "minecraft:entity.player.breath": { + "protocol_id": 1309 + }, + "minecraft:entity.player.burp": { + "protocol_id": 1310 + }, + "minecraft:entity.player.death": { + "protocol_id": 1311 + }, + "minecraft:entity.player.hurt": { + "protocol_id": 1312 + }, + "minecraft:entity.player.hurt_drown": { + "protocol_id": 1313 + }, + "minecraft:entity.player.hurt_freeze": { + "protocol_id": 1314 + }, + "minecraft:entity.player.hurt_on_fire": { + "protocol_id": 1315 + }, + "minecraft:entity.player.hurt_sweet_berry_bush": { + "protocol_id": 1316 + }, + "minecraft:entity.player.levelup": { + "protocol_id": 1317 + }, + "minecraft:entity.player.small_fall": { + "protocol_id": 1318 + }, + "minecraft:entity.player.splash": { + "protocol_id": 1319 + }, + "minecraft:entity.player.splash.high_speed": { + "protocol_id": 1320 + }, + "minecraft:entity.player.swim": { + "protocol_id": 1321 + }, + "minecraft:entity.player.teleport": { + "protocol_id": 1322 + }, + "minecraft:entity.polar_bear.ambient": { + "protocol_id": 1323 + }, + "minecraft:entity.polar_bear.ambient_baby": { + "protocol_id": 1324 + }, + "minecraft:entity.polar_bear.death": { + "protocol_id": 1325 + }, + "minecraft:entity.polar_bear.hurt": { + "protocol_id": 1326 + }, + "minecraft:entity.polar_bear.step": { + "protocol_id": 1327 + }, + "minecraft:entity.polar_bear.warning": { + "protocol_id": 1328 + }, + "minecraft:entity.puffer_fish.blow_out": { + "protocol_id": 1342 + }, + "minecraft:entity.puffer_fish.blow_up": { + "protocol_id": 1343 + }, + "minecraft:entity.puffer_fish.death": { + "protocol_id": 1344 + }, + "minecraft:entity.puffer_fish.flop": { + "protocol_id": 1345 + }, + "minecraft:entity.puffer_fish.hurt": { + "protocol_id": 1346 + }, + "minecraft:entity.puffer_fish.sting": { + "protocol_id": 1347 + }, + "minecraft:entity.rabbit.ambient": { + "protocol_id": 1349 + }, + "minecraft:entity.rabbit.attack": { + "protocol_id": 1350 + }, + "minecraft:entity.rabbit.death": { + "protocol_id": 1351 + }, + "minecraft:entity.rabbit.hurt": { + "protocol_id": 1352 + }, + "minecraft:entity.rabbit.jump": { + "protocol_id": 1353 + }, + "minecraft:entity.ravager.ambient": { + "protocol_id": 1355 + }, + "minecraft:entity.ravager.attack": { + "protocol_id": 1356 + }, + "minecraft:entity.ravager.celebrate": { + "protocol_id": 1357 + }, + "minecraft:entity.ravager.death": { + "protocol_id": 1358 + }, + "minecraft:entity.ravager.hurt": { + "protocol_id": 1359 + }, + "minecraft:entity.ravager.roar": { + "protocol_id": 1362 + }, + "minecraft:entity.ravager.step": { + "protocol_id": 1360 + }, + "minecraft:entity.ravager.stunned": { + "protocol_id": 1361 + }, + "minecraft:entity.salmon.ambient": { + "protocol_id": 1392 + }, + "minecraft:entity.salmon.death": { + "protocol_id": 1393 + }, + "minecraft:entity.salmon.flop": { + "protocol_id": 1394 + }, + "minecraft:entity.salmon.hurt": { + "protocol_id": 1395 + }, + "minecraft:entity.sheep.ambient": { + "protocol_id": 1438 + }, + "minecraft:entity.sheep.death": { + "protocol_id": 1439 + }, + "minecraft:entity.sheep.hurt": { + "protocol_id": 1440 + }, + "minecraft:entity.sheep.shear": { + "protocol_id": 1441 + }, + "minecraft:entity.sheep.step": { + "protocol_id": 1442 + }, + "minecraft:entity.shulker.ambient": { + "protocol_id": 1463 + }, + "minecraft:entity.shulker.close": { + "protocol_id": 1468 + }, + "minecraft:entity.shulker.death": { + "protocol_id": 1469 + }, + "minecraft:entity.shulker.hurt": { + "protocol_id": 1470 + }, + "minecraft:entity.shulker.hurt_closed": { + "protocol_id": 1471 + }, + "minecraft:entity.shulker.open": { + "protocol_id": 1472 + }, + "minecraft:entity.shulker.shoot": { + "protocol_id": 1473 + }, + "minecraft:entity.shulker.teleport": { + "protocol_id": 1474 + }, + "minecraft:entity.shulker_bullet.hit": { + "protocol_id": 1466 + }, + "minecraft:entity.shulker_bullet.hurt": { + "protocol_id": 1467 + }, + "minecraft:entity.silverfish.ambient": { + "protocol_id": 1475 + }, + "minecraft:entity.silverfish.death": { + "protocol_id": 1476 + }, + "minecraft:entity.silverfish.hurt": { + "protocol_id": 1477 + }, + "minecraft:entity.silverfish.step": { + "protocol_id": 1478 + }, + "minecraft:entity.skeleton.ambient": { + "protocol_id": 1479 + }, + "minecraft:entity.skeleton.converted_to_stray": { + "protocol_id": 1480 + }, + "minecraft:entity.skeleton.death": { + "protocol_id": 1481 + }, + "minecraft:entity.skeleton.hurt": { + "protocol_id": 1490 + }, + "minecraft:entity.skeleton.shoot": { + "protocol_id": 1491 + }, + "minecraft:entity.skeleton.step": { + "protocol_id": 1492 + }, + "minecraft:entity.skeleton_horse.ambient": { + "protocol_id": 1482 + }, + "minecraft:entity.skeleton_horse.ambient_water": { + "protocol_id": 1486 + }, + "minecraft:entity.skeleton_horse.death": { + "protocol_id": 1483 + }, + "minecraft:entity.skeleton_horse.gallop_water": { + "protocol_id": 1487 + }, + "minecraft:entity.skeleton_horse.hurt": { + "protocol_id": 1484 + }, + "minecraft:entity.skeleton_horse.jump_water": { + "protocol_id": 1488 + }, + "minecraft:entity.skeleton_horse.step_water": { + "protocol_id": 1489 + }, + "minecraft:entity.skeleton_horse.swim": { + "protocol_id": 1485 + }, + "minecraft:entity.slime.attack": { + "protocol_id": 1493 + }, + "minecraft:entity.slime.death": { + "protocol_id": 1494 + }, + "minecraft:entity.slime.death_small": { + "protocol_id": 1546 + }, + "minecraft:entity.slime.hurt": { + "protocol_id": 1495 + }, + "minecraft:entity.slime.hurt_small": { + "protocol_id": 1547 + }, + "minecraft:entity.slime.jump": { + "protocol_id": 1496 + }, + "minecraft:entity.slime.jump_small": { + "protocol_id": 1548 + }, + "minecraft:entity.slime.squish": { + "protocol_id": 1497 + }, + "minecraft:entity.slime.squish_small": { + "protocol_id": 1549 + }, + "minecraft:entity.small_sulfur_cube.death": { + "protocol_id": 1963 + }, + "minecraft:entity.small_sulfur_cube.eat": { + "protocol_id": 1967 + }, + "minecraft:entity.small_sulfur_cube.hurt": { + "protocol_id": 1964 + }, + "minecraft:entity.small_sulfur_cube.jump": { + "protocol_id": 1965 + }, + "minecraft:entity.small_sulfur_cube.squish": { + "protocol_id": 1966 + }, + "minecraft:entity.sniffer.death": { + "protocol_id": 1556 + }, + "minecraft:entity.sniffer.digging": { + "protocol_id": 1561 + }, + "minecraft:entity.sniffer.digging_stop": { + "protocol_id": 1562 + }, + "minecraft:entity.sniffer.drop_seed": { + "protocol_id": 1557 + }, + "minecraft:entity.sniffer.eat": { + "protocol_id": 1553 + }, + "minecraft:entity.sniffer.happy": { + "protocol_id": 1563 + }, + "minecraft:entity.sniffer.hurt": { + "protocol_id": 1555 + }, + "minecraft:entity.sniffer.idle": { + "protocol_id": 1554 + }, + "minecraft:entity.sniffer.scenting": { + "protocol_id": 1558 + }, + "minecraft:entity.sniffer.searching": { + "protocol_id": 1560 + }, + "minecraft:entity.sniffer.sniffing": { + "protocol_id": 1559 + }, + "minecraft:entity.sniffer.step": { + "protocol_id": 1552 + }, + "minecraft:entity.snow_golem.ambient": { + "protocol_id": 1570 + }, + "minecraft:entity.snow_golem.death": { + "protocol_id": 1571 + }, + "minecraft:entity.snow_golem.hurt": { + "protocol_id": 1572 + }, + "minecraft:entity.snow_golem.shear": { + "protocol_id": 1574 + }, + "minecraft:entity.snow_golem.shoot": { + "protocol_id": 1573 + }, + "minecraft:entity.snowball.throw": { + "protocol_id": 1567 + }, + "minecraft:entity.spider.ambient": { + "protocol_id": 1578 + }, + "minecraft:entity.spider.death": { + "protocol_id": 1579 + }, + "minecraft:entity.spider.hurt": { + "protocol_id": 1580 + }, + "minecraft:entity.spider.step": { + "protocol_id": 1581 + }, + "minecraft:entity.splash_potion.break": { + "protocol_id": 1582 + }, + "minecraft:entity.splash_potion.throw": { + "protocol_id": 1583 + }, + "minecraft:entity.squid.ambient": { + "protocol_id": 1592 + }, + "minecraft:entity.squid.death": { + "protocol_id": 1593 + }, + "minecraft:entity.squid.hurt": { + "protocol_id": 1594 + }, + "minecraft:entity.squid.squirt": { + "protocol_id": 1595 + }, + "minecraft:entity.stray.ambient": { + "protocol_id": 1605 + }, + "minecraft:entity.stray.death": { + "protocol_id": 1606 + }, + "minecraft:entity.stray.hurt": { + "protocol_id": 1607 + }, + "minecraft:entity.stray.step": { + "protocol_id": 1608 + }, + "minecraft:entity.strider.ambient": { + "protocol_id": 1537 + }, + "minecraft:entity.strider.death": { + "protocol_id": 1540 + }, + "minecraft:entity.strider.eat": { + "protocol_id": 1544 + }, + "minecraft:entity.strider.happy": { + "protocol_id": 1538 + }, + "minecraft:entity.strider.hurt": { + "protocol_id": 1541 + }, + "minecraft:entity.strider.retreat": { + "protocol_id": 1539 + }, + "minecraft:entity.strider.saddle": { + "protocol_id": 1545 + }, + "minecraft:entity.strider.step": { + "protocol_id": 1542 + }, + "minecraft:entity.strider.step_lava": { + "protocol_id": 1543 + }, + "minecraft:entity.sulfur_cube.absorb": { + "protocol_id": 1931 + }, + "minecraft:entity.sulfur_cube.bounce": { + "protocol_id": 1932 + }, + "minecraft:entity.sulfur_cube.bouncy.hit": { + "protocol_id": 1939 + }, + "minecraft:entity.sulfur_cube.bouncy.push": { + "protocol_id": 1940 + }, + "minecraft:entity.sulfur_cube.death": { + "protocol_id": 1933 + }, + "minecraft:entity.sulfur_cube.eject": { + "protocol_id": 1934 + }, + "minecraft:entity.sulfur_cube.explosive.hit": { + "protocol_id": 1957 + }, + "minecraft:entity.sulfur_cube.explosive.push": { + "protocol_id": 1958 + }, + "minecraft:entity.sulfur_cube.fast_flat.hit": { + "protocol_id": 1945 + }, + "minecraft:entity.sulfur_cube.fast_flat.push": { + "protocol_id": 1946 + }, + "minecraft:entity.sulfur_cube.fast_sliding.hit": { + "protocol_id": 1949 + }, + "minecraft:entity.sulfur_cube.fast_sliding.push": { + "protocol_id": 1950 + }, + "minecraft:entity.sulfur_cube.high_resistance.hit": { + "protocol_id": 1955 + }, + "minecraft:entity.sulfur_cube.high_resistance.push": { + "protocol_id": 1956 + }, + "minecraft:entity.sulfur_cube.hot.hit": { + "protocol_id": 1959 + }, + "minecraft:entity.sulfur_cube.hot.push": { + "protocol_id": 1960 + }, + "minecraft:entity.sulfur_cube.hurt": { + "protocol_id": 1935 + }, + "minecraft:entity.sulfur_cube.jump": { + "protocol_id": 1936 + }, + "minecraft:entity.sulfur_cube.light.hit": { + "protocol_id": 1947 + }, + "minecraft:entity.sulfur_cube.light.push": { + "protocol_id": 1948 + }, + "minecraft:entity.sulfur_cube.regular.hit": { + "protocol_id": 1937 + }, + "minecraft:entity.sulfur_cube.regular.push": { + "protocol_id": 1938 + }, + "minecraft:entity.sulfur_cube.slow_bouncy.hit": { + "protocol_id": 1941 + }, + "minecraft:entity.sulfur_cube.slow_bouncy.push": { + "protocol_id": 1942 + }, + "minecraft:entity.sulfur_cube.slow_flat.hit": { + "protocol_id": 1943 + }, + "minecraft:entity.sulfur_cube.slow_flat.push": { + "protocol_id": 1944 + }, + "minecraft:entity.sulfur_cube.slow_sliding.hit": { + "protocol_id": 1951 + }, + "minecraft:entity.sulfur_cube.slow_sliding.push": { + "protocol_id": 1952 + }, + "minecraft:entity.sulfur_cube.squish": { + "protocol_id": 1961 + }, + "minecraft:entity.sulfur_cube.sticky.hit": { + "protocol_id": 1953 + }, + "minecraft:entity.sulfur_cube.sticky.push": { + "protocol_id": 1954 + }, + "minecraft:entity.tadpole.death": { + "protocol_id": 1618 + }, + "minecraft:entity.tadpole.flop": { + "protocol_id": 1619 + }, + "minecraft:entity.tadpole.grow_up": { + "protocol_id": 1620 + }, + "minecraft:entity.tadpole.hurt": { + "protocol_id": 1621 + }, + "minecraft:entity.tnt.primed": { + "protocol_id": 1623 + }, + "minecraft:entity.tropical_fish.ambient": { + "protocol_id": 1637 + }, + "minecraft:entity.tropical_fish.death": { + "protocol_id": 1638 + }, + "minecraft:entity.tropical_fish.flop": { + "protocol_id": 1639 + }, + "minecraft:entity.tropical_fish.hurt": { + "protocol_id": 1640 + }, + "minecraft:entity.turtle.ambient_land": { + "protocol_id": 1656 + }, + "minecraft:entity.turtle.death": { + "protocol_id": 1657 + }, + "minecraft:entity.turtle.death_baby": { + "protocol_id": 1658 + }, + "minecraft:entity.turtle.egg_break": { + "protocol_id": 1659 + }, + "minecraft:entity.turtle.egg_crack": { + "protocol_id": 1660 + }, + "minecraft:entity.turtle.egg_hatch": { + "protocol_id": 1661 + }, + "minecraft:entity.turtle.hurt": { + "protocol_id": 1662 + }, + "minecraft:entity.turtle.hurt_baby": { + "protocol_id": 1663 + }, + "minecraft:entity.turtle.lay_egg": { + "protocol_id": 1664 + }, + "minecraft:entity.turtle.shamble": { + "protocol_id": 1665 + }, + "minecraft:entity.turtle.shamble_baby": { + "protocol_id": 1666 + }, + "minecraft:entity.turtle.swim": { + "protocol_id": 1667 + }, + "minecraft:entity.vex.ambient": { + "protocol_id": 1691 + }, + "minecraft:entity.vex.charge": { + "protocol_id": 1692 + }, + "minecraft:entity.vex.death": { + "protocol_id": 1693 + }, + "minecraft:entity.vex.hurt": { + "protocol_id": 1694 + }, + "minecraft:entity.villager.ambient": { + "protocol_id": 1695 + }, + "minecraft:entity.villager.celebrate": { + "protocol_id": 1696 + }, + "minecraft:entity.villager.death": { + "protocol_id": 1697 + }, + "minecraft:entity.villager.hurt": { + "protocol_id": 1698 + }, + "minecraft:entity.villager.no": { + "protocol_id": 1699 + }, + "minecraft:entity.villager.trade": { + "protocol_id": 1700 + }, + "minecraft:entity.villager.work_armorer": { + "protocol_id": 1702 + }, + "minecraft:entity.villager.work_butcher": { + "protocol_id": 1703 + }, + "minecraft:entity.villager.work_cartographer": { + "protocol_id": 1704 + }, + "minecraft:entity.villager.work_cleric": { + "protocol_id": 1705 + }, + "minecraft:entity.villager.work_farmer": { + "protocol_id": 1706 + }, + "minecraft:entity.villager.work_fisherman": { + "protocol_id": 1707 + }, + "minecraft:entity.villager.work_fletcher": { + "protocol_id": 1708 + }, + "minecraft:entity.villager.work_leatherworker": { + "protocol_id": 1709 + }, + "minecraft:entity.villager.work_librarian": { + "protocol_id": 1710 + }, + "minecraft:entity.villager.work_mason": { + "protocol_id": 1711 + }, + "minecraft:entity.villager.work_shepherd": { + "protocol_id": 1712 + }, + "minecraft:entity.villager.work_toolsmith": { + "protocol_id": 1713 + }, + "minecraft:entity.villager.work_weaponsmith": { + "protocol_id": 1714 + }, + "minecraft:entity.villager.yes": { + "protocol_id": 1701 + }, + "minecraft:entity.vindicator.ambient": { + "protocol_id": 1715 + }, + "minecraft:entity.vindicator.celebrate": { + "protocol_id": 1716 + }, + "minecraft:entity.vindicator.death": { + "protocol_id": 1717 + }, + "minecraft:entity.vindicator.hurt": { + "protocol_id": 1718 + }, + "minecraft:entity.wandering_trader.ambient": { + "protocol_id": 1725 + }, + "minecraft:entity.wandering_trader.death": { + "protocol_id": 1726 + }, + "minecraft:entity.wandering_trader.disappeared": { + "protocol_id": 1727 + }, + "minecraft:entity.wandering_trader.drink_milk": { + "protocol_id": 1728 + }, + "minecraft:entity.wandering_trader.drink_potion": { + "protocol_id": 1729 + }, + "minecraft:entity.wandering_trader.hurt": { + "protocol_id": 1730 + }, + "minecraft:entity.wandering_trader.no": { + "protocol_id": 1731 + }, + "minecraft:entity.wandering_trader.reappeared": { + "protocol_id": 1732 + }, + "minecraft:entity.wandering_trader.trade": { + "protocol_id": 1733 + }, + "minecraft:entity.wandering_trader.yes": { + "protocol_id": 1734 + }, + "minecraft:entity.warden.agitated": { + "protocol_id": 1735 + }, + "minecraft:entity.warden.ambient": { + "protocol_id": 1736 + }, + "minecraft:entity.warden.angry": { + "protocol_id": 1737 + }, + "minecraft:entity.warden.attack_impact": { + "protocol_id": 1738 + }, + "minecraft:entity.warden.death": { + "protocol_id": 1739 + }, + "minecraft:entity.warden.dig": { + "protocol_id": 1740 + }, + "minecraft:entity.warden.emerge": { + "protocol_id": 1741 + }, + "minecraft:entity.warden.heartbeat": { + "protocol_id": 1742 + }, + "minecraft:entity.warden.hurt": { + "protocol_id": 1743 + }, + "minecraft:entity.warden.listening": { + "protocol_id": 1744 + }, + "minecraft:entity.warden.listening_angry": { + "protocol_id": 1745 + }, + "minecraft:entity.warden.nearby_close": { + "protocol_id": 1746 + }, + "minecraft:entity.warden.nearby_closer": { + "protocol_id": 1747 + }, + "minecraft:entity.warden.nearby_closest": { + "protocol_id": 1748 + }, + "minecraft:entity.warden.roar": { + "protocol_id": 1749 + }, + "minecraft:entity.warden.sniff": { + "protocol_id": 1750 + }, + "minecraft:entity.warden.sonic_boom": { + "protocol_id": 1751 + }, + "minecraft:entity.warden.sonic_charge": { + "protocol_id": 1752 + }, + "minecraft:entity.warden.step": { + "protocol_id": 1753 + }, + "minecraft:entity.warden.tendril_clicks": { + "protocol_id": 1754 + }, + "minecraft:entity.wind_charge.throw": { + "protocol_id": 1773 + }, + "minecraft:entity.wind_charge.wind_burst": { + "protocol_id": 1772 + }, + "minecraft:entity.witch.ambient": { + "protocol_id": 1774 + }, + "minecraft:entity.witch.celebrate": { + "protocol_id": 1775 + }, + "minecraft:entity.witch.death": { + "protocol_id": 1776 + }, + "minecraft:entity.witch.drink": { + "protocol_id": 1777 + }, + "minecraft:entity.witch.hurt": { + "protocol_id": 1778 + }, + "minecraft:entity.witch.throw": { + "protocol_id": 1779 + }, + "minecraft:entity.wither.ambient": { + "protocol_id": 1780 + }, + "minecraft:entity.wither.break_block": { + "protocol_id": 1781 + }, + "minecraft:entity.wither.death": { + "protocol_id": 1782 + }, + "minecraft:entity.wither.hurt": { + "protocol_id": 1783 + }, + "minecraft:entity.wither.shoot": { + "protocol_id": 1784 + }, + "minecraft:entity.wither.spawn": { + "protocol_id": 1789 + }, + "minecraft:entity.wither_skeleton.ambient": { + "protocol_id": 1785 + }, + "minecraft:entity.wither_skeleton.death": { + "protocol_id": 1786 + }, + "minecraft:entity.wither_skeleton.hurt": { + "protocol_id": 1787 + }, + "minecraft:entity.wither_skeleton.step": { + "protocol_id": 1788 + }, + "minecraft:entity.wolf.ambient": { + "protocol_id": 1803 + }, + "minecraft:entity.wolf.death": { + "protocol_id": 1804 + }, + "minecraft:entity.wolf.growl": { + "protocol_id": 1805 + }, + "minecraft:entity.wolf.hurt": { + "protocol_id": 1806 + }, + "minecraft:entity.wolf.pant": { + "protocol_id": 1807 + }, + "minecraft:entity.wolf.shake": { + "protocol_id": 1799 + }, + "minecraft:entity.wolf.step": { + "protocol_id": 1800 + }, + "minecraft:entity.wolf.whine": { + "protocol_id": 1808 + }, + "minecraft:entity.wolf_angry.ambient": { + "protocol_id": 1821 + }, + "minecraft:entity.wolf_angry.death": { + "protocol_id": 1822 + }, + "minecraft:entity.wolf_angry.growl": { + "protocol_id": 1823 + }, + "minecraft:entity.wolf_angry.hurt": { + "protocol_id": 1824 + }, + "minecraft:entity.wolf_angry.pant": { + "protocol_id": 1825 + }, + "minecraft:entity.wolf_angry.whine": { + "protocol_id": 1826 + }, + "minecraft:entity.wolf_big.ambient": { + "protocol_id": 1833 + }, + "minecraft:entity.wolf_big.death": { + "protocol_id": 1834 + }, + "minecraft:entity.wolf_big.growl": { + "protocol_id": 1835 + }, + "minecraft:entity.wolf_big.hurt": { + "protocol_id": 1836 + }, + "minecraft:entity.wolf_big.pant": { + "protocol_id": 1837 + }, + "minecraft:entity.wolf_big.whine": { + "protocol_id": 1838 + }, + "minecraft:entity.wolf_cute.ambient": { + "protocol_id": 1839 + }, + "minecraft:entity.wolf_cute.death": { + "protocol_id": 1840 + }, + "minecraft:entity.wolf_cute.growl": { + "protocol_id": 1841 + }, + "minecraft:entity.wolf_cute.hurt": { + "protocol_id": 1842 + }, + "minecraft:entity.wolf_cute.pant": { + "protocol_id": 1843 + }, + "minecraft:entity.wolf_cute.whine": { + "protocol_id": 1844 + }, + "minecraft:entity.wolf_grumpy.ambient": { + "protocol_id": 1827 + }, + "minecraft:entity.wolf_grumpy.death": { + "protocol_id": 1828 + }, + "minecraft:entity.wolf_grumpy.growl": { + "protocol_id": 1829 + }, + "minecraft:entity.wolf_grumpy.hurt": { + "protocol_id": 1830 + }, + "minecraft:entity.wolf_grumpy.pant": { + "protocol_id": 1831 + }, + "minecraft:entity.wolf_grumpy.whine": { + "protocol_id": 1832 + }, + "minecraft:entity.wolf_puglin.ambient": { + "protocol_id": 1809 + }, + "minecraft:entity.wolf_puglin.death": { + "protocol_id": 1810 + }, + "minecraft:entity.wolf_puglin.growl": { + "protocol_id": 1811 + }, + "minecraft:entity.wolf_puglin.hurt": { + "protocol_id": 1812 + }, + "minecraft:entity.wolf_puglin.pant": { + "protocol_id": 1813 + }, + "minecraft:entity.wolf_puglin.whine": { + "protocol_id": 1814 + }, + "minecraft:entity.wolf_sad.ambient": { + "protocol_id": 1815 + }, + "minecraft:entity.wolf_sad.death": { + "protocol_id": 1816 + }, + "minecraft:entity.wolf_sad.growl": { + "protocol_id": 1817 + }, + "minecraft:entity.wolf_sad.hurt": { + "protocol_id": 1818 + }, + "minecraft:entity.wolf_sad.pant": { + "protocol_id": 1819 + }, + "minecraft:entity.wolf_sad.whine": { + "protocol_id": 1820 + }, + "minecraft:entity.zoglin.ambient": { + "protocol_id": 1863 + }, + "minecraft:entity.zoglin.angry": { + "protocol_id": 1864 + }, + "minecraft:entity.zoglin.attack": { + "protocol_id": 1865 + }, + "minecraft:entity.zoglin.death": { + "protocol_id": 1866 + }, + "minecraft:entity.zoglin.hurt": { + "protocol_id": 1867 + }, + "minecraft:entity.zoglin.step": { + "protocol_id": 1868 + }, + "minecraft:entity.zombie.ambient": { + "protocol_id": 1869 + }, + "minecraft:entity.zombie.attack_iron_door": { + "protocol_id": 1871 + }, + "minecraft:entity.zombie.attack_wooden_door": { + "protocol_id": 1870 + }, + "minecraft:entity.zombie.break_wooden_door": { + "protocol_id": 1872 + }, + "minecraft:entity.zombie.converted_to_drowned": { + "protocol_id": 1873 + }, + "minecraft:entity.zombie.death": { + "protocol_id": 1874 + }, + "minecraft:entity.zombie.destroy_egg": { + "protocol_id": 1875 + }, + "minecraft:entity.zombie.hurt": { + "protocol_id": 1881 + }, + "minecraft:entity.zombie.infect": { + "protocol_id": 1882 + }, + "minecraft:entity.zombie.step": { + "protocol_id": 1899 + }, + "minecraft:entity.zombie_horse.ambient": { + "protocol_id": 1876 + }, + "minecraft:entity.zombie_horse.angry": { + "protocol_id": 1877 + }, + "minecraft:entity.zombie_horse.death": { + "protocol_id": 1878 + }, + "minecraft:entity.zombie_horse.eat": { + "protocol_id": 1879 + }, + "minecraft:entity.zombie_horse.hurt": { + "protocol_id": 1880 + }, + "minecraft:entity.zombie_nautilus.ambient": { + "protocol_id": 1883 + }, + "minecraft:entity.zombie_nautilus.ambient_land": { + "protocol_id": 1884 + }, + "minecraft:entity.zombie_nautilus.dash": { + "protocol_id": 1885 + }, + "minecraft:entity.zombie_nautilus.dash_land": { + "protocol_id": 1886 + }, + "minecraft:entity.zombie_nautilus.dash_ready": { + "protocol_id": 1887 + }, + "minecraft:entity.zombie_nautilus.dash_ready_land": { + "protocol_id": 1888 + }, + "minecraft:entity.zombie_nautilus.death": { + "protocol_id": 1889 + }, + "minecraft:entity.zombie_nautilus.death_land": { + "protocol_id": 1890 + }, + "minecraft:entity.zombie_nautilus.eat": { + "protocol_id": 1891 + }, + "minecraft:entity.zombie_nautilus.hurt": { + "protocol_id": 1892 + }, + "minecraft:entity.zombie_nautilus.hurt_land": { + "protocol_id": 1893 + }, + "minecraft:entity.zombie_nautilus.swim": { + "protocol_id": 1894 + }, + "minecraft:entity.zombie_villager.ambient": { + "protocol_id": 1900 + }, + "minecraft:entity.zombie_villager.converted": { + "protocol_id": 1901 + }, + "minecraft:entity.zombie_villager.cure": { + "protocol_id": 1902 + }, + "minecraft:entity.zombie_villager.death": { + "protocol_id": 1903 + }, + "minecraft:entity.zombie_villager.hurt": { + "protocol_id": 1904 + }, + "minecraft:entity.zombie_villager.step": { + "protocol_id": 1905 + }, + "minecraft:entity.zombified_piglin.ambient": { + "protocol_id": 1895 + }, + "minecraft:entity.zombified_piglin.angry": { + "protocol_id": 1896 + }, + "minecraft:entity.zombified_piglin.death": { + "protocol_id": 1897 + }, + "minecraft:entity.zombified_piglin.hurt": { + "protocol_id": 1898 + }, + "minecraft:event.mob_effect.bad_omen": { + "protocol_id": 1906 + }, + "minecraft:event.mob_effect.raid_omen": { + "protocol_id": 1908 + }, + "minecraft:event.mob_effect.trial_omen": { + "protocol_id": 1907 + }, + "minecraft:event.raid.horn": { + "protocol_id": 1354 + }, + "minecraft:intentionally_empty": { + "protocol_id": 1115 + }, + "minecraft:item.armor.equip_chain": { + "protocol_id": 67 + }, + "minecraft:item.armor.equip_copper": { + "protocol_id": 74 + }, + "minecraft:item.armor.equip_diamond": { + "protocol_id": 68 + }, + "minecraft:item.armor.equip_elytra": { + "protocol_id": 69 + }, + "minecraft:item.armor.equip_generic": { + "protocol_id": 70 + }, + "minecraft:item.armor.equip_gold": { + "protocol_id": 71 + }, + "minecraft:item.armor.equip_iron": { + "protocol_id": 72 + }, + "minecraft:item.armor.equip_leather": { + "protocol_id": 73 + }, + "minecraft:item.armor.equip_nautilus": { + "protocol_id": 79 + }, + "minecraft:item.armor.equip_netherite": { + "protocol_id": 75 + }, + "minecraft:item.armor.equip_turtle": { + "protocol_id": 76 + }, + "minecraft:item.armor.equip_wolf": { + "protocol_id": 77 + }, + "minecraft:item.armor.unequip_nautilus": { + "protocol_id": 80 + }, + "minecraft:item.armor.unequip_wolf": { + "protocol_id": 78 + }, + "minecraft:item.axe.scrape": { + "protocol_id": 89 + }, + "minecraft:item.axe.strip": { + "protocol_id": 88 + }, + "minecraft:item.axe.wax_off": { + "protocol_id": 90 + }, + "minecraft:item.bone_meal.use": { + "protocol_id": 191 + }, + "minecraft:item.book.page_turn": { + "protocol_id": 192 + }, + "minecraft:item.book.put": { + "protocol_id": 193 + }, + "minecraft:item.bottle.empty": { + "protocol_id": 195 + }, + "minecraft:item.bottle.fill": { + "protocol_id": 196 + }, + "minecraft:item.bottle.fill_dragonbreath": { + "protocol_id": 197 + }, + "minecraft:item.brush.brushing.generic": { + "protocol_id": 212 + }, + "minecraft:item.brush.brushing.gravel": { + "protocol_id": 214 + }, + "minecraft:item.brush.brushing.gravel.complete": { + "protocol_id": 216 + }, + "minecraft:item.brush.brushing.sand": { + "protocol_id": 213 + }, + "minecraft:item.brush.brushing.sand.complete": { + "protocol_id": 215 + }, + "minecraft:item.bucket.empty": { + "protocol_id": 223 + }, + "minecraft:item.bucket.empty_axolotl": { + "protocol_id": 224 + }, + "minecraft:item.bucket.empty_fish": { + "protocol_id": 225 + }, + "minecraft:item.bucket.empty_lava": { + "protocol_id": 226 + }, + "minecraft:item.bucket.empty_powder_snow": { + "protocol_id": 227 + }, + "minecraft:item.bucket.empty_sulfur_cube": { + "protocol_id": 228 + }, + "minecraft:item.bucket.empty_tadpole": { + "protocol_id": 229 + }, + "minecraft:item.bucket.fill": { + "protocol_id": 230 + }, + "minecraft:item.bucket.fill_axolotl": { + "protocol_id": 231 + }, + "minecraft:item.bucket.fill_fish": { + "protocol_id": 232 + }, + "minecraft:item.bucket.fill_lava": { + "protocol_id": 233 + }, + "minecraft:item.bucket.fill_powder_snow": { + "protocol_id": 234 + }, + "minecraft:item.bucket.fill_sulfur_cube": { + "protocol_id": 235 + }, + "minecraft:item.bucket.fill_tadpole": { + "protocol_id": 236 + }, + "minecraft:item.bundle.drop_contents": { + "protocol_id": 237 + }, + "minecraft:item.bundle.insert": { + "protocol_id": 238 + }, + "minecraft:item.bundle.insert_fail": { + "protocol_id": 239 + }, + "minecraft:item.bundle.remove_one": { + "protocol_id": 240 + }, + "minecraft:item.chorus_fruit.teleport": { + "protocol_id": 373 + }, + "minecraft:item.crop.plant": { + "protocol_id": 483 + }, + "minecraft:item.crossbow.hit": { + "protocol_id": 484 + }, + "minecraft:item.crossbow.loading_end": { + "protocol_id": 485 + }, + "minecraft:item.crossbow.loading_middle": { + "protocol_id": 486 + }, + "minecraft:item.crossbow.loading_start": { + "protocol_id": 487 + }, + "minecraft:item.crossbow.quick_charge_1": { + "protocol_id": 488 + }, + "minecraft:item.crossbow.quick_charge_2": { + "protocol_id": 489 + }, + "minecraft:item.crossbow.quick_charge_3": { + "protocol_id": 490 + }, + "minecraft:item.crossbow.shoot": { + "protocol_id": 491 + }, + "minecraft:item.dye.use": { + "protocol_id": 571 + }, + "minecraft:item.elytra.flying": { + "protocol_id": 581 + }, + "minecraft:item.firecharge.use": { + "protocol_id": 626 + }, + "minecraft:item.flintandsteel.use": { + "protocol_id": 642 + }, + "minecraft:item.glow_ink_sac.use": { + "protocol_id": 725 + }, + "minecraft:item.goat_horn.sound.0": { + "protocol_id": 841 + }, + "minecraft:item.goat_horn.sound.1": { + "protocol_id": 842 + }, + "minecraft:item.goat_horn.sound.2": { + "protocol_id": 843 + }, + "minecraft:item.goat_horn.sound.3": { + "protocol_id": 844 + }, + "minecraft:item.goat_horn.sound.4": { + "protocol_id": 845 + }, + "minecraft:item.goat_horn.sound.5": { + "protocol_id": 846 + }, + "minecraft:item.goat_horn.sound.6": { + "protocol_id": 847 + }, + "minecraft:item.goat_horn.sound.7": { + "protocol_id": 848 + }, + "minecraft:item.golden_dandelion.unuse": { + "protocol_id": 754 + }, + "minecraft:item.golden_dandelion.use": { + "protocol_id": 753 + }, + "minecraft:item.hoe.till": { + "protocol_id": 824 + }, + "minecraft:item.honey_bottle.drink": { + "protocol_id": 840 + }, + "minecraft:item.honeycomb.wax_on": { + "protocol_id": 839 + }, + "minecraft:item.horse_armor.unequip": { + "protocol_id": 854 + }, + "minecraft:item.ink_sac.use": { + "protocol_id": 889 + }, + "minecraft:item.lead.break": { + "protocol_id": 934 + }, + "minecraft:item.lead.tied": { + "protocol_id": 933 + }, + "minecraft:item.lead.untied": { + "protocol_id": 932 + }, + "minecraft:item.llama_carpet.unequip": { + "protocol_id": 948 + }, + "minecraft:item.lodestone_compass.lock": { + "protocol_id": 955 + }, + "minecraft:item.mace.smash_air": { + "protocol_id": 959 + }, + "minecraft:item.mace.smash_ground": { + "protocol_id": 960 + }, + "minecraft:item.mace.smash_ground_heavy": { + "protocol_id": 961 + }, + "minecraft:item.nautilus_saddle_equip": { + "protocol_id": 1911 + }, + "minecraft:item.nautilus_saddle_underwater_equip": { + "protocol_id": 1910 + }, + "minecraft:item.nether_wart.plant": { + "protocol_id": 1099 + }, + "minecraft:item.ominous_bottle.dispose": { + "protocol_id": 1190 + }, + "minecraft:item.saddle.unequip": { + "protocol_id": 1909 + }, + "minecraft:item.shears.snip": { + "protocol_id": 1443 + }, + "minecraft:item.shield.block": { + "protocol_id": 1455 + }, + "minecraft:item.shield.break": { + "protocol_id": 1456 + }, + "minecraft:item.shovel.flatten": { + "protocol_id": 1462 + }, + "minecraft:item.spear.attack": { + "protocol_id": 1528 + }, + "minecraft:item.spear.hit": { + "protocol_id": 1527 + }, + "minecraft:item.spear.lunge_1": { + "protocol_id": 956 + }, + "minecraft:item.spear.lunge_2": { + "protocol_id": 957 + }, + "minecraft:item.spear.lunge_3": { + "protocol_id": 958 + }, + "minecraft:item.spear.use": { + "protocol_id": 1526 + }, + "minecraft:item.spear_wood.attack": { + "protocol_id": 1531 + }, + "minecraft:item.spear_wood.hit": { + "protocol_id": 1530 + }, + "minecraft:item.spear_wood.use": { + "protocol_id": 1529 + }, + "minecraft:item.spyglass.stop_using": { + "protocol_id": 1591 + }, + "minecraft:item.spyglass.use": { + "protocol_id": 1590 + }, + "minecraft:item.totem.use": { + "protocol_id": 1624 + }, + "minecraft:item.trident.hit": { + "protocol_id": 1625 + }, + "minecraft:item.trident.hit_ground": { + "protocol_id": 1626 + }, + "minecraft:item.trident.return": { + "protocol_id": 1627 + }, + "minecraft:item.trident.riptide_1": { + "protocol_id": 1628 + }, + "minecraft:item.trident.riptide_2": { + "protocol_id": 1629 + }, + "minecraft:item.trident.riptide_3": { + "protocol_id": 1630 + }, + "minecraft:item.trident.throw": { + "protocol_id": 1631 + }, + "minecraft:item.trident.thunder": { + "protocol_id": 1632 + }, + "minecraft:item.wolf_armor.break": { + "protocol_id": 1790 + }, + "minecraft:item.wolf_armor.crack": { + "protocol_id": 1792 + }, + "minecraft:item.wolf_armor.damage": { + "protocol_id": 1793 + }, + "minecraft:item.wolf_armor.repair": { + "protocol_id": 1794 + }, + "minecraft:music.creative": { + "protocol_id": 1027 + }, + "minecraft:music.credits": { + "protocol_id": 1028 + }, + "minecraft:music.dragon": { + "protocol_id": 1051 + }, + "minecraft:music.end": { + "protocol_id": 1052 + }, + "minecraft:music.game": { + "protocol_id": 1053 + }, + "minecraft:music.menu": { + "protocol_id": 1054 + }, + "minecraft:music.nether.basalt_deltas": { + "protocol_id": 1055 + }, + "minecraft:music.nether.crimson_forest": { + "protocol_id": 1056 + }, + "minecraft:music.nether.nether_wastes": { + "protocol_id": 1067 + }, + "minecraft:music.nether.soul_sand_valley": { + "protocol_id": 1070 + }, + "minecraft:music.nether.warped_forest": { + "protocol_id": 1072 + }, + "minecraft:music.overworld.badlands": { + "protocol_id": 1075 + }, + "minecraft:music.overworld.bamboo_jungle": { + "protocol_id": 1078 + }, + "minecraft:music.overworld.cherry_grove": { + "protocol_id": 1066 + }, + "minecraft:music.overworld.deep_dark": { + "protocol_id": 1057 + }, + "minecraft:music.overworld.desert": { + "protocol_id": 1074 + }, + "minecraft:music.overworld.dripstone_caves": { + "protocol_id": 1058 + }, + "minecraft:music.overworld.flower_forest": { + "protocol_id": 1073 + }, + "minecraft:music.overworld.forest": { + "protocol_id": 1063 + }, + "minecraft:music.overworld.frozen_peaks": { + "protocol_id": 1068 + }, + "minecraft:music.overworld.grove": { + "protocol_id": 1059 + }, + "minecraft:music.overworld.jagged_peaks": { + "protocol_id": 1060 + }, + "minecraft:music.overworld.jungle": { + "protocol_id": 1076 + }, + "minecraft:music.overworld.lush_caves": { + "protocol_id": 1061 + }, + "minecraft:music.overworld.meadow": { + "protocol_id": 1065 + }, + "minecraft:music.overworld.old_growth_taiga": { + "protocol_id": 1064 + }, + "minecraft:music.overworld.snowy_slopes": { + "protocol_id": 1069 + }, + "minecraft:music.overworld.sparse_jungle": { + "protocol_id": 1077 + }, + "minecraft:music.overworld.stony_peaks": { + "protocol_id": 1071 + }, + "minecraft:music.overworld.sulfur_caves": { + "protocol_id": 1079 + }, + "minecraft:music.overworld.swamp": { + "protocol_id": 1062 + }, + "minecraft:music.under_water": { + "protocol_id": 1080 + }, + "minecraft:music_disc.11": { + "protocol_id": 1030 + }, + "minecraft:music_disc.13": { + "protocol_id": 1031 + }, + "minecraft:music_disc.5": { + "protocol_id": 1029 + }, + "minecraft:music_disc.blocks": { + "protocol_id": 1032 + }, + "minecraft:music_disc.bounce": { + "protocol_id": 1033 + }, + "minecraft:music_disc.cat": { + "protocol_id": 1034 + }, + "minecraft:music_disc.chirp": { + "protocol_id": 1035 + }, + "minecraft:music_disc.creator": { + "protocol_id": 1047 + }, + "minecraft:music_disc.creator_music_box": { + "protocol_id": 1048 + }, + "minecraft:music_disc.far": { + "protocol_id": 1036 + }, + "minecraft:music_disc.lava_chicken": { + "protocol_id": 1037 + }, + "minecraft:music_disc.mall": { + "protocol_id": 1038 + }, + "minecraft:music_disc.mellohi": { + "protocol_id": 1039 + }, + "minecraft:music_disc.otherside": { + "protocol_id": 1045 + }, + "minecraft:music_disc.pigstep": { + "protocol_id": 1040 + }, + "minecraft:music_disc.precipice": { + "protocol_id": 1049 + }, + "minecraft:music_disc.relic": { + "protocol_id": 1046 + }, + "minecraft:music_disc.stal": { + "protocol_id": 1041 + }, + "minecraft:music_disc.strad": { + "protocol_id": 1042 + }, + "minecraft:music_disc.tears": { + "protocol_id": 1050 + }, + "minecraft:music_disc.wait": { + "protocol_id": 1043 + }, + "minecraft:music_disc.ward": { + "protocol_id": 1044 + }, + "minecraft:particle.soul_escape": { + "protocol_id": 1520 + }, + "minecraft:ui.button.click": { + "protocol_id": 1668 + }, + "minecraft:ui.cartography_table.take_result": { + "protocol_id": 1671 + }, + "minecraft:ui.hud.bubble_pop": { + "protocol_id": 222 + }, + "minecraft:ui.loom.select_pattern": { + "protocol_id": 1669 + }, + "minecraft:ui.loom.take_result": { + "protocol_id": 1670 + }, + "minecraft:ui.stonecutter.select_recipe": { + "protocol_id": 1673 + }, + "minecraft:ui.stonecutter.take_result": { + "protocol_id": 1672 + }, + "minecraft:ui.toast.challenge_complete": { + "protocol_id": 1674 + }, + "minecraft:ui.toast.in": { + "protocol_id": 1675 + }, + "minecraft:ui.toast.out": { + "protocol_id": 1676 + }, + "minecraft:weather.end_flash": { + "protocol_id": 1758 + }, + "minecraft:weather.rain": { + "protocol_id": 1759 + }, + "minecraft:weather.rain.above": { + "protocol_id": 1760 + } + }, + "protocol_id": 1 + }, + "minecraft:spawn_condition_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 2 + }, + "minecraft:moon_brightness": { + "protocol_id": 1 + }, + "minecraft:structure": { + "protocol_id": 0 + } + }, + "protocol_id": 84 + }, + "minecraft:stat_type": { + "entries": { + "minecraft:broken": { + "protocol_id": 3 + }, + "minecraft:crafted": { + "protocol_id": 1 + }, + "minecraft:custom": { + "protocol_id": 8 + }, + "minecraft:dropped": { + "protocol_id": 5 + }, + "minecraft:killed": { + "protocol_id": 6 + }, + "minecraft:killed_by": { + "protocol_id": 7 + }, + "minecraft:mined": { + "protocol_id": 0 + }, + "minecraft:picked_up": { + "protocol_id": 4 + }, + "minecraft:used": { + "protocol_id": 2 + } + }, + "protocol_id": 22 + }, + "minecraft:test_environment_definition_type": { + "entries": { + "minecraft:all_of": { + "protocol_id": 0 + }, + "minecraft:clock_time": { + "protocol_id": 1 + }, + "minecraft:difficulty": { + "protocol_id": 2 + }, + "minecraft:function": { + "protocol_id": 3 + }, + "minecraft:game_rules": { + "protocol_id": 4 + }, + "minecraft:timeline_attributes": { + "protocol_id": 5 + }, + "minecraft:weather": { + "protocol_id": 6 + } + }, + "protocol_id": 82 + }, + "minecraft:test_function": { + "entries": { + "minecraft:always_pass": { + "protocol_id": 0 + } + }, + "protocol_id": 94 + }, + "minecraft:test_instance_type": { + "entries": { + "minecraft:block_based": { + "protocol_id": 0 + }, + "minecraft:function": { + "protocol_id": 1 + } + }, + "protocol_id": 83 + }, + "minecraft:ticket_type": { + "entries": { + "minecraft:dragon": { + "protocol_id": 2 + }, + "minecraft:ender_pearl": { + "protocol_id": 7 + }, + "minecraft:forced": { + "protocol_id": 5 + }, + "minecraft:player_loading": { + "protocol_id": 3 + }, + "minecraft:player_simulation": { + "protocol_id": 4 + }, + "minecraft:player_spawn": { + "protocol_id": 0 + }, + "minecraft:portal": { + "protocol_id": 6 + }, + "minecraft:spawn_search": { + "protocol_id": 1 + }, + "minecraft:unknown": { + "protocol_id": 8 + } + }, + "protocol_id": 79 + }, + "minecraft:trigger_type": { + "entries": { + "minecraft:allay_drop_item_on_block": { + "protocol_id": 53 + }, + "minecraft:any_block_use": { + "protocol_id": 41 + }, + "minecraft:avoid_vibration": { + "protocol_id": 54 + }, + "minecraft:bee_nest_destroyed": { + "protocol_id": 37 + }, + "minecraft:bred_animals": { + "protocol_id": 14 + }, + "minecraft:brewed_potion": { + "protocol_id": 10 + }, + "minecraft:changed_dimension": { + "protocol_id": 21 + }, + "minecraft:channeled_lightning": { + "protocol_id": 30 + }, + "minecraft:construct_beacon": { + "protocol_id": 11 + }, + "minecraft:consume_item": { + "protocol_id": 25 + }, + "minecraft:crafter_recipe_crafted": { + "protocol_id": 56 + }, + "minecraft:cured_zombie_villager": { + "protocol_id": 17 + }, + "minecraft:default_block_use": { + "protocol_id": 40 + }, + "minecraft:effects_changed": { + "protocol_id": 26 + }, + "minecraft:enchanted_item": { + "protocol_id": 8 + }, + "minecraft:enter_block": { + "protocol_id": 3 + }, + "minecraft:entity_hurt_player": { + "protocol_id": 7 + }, + "minecraft:entity_killed_player": { + "protocol_id": 2 + }, + "minecraft:fall_after_explosion": { + "protocol_id": 57 + }, + "minecraft:fall_from_height": { + "protocol_id": 50 + }, + "minecraft:filled_bucket": { + "protocol_id": 9 + }, + "minecraft:fishing_rod_hooked": { + "protocol_id": 29 + }, + "minecraft:hero_of_the_village": { + "protocol_id": 34 + }, + "minecraft:impossible": { + "protocol_id": 0 + }, + "minecraft:inventory_changed": { + "protocol_id": 4 + }, + "minecraft:item_durability_changed": { + "protocol_id": 19 + }, + "minecraft:item_used_on_block": { + "protocol_id": 39 + }, + "minecraft:kill_mob_near_sculk_catalyst": { + "protocol_id": 52 + }, + "minecraft:killed_by_arrow": { + "protocol_id": 33 + }, + "minecraft:levitation": { + "protocol_id": 20 + }, + "minecraft:lightning_strike": { + "protocol_id": 48 + }, + "minecraft:location": { + "protocol_id": 15 + }, + "minecraft:nether_travel": { + "protocol_id": 28 + }, + "minecraft:placed_block": { + "protocol_id": 24 + }, + "minecraft:player_generates_container_loot": { + "protocol_id": 42 + }, + "minecraft:player_hurt_entity": { + "protocol_id": 6 + }, + "minecraft:player_interacted_with_entity": { + "protocol_id": 45 + }, + "minecraft:player_killed_entity": { + "protocol_id": 1 + }, + "minecraft:player_sheared_equipment": { + "protocol_id": 46 + }, + "minecraft:recipe_crafted": { + "protocol_id": 55 + }, + "minecraft:recipe_unlocked": { + "protocol_id": 5 + }, + "minecraft:ride_entity_in_lava": { + "protocol_id": 51 + }, + "minecraft:shot_crossbow": { + "protocol_id": 31 + }, + "minecraft:slept_in_bed": { + "protocol_id": 16 + }, + "minecraft:slide_down_block": { + "protocol_id": 36 + }, + "minecraft:spear_mobs": { + "protocol_id": 32 + }, + "minecraft:started_riding": { + "protocol_id": 47 + }, + "minecraft:summoned_entity": { + "protocol_id": 13 + }, + "minecraft:tame_animal": { + "protocol_id": 23 + }, + "minecraft:target_hit": { + "protocol_id": 38 + }, + "minecraft:thrown_item_picked_up_by_entity": { + "protocol_id": 43 + }, + "minecraft:thrown_item_picked_up_by_player": { + "protocol_id": 44 + }, + "minecraft:tick": { + "protocol_id": 22 + }, + "minecraft:used_ender_eye": { + "protocol_id": 12 + }, + "minecraft:used_totem": { + "protocol_id": 27 + }, + "minecraft:using_item": { + "protocol_id": 49 + }, + "minecraft:villager_trade": { + "protocol_id": 18 + }, + "minecraft:voluntary_exile": { + "protocol_id": 35 + } + }, + "protocol_id": 62 + }, + "minecraft:villager_profession": { + "default": "minecraft:none", + "entries": { + "minecraft:armorer": { + "protocol_id": 1 + }, + "minecraft:butcher": { + "protocol_id": 2 + }, + "minecraft:cartographer": { + "protocol_id": 3 + }, + "minecraft:cleric": { + "protocol_id": 4 + }, + "minecraft:farmer": { + "protocol_id": 5 + }, + "minecraft:fisherman": { + "protocol_id": 6 + }, + "minecraft:fletcher": { + "protocol_id": 7 + }, + "minecraft:leatherworker": { + "protocol_id": 8 + }, + "minecraft:librarian": { + "protocol_id": 9 + }, + "minecraft:mason": { + "protocol_id": 10 + }, + "minecraft:nitwit": { + "protocol_id": 11 + }, + "minecraft:none": { + "protocol_id": 0 + }, + "minecraft:shepherd": { + "protocol_id": 12 + }, + "minecraft:toolsmith": { + "protocol_id": 13 + }, + "minecraft:weaponsmith": { + "protocol_id": 14 + } + }, + "protocol_id": 24 + }, + "minecraft:villager_type": { + "default": "minecraft:plains", + "entries": { + "minecraft:desert": { + "protocol_id": 0 + }, + "minecraft:jungle": { + "protocol_id": 1 + }, + "minecraft:plains": { + "protocol_id": 2 + }, + "minecraft:savanna": { + "protocol_id": 3 + }, + "minecraft:snow": { + "protocol_id": 4 + }, + "minecraft:swamp": { + "protocol_id": 5 + }, + "minecraft:taiga": { + "protocol_id": 6 + } + }, + "protocol_id": 23 + }, + "minecraft:worldgen/biome_source": { + "entries": { + "minecraft:checkerboard": { + "protocol_id": 2 + }, + "minecraft:fixed": { + "protocol_id": 0 + }, + "minecraft:multi_noise": { + "protocol_id": 1 + }, + "minecraft:the_end": { + "protocol_id": 3 + } + }, + "protocol_id": 51 + }, + "minecraft:worldgen/block_state_provider_type": { + "entries": { + "minecraft:dual_noise_provider": { + "protocol_id": 4 + }, + "minecraft:noise_provider": { + "protocol_id": 3 + }, + "minecraft:noise_threshold_provider": { + "protocol_id": 2 + }, + "minecraft:randomized_int_state_provider": { + "protocol_id": 6 + }, + "minecraft:rotated_block_provider": { + "protocol_id": 5 + }, + "minecraft:rule_based_state_provider": { + "protocol_id": 7 + }, + "minecraft:simple_state_provider": { + "protocol_id": 0 + }, + "minecraft:weighted_state_provider": { + "protocol_id": 1 + } + }, + "protocol_id": 45 + }, + "minecraft:worldgen/carver": { + "entries": { + "minecraft:canyon": { + "protocol_id": 2 + }, + "minecraft:cave": { + "protocol_id": 0 + }, + "minecraft:nether_cave": { + "protocol_id": 1 + } + }, + "protocol_id": 39 + }, + "minecraft:worldgen/chunk_generator": { + "entries": { + "minecraft:debug": { + "protocol_id": 2 + }, + "minecraft:flat": { + "protocol_id": 1 + }, + "minecraft:noise": { + "protocol_id": 0 + } + }, + "protocol_id": 52 + }, + "minecraft:worldgen/density_function_type": { + "entries": { + "minecraft:abs": { + "protocol_id": 19 + }, + "minecraft:add": { + "protocol_id": 26 + }, + "minecraft:beardifier": { + "protocol_id": 2 + }, + "minecraft:blend_alpha": { + "protocol_id": 0 + }, + "minecraft:blend_density": { + "protocol_id": 9 + }, + "minecraft:blend_offset": { + "protocol_id": 1 + }, + "minecraft:cache_2d": { + "protocol_id": 6 + }, + "minecraft:cache_all_in_cell": { + "protocol_id": 8 + }, + "minecraft:cache_once": { + "protocol_id": 7 + }, + "minecraft:clamp": { + "protocol_id": 18 + }, + "minecraft:constant": { + "protocol_id": 31 + }, + "minecraft:cube": { + "protocol_id": 21 + }, + "minecraft:end_islands": { + "protocol_id": 11 + }, + "minecraft:find_top_surface": { + "protocol_id": 33 + }, + "minecraft:flat_cache": { + "protocol_id": 5 + }, + "minecraft:half_negative": { + "protocol_id": 22 + }, + "minecraft:interpolated": { + "protocol_id": 4 + }, + "minecraft:interval_select": { + "protocol_id": 14 + }, + "minecraft:invert": { + "protocol_id": 24 + }, + "minecraft:max": { + "protocol_id": 29 + }, + "minecraft:min": { + "protocol_id": 28 + }, + "minecraft:mul": { + "protocol_id": 27 + }, + "minecraft:noise": { + "protocol_id": 10 + }, + "minecraft:old_blended_noise": { + "protocol_id": 3 + }, + "minecraft:quarter_negative": { + "protocol_id": 23 + }, + "minecraft:range_choice": { + "protocol_id": 13 + }, + "minecraft:shift": { + "protocol_id": 17 + }, + "minecraft:shift_a": { + "protocol_id": 15 + }, + "minecraft:shift_b": { + "protocol_id": 16 + }, + "minecraft:shifted_noise": { + "protocol_id": 12 + }, + "minecraft:spline": { + "protocol_id": 30 + }, + "minecraft:square": { + "protocol_id": 20 + }, + "minecraft:squeeze": { + "protocol_id": 25 + }, + "minecraft:y_clamped_gradient": { + "protocol_id": 32 + } + }, + "protocol_id": 55 + }, + "minecraft:worldgen/feature": { + "entries": { + "minecraft:bamboo": { + "protocol_id": 40 + }, + "minecraft:basalt_columns": { + "protocol_id": 45 + }, + "minecraft:basalt_pillar": { + "protocol_id": 50 + }, + "minecraft:block_blob": { + "protocol_id": 25 + }, + "minecraft:block_column": { + "protocol_id": 16 + }, + "minecraft:block_pile": { + "protocol_id": 3 + }, + "minecraft:blue_ice": { + "protocol_id": 23 + }, + "minecraft:bonus_chest": { + "protocol_id": 49 + }, + "minecraft:chorus_plant": { + "protocol_id": 5 + }, + "minecraft:coral_claw": { + "protocol_id": 37 + }, + "minecraft:coral_mushroom": { + "protocol_id": 36 + }, + "minecraft:coral_tree": { + "protocol_id": 35 + }, + "minecraft:delta_feature": { + "protocol_id": 46 + }, + "minecraft:desert_well": { + "protocol_id": 8 + }, + "minecraft:disk": { + "protocol_id": 26 + }, + "minecraft:end_gateway": { + "protocol_id": 32 + }, + "minecraft:end_island": { + "protocol_id": 31 + }, + "minecraft:end_platform": { + "protocol_id": 29 + }, + "minecraft:end_spike": { + "protocol_id": 30 + }, + "minecraft:fallen_tree": { + "protocol_id": 2 + }, + "minecraft:fill_layer": { + "protocol_id": 48 + }, + "minecraft:fossil": { + "protocol_id": 9 + }, + "minecraft:freeze_top_layer": { + "protocol_id": 14 + }, + "minecraft:geode": { + "protocol_id": 58 + }, + "minecraft:glowstone_blob": { + "protocol_id": 13 + }, + "minecraft:huge_brown_mushroom": { + "protocol_id": 11 + }, + "minecraft:huge_fungus": { + "protocol_id": 41 + }, + "minecraft:huge_red_mushroom": { + "protocol_id": 10 + }, + "minecraft:iceberg": { + "protocol_id": 24 + }, + "minecraft:kelp": { + "protocol_id": 34 + }, + "minecraft:lake": { + "protocol_id": 27 + }, + "minecraft:large_dripstone": { + "protocol_id": 60 + }, + "minecraft:monster_room": { + "protocol_id": 22 + }, + "minecraft:multiface_growth": { + "protocol_id": 20 + }, + "minecraft:nether_forest_vegetation": { + "protocol_id": 42 + }, + "minecraft:netherrack_replace_blobs": { + "protocol_id": 47 + }, + "minecraft:no_op": { + "protocol_id": 0 + }, + "minecraft:ore": { + "protocol_id": 28 + }, + "minecraft:random_boolean_selector": { + "protocol_id": 55 + }, + "minecraft:random_selector": { + "protocol_id": 52 + }, + "minecraft:replace_single_block": { + "protocol_id": 6 + }, + "minecraft:root_system": { + "protocol_id": 19 + }, + "minecraft:scattered_ore": { + "protocol_id": 51 + }, + "minecraft:sculk_patch": { + "protocol_id": 62 + }, + "minecraft:sea_pickle": { + "protocol_id": 38 + }, + "minecraft:seagrass": { + "protocol_id": 33 + }, + "minecraft:sequence": { + "protocol_id": 56 + }, + "minecraft:simple_block": { + "protocol_id": 39 + }, + "minecraft:simple_random_selector": { + "protocol_id": 54 + }, + "minecraft:speleothem": { + "protocol_id": 61 + }, + "minecraft:speleothem_cluster": { + "protocol_id": 59 + }, + "minecraft:spike": { + "protocol_id": 12 + }, + "minecraft:spring_feature": { + "protocol_id": 4 + }, + "minecraft:template": { + "protocol_id": 57 + }, + "minecraft:tree": { + "protocol_id": 1 + }, + "minecraft:twisting_vines": { + "protocol_id": 44 + }, + "minecraft:underwater_magma": { + "protocol_id": 21 + }, + "minecraft:vegetation_patch": { + "protocol_id": 17 + }, + "minecraft:vines": { + "protocol_id": 15 + }, + "minecraft:void_start_platform": { + "protocol_id": 7 + }, + "minecraft:waterlogged_vegetation_patch": { + "protocol_id": 18 + }, + "minecraft:weeping_vines": { + "protocol_id": 43 + }, + "minecraft:weighted_random_selector": { + "protocol_id": 53 + } + }, + "protocol_id": 40 + }, + "minecraft:worldgen/feature_size_type": { + "entries": { + "minecraft:three_layers_feature_size": { + "protocol_id": 1 + }, + "minecraft:two_layers_feature_size": { + "protocol_id": 0 + } + }, + "protocol_id": 50 + }, + "minecraft:worldgen/foliage_placer_type": { + "entries": { + "minecraft:acacia_foliage_placer": { + "protocol_id": 3 + }, + "minecraft:blob_foliage_placer": { + "protocol_id": 0 + }, + "minecraft:bush_foliage_placer": { + "protocol_id": 4 + }, + "minecraft:cherry_foliage_placer": { + "protocol_id": 10 + }, + "minecraft:dark_oak_foliage_placer": { + "protocol_id": 8 + }, + "minecraft:fancy_foliage_placer": { + "protocol_id": 5 + }, + "minecraft:jungle_foliage_placer": { + "protocol_id": 6 + }, + "minecraft:mega_pine_foliage_placer": { + "protocol_id": 7 + }, + "minecraft:pine_foliage_placer": { + "protocol_id": 2 + }, + "minecraft:random_spread_foliage_placer": { + "protocol_id": 9 + }, + "minecraft:spruce_foliage_placer": { + "protocol_id": 1 + } + }, + "protocol_id": 46 + }, + "minecraft:worldgen/material_condition": { + "entries": { + "minecraft:above_preliminary_surface": { + "protocol_id": 9 + }, + "minecraft:biome": { + "protocol_id": 0 + }, + "minecraft:hole": { + "protocol_id": 8 + }, + "minecraft:noise_threshold": { + "protocol_id": 1 + }, + "minecraft:not": { + "protocol_id": 7 + }, + "minecraft:steep": { + "protocol_id": 6 + }, + "minecraft:stone_depth": { + "protocol_id": 10 + }, + "minecraft:temperature": { + "protocol_id": 5 + }, + "minecraft:vertical_gradient": { + "protocol_id": 2 + }, + "minecraft:water": { + "protocol_id": 4 + }, + "minecraft:y_above": { + "protocol_id": 3 + } + }, + "protocol_id": 53 + }, + "minecraft:worldgen/material_rule": { + "entries": { + "minecraft:bandlands": { + "protocol_id": 0 + }, + "minecraft:block": { + "protocol_id": 1 + }, + "minecraft:condition": { + "protocol_id": 3 + }, + "minecraft:sequence": { + "protocol_id": 2 + } + }, + "protocol_id": 54 + }, + "minecraft:worldgen/placement_modifier_type": { + "entries": { + "minecraft:biome": { + "protocol_id": 4 + }, + "minecraft:block_predicate_filter": { + "protocol_id": 0 + }, + "minecraft:count": { + "protocol_id": 5 + }, + "minecraft:count_on_every_layer": { + "protocol_id": 8 + }, + "minecraft:environment_scan": { + "protocol_id": 9 + }, + "minecraft:fixed_placement": { + "protocol_id": 14 + }, + "minecraft:height_range": { + "protocol_id": 11 + }, + "minecraft:heightmap": { + "protocol_id": 10 + }, + "minecraft:in_square": { + "protocol_id": 12 + }, + "minecraft:noise_based_count": { + "protocol_id": 6 + }, + "minecraft:noise_threshold_count": { + "protocol_id": 7 + }, + "minecraft:random_offset": { + "protocol_id": 13 + }, + "minecraft:rarity_filter": { + "protocol_id": 1 + }, + "minecraft:surface_relative_threshold_filter": { + "protocol_id": 2 + }, + "minecraft:surface_water_depth_filter": { + "protocol_id": 3 + } + }, + "protocol_id": 44 + }, + "minecraft:worldgen/pool_alias_binding": { + "entries": { + "minecraft:direct": { + "protocol_id": 2 + }, + "minecraft:random": { + "protocol_id": 0 + }, + "minecraft:random_group": { + "protocol_id": 1 + } + }, + "protocol_id": 59 + }, + "minecraft:worldgen/root_placer_type": { + "entries": { + "minecraft:mangrove_root_placer": { + "protocol_id": 0 + } + }, + "protocol_id": 48 + }, + "minecraft:worldgen/structure_piece": { + "entries": { + "minecraft:btp": { + "protocol_id": 52 + }, + "minecraft:ecp": { + "protocol_id": 50 + }, + "minecraft:iglu": { + "protocol_id": 34 + }, + "minecraft:jigsaw": { + "protocol_id": 55 + }, + "minecraft:mscorridor": { + "protocol_id": 0 + }, + "minecraft:mscrossing": { + "protocol_id": 1 + }, + "minecraft:msroom": { + "protocol_id": 2 + }, + "minecraft:msstairs": { + "protocol_id": 3 + }, + "minecraft:nebcr": { + "protocol_id": 4 + }, + "minecraft:nebef": { + "protocol_id": 5 + }, + "minecraft:nebs": { + "protocol_id": 6 + }, + "minecraft:neccs": { + "protocol_id": 7 + }, + "minecraft:nece": { + "protocol_id": 9 + }, + "minecraft:necsr": { + "protocol_id": 14 + }, + "minecraft:nectb": { + "protocol_id": 8 + }, + "minecraft:nefos": { + "protocol_id": 54 + }, + "minecraft:nemt": { + "protocol_id": 15 + }, + "minecraft:nerc": { + "protocol_id": 16 + }, + "minecraft:nesc": { + "protocol_id": 12 + }, + "minecraft:nesclt": { + "protocol_id": 11 + }, + "minecraft:nescrt": { + "protocol_id": 13 + }, + "minecraft:nescsc": { + "protocol_id": 10 + }, + "minecraft:nesr": { + "protocol_id": 17 + }, + "minecraft:nestart": { + "protocol_id": 18 + }, + "minecraft:omb": { + "protocol_id": 38 + }, + "minecraft:omcr": { + "protocol_id": 39 + }, + "minecraft:omdxr": { + "protocol_id": 40 + }, + "minecraft:omdxyr": { + "protocol_id": 41 + }, + "minecraft:omdyr": { + "protocol_id": 42 + }, + "minecraft:omdyzr": { + "protocol_id": 43 + }, + "minecraft:omdzr": { + "protocol_id": 44 + }, + "minecraft:omentry": { + "protocol_id": 45 + }, + "minecraft:ompenthouse": { + "protocol_id": 46 + }, + "minecraft:omsimple": { + "protocol_id": 47 + }, + "minecraft:omsimplet": { + "protocol_id": 48 + }, + "minecraft:omwr": { + "protocol_id": 49 + }, + "minecraft:orp": { + "protocol_id": 33 + }, + "minecraft:rupo": { + "protocol_id": 35 + }, + "minecraft:sh5c": { + "protocol_id": 21 + }, + "minecraft:shcc": { + "protocol_id": 19 + }, + "minecraft:shfc": { + "protocol_id": 20 + }, + "minecraft:shipwreck": { + "protocol_id": 53 + }, + "minecraft:shli": { + "protocol_id": 23 + }, + "minecraft:shlt": { + "protocol_id": 22 + }, + "minecraft:shph": { + "protocol_id": 25 + }, + "minecraft:shpr": { + "protocol_id": 24 + }, + "minecraft:shrc": { + "protocol_id": 27 + }, + "minecraft:shrt": { + "protocol_id": 26 + }, + "minecraft:shs": { + "protocol_id": 30 + }, + "minecraft:shsd": { + "protocol_id": 28 + }, + "minecraft:shssd": { + "protocol_id": 31 + }, + "minecraft:shstart": { + "protocol_id": 29 + }, + "minecraft:tedp": { + "protocol_id": 37 + }, + "minecraft:tejp": { + "protocol_id": 32 + }, + "minecraft:tesh": { + "protocol_id": 36 + }, + "minecraft:wmp": { + "protocol_id": 51 + } + }, + "protocol_id": 42 + }, + "minecraft:worldgen/structure_placement": { + "entries": { + "minecraft:concentric_rings": { + "protocol_id": 1 + }, + "minecraft:random_spread": { + "protocol_id": 0 + } + }, + "protocol_id": 41 + }, + "minecraft:worldgen/structure_pool_element": { + "entries": { + "minecraft:empty_pool_element": { + "protocol_id": 3 + }, + "minecraft:feature_pool_element": { + "protocol_id": 2 + }, + "minecraft:legacy_single_pool_element": { + "protocol_id": 4 + }, + "minecraft:list_pool_element": { + "protocol_id": 1 + }, + "minecraft:single_pool_element": { + "protocol_id": 0 + } + }, + "protocol_id": 58 + }, + "minecraft:worldgen/structure_processor": { + "entries": { + "minecraft:blackstone_replace": { + "protocol_id": 0 + }, + "minecraft:block_age": { + "protocol_id": 1 + }, + "minecraft:block_ignore": { + "protocol_id": 2 + }, + "minecraft:block_rot": { + "protocol_id": 3 + }, + "minecraft:capped": { + "protocol_id": 4 + }, + "minecraft:gravity": { + "protocol_id": 5 + }, + "minecraft:jigsaw_replacement": { + "protocol_id": 6 + }, + "minecraft:lava_submerged_block": { + "protocol_id": 7 + }, + "minecraft:nop": { + "protocol_id": 8 + }, + "minecraft:protected_blocks": { + "protocol_id": 9 + }, + "minecraft:rule": { + "protocol_id": 10 + } + }, + "protocol_id": 57 + }, + "minecraft:worldgen/structure_type": { + "entries": { + "minecraft:buried_treasure": { + "protocol_id": 0 + }, + "minecraft:desert_pyramid": { + "protocol_id": 1 + }, + "minecraft:end_city": { + "protocol_id": 2 + }, + "minecraft:fortress": { + "protocol_id": 3 + }, + "minecraft:igloo": { + "protocol_id": 4 + }, + "minecraft:jigsaw": { + "protocol_id": 5 + }, + "minecraft:jungle_temple": { + "protocol_id": 6 + }, + "minecraft:mineshaft": { + "protocol_id": 7 + }, + "minecraft:nether_fossil": { + "protocol_id": 8 + }, + "minecraft:ocean_monument": { + "protocol_id": 9 + }, + "minecraft:ocean_ruin": { + "protocol_id": 10 + }, + "minecraft:ruined_portal": { + "protocol_id": 11 + }, + "minecraft:shipwreck": { + "protocol_id": 12 + }, + "minecraft:stronghold": { + "protocol_id": 13 + }, + "minecraft:swamp_hut": { + "protocol_id": 14 + }, + "minecraft:woodland_mansion": { + "protocol_id": 15 + } + }, + "protocol_id": 43 + }, + "minecraft:worldgen/tree_decorator_type": { + "entries": { + "minecraft:alter_ground": { + "protocol_id": 6 + }, + "minecraft:attached_to_leaves": { + "protocol_id": 7 + }, + "minecraft:attached_to_logs": { + "protocol_id": 9 + }, + "minecraft:beehive": { + "protocol_id": 5 + }, + "minecraft:cocoa": { + "protocol_id": 4 + }, + "minecraft:creaking_heart": { + "protocol_id": 3 + }, + "minecraft:leave_vine": { + "protocol_id": 1 + }, + "minecraft:pale_moss": { + "protocol_id": 2 + }, + "minecraft:place_on_ground": { + "protocol_id": 8 + }, + "minecraft:trunk_vine": { + "protocol_id": 0 + } + }, + "protocol_id": 49 + }, + "minecraft:worldgen/trunk_placer_type": { + "entries": { + "minecraft:bending_trunk_placer": { + "protocol_id": 6 + }, + "minecraft:cherry_trunk_placer": { + "protocol_id": 8 + }, + "minecraft:dark_oak_trunk_placer": { + "protocol_id": 4 + }, + "minecraft:fancy_trunk_placer": { + "protocol_id": 5 + }, + "minecraft:forking_trunk_placer": { + "protocol_id": 1 + }, + "minecraft:giant_trunk_placer": { + "protocol_id": 2 + }, + "minecraft:mega_jungle_trunk_placer": { + "protocol_id": 3 + }, + "minecraft:straight_trunk_placer": { + "protocol_id": 0 + }, + "minecraft:upwards_branching_trunk_placer": { + "protocol_id": 7 + } + }, + "protocol_id": 47 + } +} \ No newline at end of file diff --git a/data/package.json b/data/package.json new file mode 100644 index 00000000..d066cc1a --- /dev/null +++ b/data/package.json @@ -0,0 +1,15 @@ +{ + "name": "data", + "module": "src/index.ts", + "type": "module", + "private": true, + "scripts": { + "start": "bun src/generate.ts" + }, + "devDependencies": { + "@types/bun": "latest" + }, + "peerDependencies": { + "typescript": "^6" + } +} diff --git a/data/src/fetch/serverJar.ts b/data/src/fetch/serverJar.ts new file mode 100644 index 00000000..8753c7ef --- /dev/null +++ b/data/src/fetch/serverJar.ts @@ -0,0 +1,92 @@ +import { join } from "node:path"; +import { mkdir, writeFile } from "node:fs/promises"; + +type VersionManifest = { + versions: { + id: string; + url: string; + }[]; +}; + +type Version = { + downloads: { + server: { + url: string; + sha1: string; + size: number; + }; + }; +}; + +const HOSTS = { + versionManifests: + "https://launchermeta.mojang.com/mc/game/version_manifest.json", +}; + +async function api(url: string): Promise { + const res = await fetch(url); + + if (!res.ok) + throw new Error(`${res.status} ${res.statusText}`); + + return await res.json() as T; +} + +async function downloadJar( + downloadUrl: string, + savePath: string, +): Promise { + const serverDownload = (await api(downloadUrl)).downloads.server; + const response = await fetch(serverDownload.url); + await Bun.write(savePath, await response.arrayBuffer()); +} + +type ServerJar = { + version: string; + path: string; + fileName: string; + exists: boolean; +}; + +export async function downloadServerJars( + versionsToDownload: string[], + savePath: string, +): Promise { + if (!(await Bun.file(savePath).exists())) { + await mkdir(savePath, { recursive: true }); + } + + // Check if all Jars are already downloaded + const promises = versionsToDownload.map(async (version) => { + const fileName = `${version}.jar`; + const path = join(savePath, fileName); + const exists = await Bun.file(path).exists(); + return { fileName, path, exists, version }; + }); + + const result = await Promise.all(promises); + if (result.every((e) => e.exists)) { + return result; + } + + // If at least one does not exist, start the download + const versions = ( + await api(HOSTS.versionManifests) + ).versions.filter((it) => versionsToDownload.includes(it.id)); + + const serverJars = versions.map(async (version) => { + const fileName = `${version.id}.jar`; + const serverJarPath = join(savePath, fileName); + if (!(await Bun.file(serverJarPath).exists())) { + await downloadJar(version.url, serverJarPath); + } + return { + path: serverJarPath, + version: version.id, + fileName, + exists: true, + }; + }); + + return Promise.all(serverJars); +} \ No newline at end of file diff --git a/data/src/generate.ts b/data/src/generate.ts new file mode 100644 index 00000000..218a0739 --- /dev/null +++ b/data/src/generate.ts @@ -0,0 +1,110 @@ +import { + mkdtemp, + copyFile, + rm, + mkdir, + readdir, +} from "node:fs/promises"; +import { join, dirname } from "node:path"; +import { downloadServerJars } from "./fetch/serverJar.ts"; + +const SUPPORTED_VERSIONS = [ + "26.2", + "26.1" +]; + +async function execute(command: string[], cwd: string) { + const proc = Bun.spawn(command, { + cwd, + stdout: "pipe", + stderr: "pipe", + }); + + const exitCode = await proc.exited; + + if (exitCode !== 0) + throw new Error(await new Response(proc.stderr).text()); + + return await new Response(proc.stdout).text(); +} + +(async () => { + const serverJarDirectory = "servers"; + const jarFiles = await downloadServerJars( + SUPPORTED_VERSIONS, + serverJarDirectory, + ); + + for (const version of jarFiles) { + const outputDirectory = join( + process.cwd(), + "generated", + `V${version.version.replaceAll(".", "_")}`, + ); + + if (await Bun.file(outputDirectory).exists()) { + console.log(`Skipping version ${version.version}`); + continue; + } + + // Run the server to output the files + const generatedDirectory = await mkdtemp( + `/tmp/generated_${version.version}`, + ); + const command = ["java", "-DbundlerMainClass=net.minecraft.data.Main", "-jar", version.fileName, "--reports", "--server", "--output", generatedDirectory]; + try { + await execute(command, serverJarDirectory); + } catch (e) { + console.error( + `An error occurred while processing version ${version.fileName}:`, + e, + ); + } + console.log(`Generated ${version.version}: ${version.path}`); + + // Copy the generated data + const dataDirectory = await move( + generatedDirectory, + outputDirectory, + "data", + ); + const reportsDirectory = await move( + generatedDirectory, + outputDirectory, + "reports", + ); + + // Cleanup + // await cleanDataDirectory(dataDirectory); + // await cleanReportsDirectory(reportsDirectory); + await rm(generatedDirectory, { recursive: true, force: true }); + } +})(); + +async function move( + from: string, + to: string, + subdir: string, +): Promise { + const destination = join(to, subdir); + await copyDir(join(from, subdir), destination); + return destination; +} + +async function copyDir(src: string, dest: string): Promise { + const entries = await readdir(src, { + recursive: true, + withFileTypes: true, + }); + + for (const entry of entries) { + const srcPath = join(entry.parentPath, entry.name); + const destPath = srcPath.replace(src, dest); + const destDir = dirname(destPath); + + if (entry.isFile()) { + await mkdir(destDir, { recursive: true }); + await copyFile(srcPath, destPath); + } + } +} \ No newline at end of file diff --git a/data/tsconfig.json b/data/tsconfig.json new file mode 100644 index 00000000..1994e031 --- /dev/null +++ b/data/tsconfig.json @@ -0,0 +1,34 @@ +{ + "compilerOptions": { + // Environment setup & latest features + "lib": [ + "ESNext" + ], + "target": "ESNext", + "module": "Preserve", + "moduleDetection": "force", + "jsx": "react-jsx", + "allowJs": true, + "types": [ + "bun" + ], + // Bundler mode + "moduleResolution": "bundler", + "allowImportingTsExtensions": true, + "verbatimModuleSyntax": true, + "noEmit": true, + // Best practices + "strict": true, + "skipLibCheck": true, + "noFallthroughCasesInSwitch": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + // Some stricter flags (disabled by default) + "noUnusedLocals": false, + "noUnusedParameters": false, + "noPropertyAccessFromIndexSignature": false, + }, + "include": [ + "src/**/*.ts" + ], +} \ No newline at end of file diff --git a/yoki/Cargo.toml b/yoki/Cargo.toml index 0270ec29..dfaf2337 100644 --- a/yoki/Cargo.toml +++ b/yoki/Cargo.toml @@ -16,6 +16,7 @@ minecraft_packet = { path = "../crates/minecraft_packet" } minecraft_protocol = { path = "../crates/minecraft_protocol" } yoki_macros = { path = "../crates/yoki_macros" } yoki_binutils = { path = "../crates/yoki_binutils" } +yoki_identifier = { path = "../crates/yoki_identifier" } protocol_version = { path = "../crates/protocol_version" } futures = { workspace = true } tokio = { workspace = true } @@ -23,4 +24,6 @@ uuid = { workspace = true } thiserror = { workspace = true } serde = { workspace = true } toml = { workspace = true } -clap = { workspace = true } \ No newline at end of file +serde_json = { workspace = true } +clap = { workspace = true } +strum_macros = { workspace = true } \ No newline at end of file diff --git a/yoki/src/configuration/mod.rs b/yoki/src/configuration/mod.rs index aa71cd2e..2bb43e86 100644 --- a/yoki/src/configuration/mod.rs +++ b/yoki/src/configuration/mod.rs @@ -17,6 +17,8 @@ pub enum ConfigError { Io(#[from] std::io::Error), #[error("Failed to parse config file: {0}")] Parse(#[from] toml::de::Error), + #[error("Failed to load registry data: {0}")] + Registry(String), } #[derive(Debug, Default)] diff --git a/yoki/src/game_data/blocks.rs b/yoki/src/game_data/blocks.rs new file mode 100644 index 00000000..27497091 --- /dev/null +++ b/yoki/src/game_data/blocks.rs @@ -0,0 +1,53 @@ +use serde::Deserialize; +use std::collections::HashMap; + +#[derive(Debug, Deserialize)] +struct BlockEntry { + states: Vec, +} + +#[derive(Debug, Deserialize)] +struct BlockState { + id: i32, + #[serde(default)] + default: bool, +} + +pub struct BlockRegistry { + default_state_ids: HashMap, +} + +impl BlockRegistry { + pub fn load_from_file(path: &str) -> Self { + let raw = std::fs::read_to_string(path).expect("blocks.json introuvable"); + let parsed: HashMap = + serde_json::from_str(&raw).expect("blocks.json invalide"); + + let mut default_state_ids = HashMap::new(); + for (name, entry) in parsed { + let default_id = entry + .states + .iter() + .find(|s| s.default) + .map(|s| s.id) + .or_else(|| { + if entry.states.len() == 1 { + Some(entry.states[0].id) + } else { + None + } + }); + if let Some(id) = default_id { + default_state_ids.insert(name, id); + } + } + Self { default_state_ids } + } + + pub fn default_state_id(&self, block_name: &str) -> i32 { + *self + .default_state_ids + .get(block_name) + .unwrap_or_else(|| panic!("bloc inconnu: {block_name}")) + } +} diff --git a/yoki/src/game_data/mod.rs b/yoki/src/game_data/mod.rs new file mode 100644 index 00000000..9e36d661 --- /dev/null +++ b/yoki/src/game_data/mod.rs @@ -0,0 +1,3 @@ +pub mod blocks; + +pub use blocks::BlockRegistry; diff --git a/yoki/src/handlers/configuration.rs b/yoki/src/handlers/configuration.rs index d515cc1d..79599c2e 100644 --- a/yoki/src/handlers/configuration.rs +++ b/yoki/src/handlers/configuration.rs @@ -1,11 +1,18 @@ use minecraft_packet::packets::configuration::{ acknowledge_finish_configuration::AcknowledgeFinishConfigurationPacket, - client_information::ClientInformationPacket, plugin_message::PluginMessagePacket, + client_information::ClientInformationPacket, finish_configuration::FinishConfigurationPacket, + known_packs::SelectKnownPacksPacket, plugin_message::PluginMessagePacket, + update_enabled_features::UpdateEnabledFeaturesPacket, }; +use minecraft_protocol::State; +use yoki_identifier::Identifier; use crate::{ ServerState, batch::Batch, + handlers::play::queue_join_play_packets, + registry::{client_accepted_known_pack, should_omit_known_pack_entry_data}, + server::packet_registry::PacketRegistry, server::{ClientState, PacketHandler, packet_handler::PacketHandlerError}, }; @@ -31,13 +38,52 @@ impl PacketHandler for PluginMessagePacket { } } +impl PacketHandler for SelectKnownPacksPacket { + fn handle( + &self, + client_state: &mut ClientState, + server_state: &ServerState, + ) -> Result { + let mut batch = Batch::new(); + let protocol_version = client_state.protocol_version(); + let accepted_known_pack = client_accepted_known_pack(&self.known_packs, protocol_version); + let omit_registry_data = + should_omit_known_pack_entry_data(protocol_version, accepted_known_pack); + + let registry_packets: Vec<_> = server_state + .registry_store() + .registry_data_packets(protocol_version, omit_registry_data) + .map(PacketRegistry::RegistryData) + .collect(); + batch.chain_iter(registry_packets); + + batch.queue_packet(PacketRegistry::UpdateEnabledFeatures( + UpdateEnabledFeaturesPacket { + features: vec![Identifier::minecraft("vanilla").expect("valid identifier")], + }, + )); + batch.queue_packet(PacketRegistry::UpdateTags( + server_state.registry_store().tags_packet(protocol_version), + )); + batch.queue_packet(PacketRegistry::FinishConfiguration( + FinishConfigurationPacket, + )); + + Ok(batch) + } +} + impl PacketHandler for AcknowledgeFinishConfigurationPacket { fn handle( &self, - _client_state: &mut ClientState, - _server_state: &ServerState, + client_state: &mut ClientState, + server_state: &ServerState, ) -> Result { - let _ = self; - Ok(Batch::new()) + let mut batch = Batch::new(); + + batch.queue_both_state_change(State::Play); + queue_join_play_packets(&mut batch, client_state.protocol_version(), server_state); + + Ok(batch) } } diff --git a/yoki/src/handlers/handshake.rs b/yoki/src/handlers/handshake.rs index c30dc88e..33342098 100644 --- a/yoki/src/handlers/handshake.rs +++ b/yoki/src/handlers/handshake.rs @@ -74,7 +74,7 @@ trait GetStateProtocol { impl GetStateProtocol for HandshakePacket { fn get_next_state(&self) -> Result { - match self.intent.as_varint() { + match self.intent.inner() { 1 => Ok(State::Status), 2 => Ok(State::Login), 3 => Ok(State::Transfer), @@ -83,10 +83,10 @@ impl GetStateProtocol for HandshakePacket { } fn get_protocol(&self, allow_unsupported_versions: bool) -> ProtocolVersion { - if self.protocol_version == -1 { + if self.protocol_version.inner() == -1 { ProtocolVersion::Any } else { - let pvn = self.protocol_version; + let pvn = self.protocol_version.inner(); if allow_unsupported_versions { ProtocolVersion::from(pvn) } else { diff --git a/yoki/src/handlers/login/login_acknowledged.rs b/yoki/src/handlers/login/login_acknowledged.rs index 0324468f..63d0db41 100644 --- a/yoki/src/handlers/login/login_acknowledged.rs +++ b/yoki/src/handlers/login/login_acknowledged.rs @@ -1,20 +1,29 @@ +use minecraft_packet::packets::configuration::known_packs::SelectKnownPacksClientboundPacket; use minecraft_packet::packets::login::login_acknowledged::LoginAcknowledgedPacket; use minecraft_protocol::State; use crate::{ ServerState, batch::Batch, + registry::known_packs_for_version, + server::packet_registry::PacketRegistry, server::{ClientState, PacketHandler, packet_handler::PacketHandlerError}, }; impl PacketHandler for LoginAcknowledgedPacket { fn handle( &self, - _client_state: &mut ClientState, + client_state: &mut ClientState, _server_state: &ServerState, ) -> Result { let mut batch = Batch::new(); + batch.queue_both_state_change(State::Configuration); + batch.queue_packet(PacketRegistry::SelectKnownPacksClientbound( + SelectKnownPacksClientboundPacket { + known_packs: known_packs_for_version(client_state.protocol_version()), + }, + )); Ok(batch) } } diff --git a/yoki/src/handlers/mod.rs b/yoki/src/handlers/mod.rs index 4fb4e4f5..cdb2e886 100644 --- a/yoki/src/handlers/mod.rs +++ b/yoki/src/handlers/mod.rs @@ -1,4 +1,5 @@ mod configuration; mod handshake; mod login; +mod play; mod status; diff --git a/yoki/src/handlers/play/mod.rs b/yoki/src/handlers/play/mod.rs new file mode 100644 index 00000000..3d489c24 --- /dev/null +++ b/yoki/src/handlers/play/mod.rs @@ -0,0 +1,70 @@ +use crate::{ + ServerState, + batch::Batch, + server::packet_registry::PacketRegistry, + server::{ClientState, PacketHandler, packet_handler::PacketHandlerError}, +}; +use minecraft_packet::packets::play::level_chunk_with_light::FLAT_SURFACE_Y; +use minecraft_packet::packets::play::level_chunk_with_light::LevelChunkWithLightPacket; +use minecraft_packet::packets::play::{ + game_event::GameEventPacket, + keep_alive::{ClientboundKeepAlivePacket, ServerboundKeepAlivePacket}, + login::LoginPacket, + player_abilities::PlayerAbilitiesPacket, + set_chunk_cache_center::SetChunkCacheCenterPacket, + synchronize_player_position::SynchronizePlayerPositionPacket, +}; +use protocol_version::protocol_version::ProtocolVersion; + +const SPAWN_X: f64 = 0.5; +const SPAWN_Y: f64 = (FLAT_SURFACE_Y + 1) as f64; +const SPAWN_Z: f64 = 0.5; +const CHUNK_RADIUS: i32 = 4; + +pub fn queue_join_play_packets( + batch: &mut Batch, + protocol_version: ProtocolVersion, + server_state: &ServerState, +) { + let stone_id = server_state + .registry_store() + .block_state_id(protocol_version, "minecraft:stone") + .expect("stone block state id should exist"); + + batch.queue_packet(PacketRegistry::Login(LoginPacket::for_protocol_version( + protocol_version, + ))); + batch.queue_packet(PacketRegistry::PlayerAbilities( + PlayerAbilitiesPacket::default(), + )); + batch.queue_packet(PacketRegistry::GameEvent( + GameEventPacket::start_waiting_for_chunks(), + )); + batch.queue_packet(PacketRegistry::SetChunkCacheCenter( + SetChunkCacheCenterPacket::new(0, 0), + )); + for chunk_x in -CHUNK_RADIUS..=CHUNK_RADIUS { + for chunk_z in -CHUNK_RADIUS..=CHUNK_RADIUS { + batch.queue_packet(PacketRegistry::LevelChunkWithLight( + LevelChunkWithLightPacket::flat(chunk_x, chunk_z, stone_id), + )); + } + } + batch.queue_packet(PacketRegistry::SynchronizePlayerPosition( + SynchronizePlayerPositionPacket::spawn(SPAWN_X, SPAWN_Y, SPAWN_Z, 0.0, 0.0), + )); +} + +impl PacketHandler for ServerboundKeepAlivePacket { + fn handle( + &self, + _client_state: &mut ClientState, + _server_state: &ServerState, + ) -> Result { + let mut batch = Batch::new(); + batch.queue_packet(PacketRegistry::ClientboundKeepAlive( + ClientboundKeepAlivePacket::new(self.id), + )); + Ok(batch) + } +} diff --git a/yoki/src/handlers/status/ping_request.rs b/yoki/src/handlers/status/ping_request.rs index 02745e1a..d1b6a80b 100644 --- a/yoki/src/handlers/status/ping_request.rs +++ b/yoki/src/handlers/status/ping_request.rs @@ -1,5 +1,4 @@ -use minecraft_packet::packets::PingRequestPacket; -use minecraft_packet::packets::PingResponsePacket; +use minecraft_packet::packets::{PingRequestPacket, PongResponsePacket}; use crate::{ ServerState, @@ -15,7 +14,7 @@ impl PacketHandler for PingRequestPacket { _server_state: &ServerState, ) -> Result { let mut batch = Batch::new(); - batch.queue_packet(PacketRegistry::PingResponse(PingResponsePacket::from( + batch.queue_packet(PacketRegistry::PongResponse(PongResponsePacket::from( *self, ))); Ok(batch) diff --git a/yoki/src/lib.rs b/yoki/src/lib.rs index 3a0dd065..89b47be5 100644 --- a/yoki/src/lib.rs +++ b/yoki/src/lib.rs @@ -1,9 +1,12 @@ mod cli; mod configuration; mod handlers; +pub mod registry; pub mod server; pub mod server_state; +pub mod game_data; + pub use cli::Cli; pub use configuration::{Config, ConfigError}; pub use server::{batch, client_state, packet_registry}; diff --git a/yoki/src/main.rs b/yoki/src/main.rs index 71d78612..e0f8e302 100644 --- a/yoki/src/main.rs +++ b/yoki/src/main.rs @@ -43,7 +43,15 @@ async fn handle_connection( loop { let raw = conn.receive().await?; - let packet = PacketRegistry::decode_serverbound(client_state.serverbound_state(), &raw)?; + let packet = match PacketRegistry::decode_serverbound( + client_state.protocol_version(), + client_state.serverbound_state(), + &raw, + ) { + Ok(packet) => packet, + Err(ProtocolError::UnknownPacket { .. }) => continue, + Err(err) => return Err(err), + }; let should_disconnect = matches!(packet, PacketRegistry::PingRequest(_)); diff --git a/yoki/src/registry/block_states.rs b/yoki/src/registry/block_states.rs new file mode 100644 index 00000000..89f708f6 --- /dev/null +++ b/yoki/src/registry/block_states.rs @@ -0,0 +1,56 @@ +use crate::registry::RegistryError; +use serde::Deserialize; +use std::collections::HashMap; +use std::path::Path; + +#[derive(Debug, Deserialize)] +struct BlockEntry { + states: Vec, +} + +#[derive(Debug, Deserialize)] +struct BlockStateEntry { + id: i32, + #[serde(default)] + default: bool, +} + +#[derive(Debug)] +pub struct BlockStateIds { + default_state_ids: HashMap, +} + +impl BlockStateIds { + pub fn load(version_dir: &Path) -> Result { + let path = version_dir.join("reports/blocks.json"); + let raw = std::fs::read_to_string(&path) + .map_err(|err| RegistryError::Io(path.display().to_string(), err))?; + let parsed: HashMap = serde_json::from_str(&raw) + .map_err(|err| RegistryError::Json(path.display().to_string(), err))?; + + let mut default_state_ids = HashMap::new(); + for (name, entry) in parsed { + let default_id = entry + .states + .iter() + .find(|s| s.default) + .map(|s| s.id) + .or_else(|| { + if entry.states.len() == 1 { + Some(entry.states[0].id) + } else { + None + } + }); + if let Some(id) = default_id { + default_state_ids.insert(name, id); + } + } + + Ok(Self { default_state_ids }) + } + + pub fn default_state_id(&self, block_name: &str) -> Option { + self.default_state_ids.get(block_name).copied() + } +} diff --git a/yoki/src/registry/known_packs.rs b/yoki/src/registry/known_packs.rs new file mode 100644 index 00000000..87a4560a --- /dev/null +++ b/yoki/src/registry/known_packs.rs @@ -0,0 +1,24 @@ +use minecraft_packet::packets::configuration::known_packs::KnownPack; +use protocol_version::protocol_version::ProtocolVersion; + +pub fn known_packs_for_version(version: ProtocolVersion) -> Vec { + version + .data() + .known_packs() + .iter() + .map(|pack_version| KnownPack { + namespace: "minecraft".to_string(), + id: "core".to_string(), + version: (*pack_version).to_string(), + }) + .collect() +} + +pub fn client_accepted_known_pack(client_packs: &[KnownPack], version: ProtocolVersion) -> bool { + let expected_versions = version.data().known_packs(); + client_packs.iter().any(|pack| { + pack.namespace == "minecraft" + && pack.id == "core" + && expected_versions.contains(&pack.version.as_str()) + }) +} diff --git a/yoki/src/registry/mandatory.rs b/yoki/src/registry/mandatory.rs new file mode 100644 index 00000000..482521b5 --- /dev/null +++ b/yoki/src/registry/mandatory.rs @@ -0,0 +1,38 @@ +use protocol_version::protocol_version::ProtocolVersion; + +pub const SYNCED_REGISTRY_IDS: &[&str] = &[ + "minecraft:banner_pattern", + "minecraft:cat_sound_variant", + "minecraft:cat_variant", + "minecraft:chicken_sound_variant", + "minecraft:chicken_variant", + "minecraft:cow_sound_variant", + "minecraft:cow_variant", + "minecraft:damage_type", + "minecraft:dialog", + "minecraft:dimension_type", + "minecraft:frog_variant", + "minecraft:instrument", + "minecraft:jukebox_song", + "minecraft:painting_variant", + "minecraft:pig_sound_variant", + "minecraft:pig_variant", + "minecraft:timeline", + "minecraft:trim_material", + "minecraft:wolf_sound_variant", + "minecraft:wolf_variant", + "minecraft:world_clock", + "minecraft:worldgen/biome", + "minecraft:zombie_nautilus_variant", +]; + +pub fn should_omit_known_pack_entry_data( + version: ProtocolVersion, + client_accepted_known_pack: bool, +) -> bool { + client_accepted_known_pack + && matches!( + version.data(), + ProtocolVersion::V26_1 | ProtocolVersion::V26_2 + ) +} diff --git a/yoki/src/registry/mod.rs b/yoki/src/registry/mod.rs new file mode 100644 index 00000000..992d1ef2 --- /dev/null +++ b/yoki/src/registry/mod.rs @@ -0,0 +1,553 @@ +mod block_states; +mod known_packs; +mod mandatory; + +use std::collections::{BTreeMap, HashMap, HashSet}; +use std::fs; +use std::path::{Path, PathBuf}; + +use minecraft_packet::packets::configuration::{ + registry_data::{RegistryDataEntry, RegistryDataPacket}, + update_tags::{RegistryTags, TagEntry, UpdateTagsPacket}, +}; +use protocol_version::protocol_version::ProtocolVersion; +use serde::Deserialize; +use serde_json::Value; +use yoki_binutils::data_types::VarInt; +use yoki_binutils::data_types::{NbtTag, json_to_nbt}; +use yoki_identifier::Identifier; + +#[derive(Debug)] +pub struct RegistryStore { + versions: HashMap, +} + +#[derive(Debug)] +struct VersionRegistries { + all_registry_data: Vec, + tags: UpdateTagsPacket, + block_state_ids: BlockStateIds, +} + +#[derive(Debug, Deserialize)] +struct DatapackReport { + registries: HashMap, +} + +#[derive(Debug, Deserialize)] +struct RegistryInfo { + elements: bool, + #[allow(dead_code)] + stable: bool, + #[allow(dead_code)] + tags: bool, +} + +#[derive(Debug, Deserialize)] +struct RegistriesReport { + #[serde(flatten)] + registries: HashMap, +} + +#[derive(Debug, Deserialize)] +struct RegistryValue { + entries: HashMap, +} + +#[derive(Debug, Deserialize)] +struct EntryValue { + protocol_id: i32, +} + +#[derive(Debug, Deserialize)] +struct TagFile { + values: Vec, +} + +impl RegistryStore { + pub fn load() -> Result { + let generated_dir = find_data_generated_dir()?; + let mut versions = HashMap::new(); + + for version in ProtocolVersion::ALL_VERSION { + if matches!(version, ProtocolVersion::Any | ProtocolVersion::Unsupported) { + continue; + } + + let version_dir = generated_dir.join(data_folder(*version)); + if !version_dir.is_dir() { + continue; + } + + let version_registries = load_version(&version_dir)?; + versions.insert(*version, version_registries); + } + + if versions.is_empty() { + return Err(RegistryError::NoVersions(generated_dir)); + } + + Ok(Self { versions }) + } + + pub fn registry_data_packets( + &self, + version: ProtocolVersion, + omit_known_pack_entry_data: bool, + ) -> impl Iterator + '_ { + self.versions + .get(&version.data()) + .into_iter() + .flat_map(move |data| { + data.all_registry_data.iter().map(move |packet| { + if !omit_known_pack_entry_data { + return packet.clone(); + } + + RegistryDataPacket::new( + packet.registry_id.clone(), + packet + .entries + .iter() + .map(|entry| RegistryDataEntry { + entry_id: entry.entry_id.clone(), + data: None, + }) + .collect(), + ) + }) + }) + } + + pub fn tags_packet(&self, version: ProtocolVersion) -> UpdateTagsPacket { + let Some(data) = self.versions.get(&version.data()) else { + return UpdateTagsPacket { + registries: Vec::new(), + }; + }; + + data.tags.clone() + } + + pub fn block_state_id(&self, version: ProtocolVersion, block_name: &str) -> Option { + self.versions + .get(&version.data()) + .and_then(|data| data.block_state_ids.default_state_id(block_name)) + } +} + +fn load_version(version_dir: &Path) -> Result { + let datapack: DatapackReport = read_json(&version_dir.join("reports/datapack.json"))?; + let registries_report: RegistriesReport = + read_json(&version_dir.join("reports/registries.json"))?; + let mandatory_registry_ids: HashSet = mandatory::SYNCED_REGISTRY_IDS + .iter() + .map(|registry_id| (*registry_id).to_string()) + .collect(); + + let mut id_lookup: HashMap> = HashMap::new(); + for (registry_id, registry) in ®istries_report.registries { + let registry_ids = registry + .entries + .iter() + .map(|(entry_name, entry_value)| (entry_name.clone(), entry_value.protocol_id)) + .collect(); + id_lookup.insert(registry_id.clone(), registry_ids); + } + + for (registry_id, info) in &datapack.registries { + if !mandatory_registry_ids.contains(registry_id) || !info.elements { + continue; + } + + let entries = match list_element_entries(version_dir, registry_id) { + Ok(entries) => entries, + Err(RegistryError::MissingRegistryDir(_)) => continue, + Err(err) => return Err(err), + }; + + let registry_ids = id_lookup.entry(registry_id.clone()).or_default(); + for (index, (full_name, _)) in entries.iter().enumerate() { + registry_ids + .entry(full_name.clone()) + .or_insert(index as i32); + } + } + + let mut all_registry_data = Vec::new(); + + for (registry_id, info) in &datapack.registries { + if !mandatory_registry_ids.contains(registry_id) { + continue; + } + + let entries = if info.elements { + match build_element_registry(version_dir, registry_id, &id_lookup) { + Ok(entries) => entries, + Err( + RegistryError::MissingRegistryDir(_) + | RegistryError::EmptyRegistry(_) + | RegistryError::MissingRegistry(_), + ) => continue, + Err(err) => return Err(err), + } + } else { + match build_static_registry(registry_id, ®istries_report) { + Ok(entries) => entries, + Err(RegistryError::MissingRegistry(_)) => continue, + Err(err) => return Err(err), + } + }; + + let registry_identifier = Identifier::parse(registry_id) + .map_err(|err| RegistryError::InvalidIdentifier(err.to_string()))?; + let packet = RegistryDataPacket::new(registry_identifier, entries); + all_registry_data.push(packet); + } + + let tags = load_tags(version_dir, &id_lookup)?; + + let block_state_ids = BlockStateIds::load(version_dir)?; + + Ok(VersionRegistries { + all_registry_data, + tags, + block_state_ids, + }) +} + +fn build_static_registry( + registry_id: &str, + registries_report: &RegistriesReport, +) -> Result, RegistryError> { + let registry = registries_report + .registries + .get(registry_id) + .ok_or_else(|| RegistryError::MissingRegistry(registry_id.to_string()))?; + + let mut sorted_entries: Vec<_> = registry.entries.iter().collect(); + sorted_entries.sort_by_key(|(_, entry_value)| entry_value.protocol_id); + + let mut entries = Vec::with_capacity(sorted_entries.len()); + for (entry_name, entry_value) in sorted_entries { + let mut entry_nbt = BTreeMap::new(); + entry_nbt.insert("name".to_string(), NbtTag::string(entry_name)); + entry_nbt.insert("id".to_string(), NbtTag::Int(entry_value.protocol_id)); + entries.push(RegistryDataEntry { + entry_id: Identifier::parse(entry_name) + .map_err(|err| RegistryError::InvalidIdentifier(err.to_string()))?, + data: Some(NbtTag::Compound(entry_nbt)), + }); + } + + Ok(entries) +} + +fn build_element_registry( + version_dir: &Path, + registry_id: &str, + id_lookup: &HashMap>, +) -> Result, RegistryError> { + let entries = list_element_entries(version_dir, registry_id)?; + let entry_ids = id_lookup + .get(registry_id) + .ok_or_else(|| RegistryError::MissingRegistry(registry_id.to_string()))?; + + if entries.is_empty() { + return Err(RegistryError::EmptyRegistry(registry_id.to_string())); + } + + let mut registry_entries = Vec::with_capacity(entries.len()); + for (full_name, path) in entries { + entry_ids + .get(&full_name) + .ok_or_else(|| RegistryError::MissingProtocolId(full_name.clone()))?; + + let json: Value = read_json(&path)?; + let entry_nbt = json_to_nbt(&json) + .and_then(|tag| match tag { + NbtTag::Compound(map) => Some(map), + _ => None, + }) + .unwrap_or_default(); + registry_entries.push(RegistryDataEntry { + entry_id: Identifier::parse(&full_name) + .map_err(|err| RegistryError::InvalidIdentifier(err.to_string()))?, + data: Some(NbtTag::Compound(entry_nbt)), + }); + } + + Ok(registry_entries) +} + +fn list_element_entries( + version_dir: &Path, + registry_id: &str, +) -> Result, RegistryError> { + let registry_path = registry_id + .strip_prefix("minecraft:") + .unwrap_or(registry_id); + let registry_dir = version_dir.join("data/minecraft").join(registry_path); + if !registry_dir.is_dir() { + return Err(RegistryError::MissingRegistryDir(registry_id.to_string())); + } + + let mut entries = Vec::new(); + collect_element_paths(®istry_dir, ®istry_dir, &mut entries)?; + entries.sort_by(|left, right| left.0.cmp(&right.0)); + Ok(entries) +} + +fn collect_element_paths( + base_dir: &Path, + current_dir: &Path, + entries: &mut Vec<(String, PathBuf)>, +) -> Result<(), RegistryError> { + for entry in fs::read_dir(current_dir)? { + let entry = entry?; + let path = entry.path(); + + if path.is_dir() { + collect_element_paths(base_dir, &path, entries)?; + continue; + } + + if path.extension().is_none_or(|ext| ext != "json") { + continue; + } + + let relative = path + .strip_prefix(base_dir) + .map_err(|_| RegistryError::InvalidEntry(path.display().to_string()))?; + let entry_suffix = relative + .with_extension("") + .to_string_lossy() + .replace('\\', "/"); + let full_name = format!("minecraft:{entry_suffix}"); + entries.push((full_name, path)); + } + + Ok(()) +} + +fn load_tags( + version_dir: &Path, + id_lookup: &HashMap>, +) -> Result { + let tags_root = version_dir.join("data/minecraft/tags"); + if !tags_root.is_dir() { + return Ok(UpdateTagsPacket { + registries: Vec::new(), + }); + } + + let mut raw_tags: HashMap>> = HashMap::new(); + + for (registry_id, registry_dir) in tag_registry_dirs(&tags_root, id_lookup)? { + let registry_tags = raw_tags.entry(registry_id).or_default(); + collect_tag_files(®istry_dir, "", registry_tags)?; + } + + let mut registries = Vec::new(); + for (registry_id, tags) in raw_tags { + let entry_ids = id_lookup.get(®istry_id); + let mut resolved_tags = Vec::new(); + + for (tag_name, values) in &tags { + let mut entries = Vec::new(); + for protocol_id in resolve_tag_values(values, &tags, entry_ids) + .into_iter() + .flatten() + { + entries.push(VarInt::new(protocol_id)); + } + + resolved_tags.push(TagEntry { + name: Identifier::parse(tag_name) + .map_err(|err| RegistryError::InvalidIdentifier(err.to_string()))?, + entries, + }); + } + + if resolved_tags.is_empty() { + continue; + } + + registries.push(RegistryTags { + registry: Identifier::parse(®istry_id) + .map_err(|err| RegistryError::InvalidIdentifier(err.to_string()))?, + tags: resolved_tags, + }); + } + + Ok(UpdateTagsPacket { registries }) +} + +fn tag_registry_dirs( + tags_root: &Path, + id_lookup: &HashMap>, +) -> Result, RegistryError> { + let mut dirs = Vec::new(); + for entry in fs::read_dir(tags_root)? { + let entry = entry?; + if !entry.file_type()?.is_dir() { + continue; + } + + let name = entry.file_name().to_string_lossy().to_string(); + let registry_id = format!("minecraft:{name}"); + if id_lookup.contains_key(®istry_id) { + dirs.push((registry_id, entry.path())); + continue; + } + + for sub_entry in fs::read_dir(entry.path())? { + let sub_entry = sub_entry?; + if !sub_entry.file_type()?.is_dir() { + continue; + } + + let sub_name = sub_entry.file_name().to_string_lossy().to_string(); + let registry_id = format!("minecraft:{name}/{sub_name}"); + if id_lookup.contains_key(®istry_id) { + dirs.push((registry_id, sub_entry.path())); + } + } + } + Ok(dirs) +} + +fn collect_tag_files( + dir: &Path, + tag_prefix: &str, + tags: &mut HashMap>, +) -> Result<(), RegistryError> { + for entry in fs::read_dir(dir)? { + let entry = entry?; + let path = entry.path(); + if path.is_dir() { + let segment = path.file_name().unwrap().to_string_lossy(); + let next_prefix = if tag_prefix.is_empty() { + segment.to_string() + } else { + format!("{tag_prefix}/{segment}") + }; + collect_tag_files(&path, &next_prefix, tags)?; + continue; + } + + if path.extension().is_none_or(|ext| ext != "json") { + continue; + } + + let tag_name = path + .file_stem() + .and_then(|name| name.to_str()) + .ok_or_else(|| RegistryError::InvalidEntry(path.display().to_string()))?; + let full_tag_name = if tag_prefix.is_empty() { + format!("minecraft:{tag_name}") + } else { + format!("minecraft:{tag_prefix}/{tag_name}") + }; + + let tag_file: TagFile = read_json(&path)?; + tags.insert(full_tag_name, tag_file.values); + } + + Ok(()) +} + +fn resolve_tag_values( + values: &[String], + all_tags: &HashMap>, + entry_ids: Option<&HashMap>, +) -> Vec> { + let mut resolved = Vec::new(); + let mut pending: Vec = values.to_vec(); + + while let Some(value) = pending.pop() { + if let Some(tag_name) = value.strip_prefix('#') { + let tag_key = if tag_name.contains(':') { + tag_name.to_string() + } else { + format!("minecraft:{tag_name}") + }; + if let Some(nested_values) = all_tags.get(&tag_key) { + pending.extend(nested_values.iter().cloned()); + } + continue; + } + + let entry_name = if value.contains(':') { + value + } else { + format!("minecraft:{value}") + }; + + if let Some(ids) = entry_ids + && let Some(protocol_id) = ids.get(&entry_name) + { + resolved.push(Some(*protocol_id)); + } + } + + resolved +} + +fn read_json Deserialize<'de>>(path: &Path) -> Result { + let raw = fs::read_to_string(path) + .map_err(|err| RegistryError::Io(path.display().to_string(), err))?; + serde_json::from_str(&raw).map_err(|err| RegistryError::Json(path.display().to_string(), err)) +} + +fn find_data_generated_dir() -> Result { + let mut current = PathBuf::from(env!("CARGO_MANIFEST_DIR")); + loop { + let candidate = current.join("data/generated"); + if candidate.is_dir() { + return Ok(candidate); + } + current = current + .parent() + .ok_or(RegistryError::MissingGeneratedData)? + .to_path_buf(); + } +} + +fn data_folder(version: ProtocolVersion) -> String { + format!("V{}", version.humanize().replace('.', "_")) +} + +#[derive(Debug, thiserror::Error)] +pub enum RegistryError { + #[error("could not find data/generated directory")] + MissingGeneratedData, + #[error("no registry versions found in {0}")] + NoVersions(PathBuf), + #[error("io error while reading {0}: {1}")] + Io(String, #[source] std::io::Error), + #[error("json error in {0}: {1}")] + Json(String, #[source] serde_json::Error), + #[error("missing registry {0}")] + MissingRegistry(String), + #[error("missing registry directory for {0}")] + MissingRegistryDir(String), + #[error("empty registry {0}")] + EmptyRegistry(String), + #[error("missing protocol id for {0}")] + MissingProtocolId(String), + #[error("invalid registry entry {0}")] + InvalidEntry(String), + #[error("invalid identifier: {0}")] + InvalidIdentifier(String), +} + +impl From for RegistryError { + fn from(err: std::io::Error) -> Self { + Self::Io("registry io".into(), err) + } +} + +use crate::registry::block_states::BlockStateIds; +pub use known_packs::{client_accepted_known_pack, known_packs_for_version}; +pub use mandatory::should_omit_known_pack_entry_data; diff --git a/yoki/src/server/batch.rs b/yoki/src/server/batch.rs index 1819cddc..06d7d3ab 100644 --- a/yoki/src/server/batch.rs +++ b/yoki/src/server/batch.rs @@ -5,7 +5,7 @@ use std::task::{Context, Poll}; use futures::Stream; use minecraft_packet::Connection; -use minecraft_protocol::{Direction, State}; +use minecraft_protocol::{DirectionBound, State}; use yoki_binutils::ProtocolError; use super::client_state::ClientState; @@ -18,7 +18,7 @@ enum Producer { SyncClosure(Box PacketRegistry + Send + 'static>), AsyncClosure(AsyncClosure), Iterator(Box + Send + 'static>), - StateChange(Direction, State), + StateChange(DirectionBound, State), } pub struct Batch { @@ -38,13 +38,17 @@ impl Batch { } pub fn queue_clientbound_state_change(&mut self, new_state: State) { - self.producers - .push_back(Producer::StateChange(Direction::Clientbound, new_state)); + self.producers.push_back(Producer::StateChange( + DirectionBound::Clientbound, + new_state, + )); } pub fn queue_serverbound_state_change(&mut self, new_state: State) { - self.producers - .push_back(Producer::StateChange(Direction::Serverbound, new_state)); + self.producers.push_back(Producer::StateChange( + DirectionBound::Serverbound, + new_state, + )); } pub fn queue(&mut self, f: F) @@ -96,7 +100,7 @@ impl Batch { while let Some(item) = stream.next().await { match item { BatchItem::Packet(packet) => { - let raw = packet.encode_clientbound()?; + let raw = packet.encode_clientbound(client_state.protocol_version())?; conn.send_raw(&raw).await?; } BatchItem::StateChange(direction, new_state) => { @@ -127,8 +131,8 @@ pub struct BatchStream { } pub enum BatchItem { - Packet(PacketRegistry), - StateChange(Direction, State), + Packet(Box), + StateChange(DirectionBound, State), } impl Stream for BatchStream { @@ -142,19 +146,19 @@ impl Stream for BatchStream { Current::Future(fut) => match fut.as_mut().poll(cx) { Poll::Ready(item) => { this.current = Current::Idle; - return Poll::Ready(Some(BatchItem::Packet(item))); + return Poll::Ready(Some(BatchItem::Packet(Box::new(item)))); } Poll::Pending => return Poll::Pending, }, Current::Iterator(iter) => { if let Some(item) = iter.next() { - return Poll::Ready(Some(BatchItem::Packet(item))); + return Poll::Ready(Some(BatchItem::Packet(Box::new(item)))); } this.current = Current::Idle; } Current::Idle => match this.producers.pop_front() { Some(Producer::SyncClosure(f)) => { - return Poll::Ready(Some(BatchItem::Packet(f()))); + return Poll::Ready(Some(BatchItem::Packet(Box::new(f())))); } Some(Producer::StateChange(direction, new_state)) => { return Poll::Ready(Some(BatchItem::StateChange(direction, new_state))); diff --git a/yoki/src/server/client_state.rs b/yoki/src/server/client_state.rs index d3a656d1..1eec7665 100644 --- a/yoki/src/server/client_state.rs +++ b/yoki/src/server/client_state.rs @@ -1,4 +1,4 @@ -use minecraft_protocol::{Direction, State}; +use minecraft_protocol::{DirectionBound, State}; use protocol_version::protocol_version::ProtocolVersion; use uuid::Uuid; @@ -49,10 +49,10 @@ impl ClientState { self.serverbound_state } - pub const fn set_state(&mut self, direction: Direction, new_state: State) { + pub const fn set_state(&mut self, direction: DirectionBound, new_state: State) { match direction { - Direction::Clientbound => self.clientbound_state = new_state, - Direction::Serverbound => self.serverbound_state = new_state, + DirectionBound::Clientbound => self.clientbound_state = new_state, + DirectionBound::Serverbound => self.serverbound_state = new_state, } } diff --git a/yoki/src/server/packet_registry.rs b/yoki/src/server/packet_registry.rs index bedf368c..ac0ff02e 100644 --- a/yoki/src/server/packet_registry.rs +++ b/yoki/src/server/packet_registry.rs @@ -1,10 +1,23 @@ +use minecraft_packet::packets::play::level_chunk_with_light::LevelChunkWithLightPacket; +use minecraft_packet::packets::play::{ + game_event::GameEventPacket, + keep_alive::{ClientboundKeepAlivePacket, ServerboundKeepAlivePacket}, + player_abilities::PlayerAbilitiesPacket, + set_chunk_cache_center::SetChunkCacheCenterPacket, + synchronize_player_position::SynchronizePlayerPositionPacket, +}; use minecraft_packet::packets::{ - HandshakePacket, PingRequestPacket, PingResponsePacket, StatusRequestPacket, + HandshakePacket, PingRequestPacket, PongResponsePacket, StatusRequestPacket, StatusResponsePacket, configuration::{ acknowledge_finish_configuration::AcknowledgeFinishConfigurationPacket, client_information::ClientInformationPacket, - finish_configuration::FinishConfigurationPacket, plugin_message::PluginMessagePacket, + finish_configuration::FinishConfigurationPacket, + known_packs::{SelectKnownPacksClientboundPacket, SelectKnownPacksPacket}, + plugin_message::PluginMessagePacket, + registry_data::RegistryDataPacket, + update_enabled_features::UpdateEnabledFeaturesPacket, + update_tags::UpdateTagsPacket, }, login::{ cookie_response_login::CookieResponseLoginPacket, @@ -12,6 +25,7 @@ use minecraft_packet::packets::{ login_plugin_response::LoginPluginResponsePacket, login_start::LoginStartPacket, login_success::LoginSuccessPacket, }, + play::login::LoginPacket, }; use yoki_macros::PacketReport; @@ -23,50 +37,169 @@ use crate::{ #[derive(Debug, PacketReport)] pub enum PacketRegistry { - #[protocol_id(state = "handshake", bound = "serverbound", id = 0x00)] + #[protocol_id(state = "handshake", bound = "serverbound", id = "minecraft:intention")] Handshake(HandshakePacket), - #[protocol_id(state = "status", bound = "serverbound", id = 0x00)] + #[protocol_id( + state = "status", + bound = "serverbound", + id = "minecraft:status_request" + )] StatusRequest(StatusRequestPacket), - #[protocol_id(state = "status", bound = "clientbound", id = 0x00)] + #[protocol_id( + state = "status", + bound = "clientbound", + id = "minecraft:status_response" + )] StatusResponse(StatusResponsePacket), - #[protocol_id(state = "status", bound = "serverbound", id = 0x01)] + #[protocol_id(state = "status", bound = "serverbound", id = "minecraft:ping_request")] PingRequest(PingRequestPacket), - #[protocol_id(state = "status", bound = "clientbound", id = 0x01)] - PingResponse(PingResponsePacket), + #[protocol_id( + state = "status", + bound = "clientbound", + id = "minecraft:pong_response" + )] + PongResponse(PongResponsePacket), - #[protocol_id(state = "login", bound = "serverbound", id = 0x00)] + #[protocol_id(state = "login", bound = "serverbound", id = "minecraft:hello")] LoginStart(LoginStartPacket), - #[protocol_id(state = "login", bound = "clientbound", id = 0x02)] + #[protocol_id( + state = "login", + bound = "clientbound", + id = "minecraft:login_finished" + )] LoginSuccess(LoginSuccessPacket), - #[protocol_id(state = "login", bound = "serverbound", id = 0x01)] + #[protocol_id(state = "login", bound = "serverbound", id = "minecraft:key")] EncryptionResponse(EncryptionResponsePacket), - #[protocol_id(state = "login", bound = "serverbound", id = 0x02)] + #[protocol_id( + state = "login", + bound = "serverbound", + id = "minecraft:custom_query_answer" + )] LoginPluginResponse(LoginPluginResponsePacket), - #[protocol_id(state = "login", bound = "serverbound", id = 0x03)] + #[protocol_id( + state = "login", + bound = "serverbound", + id = "minecraft:login_acknowledged" + )] LoginAcknowledged(LoginAcknowledgedPacket), - #[protocol_id(state = "login", bound = "serverbound", id = 0x04)] + #[protocol_id( + state = "login", + bound = "serverbound", + id = "minecraft:cookie_response" + )] CookieResponseLogin(CookieResponseLoginPacket), - #[protocol_id(state = "configuration", bound = "serverbound", id = 0x00)] + #[protocol_id( + state = "configuration", + bound = "serverbound", + id = "minecraft:client_information" + )] ClientInformation(ClientInformationPacket), - #[protocol_id(state = "configuration", bound = "serverbound", id = 0x02)] + #[protocol_id( + state = "configuration", + bound = "serverbound", + id = "minecraft:custom_payload" + )] PluginMessage(PluginMessagePacket), - #[protocol_id(state = "configuration", bound = "serverbound", id = 0x03)] + #[protocol_id( + state = "configuration", + bound = "serverbound", + id = "minecraft:finish_configuration" + )] AcknowledgeFinishConfiguration(AcknowledgeFinishConfigurationPacket), - #[protocol_id(state = "configuration", bound = "clientbound", id = 0x03)] + #[protocol_id( + state = "configuration", + bound = "clientbound", + id = "minecraft:finish_configuration" + )] FinishConfiguration(FinishConfigurationPacket), + + #[protocol_id( + state = "configuration", + bound = "clientbound", + id = "minecraft:select_known_packs" + )] + SelectKnownPacksClientbound(SelectKnownPacksClientboundPacket), + + #[protocol_id( + state = "configuration", + bound = "serverbound", + id = "minecraft:select_known_packs" + )] + SelectKnownPacks(SelectKnownPacksPacket), + + #[protocol_id( + state = "configuration", + bound = "clientbound", + id = "minecraft:update_enabled_features" + )] + UpdateEnabledFeatures(UpdateEnabledFeaturesPacket), + + #[protocol_id( + state = "configuration", + bound = "clientbound", + id = "minecraft:update_tags" + )] + UpdateTags(UpdateTagsPacket), + + #[protocol_id( + state = "configuration", + bound = "clientbound", + id = "minecraft:registry_data" + )] + RegistryData(RegistryDataPacket), + + #[protocol_id(state = "play", bound = "clientbound", id = "minecraft:login")] + Login(LoginPacket), + + #[protocol_id( + state = "play", + bound = "clientbound", + id = "minecraft:player_abilities" + )] + PlayerAbilities(PlayerAbilitiesPacket), + + #[protocol_id( + state = "play", + bound = "clientbound", + id = "minecraft:player_position" + )] + SynchronizePlayerPosition(SynchronizePlayerPositionPacket), + + #[protocol_id(state = "play", bound = "clientbound", id = "minecraft:game_event")] + GameEvent(GameEventPacket), + + #[protocol_id( + state = "play", + bound = "clientbound", + id = "minecraft:set_chunk_cache_center" + )] + SetChunkCacheCenter(SetChunkCacheCenterPacket), + + #[protocol_id( + state = "play", + bound = "clientbound", + id = "minecraft:level_chunk_with_light" + )] + LevelChunkWithLight(LevelChunkWithLightPacket), + + #[protocol_id(state = "play", bound = "clientbound", id = "minecraft:keep_alive")] + ClientboundKeepAlive(ClientboundKeepAlivePacket), + + #[protocol_id(state = "play", bound = "serverbound", id = "minecraft:keep_alive")] + ServerboundKeepAlive(ServerboundKeepAlivePacket), } impl PacketHandler for PacketRegistry { @@ -86,10 +219,12 @@ impl PacketHandler for PacketRegistry { Self::CookieResponseLogin(packet) => packet.handle(client_state, server_state), Self::ClientInformation(packet) => packet.handle(client_state, server_state), Self::PluginMessage(packet) => packet.handle(client_state, server_state), + Self::SelectKnownPacks(packet) => packet.handle(client_state, server_state), Self::AcknowledgeFinishConfiguration(packet) => { packet.handle(client_state, server_state) } - _ => Err(PacketHandlerError::custom("Unhandled packet")), + Self::ServerboundKeepAlive(packet) => packet.handle(client_state, server_state), + _ => Ok(Batch::new()), } } } diff --git a/yoki/src/server_state/mod.rs b/yoki/src/server_state/mod.rs index c6fc6855..89a62b80 100644 --- a/yoki/src/server_state/mod.rs +++ b/yoki/src/server_state/mod.rs @@ -2,10 +2,12 @@ use std::path::Path; use std::sync::atomic::{AtomicUsize, Ordering}; use crate::configuration::{ConfigError, Configuration}; +use crate::registry::RegistryStore; #[derive(Debug)] pub struct ServerState { pub config: Configuration, + registry_store: RegistryStore, online_players: AtomicUsize, allow_unsupported_versions: bool, reply_to_status: bool, @@ -15,19 +17,26 @@ pub struct ServerState { impl ServerState { pub fn load(path: impl AsRef) -> Result { let config = Configuration::load(path)?; - Ok(Self::new(config)) + let registry_store = + RegistryStore::load().map_err(|err| ConfigError::Registry(err.to_string()))?; + Ok(Self::new(config, registry_store)) } - pub fn new(config: Configuration) -> Self { + pub fn new(config: Configuration, registry_store: RegistryStore) -> Self { Self { online_players: AtomicUsize::new(0), allow_unsupported_versions: false, reply_to_status: true, accept_transfers: false, config, + registry_store, } } + pub fn registry_store(&self) -> &RegistryStore { + &self.registry_store + } + pub fn config(&self) -> &Configuration { &self.config } @@ -71,6 +80,9 @@ impl ServerState { impl Default for ServerState { fn default() -> Self { - Self::new(Configuration::default()) + Self::new( + Configuration::default(), + RegistryStore::load().expect("failed to load registry data"), + ) } }